/* ═══════════════════════════════════════════════════════════════════
   GRAVITY STANDARD AGENCY — SITE STYLES
   ═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  color: var(--cream);
  background: var(--bg);
  overflow-x: hidden;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: var(--ui);
  font-weight: 300;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: transparent; border: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::selection { background: rgba(212, 168, 67, 0.25); color: #fff; }

/* ═══════════ DESIGN TOKENS ═══════════ */
:root {

  /* ── CORE BACKGROUNDS — from the video's visual world ── */
  --bg:         #1C1A17;
  --bg2:        #251F19;
  --bg3:        #2E2620;

  /* ── LIGHT SURFACES — morning mist progression ── */
  --cream:      #F7F4EE;
  --cream60:    rgba(247, 244, 238, 0.60);
  --cream40:    rgba(247, 244, 238, 0.40);
  --cream20:    rgba(247, 244, 238, 0.20);
  --cream10:    rgba(247, 244, 238, 0.10);
  --paper:      #F7F4EE;
  --mist:       #EDE8DC;

  /* ── BRAND GREENS — from the living meadow ── */
  --green:      #3D5A3E;
  --green-dark: #2C4230;
  --green-mid:  #5C7A5D;
  --green-line: rgba(61, 90, 62, 0.20);

  /* ── FOREST — for dark-section accents ── */
  --forest:     #2a4840;
  --forest2:    #1c3028;

  /* ── GOLD — daisy centre ── */
  --gold:       #D4A843;
  --gold-soft:  rgba(212, 168, 67, 0.85);
  --gold-line:  rgba(212, 168, 67, 0.22);
  --gold-warm:  #E8C36A;

  /* ── CORNFLOWER — the blue wildflowers in the meadow ── */
  --blue:       #6B8FB5;
  --blue-line:  rgba(107, 143, 181, 0.20);

  /* ── INK — warm near-blacks for light sections ── */
  --ink:        #1C1A17;
  --ink-80:     rgba(28, 26, 23, 0.80);
  --ink-60:     rgba(28, 26, 23, 0.60);
  --ink-40:     rgba(28, 26, 23, 0.40);
  --ink-12:     rgba(28, 26, 23, 0.12);

  /* ── TYPOGRAPHY ── */
  --display:    "Instrument Serif", Georgia, serif;
  --serif:      "Cormorant Garamond", "Cormorant", Georgia, serif;
  --mono:       "DM Mono", "Courier New", monospace;
  --ui:         "Inter", system-ui, sans-serif;

  /* ── HERO ── */
  --hero-overlay: rgba(28, 26, 23, 0.35);

  /* ── EASING ── */
  --ease-out-expo:  cubic-bezier(.16, 1, .3, 1);
  --ease-out-quart: cubic-bezier(.25, .46, .45, .94);
  --ease-organic:   cubic-bezier(.23, 1, .32, 1);

  /* ── LAYOUT ── */
  --section-pad: 6rem;
}

/* ═══════════ SKIP LINK ═══════════ */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 9999;
  color: var(--ink);
  background: var(--gold);
  padding: .85rem 1.4rem;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: top .2s;
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ═══════════ LOADER ═══════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .9s var(--ease-out-expo), visibility .9s;
}
.loader.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.loader__seed {
  width: 44px;
  height: 58px;
  animation: seedBreath 2.4s var(--ease-organic) infinite;
}
@keyframes seedBreath {
  0%, 100% { transform: scale(1);   opacity: .85; }
  50%      { transform: scale(1.1); opacity: 1;   }
}
.loader__stem {
  stroke-dasharray: 14;
  stroke-dashoffset: 14;
  animation: drawLine 1s var(--ease-out-expo) .4s forwards;
}
.loader__leaf {
  stroke-dasharray: 10;
  stroke-dashoffset: 10;
}
.loader__leaf--l { animation: drawLine .5s var(--ease-out-expo) 1.2s forwards; }
.loader__leaf--r { animation: drawLine .5s var(--ease-out-expo) 1.5s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.loader__label {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, .35);
  animation: labelPulse 2.4s ease-in-out infinite;
}
@keyframes labelPulse {
  0%, 100% { opacity: .35; }
  50%      { opacity: .7;  }
}

/* ═══════════ NAV ═══════════ */
.nav-scrim {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 130px;
  z-index: 35;
  pointer-events: none;
  background: linear-gradient(rgba(0,0,0,.5) 0%, rgba(0,0,0,.25) 45%, transparent 100%);
  transition: opacity .4s;
}
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  height: 66px;
  padding: 0 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(28, 26, 23, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247, 244, 238, .08);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: .04em;
  color: var(--cream);
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.nav-logo__seed {
  width: 18px;
  height: 24px;
  flex-shrink: 0;
  color: var(--cream);
  transition: color .3s;
}
.nav-links {
  display: flex;
  gap: 2.4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, .92);
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
  transition: color .25s;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--gold-warm); }
.nav-cta {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--green);
  padding: .7rem 1.4rem;
  border: 1px solid var(--green);
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 6px 20px rgba(61, 90, 62, .4);
}

@media (max-width: 880px) {
  .nav { padding: 0 1.25rem; height: 58px; }
  .nav-links { display: none; }
  .nav-scrim { height: 100px; }
  .nav-logo { font-size: .9rem; }
  .nav-cta { padding: .55rem 1rem; font-size: .5rem; }
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - 32px);
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 120% 100% at 50% 0%,
    rgba(28, 26, 23, .20) 0%,
    rgba(28, 26, 23, .55) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 860px;
  padding: 0 2rem;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, .55);
}
.hero__eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: .90;
  letter-spacing: 0;
  color: var(--cream);
  text-shadow: 0 4px 48px rgba(28, 26, 23, .5);
  margin: 0;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-warm);
}
.hero__sub {
  font-family: var(--ui);
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  line-height: 1.8;
  color: rgba(247, 244, 238, .75);
  max-width: 500px;
  text-shadow: 0 1px 16px rgba(28, 26, 23, .6);
}
.hero__btns {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .25rem;
}
.btn-hero {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 2px;
  transition: background .25s var(--ease-out-quart), border-color .25s, box-shadow .25s, color .25s;
  display: inline-block;
}
.btn-hero--primary {
  background: var(--green);
  color: var(--cream);
  border: 1px solid var(--green);
}
.btn-hero--primary:hover,
.btn-hero--primary:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 8px 28px rgba(61, 90, 62, .4);
}
.btn-hero--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 244, 238, .35);
}
.btn-hero--ghost:hover,
.btn-hero--ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-warm);
}

/* Chapter labels */
.hero__chapters {
  position: absolute;
  bottom: 2.5rem;
  right: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  align-items: flex-end;
  z-index: 3;
}
.hero__chapter {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, .2);
  transition: color .5s var(--ease-out-expo), opacity .5s;
}
.hero__chapter.is-active { color: var(--gold); }

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 3;
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, .3);
}
.hero__scroll-track {
  width: 1px;
  height: 44px;
  background: rgba(247, 244, 238, .15);
  position: relative;
  overflow: hidden;
}
.hero__scroll-dot {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrop 1.8s var(--ease-organic) infinite;
}
@keyframes scrollDrop {
  0%   { top: -40%; }
  100% { top: 120%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero {
    background: var(--bg2) url('../images/hero-poster.webp') center 65% / cover no-repeat;
  }
  .hero__scroll-dot { animation: none; }
  .loader__seed { animation: none; }
  .loader__label { animation: none; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

@media (max-width: 600px) {
  .hero { min-height: 620px; height: calc(100svh - 56px); }
  .hero__content { gap: 1.15rem; padding: 0 1.25rem; }
  .hero__eyebrow {
    max-width: 18rem;
    justify-content: center;
    line-height: 1.6;
    font-size: .52rem;
  }
  .hero__eyebrow-line { width: 18px; }
  .hero__title { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero__sub { font-size: .92rem; line-height: 1.65; }
  .hero__chapters { display: none; }
  .hero__btns { flex-direction: column; align-items: center; }
  .btn-hero { width: 100%; max-width: 260px; text-align: center; }
}

/* ═══════════ ANNOUNCEMENT BAR ═══════════ */
.ann {
  position: relative;
  z-index: 50;
  background: var(--bg2);
  color: var(--cream60);
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .55rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(247, 244, 238, .06);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}
.ann a {
  color: var(--gold-warm);
  transition: color .2s;
}
.ann a:hover { color: var(--gold); }
.ann-sep { color: var(--cream20); }

@media (max-width: 720px) {
  .ann { font-size: .5rem; gap: .6rem; padding: .45rem 1rem; }
  .ann-sep { display: none; }
  .ann > span:nth-of-type(n+3) { display: none; }
}

/* ═══════════ SECTION & PHILOSOPHY ═══════════ */
.section {
  padding: var(--section-pad) 2.75rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.philosophy {
  background: var(--paper);
  color: var(--ink);
}
.phil__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.phil__left {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.eyebrow {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.eyebrow--green { color: var(--green); }
.h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0;
}
.h2 em {
  font-style: italic;
  color: var(--green);
}
.phil__quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--ink-80);
  border-left: 2px solid var(--green);
  padding-left: 1.25rem;
  margin: 0;
}
.phil__stages {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: var(--section-pad) 0;
}
.stage {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 0 1.25rem;
  align-items: start;
}
.stage__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.stage__icon svg { width: 20px; height: 20px; }
.stage__icon--seed   { background: rgba(61, 90, 62, .12);    color: var(--green); }
.stage__icon--root   { background: rgba(212, 168, 67, .12);  color: var(--gold);  }
.stage__icon--bloom  { background: rgba(61, 90, 62, .12);    color: var(--green-mid); }
.stage__icon--meadow { background: rgba(107, 143, 181, .12); color: var(--blue);  }
.stage__body { display: flex; flex-direction: column; gap: .4rem; }
.stage__num {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .1em;
  color: var(--green);
}
.stage__title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.stage__desc {
  font-size: .925rem;
  line-height: 1.75;
  color: var(--ink-80);
  margin: 0;
}
.btn-text {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid var(--green-line);
  padding-bottom: .25rem;
  transition: gap .25s var(--ease-out-quart), border-color .25s;
  align-self: flex-start;
}
.btn-text:hover,
.btn-text:focus-visible {
  gap: .875rem;
  border-color: var(--green);
}

.reveal { opacity: 1; }

@media (max-width: 900px) {
  .phil__grid { grid-template-columns: 1fr; gap: 3rem; }
  .phil__left { position: static; }
  .phil__stages { padding: 0; }
  .section { padding: 4rem 1.5rem; }
}

/* ═══════════ PROOF STRIP ═══════════ */
.proof-strip {
  background: var(--bg);
  color: var(--cream);
  border-top: 1px solid rgba(247, 244, 238, .08);
  border-bottom: 1px solid rgba(247, 244, 238, .08);
}
.proof-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  min-height: 150px;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(247, 244, 238, .08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}
.proof-item:first-child { border-left: 1px solid rgba(247, 244, 238, .08); }
.proof-item__value {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: .95;
  color: var(--gold-warm);
}
.proof-item__label {
  font-size: .82rem;
  line-height: 1.55;
  color: var(--cream60);
  max-width: 13.5rem;
}

/* ═══════════ HOMEPAGE CONTENT SECTIONS ═══════════ */
.section-head {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.section-head__copy {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-80);
  max-width: 640px;
}
.service-map {
  background: var(--mist);
  color: var(--ink);
  border-top: 1px solid var(--ink-12);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-12);
  border-left: 1px solid var(--ink-12);
}
.service-card {
  min-height: 360px;
  padding: 1.6rem;
  border-right: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
  background: rgba(255, 255, 255, .46);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .25s, border-color .25s, transform .25s var(--ease-out-quart);
}
.service-card:hover,
.service-card:focus-visible {
  background: #fff;
  border-color: rgba(61, 90, 62, .3);
  transform: translateY(-4px);
}
.service-card__num,
.service-card__price {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
}
.service-card h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin: auto 0 0;
}
.service-card p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--ink-80);
}
.service-card__price {
  margin-top: auto;
  color: var(--ink-60);
}
.case-feature {
  background: var(--forest2);
  color: var(--cream);
  overflow: hidden;
}
.case-feature__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}
.case-feature__media {
  min-height: 560px;
  border: 1px solid rgba(247, 244, 238, .12);
  background: rgba(247, 244, 238, .05);
  overflow: hidden;
}
.case-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}
.case-feature__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 560px;
}
.case-feature .h2 { color: var(--cream); }
.case-feature .h2 em { color: var(--gold-warm); }
.case-feature__body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--cream60);
}
.case-metrics {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(247, 244, 238, .12);
  margin: .5rem 0;
}
.case-metrics div {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(247, 244, 238, .12);
}
.case-metrics dt {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, .42);
}
.case-metrics dd {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream);
}
.btn-text--light {
  color: var(--gold-warm);
  border-color: var(--gold-line);
}
.btn-text--light:hover,
.btn-text--light:focus-visible { border-color: var(--gold); }
.difference {
  background: var(--paper);
  color: var(--ink);
}
.difference__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.difference__list {
  border-top: 1px solid var(--ink-12);
}
.difference__row {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--ink-12);
}
.difference__row span {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .18em;
  color: var(--green);
}
.difference__row p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-80);
}
.closing-cta {
  min-height: 620px;
  padding: 6rem 2rem;
  background:
    linear-gradient(rgba(28, 26, 23, .38), rgba(28, 26, 23, .68)),
    url('../images/hero-poster.webp') center 65% / cover no-repeat;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.closing-cta__inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.closing-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: 0;
}
.closing-cta p:not(.eyebrow) {
  max-width: 540px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(247, 244, 238, .76);
}

@media (max-width: 1020px) {
  .proof-strip__inner,
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .case-feature__grid,
  .difference__grid { grid-template-columns: 1fr; gap: 3rem; }
  .case-feature__media,
  .case-feature__media img { min-height: 460px; }
}

@media (max-width: 640px) {
  .proof-strip__inner,
  .service-grid { grid-template-columns: 1fr; }
  .proof-item {
    min-height: auto;
    padding: 1.5rem;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 244, 238, .08);
  }
  .proof-item:first-child { border-left: 0; }
  .proof-item__label { max-width: none; }
  .section-head { margin-bottom: 2rem; }
  .service-card { min-height: 280px; }
  .case-feature__media,
  .case-feature__media img { min-height: 360px; }
  .case-metrics div,
  .difference__row {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
  .closing-cta { min-height: 520px; padding: 4rem 1.5rem; }
}

/* ═══════════ STUB / SUB-PAGE HERO ═══════════ */
.stub-hero {
  min-height: 70vh;
  padding: 9rem 2rem 5rem;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--ink-12);
}
.stub-hero__inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.stub-hero__title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: 0;
  color: var(--ink);
  margin: 0;
}
.stub-hero__title em { font-style: italic; color: var(--green); }
.stub-hero__sub {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-80);
  max-width: 560px;
}
.stub-hero__note {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding: .5rem 1rem;
  border: 1px dashed var(--green-line);
  border-radius: 2px;
  margin-top: .5rem;
}
.stub-hero__cta {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--cream);
  border-radius: 2px;
  transition: background .25s, box-shadow .25s;
  margin-top: 1rem;
}
.stub-hero__cta:hover,
.stub-hero__cta:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 8px 28px rgba(61, 90, 62, .35);
}
.stub-hero__preview {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 480px;
  text-align: left;
}
.stub-hero__preview-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .85rem 1rem;
  border: 1px solid var(--ink-12);
  background: #fff;
}
.stub-hero__preview-label {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
}
.stub-hero__preview-value {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .stub-hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
  .stub-hero__title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--bg2);
  color: var(--cream60);
  padding: 4rem 2.75rem 2.5rem;
  border-top: 1px solid rgba(247, 244, 238, .06);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer__brand {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: .75rem;
}
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.6;
  max-width: 340px;
}
.footer__col-title {
  font-family: var(--mono);
  font-size: .55rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream40);
  margin-bottom: 1.1rem;
}
.footer__list { display: flex; flex-direction: column; gap: .6rem; }
.footer__list a {
  font-family: var(--ui);
  font-size: .88rem;
  color: var(--cream60);
  transition: color .2s;
}
.footer__list a:hover { color: var(--gold-warm); }
.footer__bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 244, 238, .06);
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream40);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 720px) {
  .footer { padding: 3rem 1.5rem 2rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
