/* ════════════════════════════════════════════════════════
   Ruchira Godave — Editorial / Magazine Aesthetic
   ════════════════════════════════════════════════════════ */

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

:root {
  --bg:        #FFFFFF;
  --bg-warm:   #F4F5F7;
  --bg-deep:   #0A0A0F;
  --bg-cream:  #FFFFFF;

  --ink:       #0A0A0F;
  --ink-soft:  #3F4250;
  --ink-mute:  #8A8E9C;
  --ink-line:  #E5E7EC;

  --terra:     #CF1348;       /* crimson raspberry */
  --terra-dk:  #970A33;
  --terra-soft:#FBD7E0;
  --forest:    #00B27A;
  --gold:      #FFD23F;

  --serif:     'Fraunces', 'Times New Roman', serif;
  --sans:      'Satoshi', system-ui, -apple-system, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 36px;

  --max: 1240px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'ss01' on, 'ss02' on;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

em {
  font-style: italic;
  color: var(--terra);
  font-feature-settings: 'ss01' on;
}

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

::selection { background: var(--terra); color: #fff; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ─── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  position: relative;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .btn-arrow { transform: translate(3px, -3px); }

.btn-primary {
  background: var(--ink);
  color: var(--bg-cream);
  border-color: var(--ink);
  will-change: transform;
}
.btn-primary:hover { background: var(--terra); border-color: var(--terra); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg-cream); }

.btn-text {
  background: transparent;
  border: none;
  padding: 14px 4px;
  color: var(--ink-soft);
  position: relative;
}
.btn-text::after {
  content: '';
  position: absolute;
  left: 4px; right: 4px; bottom: 8px;
  height: 1px;
  background: var(--ink-soft);
  transform-origin: left;
  transition: transform 0.3s;
}
.btn-text:hover { color: var(--terra); }
.btn-text:hover::after { background: var(--terra); transform: scaleX(1.1); }

.btn-large { padding: 18px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── NAV ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: transparent;
  transition: background 0.25s, backdrop-filter 0.25s, padding 0.25s;
}
.nav--scrolled {
  background: rgba(244, 239, 230, 0.85);
  backdrop-filter: blur(16px);
  padding: 12px 32px;
  border-bottom: 1px solid var(--ink-line);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--bg-cream);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--serif);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:not(.nav-cta)::before {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:not(.nav-cta):hover::before { transform: scaleX(1); }

.nav-cta {
  background: var(--ink);
  color: var(--bg-cream) !important;
  padding: 10px 18px;
  border-radius: 100px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--terra); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 32px 80px;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-right {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-portrait {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(10,10,15,0.25);
  z-index: 2;
  transform: rotate(1.5deg);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1),
              box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-portrait:hover {
  box-shadow: 0 40px 100px -20px rgba(207,19,72,0.35);
}
.hero-portrait img {
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.hero-portrait:hover img { transform: scale(1.06); }

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-portrait-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.6);
}
.badge-line {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.badge-sub {
  font-family: var(--sans) !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra) !important;
}

.hero-portrait-accent {
  position: absolute;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  background: var(--terra);
  border-radius: var(--r-lg);
  z-index: 1;
  transform: rotate(-3deg) translate(14px, 14px);
  opacity: 0.95;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--ink-line);
  border-radius: 100px;
  background: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 56px;
}
.hero-meta-dot {
  width: 8px;
  height: 8px;
  background: var(--forest);
  border-radius: 50%;
  position: relative;
}
.hero-meta-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-headline {
  font-size: clamp(2.6rem, 6.5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 36px;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 0.8s cubic-bezier(.2,.8,.2,1),
              transform 0.8s cubic-bezier(.2,.8,.2,1);
  margin-right: 0.18em;
}
.hero-headline .word--in {
  opacity: 1;
  transform: translateY(0);
}

.underline-sketch {
  position: relative;
  display: inline-block;
  font-style: italic;
}
.underline-sketch::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 0.18em;
  background: var(--terra);
  opacity: 0.85;
  z-index: -1;
  border-radius: 2px;
  transform: skew(-3deg) translateY(-0.05em);
}

.hero-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-subtext strong { color: var(--ink); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── MARQUEE ──────────────────────────────────────── */
.marquee {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--bg-cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  animation-play-state: running;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  transition: animation-duration 0.3s;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { flex-shrink: 0; }
.m-dot { color: var(--terra); font-style: normal; font-size: 1.2rem; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── STATS ────────────────────────────────────────── */
.stats {
  position: relative;
  z-index: 2;
  background: var(--bg-warm);
  padding: 80px 0;
  border-bottom: 1px solid var(--ink-line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 12px 32px;
  border-left: 1px solid var(--ink-line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat.in-view { opacity: 1; transform: translateY(0); }
.stat:nth-child(1) { --i: 0; }
.stat:nth-child(2) { --i: 1; }
.stat:nth-child(3) { --i: 2; }
.stat:nth-child(4) { --i: 3; }

.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.stat-num .plus {
  color: var(--terra);
  font-style: italic;
  font-weight: 300;
}
.counter { display: inline-block; }
.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

/* ─── SECTION GENERIC ──────────────────────────────── */
.section {
  position: relative;
  z-index: 2;
  padding: 130px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  overflow: hidden;
}
.section.in-view { opacity: 1; transform: translateY(0); }

/* ─── DECORATIVE PARALLAX BLOBS ─────────────────────── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.blob--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(207,19,72,0.22) 0%, rgba(207,19,72,0) 70%);
  top: 10%;
  right: -100px;
}
.blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(207,19,72,0.18) 0%, rgba(207,19,72,0) 70%);
  bottom: 5%;
  left: -150px;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.section-head--center { justify-content: center; }
.section-head--light .section-num,
.section-head--light .section-kicker { color: var(--bg-cream); }

.section-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--terra);
  font-feature-settings: 'tnum' on;
}
.section-kicker {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

.section-title-big {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  letter-spacing: -0.035em;
  margin-bottom: 80px;
  max-width: 900px;
}

/* ─── ABOUT ────────────────────────────────────────── */
.about { overflow: clip; }     /* clip allows sticky children, hidden does not */

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.about-portrait { position: sticky; top: 100px; }

.portrait-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-warm);
  box-shadow: 0 20px 60px rgba(10,10,15,0.16);
  aspect-ratio: 4/5;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 8px solid var(--bg);
  border-radius: var(--r-lg);
  pointer-events: none;
  z-index: 2;
}
.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.portrait-frame:hover .portrait-img { transform: scale(1.04); }
.portrait-placeholder {
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(140deg, var(--terra-soft) 0%, var(--bg-warm) 100%);
  text-align: center;
  padding: 40px;
}
.portrait-initials {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--terra);
  letter-spacing: -0.04em;
  line-height: 1;
}
.portrait-caption {
  font-size: 0.78rem;
  color: var(--ink-mute);
  line-height: 1.5;
}

.portrait-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 16px;
  background: var(--bg-cream);
  border: 1px solid var(--ink-line);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--terra);
  border-radius: 50%;
}

.big-statement {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

.about-paragraphs p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.about-paragraphs strong { color: var(--ink); font-weight: 600; }

.pull-quote {
  border-left: 3px solid var(--terra);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink) !important;
  line-height: 1.5;
}

.skills { margin-top: 48px; }
.skills-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 16px;
  background: var(--bg-cream);
  border: 1px solid var(--ink-line);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s;
  cursor: default;
}
.chip:hover {
  background: var(--ink);
  color: var(--bg-cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ─── PROCESS ──────────────────────────────────────── */
.process-section {
  background: var(--bg-deep);
  color: var(--bg-cream);
}
.process-section h2,
.process-section .phase-title { color: var(--bg-cream); }
.process-section em { color: var(--terra); }

.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.phase {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  opacity: 0;
  transform: translateY(20px);
}
.phase.in-view { opacity: 1; transform: translateY(0); }
.phase:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--terra);
  transform: translateY(-6px);
}
.phase--accent {
  background: var(--terra);
  border-color: var(--terra);
}
.phase--accent:hover { background: var(--terra-dk); border-color: var(--terra-dk); }
.phase--accent .phase-output { background: rgba(0,0,0,0.18); border-color: rgba(0,0,0,0.2); }

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.phase-number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}
.phase--accent .phase-number { color: rgba(255,255,255,0.85); }
.phase-duration {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.8);
}

.phase-title {
  font-size: 1.7rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.phase-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(251,248,241,0.7);
  margin-bottom: 28px;
}
.phase--accent .phase-desc { color: rgba(255,255,255,0.85); }

.phase-output {
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
}
.output-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terra);
  margin-bottom: 6px;
}
.phase--accent .output-label { color: rgba(255,255,255,0.95); }
.output-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--bg-cream);
}

/* ─── SERVICES ─────────────────────────────────────── */
/* ─── SERVICES — STICKY STACK ──────────────────────── */
.services { overflow: clip; }     /* allow sticky children, contain blob */

.service {
  background: var(--bg-cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-xl);
  padding: 44px;
  position: sticky;
  margin-bottom: 32px;
  transition: box-shadow 0.4s ease, border-color 0.3s ease, transform 0.5s ease;
  will-change: transform;
  box-shadow: 0 20px 40px -24px rgba(10,10,15,0.18);
}

.service:nth-of-type(1) { top: 90px;  }
.service:nth-of-type(2) { top: 110px; }
.service:nth-of-type(3) { top: 130px; }

/* leave breathing room after the last card so the stack settles */
.service:last-of-type { margin-bottom: 0; }

.service:hover {
  border-color: var(--ink);
  box-shadow: 0 30px 80px -20px rgba(207,19,72,0.35);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--ink-line);
}
.service-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
}
.service-status {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
}
.status-open     { background: rgba(63,107,78,0.12);  color: var(--forest); }
.status-waitlist { background: rgba(200,162,74,0.18); color: #8a6c1e; }
.status-soon     { background: rgba(192,85,46,0.12);  color: var(--terra-dk); }

.service-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.service-name {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.service-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terra);
  margin-bottom: 20px;
  font-weight: 300;
}
.service-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.service-perfect { margin-top: 24px; }
.perfect-label,
.includes-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.service-perfect ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-perfect ul li {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.includes-list li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
  line-height: 1.55;
}
.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 700;
}
.includes-list--icons li { padding-left: 0; }
.includes-list--icons li::before { display: none; }
.li-emoji { display: inline-block; margin-right: 10px; font-size: 1rem; }

.service-pricing {
  background: var(--bg-warm);
  border-radius: var(--r-md);
  padding: 20px 22px;
  margin-bottom: 24px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
}
.price-row + .price-row { border-top: 1px dashed var(--ink-line); }
.price-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.price-value {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.price-unit {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-mute);
  margin-left: 4px;
}
.price-meta { font-size: 0.92rem; font-weight: 500; color: var(--ink); }

.service--coming { background: linear-gradient(140deg, var(--bg-cream) 0%, var(--terra-soft) 100%); }

/* ─── FEATURED SERVICE (middle anchor) ─────────────── */
.service--featured {
  border: 2px solid var(--ink);
  background: var(--bg-cream);
  box-shadow: 0 30px 80px -30px rgba(207,19,72,0.4);
}
.service-popular-badge {
  position: absolute;
  top: -14px;
  left: 44px;
  background: var(--terra);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  box-shadow: 0 6px 20px -4px rgba(207,19,72,0.5);
}
.service-pricing--featured {
  background: var(--ink);
  color: var(--bg-cream);
}
.service-pricing--featured .price-label { color: rgba(255,255,255,0.55); }
.service-pricing--featured .price-value { color: var(--bg-cream); }
.service-pricing--featured .price-unit  { color: rgba(255,255,255,0.55); }
.service-pricing--featured .price-meta  { color: var(--bg-cream); }
.service-pricing--featured .price-row + .price-row { border-top-color: rgba(255,255,255,0.12); }

/* anchored "≈ cost vs full-time" line */
.price-anchor {
  border-top: 1px dashed var(--ink-line) !important;
  padding-top: 10px !important;
}
.anchor-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--terra);
  line-height: 1.4;
}

/* ─── ALSO OFFERED ─────────────────────────────────── */
.also-offered {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px dashed var(--ink-line);
}
.also-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-bottom: 32px;
  text-align: center;
}
.also-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.also-card {
  background: var(--bg-cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.also-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}
.also-card--coming {
  background: linear-gradient(140deg, var(--bg-cream) 0%, var(--terra-soft) 100%);
}
.also-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.also-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
}
.also-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex: 1;
}
.also-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: var(--bg-warm);
  border-radius: var(--r-md);
  margin-bottom: 18px;
}
.also-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.also-price span {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-mute);
  margin-left: 6px;
}
.also-alt {
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-style: italic;
}
.also-card .btn { align-self: flex-start; }

@media (max-width: 720px) {
  .also-grid { grid-template-columns: 1fr; }
  .service-popular-badge { left: 22px; }
}

/* status pill recolor for white theme */
.status-waitlist { background: rgba(255,210,63,0.22); color: #8a6c1e; }
.status-soon     { background: rgba(207,19,72,0.10);  color: var(--terra-dk); }

/* portrait gradient (light theme) */
.portrait-placeholder {
  background: linear-gradient(140deg, var(--terra-soft) 0%, var(--bg-warm) 100%);
}

/* grain feels heavy on white — soften it */
.grain { opacity: 0.035; }

/* nav scrolled — slight tint */
.nav--scrolled { background: rgba(255,255,255,0.85); }

/* ─── CLIENTS / LOGOS ──────────────────────────────── */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  background: var(--bg-cream);
  margin-bottom: 80px;
  overflow: hidden;
}
.logo-card {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
  transition: all 0.3s;
  opacity: 0;
}
.logo-card.in-view { opacity: 1; }
.logo-card:hover { background: var(--bg-warm); color: var(--ink); }
.logo-card:nth-child(6n) { border-right: 0; }
.logo-card:nth-last-child(-n+6) { border-bottom: 0; }

.markets {
  text-align: center;
  padding: 40px 0;
  border-top: 1px dashed var(--ink-line);
}
.markets-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.market {
  padding: 10px 20px;
  background: var(--bg-cream);
  border: 1px solid var(--ink-line);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s;
}
.market:hover { background: var(--ink); color: var(--bg-cream); transform: translateY(-2px); }

/* ─── TESTIMONIALS ─────────────────────────────────── */
.testimonials { background: var(--bg-deep); color: var(--bg-cream); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(20px);
}
.testi.in-view { opacity: 1; transform: translateY(0); }
.testi:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--terra);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--terra);
  margin-bottom: 8px;
  font-weight: 400;
}

.testi blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--bg-cream);
  margin-bottom: 28px;
}

.testi figcaption { display: flex; flex-direction: column; gap: 4px; }
.testi-name { font-weight: 600; font-size: 0.95rem; color: var(--bg-cream); }
.testi-role { font-size: 0.85rem; color: rgba(251,248,241,0.55); }

.testi-footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 0.82rem;
  color: rgba(251,248,241,0.4);
  font-style: italic;
}

/* ─── CONTACT ──────────────────────────────────────── */
.contact { padding-top: 130px; padding-bottom: 100px; }

.contact-inner {
  text-align: center;
  max-width: 760px;
}

.contact-headline {
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 24px 0 32px;
}

.contact-body {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 32px 0;
  text-align: left;
}
.contact-meta > div {
  padding: 0 24px;
  border-left: 1px solid var(--ink-line);
}
.contact-meta > div:first-child { border-left: 0; }
.cmeta-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.contact-meta a, .contact-meta span:not(.cmeta-label) {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-meta a:hover { color: var(--terra); }

/* ─── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  color: var(--bg-cream);
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}
.footer-inner { display: flex; flex-direction: column; gap: 40px; }

.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.footer-tag {
  font-size: 0.92rem;
  color: rgba(251,248,241,0.55);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: rgba(251,248,241,0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-built {
  font-family: var(--serif);
  font-style: italic;
}

/* ═══ RESPONSIVE ════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-right { justify-content: flex-start; }
  .hero-portrait, .hero-portrait-accent { max-width: 360px; }
  .hero-actions { justify-content: flex-start; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait { position: static; max-width: 360px; }

  .phases { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .service-body { grid-template-columns: 1fr; gap: 36px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }

  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .logo-card:nth-child(6n) { border-right: 1px solid var(--ink-line); }
  .logo-card:nth-child(3n) { border-right: 0; }
  .logo-card:nth-last-child(-n+6) { border-bottom: 1px solid var(--ink-line); }
  .logo-card:nth-last-child(-n+3) { border-bottom: 0; }

  .contact-meta { grid-template-columns: 1fr; gap: 0; }
  .contact-meta > div { border-left: 0; border-top: 1px dashed var(--ink-line); padding: 20px 0; }
  .contact-meta > div:first-child { border-top: 0; padding-top: 0; }
}

@media (max-width: 720px) {
  .container, .hero { padding-left: 20px; padding-right: 20px; }
  .nav { padding: 16px 20px; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid var(--ink-line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .nav-hamburger { display: flex; }

  .section { padding: 90px 0; }

  .hero { padding-top: 40px; padding-bottom: 60px; }
  .hero-meta { margin-bottom: 36px; }
  .hero-headline { margin-bottom: 48px; }

  .marquee-track { font-size: 1.2rem; gap: 32px; }

  .stats { padding: 56px 0; }
  .stat { padding: 12px 16px; }
  .stat:first-child { padding-left: 0; }

  .service { padding: 28px 22px; border-radius: var(--r-lg); }
  .service-meta { flex-direction: column; align-items: flex-start; gap: 10px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
