﻿:root {
  --paper: #f6f2e8;
  --paper-soft: #fbf8f0;
  --paper-warm: #fffdf6;
  --stone: #ece6d4;
  --ink: #1d2420;
  --ink-soft: #4d5a52;
  --ink-mute: #6f7a72;
  --line: #d4ccb8;
  --line-soft: rgba(0, 61, 36, .12);
  --line-strong: rgba(0, 61, 36, .22);
  --sj-green: #006838;
  --sj-green-deep: #003d24;
  --sj-green-darker: #002816;
  --sj-green-soft: #e4f0e6;
  --sj-green-tint: #f1f8f1;
  --sj-gold: #f6c400;
  --sj-gold-deep: #c89500;
  --sj-gold-soft: #fff4c2;
  --sj-teal: #6a878e;
  --sj-cream: #faf4e0;
  --shadow-paper: 0 22px 60px -28px rgba(0, 40, 22, .35), 0 6px 18px -8px rgba(0, 40, 22, .12);
  --shadow-card: 0 14px 38px -18px rgba(0, 40, 22, .30);
  --shadow-tight: 0 6px 20px -10px rgba(0, 40, 22, .22);
  --serif: "Source Serif 4", "Source Serif Pro", "Lora", "EB Garamond", Georgia, serif;
  --sans: "Inter", "Nunito Sans", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(ellipse at 12% 6%, rgba(246, 196, 0, .12), transparent 36rem),
    radial-gradient(ellipse at 88% 18%, rgba(0, 104, 56, .10), transparent 38rem),
    radial-gradient(ellipse at 50% 110%, rgba(106, 135, 142, .10), transparent 40rem),
    var(--paper);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(15px, .92vw, 16.5px);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0, 61, 36, .025) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(0, 61, 36, .025) 0 1px, transparent 1px 64px);
  mix-blend-mode: multiply;
  z-index: 0;
}
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
em { font-style: italic; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--sj-green);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus-visible { top: 1rem; }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed;
  z-index: 80;
  top: 14px;
  left: max(14px, env(safe-area-inset-left));
  right: max(14px, env(safe-area-inset-right));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 12px 8px 8px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 253, 246, .92);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  box-shadow: var(--shadow-tight);
}
.brand-lockup {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.seal-chip {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 104, 56, .18);
  box-shadow: inset 0 0 0 3px #fff, 0 2px 8px -3px rgba(0, 40, 22, .25);
  overflow: hidden;
}
.seal-chip img { width: 92%; height: 92%; object-fit: contain; }
.lockup-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.lockup-line {
  font-family: var(--serif);
  font-size: clamp(.86rem, 1vw, .98rem);
  font-weight: 600;
  letter-spacing: -.012em;
  color: var(--sj-green-deep);
  white-space: nowrap;
}
.lockup-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.section-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .18s ease, color .18s ease;
}
.section-nav a:hover,
.section-nav a:focus-visible,
.section-nav a[aria-current="true"] {
  outline: none;
  background: var(--sj-green);
  color: #fff;
}
.ufg-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid rgba(246, 196, 0, .35);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 42%),
    var(--sj-green);
  box-shadow: 0 14px 30px -22px rgba(0, 40, 22, .58);
}
.ufg-wordmark img {
  display: block;
  height: clamp(28px, 2vw, 38px);
  width: auto;
  filter: brightness(0) invert(1);
}

/* ---------- Floaters ---------- */
.chapter-cursor {
  position: fixed;
  z-index: 60;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: var(--shadow-card);
}
.chapter-cursor span:last-child { color: rgba(255, 255, 255, .55); }
.sticky-cta {
  position: fixed;
  z-index: 59;
  right: 28px;
  bottom: 84px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--sj-green);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 14px 32px -10px rgba(0, 104, 56, .55);
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-cta::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sj-gold);
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ---------- Section base ---------- */
main { position: relative; z-index: 1; }
.section {
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: clamp(96px, 9vw, 132px) clamp(20px, 5vw, 88px) clamp(64px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.section > * { position: relative; z-index: 1; }
.section + .section::before {
  content: "";
  position: absolute;
  inset: 0 6vw auto;
  height: 1px;
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 104, 56, .25), transparent);
}

/* ---------- Type ---------- */
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.04;
  font-weight: 600;
}
h1 {
  max-width: 17ch;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.4vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
}
h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--sj-green-deep);
}
h2 {
  max-width: 22ch;
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 3.2vw, 3.2rem);
  font-weight: 500;
  line-height: 1.04;
}
h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 18px;
  background: var(--sj-gold-deep);
  border-radius: 999px;
}
h3 {
  margin-bottom: 8px;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -.01em;
  font-family: var(--serif);
}
.lede,
.copy-col > p,
.note-copy p,
.cta-head p,
.bench-head p,
.cal-head p,
.cost-head p,
.story-band p,
.transition-layout p,
.parents-copy p {
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.05vw, 1.13rem);
  line-height: 1.6;
}
.kicker {
  margin-bottom: 14px;
  color: var(--sj-green);
  font-size: clamp(.7rem, .76vw, .78rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.5px;
  margin-right: 10px;
  margin-bottom: 4px;
  vertical-align: middle;
  background: var(--sj-gold);
  border-radius: 999px;
}
.pull,
.cost-pull,
.cal-pull,
.people-pull {
  margin-top: 28px;
  padding: 14px 0 14px 18px;
  border-left: 3px solid var(--sj-gold);
  color: var(--sj-green-deep);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  max-width: 60ch;
}
.cost-pull strong, .pull strong { font-style: normal; font-weight: 700; }

blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--sj-gold);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, .68);
  color: var(--sj-green-deep);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.55rem);
  line-height: 1.28;
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid rgba(0, 104, 56, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  color: var(--sj-green-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .005em;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow-tight); }
.button.primary {
  background: var(--sj-green);
  border-color: var(--sj-green);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(0, 104, 56, .55);
}
.button.primary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sj-gold);
}
.button.ghost {
  background: transparent;
  border-color: rgba(0, 61, 36, .35);
}

.photo-frame {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   01 COVER
============================================================ */
.cover {
  background:
    radial-gradient(ellipse at 86% 90%, rgba(246, 196, 0, .22), transparent 30rem),
    radial-gradient(ellipse at 10% 12%, rgba(0, 104, 56, .12), transparent 30rem);
}
.cover-paper {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 44px);
  border-radius: clamp(28px, 3vw, 44px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(251, 248, 240, .85));
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-paper);
  position: relative;
}
.cover-paper::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(0, 104, 56, .18);
  border-radius: clamp(20px, 2.5vw, 36px);
  pointer-events: none;
}
.cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: stretch;
  padding: clamp(20px, 3vw, 44px);
}
.cover-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.folio {
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--ink-mute);
}
.cover-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.meta-block {
  display: grid;
  gap: 4px;
}
.meta-block.right { text-align: right; }
.meta-block span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.meta-block strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  line-height: 1.15;
}
.meta-block em {
  font-style: normal;
  font-size: .82rem;
  font-weight: 600;
  color: var(--sj-green-deep);
  letter-spacing: .01em;
}
.cover-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cover-visual {
  position: relative;
  margin: 0;
  display: grid;
  align-items: end;
  min-height: min(64svh, 640px);
  padding: 0;
}
.cover-photo {
  position: absolute;
  inset: 0;
  border-radius: clamp(22px, 2.4vw, 36px);
  overflow: hidden;
  box-shadow: 0 18px 50px -22px rgba(0, 40, 22, .55);
}
.cover-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 40, 22, .04) 0%, rgba(0, 40, 22, .55) 78%, rgba(0, 40, 22, .82) 100%);
  pointer-events: none;
}

/* Single elegant client crest replaces the redundant co-brand sandwich. */
.client-crest {
  position: absolute;
  top: clamp(20px, 2.5vw, 32px);
  left: clamp(20px, 2.5vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 246, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 104, 56, .18);
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.client-crest img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #fff;
  object-fit: contain;
}
.crest-rule {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, transparent, var(--sj-gold-deep), transparent);
}
.crest-line {
  display: grid;
  gap: 1px;
}
.crest-line strong {
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 600;
  color: var(--sj-green-deep);
  letter-spacing: -.005em;
}
.crest-line em {
  font-style: italic;
  font-family: var(--serif);
  font-size: .72rem;
  color: var(--ink-mute);
  letter-spacing: .04em;
}

.hero-caption {
  position: relative;
  z-index: 2;
  margin: clamp(20px, 2.4vw, 28px);
  padding: 16px 20px;
  border-left: 3px solid var(--sj-gold);
  background: rgba(0, 40, 22, .45);
  backdrop-filter: blur(6px);
  border-radius: 4px 14px 14px 4px;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(.98rem, 1.3vw, 1.18rem);
  line-height: 1.35;
}
.hero-caption span { display: block; max-width: 32ch; }

/* ============================================================
   02 AMY NOTE
============================================================ */
.amy-note { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .35)); }
.note-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
  padding: clamp(24px, 4vw, 56px);
  border-radius: clamp(26px, 3vw, 42px);
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-paper);
  position: relative;
}
.note-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(0, 104, 56, .14);
  border-radius: clamp(20px, 2.5vw, 36px);
  pointer-events: none;
}
.note-portrait {
  position: relative;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  background: var(--sj-green-soft);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-card);
}
.note-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}
.note-portrait figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: grid;
  gap: 1px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 253, 246, .94);
  backdrop-filter: blur(6px);
  font-family: var(--serif);
}
.note-portrait figcaption strong { font-weight: 600; color: var(--ink); }
.note-portrait figcaption em {
  font-style: normal;
  font-size: .76rem;
  color: var(--sj-green-deep);
  letter-spacing: .04em;
  font-weight: 600;
  text-transform: uppercase;
}
.note-copy h2 { max-width: 28ch; }
.note-copy p { margin-bottom: 14px; }
.signature {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-family: var(--serif);
  font-style: italic;
  color: var(--sj-green-deep) !important;
  font-size: 1.05rem !important;
}
.signature strong { font-weight: 600; }

/* ============================================================
   03 COST
============================================================ */
.cost {
  background:
    linear-gradient(180deg, transparent, rgba(0, 40, 22, .03)),
    radial-gradient(ellipse at 90% 10%, rgba(246, 196, 0, .14), transparent 30rem);
}
.cost-head { width: min(100%, 1100px); margin: 0 auto 36px; }
.cost-head h2 { max-width: 24ch; }
.cost-ledger {
  width: min(100%, 1180px);
  margin: 0 auto;
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  box-shadow: var(--shadow-paper);
  overflow: hidden;
}
.ledger-head,
.cost-ledger li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 110px;
  gap: 18px;
  align-items: center;
  padding: 16px clamp(18px, 2.4vw, 32px);
}
.ledger-head {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--sj-green-tint);
  border-bottom: 1px solid var(--line-soft);
}
.ledger-head span:last-child { text-align: right; }
.cost-ledger ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cost-ledger li + li { border-top: 1px dashed var(--line-soft); }
.cost-ledger .time {
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  color: var(--sj-green-deep);
  letter-spacing: .02em;
}
.cost-ledger .moment {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  color: var(--ink);
  line-height: 1.4;
}
.cost-ledger .moment em {
  display: inline-block;
  margin-left: 6px;
  font-style: italic;
  color: var(--sj-gold-deep);
  font-size: .92em;
}
.cost-ledger .cost {
  text-align: right;
  font-family: var(--mono);
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.ledger-total {
  background: linear-gradient(90deg, var(--sj-green-tint), transparent);
  border-top: 2px solid var(--sj-gold) !important;
}
.ledger-total .moment { color: var(--sj-green-deep); font-style: italic; }
.ledger-total .cost strong {
  font-size: 1.25rem;
  color: var(--sj-green-deep);
}

/* ============================================================
   04 BENCHMARK
============================================================ */
.benchmark {
  background:
    linear-gradient(180deg, rgba(0, 104, 56, .03), transparent),
    radial-gradient(ellipse at 12% 88%, rgba(246, 196, 0, .12), transparent 26rem);
}
.bench-head { width: min(100%, 1100px); margin: 0 auto 32px; }
.bench-head h2 { max-width: 22ch; }
.bench-tickets {
  width: min(100%, 1280px);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.bench-tickets li {
  position: relative;
  padding: clamp(28px, 3vw, 38px) clamp(22px, 2.4vw, 30px) clamp(26px, 3vw, 36px);
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.bench-tickets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--sj-gold), var(--sj-gold-deep));
}
.bench-tickets li::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  background: url("assets/sjmv-round-logo.png") center / contain no-repeat;
  opacity: .04;
  pointer-events: none;
}
.ticket-tab {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--sj-green);
  padding: 4px 10px;
  border: 1px solid rgba(0, 104, 56, .25);
  border-radius: 999px;
  width: fit-content;
  background: var(--sj-green-tint);
}
.bench-tickets h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  margin-top: 4px;
  color: var(--sj-green-deep);
}
.bench-tickets p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}
.bench-close {
  width: min(100%, 900px);
  margin: 36px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  color: var(--sj-green-deep);
}

/* ============================================================
   05 UFG STORY
============================================================ */
.ufg-story {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .35));
}
.story-band {
  width: min(100%, 1300px);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
}
.proof-grid {
  width: min(100%, 1300px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.proof-grid article {
  position: relative;
  min-height: 220px;
  padding: clamp(22px, 2.6vw, 34px);
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: var(--shadow-tight);
  overflow: hidden;
}
.proof-grid article::after {
  content: "";
  position: absolute;
  inset: auto -36px -50px auto;
  width: 180px;
  height: 180px;
  background: url("assets/sjmv-round-logo.png") center / contain no-repeat;
  opacity: .04;
  pointer-events: none;
}
.proof-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--sj-green);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.6vw, 4rem);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .9;
}
.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
}
.proof-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: .95rem;
}

/* ============================================================
   06 SERVICES
============================================================ */
.services {
  background:
    radial-gradient(ellipse at 88% 12%, rgba(0, 104, 56, .09), transparent 28rem),
    radial-gradient(ellipse at 8% 90%, rgba(246, 196, 0, .14), transparent 28rem);
}
.section-intro {
  width: min(100%, 1300px);
  margin: 0 auto 26px;
}
.section-intro.compact h2 { max-width: 32ch; }
.service-quilt {
  width: min(100%, 1300px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.service-card {
  position: relative;
  min-height: 360px;
  display: grid;
  align-content: space-between;
  padding: clamp(20px, 2vw, 28px);
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: var(--shadow-tight);
  overflow: hidden;
}
.service-card.seal-bg::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 200px;
  height: 200px;
  background: url("assets/sjmv-round-logo.png") center / contain no-repeat;
  opacity: .045;
  pointer-events: none;
}
.service-icon {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 18px;
  color: var(--sj-green);
  background: linear-gradient(145deg, rgba(0, 104, 56, .10), rgba(246, 196, 0, .16));
  box-shadow: inset 0 0 0 1px rgba(0, 104, 56, .14);
}
.service-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sj-green);
  margin-bottom: 12px;
  display: block;
}
.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -.005em;
}
.service-card.dark {
  background: linear-gradient(155deg, var(--sj-green) 0%, var(--sj-green-deep) 100%);
  color: #fff;
  border-color: var(--sj-green-deep);
}
.service-card.dark span,
.service-card.dark h3 { color: #fff; }
.service-card.dark span { color: var(--sj-gold); }
.service-card.dark .service-icon {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .20);
}
.service-card.image-card {
  padding: 0;
  background: var(--ink);
  border-color: var(--ink);
}
.service-card.image-card .photo-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
}
.service-card.image-card .photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}
.service-card.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 40, 22, .05) 30%, rgba(0, 40, 22, .85));
  pointer-events: none;
}
.image-card-line {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  font-family: var(--serif);
}
.image-card-line strong {
  display: block;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.18;
}
.image-card-line em {
  font-style: italic;
  color: var(--sj-gold);
  font-size: .92rem;
}

/* ============================================================
   07 CALENDAR
============================================================ */
.calendar {
  background:
    linear-gradient(180deg, transparent, rgba(0, 104, 56, .04)),
    radial-gradient(ellipse at 100% 0%, rgba(246, 196, 0, .12), transparent 28rem);
}
.cal-head { width: min(100%, 1200px); margin: 0 auto 30px; }
.cal-head h2 { max-width: 28ch; }
.cal-strip {
  width: min(100%, 1300px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.cal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px;
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-tight);
  min-height: 230px;
}
.cal-card .cal-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sj-green);
  padding: 4px 10px;
  border: 1px dashed rgba(0, 104, 56, .30);
  border-radius: 999px;
  width: fit-content;
}
.cal-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.18;
}
.cal-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
}
.cal-card p em { font-style: italic; color: var(--sj-green-deep); }
.cal-card.daily { background: linear-gradient(180deg, var(--sj-green-tint), var(--paper-warm)); }
.cal-card.weekly { background: linear-gradient(180deg, rgba(106, 135, 142, .14), var(--paper-warm)); }
.cal-card.event.accent {
  background: linear-gradient(165deg, var(--sj-green-deep), var(--sj-green) 70%);
  border-color: var(--sj-green-deep);
  color: #fff;
}
.cal-card.event.accent h3 { color: #fff; }
.cal-card.event.accent p { color: rgba(255, 255, 255, .85); }
.cal-card.event.accent .cal-tag {
  color: var(--sj-gold);
  border-color: rgba(246, 196, 0, .55);
  background: rgba(0, 0, 0, .15);
}
.cal-card.seasonal { background: linear-gradient(180deg, var(--sj-cream), var(--paper-warm)); }
.cal-pull { width: min(100%, 1300px); margin-left: auto; margin-right: auto; }

/* ============================================================
   08 PARENTS
============================================================ */
.parents {
  background:
    radial-gradient(ellipse at 90% 90%, rgba(106, 135, 142, .14), transparent 30rem),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, .3));
}
.parents-grid {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.parents-stack {
  position: relative;
  min-height: 540px;
}
.polaroid {
  position: absolute;
  margin: 0;
  background: #fff;
  padding: 12px 12px 16px;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 4px;
  box-shadow: 0 18px 38px -16px rgba(0, 40, 22, .35);
  width: 56%;
  transition: transform .35s ease;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}
.polaroid figcaption {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: .85rem;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: .02em;
}
.polaroid.p1 { top: 0; left: 0; transform: rotate(-5deg); z-index: 1; }
.polaroid.p2 { top: 80px; right: 0; transform: rotate(4deg); z-index: 3; }
.polaroid.p3 { bottom: 0; left: 12%; transform: rotate(-2deg); z-index: 2; }
.polaroid:hover { transform: rotate(0) scale(1.02); z-index: 5; }

/* ============================================================
   09 PEOPLE
============================================================ */
.people { background: linear-gradient(180deg, transparent, rgba(0, 104, 56, .04)); }
.people-grid {
  width: min(100%, 1300px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.person-card {
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-rows: clamp(320px, 23vw, 350px) auto;
}
.person-photo {
  position: relative;
  overflow: hidden;
  background: var(--sj-green-soft);
}
.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}
.person-amy .person-photo img { object-position: 50% 16%; }
.person-letty .person-photo img { object-position: 50% 15%; }
.person-al .person-photo img { object-position: 50% 12%; }
.person-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(0, 40, 22, .35));
  pointer-events: none;
}
.person-body { padding: 22px 24px 26px; }
.person-body h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}
.person-body span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sj-green);
  font-weight: 700;
}
.person-body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: .95rem;
}
.people-pull {
  width: min(100%, 1300px);
  max-width: none;
  margin: 28px auto 0;
  white-space: nowrap;
}

/* ============================================================
   10 QUALITY
============================================================ */
.quality { background: radial-gradient(ellipse at 0% 60%, rgba(246, 196, 0, .12), transparent 30rem); }
.section-grid {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
}
.flow-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper-warm);
  box-shadow: var(--shadow-paper);
}
.flow-card article {
  min-height: 200px;
  padding: clamp(20px, 2.4vw, 32px);
  border-width: 0 1px 1px 0;
  border-style: dashed;
  border-color: var(--line-soft);
}
.flow-card article:nth-child(2n) { border-right: 0; }
.flow-card article:nth-last-child(-n+2) { border-bottom: 0; }
.flow-card span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sj-green);
  background: var(--sj-green-tint);
  border-radius: 999px;
}
.flow-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

/* ============================================================
   11 TRANSITION
============================================================ */
.transition {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, .4)),
    radial-gradient(ellipse at 90% 10%, rgba(0, 104, 56, .08), transparent 26rem);
}
.transition-layout {
  width: min(100%, 1300px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}
.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  display: grid;
  gap: 12px;
}
.step-list li {
  counter-increment: steps;
  position: relative;
  display: grid;
  gap: 4px;
  padding: 22px 22px 22px 80px;
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-tight);
}
.step-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--sj-gold), var(--sj-gold-deep));
  color: var(--sj-green-deep);
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .65);
}
.step-list strong {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 600;
}
.step-list span {
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: .95rem;
}

/* ============================================================
   12 CTA
============================================================ */
.cta-section {
  background:
    radial-gradient(ellipse at 80% 28%, rgba(0, 104, 56, .12), transparent 28rem),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, .4));
}
.cta-head {
  width: min(100%, 1100px);
  margin: 0 auto 32px;
}
.cta-head h2 { max-width: 26ch; }
.cta-doors {
  width: min(100%, 1300px);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.door {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(28px, 3vw, 40px);
  border-radius: 26px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
  isolation: isolate;
}
.door:hover { transform: translateY(-3px); }
.door > * {
  position: relative;
  z-index: 1;
}
.door-primary {
  background: linear-gradient(160deg, var(--sj-green) 0%, var(--sj-green-deep) 100%);
  color: #fff;
  box-shadow: 0 18px 44px -16px rgba(0, 104, 56, .55);
  border: 1px solid var(--sj-green-deep);
}
.door-primary:hover { box-shadow: 0 24px 56px -16px rgba(0, 104, 56, .65); }
.door-ghost {
  background: var(--paper-warm);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}
.door-ghost:hover { box-shadow: var(--shadow-paper); }
.door-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}
.door-primary .door-tag { background: rgba(255, 255, 255, .14); color: var(--sj-gold); border: 1px dashed rgba(246, 196, 0, .55); }
.door-ghost .door-tag { background: var(--sj-green-tint); color: var(--sj-green); border: 1px dashed rgba(0, 104, 56, .35); }
.door strong {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.door-primary strong { color: #fff; }
.door p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}
.door-primary p { color: rgba(255, 255, 255, .82); }
.door-ghost p { color: var(--ink-soft); }
.door-cta {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--sans);
  font-size: .96rem;
  letter-spacing: 0;
  font-weight: 700;
}
.door-primary .door-cta { color: var(--sj-gold); }
.door-ghost .door-cta { color: var(--sj-green); }
.door::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  background: url("assets/sjmv-round-logo.png") center / contain no-repeat;
  opacity: .055;
  pointer-events: none;
  z-index: 0;
}
.door-primary::before {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -58px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  pointer-events: none;
  z-index: 0;
}
.door-primary::after {
  right: 28px;
  bottom: 24px;
  width: 86px;
  height: 106px;
  background: rgba(255, 255, 255, .34);
  opacity: .52;
  filter: none;
  -webkit-mask: url("assets/ufg-mark.svg") center / contain no-repeat;
  mask: url("assets/ufg-mark.svg") center / contain no-repeat;
}

.contact-panel {
  width: min(100%, 1300px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr) minmax(0, .95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 3vw, 36px);
  background: var(--paper-warm);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  box-shadow: var(--shadow-paper);
  position: relative;
}
.contact-head { display: grid; gap: 4px; }
.contact-kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
}
.contact-head h3 {
  margin: 4px 0 2px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}
.contact-head em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--sj-green-deep);
  font-size: .95rem;
}
.contact-rows {
  display: grid;
  gap: 0;
  align-content: center;
}
.contact-rows a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: var(--sj-green-deep);
  font-weight: 600;
  text-decoration: none;
  font-size: .98rem;
  line-height: 1.25;
  border-bottom: 1px dashed transparent;
  width: fit-content;
}
.contact-rows a:hover { border-bottom-color: var(--sj-gold); }
.contact-rows p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.35;
}
.contact-promise {
  margin: 0;
  padding: 18px 22px;
  border-left: 3px solid var(--sj-gold);
  background: var(--sj-green-tint);
  border-radius: 4px 14px 14px 4px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--sj-green-deep);
  font-size: .98rem;
  line-height: 1.45;
}

/* ============================================================
   FOOTER
============================================================ */
.page-foot {
  position: relative;
  z-index: 1;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 26px clamp(20px, 5vw, 48px) 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px dashed var(--line-strong);
  color: var(--ink-mute);
}
.foot-mark {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-seal {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line-soft);
  flex: 0 0 32px;
  overflow: hidden;
}
.foot-seal img { width: 86%; height: 86%; object-fit: contain; }
.foot-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.foot-ufg { padding: 10px 18px; }
.foot-ufg img { height: clamp(32px, 3vw, 48px); }

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(10, 20, 16, .88);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(100%, 1500px);
  max-height: 84svh;
  border-radius: 18px;
  box-shadow: var(--shadow-paper);
}
.lightbox-close {
  position: absolute;
  right: 22px;
  top: 22px;
  min-height: 42px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1180px) {
  .cover-grid,
  .section-grid,
  .story-band,
  .transition-layout,
  .parents-grid {
    grid-template-columns: 1fr;
  }
  .cover-visual { min-height: 460px; }
  .service-quilt { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bench-tickets { grid-template-columns: 1fr; }
  .cal-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .people-grid { grid-template-columns: 1fr; }
  .person-card { grid-template-columns: 280px 1fr; grid-template-rows: auto; }
  .person-photo { min-height: 280px; }
  .cta-doors { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .parents-stack { min-height: 460px; }
}

@media (max-width: 820px) {
  body { font-size: 15px; }
  .topbar {
    top: 8px;
    left: 8px;
    right: 8px;
    min-height: 56px;
    padding: 6px 10px 6px 6px;
  }
  .seal-chip { width: 40px; height: 40px; flex-basis: 40px; }
  .lockup-line { font-size: .82rem; }
  .lockup-sub { font-size: 9px; letter-spacing: .1em; }
  .section-nav, .header-ufg { display: none; }
  .section {
    min-height: auto;
    padding: 86px 16px 56px;
  }
  h1 { font-size: clamp(2.1rem, 8.5vw, 3rem); max-width: 100%; }
  h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); max-width: 100%; }
  h2::after { width: 48px; height: 2px; margin-top: 14px; }
  .cover-paper { padding: 14px; }
  .cover-paper::before { inset: 8px; }
  .cover-grid { padding: 12px; gap: 24px; }
  .cover-meta {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 22px 0 26px;
    padding: 18px 0;
  }
  .meta-block.right { text-align: left; }
  .cover-actions { width: 100%; }
  .button { width: 100%; min-height: 50px; }
  .cover-visual { min-height: 400px; margin-top: 8px; }
  .client-crest { padding: 8px 14px 8px 8px; gap: 10px; }
  .client-crest img { width: 44px; height: 44px; }
  .crest-rule { height: 30px; }
  .crest-line strong { font-size: .82rem; }
  .crest-line em { font-size: .66rem; }
  .hero-caption { margin: 14px; padding: 12px 14px; font-size: .95rem; }
  .note-shell { grid-template-columns: 1fr; padding: 18px; }
  .note-shell::before { inset: 8px; }
  .note-portrait { max-height: 420px; aspect-ratio: 4/4; }
  .ledger-head, .cost-ledger li {
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    gap: 10px;
    padding: 14px 16px;
    font-size: .92rem;
  }
  .cost-ledger .moment { font-size: .94rem; }
  .cost-ledger .moment em { display: block; margin: 4px 0 0; }
  .cost-ledger .time { font-size: .72rem; }
  .cost-ledger .cost { font-size: .78rem; }
  .ledger-total .cost strong { font-size: 1rem; }
  .proof-grid, .service-quilt, .cal-strip, .flow-card {
    grid-template-columns: 1fr;
  }
  .service-card, .proof-grid article, .cal-card { min-height: auto; }
  .service-card.image-card { min-height: 300px; }
  .service-card.image-card .photo-frame img { min-height: 300px; }
  .flow-card article { border-right: 0; }
  .flow-card article:nth-last-child(-n+2) { border-bottom: 1px dashed var(--line-soft); }
  .flow-card article:last-child { border-bottom: 0; }
  .people-pull { width: 100%; white-space: normal; }
  .person-card { grid-template-columns: 1fr; }
  .person-photo { min-height: 280px; height: 280px; }
  .parents-stack { min-height: 0; display: grid; grid-template-columns: 1fr; gap: 18px; }
  .polaroid { position: static; width: 100%; transform: none; }
  .polaroid.p1, .polaroid.p2, .polaroid.p3 { transform: none; }
  .door { padding: 26px; }
  .door strong { font-size: 1.5rem; }
  .contact-panel { padding: 22px; }
  .chapter-cursor { right: 14px; bottom: 14px; padding: 9px 12px; font-size: 11px; }
  .sticky-cta { display: none; }
  .page-foot { padding: 24px 16px 36px; }
}

@media (max-width: 460px) {
  .lockup-sub { display: none; }
  .lockup-line { font-size: .78rem; }
  .folio { font-size: 10px; }
  .meta-block strong { font-size: 1.05rem; }
  h1 { font-size: clamp(2rem, 9.5vw, 2.6rem); }
  h2 { font-size: clamp(1.55rem, 6.5vw, 2.05rem); }
  .door strong { font-size: 1.35rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .observe > * {
    animation: sectionIn .55s ease both;
  }
  @keyframes sectionIn {
    from { opacity: .001; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
