/* ==========================================================
   PLUM COVE CO. — Design System & Styles
   Boutique, editorial, cutting-edge.
   ========================================================== */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea { font: inherit; color: inherit; background: none; border: none; outline: none; }
::selection { background: rgba(168, 85, 247, 0.3); color: #fff; }

/* --- Custom Properties --- */
:root {
  --bg: #0a0a0a;
  --bg-deep: #1a0f2e;
  --purple: #a855f7;
  --pink: #ec4899;
  --purple-light: #c4b5fd;
  --purple-dark: #7c3aed;

  --text-1: rgba(255, 255, 255, 0.92);
  --text-2: rgba(255, 255, 255, 0.55);
  --text-3: rgba(255, 255, 255, 0.3);

  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);

  --gradient: linear-gradient(135deg, var(--purple), var(--pink));

  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --container: 1100px;
  --nav-h: 72px;
  --radius: 8px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.5s;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.75rem, 6vw + 0.5rem, 5.25rem); }
h2 { font-size: clamp(2rem, 3.5vw + 0.5rem, 3.25rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem); font-family: var(--font-sans); font-weight: 500; line-height: 1.35; letter-spacing: -0.01em; }
p { max-width: 60ch; }
em { font-style: italic; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-2xl); }
}

section[id] {
  scroll-margin-top: var(--nav-h);
}

.section-pad {
  padding: var(--space-4xl) 0;
}
@media (min-width: 768px) {
  .section-pad { padding: clamp(6rem, 10vw, 10rem) 0; }
}

/* --- Section Label --- */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-2xl);
}

/* ==========================================================
   BACKGROUND ANIMATION — Option A: CSS gradient mesh + orbs + noise
   ========================================================== */

/* Fixed full-screen container */
.bg-anim {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg);
  overflow: hidden;
}

/* Animated gradient mesh — slow flowing color field */
.bg-anim__mesh {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(124, 58, 237, 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(236, 72, 153, 0.30) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 50% 80%, rgba(26, 15, 46, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 60%, rgba(168, 85, 247, 0.25) 0%, transparent 60%);
  animation: meshFlow 14s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes meshFlow {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%  { transform: translate(-8%, 5%) rotate(2deg) scale(1.05); }
  66%  { transform: translate(6%, -6%) rotate(-1.5deg) scale(0.97); }
  100% { transform: translate(-4%, 8%) rotate(1deg) scale(1.03); }
}

/* Floating orbs — more visible than before */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.bg-orb--1 {
  width: 55vmax;
  height: 55vmax;
  background: radial-gradient(circle, var(--purple-dark), transparent 65%);
  top: -15%;
  left: -10%;
  opacity: 0.45;
  animation: orb1 12s var(--ease) infinite alternate;
}
.bg-orb--2 {
  width: 45vmax;
  height: 45vmax;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.8), transparent 65%);
  bottom: -15%;
  right: -10%;
  opacity: 0.35;
  animation: orb2 16s var(--ease) infinite alternate;
}
.bg-orb--3 {
  width: 35vmax;
  height: 35vmax;
  background: radial-gradient(circle, rgba(26, 15, 46, 0.9), transparent 60%);
  top: 40%;
  left: 30%;
  opacity: 0.55;
  animation: orb3 10s var(--ease) infinite alternate;
}
@keyframes orb1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(15vw, 12vh) scale(1.15); }
  100% { transform: translate(-10vw, 20vh) scale(0.88); }
}
@keyframes orb2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-12vw, -10vh) scale(1.18); }
  100% { transform: translate(10vw, -18vh) scale(0.85); }
}
@keyframes orb3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(12vw, -10vh) scale(1.2); }
  100% { transform: translate(-8vw, 14vh) scale(0.9); }
}

/* SVG noise grain overlay — visible texture */
.bg-anim__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
}

/* Subtle vignette for depth */
.bg-anim__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 40%, rgba(10,10,10,0.5) 100%);
}

/* Content scrim — ensures text readability */
.content-wrap {
  position: relative;
  z-index: 1;
}

/* --- Divider --- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .nav__inner { padding: 0 var(--space-2xl); }
}
.nav__logo img {
  height: 36px;
  width: auto;
}
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
}
.nav__links a {
  font-size: 0.8125rem;
  font-weight: 450;
  color: var(--text-2);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav__links a:hover,
.nav__links a:focus-visible { color: var(--text-1); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: none;
}
@media (min-width: 768px) {
  .nav__cta { display: inline-flex; }
}

/* Mobile menu toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
@media (min-width: 768px) {
  .nav__toggle { display: none; }
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-1);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}
.nav__toggle.is-open span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.nav__toggle.is-open span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--text-2);
  transition: color 0.3s var(--ease);
}
.mobile-menu a:hover { color: var(--text-1); }
.mobile-menu .btn { margin-top: var(--space-lg); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3), 0 8px 24px rgba(168, 85, 247, 0.15);
}
.btn--primary:hover {
  box-shadow: 0 1px 2px rgba(0,0,0,0.3), 0 12px 32px rgba(168, 85, 247, 0.25);
  transform: translateY(-1px);
}
.btn--ghost {
  border: 1px solid var(--border-hover);
  color: var(--text-1);
  background: transparent;
}
.btn--ghost:hover {
  background: var(--surface);
  border-color: rgba(255,255,255,0.25);
}
.btn--sm {
  font-size: 0.8125rem;
  padding: 9px 20px;
}

/* --- Scroll-reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.35s; }

/* ==============================
   SECTION: Hero
   ============================== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}
.hero__label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-xl);
}
.hero__title {
  margin-bottom: var(--space-xl);
  max-width: 15ch;
}
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.1875rem);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: var(--space-2xl);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ==============================
   SECTION: Services
   ============================== */
.services__list {
  display: flex;
  flex-direction: column;
}
.service {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.4s var(--ease);
}
@media (min-width: 768px) {
  .service {
    grid-template-columns: auto 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: start;
  }
}
.service:hover {
  background: linear-gradient(90deg, var(--surface), transparent 80%);
}
.service__num {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.05em;
  min-width: 2.5rem;
  padding-top: 0.25rem;
}
.service__head {}
.service__title {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text-1);
  margin-bottom: var(--space-sm);
}
.service__desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 42ch;
}
/* Deliverables list */
.service__deliverables {
  margin-top: var(--space-lg);
}
.service__deliverables-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-sm);
}
.service__deliverables ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.service__deliverables li {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.service__deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.6;
}

/* ==============================
   SECTION: Process
   ============================== */
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 768px) {
  .process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}
.step {
  padding: var(--space-2xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
}
.step:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
}
.step__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-3);
  line-height: 1;
  margin-bottom: var(--space-lg);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.45;
}
.step__title {
  margin-bottom: var(--space-sm);
}
.step__desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.65;
}
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 3rem;
    height: 1px;
    background: var(--border);
    transform: translateX(100%);
    z-index: -1;
  }
}

/* ==============================
   SECTION: Pricing
   ============================== */
.pricing__intro {
  max-width: 50ch;
  color: var(--text-2);
  margin-bottom: var(--space-3xl);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.pricing__groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 960px) {
  .pricing__groups { grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
}
.pricing-group {
  padding: var(--space-2xl);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.4s var(--ease);
}
.pricing-group:hover {
  border-color: var(--border-hover);
}
.pricing-group__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--text-1);
  padding-bottom: var(--space-lg);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}
.price-tier {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-tier:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.price-tier__header {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.price-tier__name {
  font-size: 0.9375rem;
  color: var(--text-1);
  font-weight: 450;
}
.price-tier__line {
  flex: 1;
  border-bottom: 1px dotted var(--text-3);
  min-width: 0.75rem;
  margin-bottom: 0.3em;
  opacity: 0.4;
}
.price-tier__cost {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--text-1);
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.price-tier__cost small {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-3);
}
.price-tier__includes {
  margin-top: var(--space-xs);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-tier__includes li {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.5;
  padding-left: 0.875rem;
  position: relative;
}
.price-tier__includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.4;
}

/* ==============================
   SECTION: FAQ
   ============================== */
.faq__list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 450;
  color: var(--text-1);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease);
  background: none;
  border: none;
}
.faq-item__q:hover { color: var(--purple-light); }
.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  opacity: 0.4;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--text-1);
  border-radius: 1px;
}
.faq-item__icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-item.is-open .faq-item__icon {
  opacity: 0.7;
}
.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding-bottom: 0;
}
.faq-item.is-open .faq-item__a {
  max-height: 300px;
  padding-bottom: var(--space-lg);
}
.faq-item__a p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ==============================
   SECTION: Final CTA
   ============================== */
.final-cta {
  text-align: center;
  padding: var(--space-5xl) 0;
  position: relative;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.final-cta h2 {
  margin-bottom: var(--space-lg);
}
.final-cta p {
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 48ch;
  margin: 0 auto var(--space-2xl);
}

/* ==============================
   SECTION: Contact
   ============================== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}
@media (min-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
  }
}
.contact__text h2 {
  margin-bottom: var(--space-lg);
}
.contact__text p {
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}
.contact__fallback {
  font-size: 0.875rem;
  color: var(--text-3);
}
.contact__fallback a {
  color: var(--text-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--text-3);
  transition: color 0.3s var(--ease), text-decoration-color 0.3s var(--ease);
}
.contact__fallback a:hover {
  color: var(--text-1);
  text-decoration-color: var(--text-1);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.form-field {
  position: relative;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-1);
  font-size: 0.9375rem;
  transition: border-color 0.3s var(--ease);
  background: transparent;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-3);
}
.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--purple);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: var(--space-sm);
}

/* ==============================
   Footer
   ============================== */
.footer {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__logo img {
  height: 28px;
  width: auto;
  opacity: 0.6;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
}
.footer__links a {
  font-size: 0.8125rem;
  color: var(--text-3);
  transition: color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--text-2); }
.footer__copy {
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ==============================
   Responsive Adjustments
   ============================== */
@media (max-width: 767px) {
  .hero { min-height: calc(100svh - 2rem); padding-top: calc(var(--nav-h) + var(--space-2xl)); }
  .hero__title { max-width: 100%; }
  h1 { line-height: 1.08; }
}

/* ==============================
   Reduced Motion
   ============================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bg-orb { animation: none !important; }
  .bg-anim__mesh { animation: none !important; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .faq-item__a {
    transition: none;
  }
  .btn, .service, .step, .pricing-group, .nav, .nav__links a::after {
    transition-duration: 0.01ms !important;
  }
}

/* ==============================
   Focus visible (keyboard nav)
   ============================== */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}
