/* ============================================================
   AI Studio by YP — Warm beige / sand palette
   Matches the protein.mp4 video background tone
   Fonts: Space Grotesk (headlines) · Inter (body)
   ============================================================ */

:root {
  /* Warm neutral palette — blends with video */
  --sand:       #F5F0E8;
  --sand-mid:   #EDE7DA;
  --sand-deep:  #D9D0C0;
  --ink:        #0B0B0B;
  --ink-muted:  rgba(11,11,11,0.52);
  --dark:       #111110;
  --dark-2:     #1A1917;
  --white:      #FFFFFF;
  --white-muted: rgba(255,255,255,0.65);

  /* Depth / elevation shadows — layered, warm-tinted */
  --shadow-sm:
    0 1px 2px rgba(60,40,10,0.06),
    0 2px 8px rgba(60,40,10,0.05);
  --shadow-md:
    0 2px 4px rgba(60,40,10,0.05),
    0 8px 24px rgba(60,40,10,0.08),
    0 20px 48px rgba(60,40,10,0.06);
  --shadow-lg:
    0 4px 8px rgba(60,40,10,0.04),
    0 16px 40px rgba(60,40,10,0.09),
    0 40px 80px rgba(60,40,10,0.08);
  --shadow-float:
    0 2px 4px rgba(11,11,11,0.08),
    0 12px 28px rgba(11,11,11,0.14),
    0 32px 64px rgba(11,11,11,0.12);

  --radius:     14px;
  --radius-lg:  22px;
  --max:        1120px;
  --font-head:  'Space Grotesk', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── SVG Grain texture — applied as pseudo on light sections ── */
.section--light::before,
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.section--light,
.site-footer { position: relative; }

.section--light > .container,
.site-footer > .container { position: relative; z-index: 1; }

body.nav-active { overflow: hidden; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

img { display: block; max-width: 100%; }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: min(92vw, var(--max));
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 280ms var(--ease), background 280ms var(--ease), border-color 280ms;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(11, 11, 11, 0.08);
}

.site-header.hidden { transform: translateY(-110%); }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 180px;
}

.brand-logo {
  height: 168px;
  width: auto;
  /* white logo — visible on dark video by default */
  filter: brightness(0) invert(1);
  transition: filter 280ms var(--ease);
}

/* invert to black when header background turns beige on scroll */
.site-header.scrolled .brand-logo {
  filter: brightness(0);
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: color 150ms, background 150ms;
}

.nav a:hover { color: var(--ink); background: rgba(11,11,11,0.06); }
.nav a:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.nav a:active { background: rgba(11,11,11,0.1); }

.btn-nav {
  margin-left: 0.5rem;
  padding: 0.5rem 1.1rem !important;
  border-radius: 999px !important;
  background: var(--ink) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  transition: opacity 180ms !important;
}
.btn-nav:hover { opacity: 0.82 !important; background: var(--ink) !important; }
.btn-nav:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.btn-nav:active { opacity: 0.65 !important; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(11,11,11,0.14);
  border-radius: 10px;
  background: rgba(11,11,11,0.04);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  transition: transform 200ms, opacity 200ms;
}
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -5px; }
.hamburger::after  { top:  5px; }

.nav--open {
  position: fixed;
  inset: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: 90px 2rem 2rem;
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(24px);
  gap: 0.5rem;
}

.nav--open a {
  width: 100%;
  padding: 1rem 1.25rem !important;
  border-radius: 12px !important;
  background: rgba(11,11,11,0.04) !important;
  font-size: 1.1rem;
  color: var(--ink) !important;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 220ms var(--ease), opacity 220ms, box-shadow 220ms;
  border: none;
}

/* Hero buttons: light on dark video */
.btn-primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-float);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}
.btn-secondary:focus-visible {
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 3px;
}
.btn-secondary:active {
  transform: translateY(0);
  background: rgba(255,255,255,0.05);
}

/* CTA button override — dark on light */
.section--contact .btn-primary,
.contact-form .btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.section--contact .btn-primary:hover,
.contact-form .btn-primary:hover {
  box-shadow: var(--shadow-lg);
}
.section--contact .btn-primary:focus-visible,
.contact-form .btn-primary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  /* warm, slightly desaturated to complement text */
  filter: saturate(0.85) brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* layered radial + linear gradients for cinematic depth */
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(11,11,11,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(11,11,11,0.18) 0%, transparent 60%),
    linear-gradient(
      170deg,
      rgba(11,11,11,0.04) 0%,
      rgba(11,11,11,0.38) 55%,
      rgba(11,11,11,0.70) 100%
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  height: 100%;
}

.hero-content {
  max-width: 820px;
  display: grid;
  gap: 1.5rem;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s var(--ease-out) forwards;
  animation-delay: 0.1s;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.04;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s var(--ease-out) forwards;
  animation-delay: 0.25s;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 400;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s var(--ease-out) forwards;
  animation-delay: 0.42s;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s var(--ease-out) forwards;
  animation-delay: 0.58s;
}

/* Hero trust / pricing hint */
.hero-trust {
  display: grid;
  gap: 0.35rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s var(--ease-out) forwards;
  animation-delay: 0.75s;
}

.hero-trust-line {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}

.hero-pricing-hint {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.01em;
}

/* scroll hint line */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.2s forwards;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Stats ───────────────────────────────────────────────── */
.section--stats {
  padding: 5rem 0;
  background: var(--ink);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.stat:last-child { border-right: none; }
.stat:nth-child(2) { transition-delay: 0.1s; }
.stat:nth-child(3) { transition-delay: 0.2s; }

.stat.revealed { opacity: 1; transform: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 1.75rem 1rem;
  }
  .stat:last-child { border-bottom: none; }
}

/* ── Sections ────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 7rem 0;
}

.section--light {
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(217, 208, 192, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 5% 90%, rgba(217, 208, 192, 0.30) 0%, transparent 55%),
    var(--sand);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  text-align: left;
  max-width: 680px;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.section-header.revealed { opacity: 1; transform: none; }

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.section-tag--light { color: rgba(255,255,255,0.5); }

.section-lede {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.section-header--light .section-tag { color: rgba(255,255,255,0.5); }
.section-header--light .section-lede { color: rgba(255,255,255,0.55); }
.section-header--light h2 { color: var(--white); }

/* ── Cards — "What we do" ────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  padding: 2.25rem 2rem;
  background: var(--sand-mid);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  cursor: default;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    background 220ms,
    border-color 220ms,
    box-shadow 220ms;
}

.card.revealed { opacity: 1; transform: none; }

.card:hover {
  background: var(--white);
  border-color: rgba(11,11,11,0.1);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px) !important;
}

.card-num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--ink);
}

.card p {
  font-size: 0.97rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── Why AI Creatives ────────────────────────────────────── */
.section--sand {
  background:
    radial-gradient(ellipse 65% 45% at 100% 0%, rgba(217,208,192,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 0% 100%, rgba(217,208,192,0.28) 0%, transparent 55%),
    var(--sand-mid);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-item {
  display: grid;
  gap: 1rem;
  padding: 2rem 1.75rem;
  border-top: 1px solid var(--sand-deep);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.why-item.revealed { opacity: 1; transform: none; }

.why-item:nth-child(2) { transition-delay: 0.1s; }
.why-item:nth-child(3) { transition-delay: 0.2s; }

.why-num {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.why-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.why-item p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .why-item { padding: 1.5rem 0; }
}

/* ── Showcase / Work ─────────────────────────────────────── */
.showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.showcase-item {
  grid-column: span 6;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.showcase-item.revealed { opacity: 1; transform: none; }

.showcase-item--wide { grid-column: span 8; }
.showcase-item:not(.showcase-item--wide):nth-child(2) { grid-column: span 4; }
.showcase-item:not(.showcase-item--wide):nth-child(3) { grid-column: span 4; }
.showcase-item--wide:last-child { grid-column: span 8; grid-column-start: 5; }

.showcase-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.showcase-media img,
.showcase-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 600ms var(--ease-out);
}

.showcase-item:hover .showcase-media img,
.showcase-item:hover .showcase-media video {
  transform: scale(1.05);
}

.showcase-caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0 0;
  width: 100%;
}

.showcase-brand {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-muted);
  letter-spacing: 0.01em;
}

.showcase-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.01em;
}

/* ── Steps — How it works ────────────────────────────────── */
.steps {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 1.75rem;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-lg);
  background: var(--sand-mid);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    background 220ms,
    border-color 220ms,
    box-shadow 220ms;
}

.step.revealed { opacity: 1; transform: none; }

.step:hover {
  background: var(--white);
  border-color: rgba(11,11,11,0.1);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.step-body p {
  font-size: 0.97rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── Pricing ─────────────────────────────────────────────── */
.section--pricing { padding-bottom: 8rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 860px;
}

.pricing-card {
  position: relative;
  padding: 2.75rem 2.5rem 2.5rem;
  background: var(--sand-mid);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    background 240ms,
    border-color 240ms,
    box-shadow 240ms;
}

.pricing-card.revealed { opacity: 1; transform: none; }

.pricing-card:nth-child(2) { transition-delay: 0.12s; }

.pricing-card:hover {
  background: var(--white);
  border-color: rgba(11,11,11,0.1);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) !important;
}

/* Featured card — ink background */
.pricing-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: var(--shadow-float);
  transform: translateY(-8px) !important;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 2rem;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-sm);
}

.pricing-card__head { display: grid; gap: 0.5rem; }

.pricing-plan {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pricing-card--featured .pricing-plan { color: rgba(255,255,255,0.5); }

.pricing-price {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 0.1em;
}

.pricing-card--featured .pricing-price { color: var(--white); }

.pricing-currency {
  font-size: 0.42em;
  font-weight: 600;
  margin-top: 0.3em;
  letter-spacing: 0;
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.pricing-card--featured .pricing-desc { color: rgba(255,255,255,0.55); }

.pricing-features {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--ink);
  font-weight: 450;
}

.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.85); }

.pricing-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--sand-deep);
  display: grid;
  place-items: center;
}

.pricing-check::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border-right: 1.5px solid var(--ink-muted);
  border-bottom: 1.5px solid var(--ink-muted);
  transform: rotate(45deg) translate(-1px, -1px);
}

.pricing-card--featured .pricing-check {
  border-color: rgba(255,255,255,0.25);
}
.pricing-card--featured .pricing-check::after {
  border-color: rgba(255,255,255,0.6);
}

/* Pricing buttons */
.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms, background 180ms, border-color 180ms;
}

.pricing-btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--sand-deep);
  box-shadow: var(--shadow-sm);
}
.pricing-btn--outline:hover {
  background: var(--white);
  border-color: rgba(11,11,11,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pricing-btn--outline:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.pricing-btn--outline:active { transform: none; box-shadow: var(--shadow-sm); }

.pricing-btn--solid {
  background: var(--white);
  color: var(--ink);
  border: none;
  box-shadow: var(--shadow-md);
}
.pricing-btn--solid:hover {
  box-shadow: var(--shadow-float);
  transform: translateY(-2px);
}
.pricing-btn--solid:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.pricing-btn--solid:active { transform: none; box-shadow: var(--shadow-sm); }

.pricing-custom {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: 0.18s;
}

.pricing-custom.revealed { opacity: 1; transform: none; }

.pricing-custom a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--sand-deep);
  transition: border-color 160ms, color 160ms;
}

.pricing-custom a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.pricing-custom a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.section--faq { padding-bottom: 8rem; }

.faq-list {
  max-width: 720px;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.faq-list.revealed { opacity: 1; transform: none; }

.faq-item {
  border-top: 1px solid var(--sand-deep);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--sand-deep);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  line-height: 1.4;
  transition: color 150ms;
}

.faq-trigger:hover { color: var(--ink); opacity: 0.75; }
.faq-trigger:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--sand-deep);
  position: relative;
  transition: border-color 200ms, transform 300ms var(--ease);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  border-radius: 1px;
}

.faq-icon::before {
  width: 8px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 8px;
  transform: translate(-50%, -50%);
  transition: transform 300ms var(--ease), opacity 300ms;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  border-color: var(--ink);
  transform: rotate(45deg);
}

.faq-body {
  overflow: hidden;
  max-height: none;
  transition: max-height 300ms var(--ease-out);
}

.faq-body p {
  padding-bottom: 1.4rem;
  font-size: 0.97rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ── CTA Section ─────────────────────────────────────────── */
.section--cta {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.6);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,11,11,0.55);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.cta-inner.revealed { opacity: 1; transform: none; }

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  max-width: 640px;
}

.cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 480px;
}

/* ── Contact ─────────────────────────────────────────────── */
.section--contact { padding-bottom: 8rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  padding: 2rem;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius-lg);
  background: var(--sand-mid);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.5rem;
}

.contact-info p {
  display: grid;
  gap: 0.25rem;
  font-size: 0.97rem;
  color: var(--ink-muted);
}

.contact-info strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact-info a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid var(--sand-deep);
  background: var(--white);
  color: var(--ink);
  padding: 0.9rem 1.1rem;
  font: inherit;
  font-size: 0.97rem;
  resize: vertical;
  transition: border-color 160ms, box-shadow 160ms;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(11,11,11,0.4);
  box-shadow: 0 0 0 3px rgba(11,11,11,0.06);
}

.contact-form .note {
  font-size: 0.84rem;
  color: var(--ink-muted);
}

.contact-form .note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--sand-deep);
  padding: 2.5rem 0;
  background: var(--sand);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.footer-logo {
  height: 168px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0); /* white PNG → black on beige footer */
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.85); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards .card:last-child {
    grid-column: span 2;
    max-width: 460px;
  }

  .showcase-item { grid-column: span 6 !important; }
  .showcase-item--wide { grid-column: span 12 !important; }
  .showcase-item--wide:last-child { grid-column-start: 1 !important; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 5rem 0; }
  .section--cta { padding: 7rem 0; }
  .section--contact { padding: 5rem 0 6rem; }

  .contact-grid { grid-template-columns: 1fr; }

  .cards { grid-template-columns: 1fr; }
  .cards .card:last-child { grid-column: 1; max-width: 100%; }

  .hero-inner { align-items: center; padding-bottom: 0; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 660px) {
  .showcase {
    grid-template-columns: 1fr;
  }
  .showcase-item,
  .showcase-item--wide {
    grid-column: 1 !important;
  }

  .step {
    grid-template-columns: 44px 1fr;
    gap: 1.1rem;
    padding: 1.5rem 1.25rem;
  }

  .cta-inner h2 { font-size: 1.9rem; }
}
