  :root {
    --bone: #f4ecdf;
    --bone-2: #ebe2d1;
    --bone-3: #e2d7c0;
    --ink: #1d1812;
    --ink-soft: #3a3125;
    --ink-mute: #6a5d48;
    --terra: oklch(0.58 0.13 45);
    --terra-deep: oklch(0.42 0.11 40);
    --teal: oklch(0.42 0.06 220);
    --line: #1d18121a;
    --line-strong: #1d181233;
    --night: #0c0a08;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-snap-type: y proximity; }
  body {
    background: var(--bone);
    color: var(--ink);
    font-family: "Spectral", Georgia, serif;
    font-weight: 350;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  ::selection { background: var(--terra); color: var(--bone); }
  img, video { display: block; max-width: 100%; }

  /* ===== Type ===== */
  .display {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 300;
    letter-spacing: -0.015em;
    line-height: 0.92;
    text-wrap: balance;
  }
  .display em { font-style: italic; font-weight: 400; color: var(--terra); }
  .roman {
    font-family: "Marcellus", serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1;
  }
  .sc {
    font-family: "Marcellus SC", serif;
    letter-spacing: 0.18em;
    font-size: 12px;
    line-height: 1.3;
  }
  .hand {
    font-family: "Pinyon Script", serif;
    color: var(--terra);
    letter-spacing: 0;
    font-style: normal;
  }

  /* ===== Layout primitives ===== */
  .full { width: 100vw; position: relative; }
  .hold { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
  .hold-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  /* ===== Top nav ===== */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: center; padding: 22px 40px;
    color: var(--bone);
    pointer-events: none;
    transition: padding .4s ease;
  }
  .nav .center, .nav .cta { mix-blend-mode: difference; }
  .nav::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 260px;
    background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.22) 35%, rgba(0,0,0,0.09) 70%, transparent 100%);
    pointer-events: none;
    z-index: -1;
  }
  .nav > * { pointer-events: auto; }
  .nav .brand {
    font-family: "Marcellus", serif;
    font-size: 18px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: inline-flex; align-items: center;
    text-decoration: none; color: inherit;
  }
  .nav .brand img {
    display: block; height: 168px; width: auto;
  }
  .nav .center {
    text-align: center;
    font-family: "Marcellus SC", serif;
    font-size: 11px;
    letter-spacing: 0.28em;
  }
  .nav .center .dot { display: inline-block; width: 4px; height: 4px; border-radius: 99px; background: currentColor; vertical-align: middle; margin: 0 12px; transform: translateY(-2px); }
  .nav .cta {
    justify-self: end;
    font-family: "Marcellus SC", serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    color: inherit; text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
  }
  .nav .cta::after { content: " →"; }

  /* ===== Sticky chapter HUD ===== */
  .hud {
    position: fixed; top: 50%; right: 28px; z-index: 80;
    transform: translateY(-50%);
    display: flex; flex-direction: column; gap: 14px;
    color: var(--ink); mix-blend-mode: difference;
    pointer-events: none;
    opacity: 0; transition: opacity .6s ease;
  }
  body.scrolled .hud { opacity: 1; }
  .hud .chap {
    display: flex; align-items: center; gap: 12px;
    font-family: "Marcellus SC", serif;
    font-size: 10px; letter-spacing: 0.24em;
    color: rgba(244,236,223,0.45);
    transition: color .4s ease;
  }
  .hud .chap .bar { display: block; width: 24px; height: 1px; background: currentColor; transition: width .4s ease; }
  .hud .chap.active { color: rgba(244,236,223,1); }
  .hud .chap.active .bar { width: 56px; background: var(--terra); }

  /* ===== HERO / COVER ===== */
  .hero {
    position: relative;
    height: 100svh;
    min-height: 720px;
    overflow: hidden;
    background: var(--night);
    color: var(--bone);
  }
  .hero .reel { position: absolute; inset: 0; }
  .hero .reel .frame {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 2.4s ease;
  }
  .hero .reel .frame.on { opacity: 1; }
  .hero .reel .frame img,
  .hero .reel .frame video {
    width: 100%; height: 100%; object-fit: cover;
    animation: kenburns 18s ease-in-out infinite alternate;
    will-change: transform;
  }
  @keyframes kenburns {
    0%   { transform: scale(1.04) translate(-1%, 1%); }
    100% { transform: scale(1.14) translate(2%, -2%); }
  }
  .hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 50% 100%, rgba(0,0,0,0.55), transparent 70%),
      linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
  }
  .hero .stage {
    position: relative; z-index: 2; height: 100%;
    display: grid; grid-template-rows: 1fr auto;
    padding: 120px 56px 56px;
  }
  .hero .crest {
    align-self: center; justify-self: center;
    text-align: center;
  }
  .hero .crest .issue {
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.4em;
    opacity: 0.85; margin-bottom: 28px;
  }
  .hero h1 {
    margin: 0;
    font-size: clamp(64px, 11vw, 168px);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 0.92;
  }
  .hero h1 .l1 { display: block; }
  .hero h1 .l2 { display: block; font-style: italic; color: var(--bone); font-weight: 400; }
  .hero h1 .hand {
    font-family: "Pinyon Script", serif;
    color: oklch(0.78 0.10 45);
    font-size: 0.78em;
    line-height: 1;
    display: inline-block;
    transform: translate(-12px, 18px) rotate(-4deg);
    font-weight: 400;
  }
  .hero .crest .sub {
    margin-top: 36px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: clamp(20px, 1.6vw, 26px);
    font-weight: 300;
    letter-spacing: 0.01em;
    max-width: 36ch;
    margin-left: auto; margin-right: auto;
    opacity: 0.9;
  }
  .hero .foot {
    display: grid; grid-template-columns: 1fr auto 1fr;
    align-items: end; gap: 24px;
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.24em;
  }
  .hero .foot .left { opacity: 0.85; }
  .hero .foot .right { text-align: right; opacity: 0.85; }
  .hero .scroll-cue {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    font-family: "Marcellus SC", serif;
    font-size: 10px; letter-spacing: 0.32em;
  }
  .hero .scroll-cue .line {
    width: 1px; height: 60px; background: linear-gradient(180deg, transparent, currentColor);
    animation: drip 2.4s ease-in-out infinite;
    transform-origin: top;
  }
  @keyframes drip { 0% { transform: scaleY(0.3); } 60% { transform: scaleY(1); } 100% { transform: scaleY(0.3); } }
  .hero .reel-dots {
    position: absolute; right: 28px; top: 50%;
    display: flex; flex-direction: column; gap: 10px;
    transform: translateY(-50%);
    z-index: 3;
  }
  .hero .reel-dots span {
    width: 18px; height: 1px; background: rgba(244,236,223,0.4);
    transition: background .4s ease, width .4s ease;
  }
  .hero .reel-dots span.on { background: var(--bone); width: 30px; }

  /* ===== Folio / chapter divider ===== */
  .folio {
    padding: 96px 0 72px;
    text-align: center;
    background: var(--bone);
  }
  .folio .ornament {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    color: var(--terra); margin-bottom: 28px;
  }
  .folio .ornament::before, .folio .ornament::after {
    content: ""; flex: 0 0 80px; height: 1px; background: currentColor; opacity: 0.4;
  }
  .folio .ornament .glyph {
    width: 8px; height: 8px; transform: rotate(45deg);
    border: 1px solid currentColor;
  }
  .folio .num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic; font-weight: 400;
    font-size: 28px; color: var(--terra);
    margin-bottom: 10px;
  }
  .folio .title {
    font-family: "Marcellus", serif;
    font-size: 13px; letter-spacing: 0.42em;
    text-transform: uppercase;
  }
  .folio .lede {
    margin: 36px auto 0;
    max-width: 560px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 300;
    color: var(--ink);
    text-wrap: balance;
  }

  /* ===== Generic scroll reveal ===== */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease, transform 1.2s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.delay-1 { transition-delay: .12s; }
  .reveal.delay-2 { transition-delay: .24s; }
  .reveal.delay-3 { transition-delay: .36s; }

  /* ===== CHAPTER 1 — ARRIVAL: pinned half + scroll panels ===== */
  .pin-split {
    position: relative;
    background: var(--night);
    color: var(--bone);
  }
  .pin-split .rail { display: grid; grid-template-columns: 1fr 1fr; }
  .pin-split .stick {
    position: sticky; top: 0;
    height: 100svh;
    overflow: hidden;
  }
  .pin-split .stick .layer {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.2s ease, transform 1.2s ease;
  }
  .pin-split .stick .layer.on { opacity: 1; }
  .pin-split .stick img,
  .pin-split .stick video {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.06);
    animation: kenburns 18s ease-in-out infinite alternate;
  }
  .pin-split .stick::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
  }
  .pin-split .panels { display: flex; flex-direction: column; }
  .pin-split .panels .panel {
    min-height: 100svh;
    display: flex; align-items: center;
    padding: 100px 8vw;
  }
  .pin-split .panels .panel h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 1;
    margin: 0 0 20px;
    text-wrap: balance;
  }
  .pin-split .panels .panel h2 em { font-style: italic; color: oklch(0.78 0.10 45); font-weight: 400; }
  .pin-split .panels .panel p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 38ch;
    color: oklch(0.92 0.02 70 / 0.88);
    margin: 0;
  }
  .pin-split .panels .panel .lab {
    font-family: "Marcellus SC", serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    color: oklch(0.78 0.10 45);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .pin-split .panels .panel .lab .num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic; font-size: 24px; line-height: 1;
    color: oklch(0.85 0.10 45);
  }

  /* ===== CHAPTER 2 — TIME OF DAY REEL ===== */
  .reel-vert { position: relative; }
  .reel-vert .moment {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 640px;
    overflow: hidden;
    color: var(--bone);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .reel-vert .moment .bg { position: absolute; inset: 0; }
  .reel-vert .moment .bg img,
  .reel-vert .moment .bg video {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.08);
    will-change: transform;
  }
  .reel-vert .moment::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 25%, transparent 60%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
  }
  .reel-vert .moment .copy {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 0 8vw 14vh;
    display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: end;
  }
  .reel-vert .moment .copy .clock {
    font-family: "Cormorant Garamond", serif;
    font-style: italic; font-weight: 400;
    font-size: clamp(72px, 10vw, 160px);
    line-height: 0.88;
    color: oklch(0.85 0.10 45);
  }
  .reel-vert .moment .copy .text {
    max-width: 56ch;
    margin-bottom: 18px;
  }
  .reel-vert .moment .copy .lab {
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.36em;
    margin-bottom: 14px;
    color: oklch(0.85 0.10 45);
  }
  .reel-vert .moment .copy h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    margin: 0 0 14px;
    text-wrap: balance;
  }
  .reel-vert .moment .copy h3 em { font-style: italic; color: oklch(0.85 0.10 45); font-weight: 400; }
  .reel-vert .moment .copy .body {
    font-family: "Spectral", serif;
    font-size: 17px; line-height: 1.55; max-width: 44ch;
    color: rgba(244,236,223,0.85);
  }
  .reel-vert .moment .stamp {
    position: absolute; top: 36px; right: 40px;
    font-family: "Marcellus SC", serif;
    font-size: 10px; letter-spacing: 0.32em;
    color: rgba(244,236,223,0.7);
  }

  /* ===== CHAPTER 3 — ROOMS HORIZONTAL ===== */
  .rooms-h {
    position: relative;
    display: flex;
    width: max-content;
    height: 100%;
    background: var(--night);
    will-change: transform;
  }
  .rooms-h .room-card {
    flex: 0 0 100vw;
    position: relative;
    height: 100%;
    color: var(--bone);
    overflow: hidden;
  }
  .rooms-h .room-card .bg { position: absolute; inset: 0; }
  .rooms-h .room-card .bg img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.06);
    animation: kenburns 22s ease-in-out infinite alternate;
  }
  .rooms-h .room-card::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 55%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
  }
  .rooms-h .room-card .meta {
    position: absolute; top: 56px; left: 56px;
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.32em;
    color: rgba(244,236,223,0.85);
    display: flex; gap: 14px; align-items: center;
  }
  .rooms-h .room-card .meta .roman-num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic; font-size: 20px; color: oklch(0.85 0.10 45);
  }
  .rooms-h .room-card .copy {
    position: absolute; left: 56px; right: 56px; bottom: 56px;
    display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end;
  }
  .rooms-h .room-card .copy h3 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(60px, 8vw, 128px);
    line-height: 0.9;
    letter-spacing: -0.015em;
  }
  .rooms-h .room-card .copy h3 em { font-style: italic; color: oklch(0.85 0.10 45); font-weight: 400; }
  .rooms-h .room-card .copy .desc {
    font-size: 17px;
    max-width: 52ch;
    color: rgba(244,236,223,0.88);
    margin: 0;
  }
  .rooms-h .room-card .copy .pills {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px;
  }
  .rooms-h .room-card .copy .pills span {
    font-family: "Marcellus SC", serif;
    font-size: 10px; letter-spacing: 0.22em;
    padding: 8px 12px;
    border: 1px solid rgba(244,236,223,0.4);
    border-radius: 99px;
    color: rgba(244,236,223,0.92);
  }
  .rooms-h .room-card .copy .num-big {
    font-family: "Cormorant Garamond", serif;
    font-style: italic; font-weight: 300;
    font-size: clamp(120px, 16vw, 280px);
    line-height: 0.85;
    color: oklch(0.78 0.10 45 / 0.7);
    margin: 0;
  }
  .rooms-h-shell {
    position: relative;
    background: var(--night);
    height: 300svh; /* one viewport of scroll per room; JS sets exact from card count */
  }
  .rooms-h-sticky {
    position: sticky; top: 0;
    height: 100svh; min-height: 720px;
    overflow: hidden;
  }
  .rooms-h-shell .ctrl {
    position: absolute; bottom: 36px; right: 56px; z-index: 5;
    display: flex; gap: 12px; align-items: center;
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.28em;
    color: rgba(244,236,223,0.8);
  }
  .rooms-h-shell .ctrl button {
    width: 44px; height: 44px;
    border: 1px solid rgba(244,236,223,0.4);
    background: transparent; color: inherit; cursor: pointer;
    border-radius: 99px;
    display: flex; align-items: center; justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px; line-height: 1;
    transition: background .25s ease, color .25s ease;
  }
  .rooms-h-shell .ctrl button:hover { background: var(--bone); color: var(--ink); }
  .rooms-h-shell .ctrl .pos { min-width: 48px; text-align: center; }

  /* ===== INCLUSIONS ===== */
  .inclusions {
    padding: 110px 0 130px;
    background: var(--bone);
    position: relative;
  }
  .inclusions .head { text-align: center; margin-bottom: 56px; }
  .inclusions .head .num {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    color: var(--terra); font-size: 24px; margin-bottom: 8px;
  }
  .inclusions .head .title {
    font-family: "Marcellus", serif;
    letter-spacing: 0.32em; text-transform: uppercase;
    font-size: 13px;
  }
  .inclusions .grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .inclusions .item {
    padding: 36px 14px; text-align: center;
    border-right: 1px solid var(--line);
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  .inclusions .item:last-child { border-right: 0; }
  .inclusions .item svg { width: 30px; height: 30px; stroke: var(--terra); fill: none; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
  .inclusions .item .lab {
    font-family: "Marcellus SC", serif;
    font-size: 12px; letter-spacing: 0.2em;
  }
  .inclusions .item .sub {
    font-family: "Cormorant Garamond", serif;
    font-style: italic; color: var(--ink-mute);
    font-size: 14px; line-height: 1.25;
  }
  @media (max-width: 980px) {
    .inclusions .grid { grid-template-columns: repeat(3, 1fr); }
    .inclusions .item { border-bottom: 1px solid var(--line); }
    .inclusions .item:nth-child(3n) { border-right: 0; }
  }

  /* ===== CHAPTER 4 — FAMILY ===== */
  .family-hero {
    position: relative;
    height: 100svh; min-height: 700px;
    overflow: hidden;
    background: var(--night);
    color: var(--bone);
  }
  .family-hero .bg { position: absolute; inset: 0; }
  .family-hero .bg video,
  .family-hero .bg img {
    width: 100%; height: 100%; object-fit: cover;
    will-change: transform;
  }
  .family-hero::after {
    content: ""; position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 30%, transparent 55%, rgba(0,0,0,0.85) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 50%);
    pointer-events: none;
  }
  .family-hero .copy {
    position: relative; z-index: 2;
    height: 100%;
    display: grid; grid-template-rows: auto 1fr auto;
    padding: 100px 56px 56px;
  }
  .family-hero .copy .stamp {
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.32em;
    color: oklch(0.85 0.10 45);
  }
  .family-hero .copy .center {
    display: flex; align-items: center;
    max-width: 18ch;
  }
  .family-hero .copy h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(56px, 8.5vw, 144px);
    line-height: 0.9;
    margin: 0;
  }
  .family-hero .copy h2 em { font-style: italic; color: oklch(0.85 0.10 45); font-weight: 400; }
  .family-hero .copy .credit {
    display: flex; gap: 28px; align-items: end; justify-content: space-between;
    flex-wrap: wrap;
  }
  .family-hero .copy .credit .quote {
    max-width: 52ch;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: clamp(22px, 1.8vw, 30px);
    line-height: 1.3;
    color: oklch(0.92 0.02 70 / 0.92);
  }
  .family-hero .copy .credit .attr {
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.28em;
    color: rgba(244,236,223,0.7);
  }
  .family-hero .play-btn {
    position: absolute; bottom: 56px; right: 56px;
    width: 96px; height: 96px;
    border-radius: 99px;
    background: rgba(244,236,223,0.92);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-family: "Marcellus SC", serif;
    font-size: 10px; letter-spacing: 0.24em;
    text-align: center;
    transition: transform .3s ease, background .3s ease;
    z-index: 3;
  }
  .family-hero .play-btn:hover { transform: scale(1.06); background: var(--bone); }
  .family-hero .play-btn .arrow { font-size: 20px; line-height: 1; margin-bottom: 4px; font-family: "Cormorant Garamond", serif; font-style: italic; }

  /* ===== Family stack (portraits) ===== */
  .family-stack {
    background: var(--bone);
    padding: 110px 0;
  }
  .family-stack .row {
    max-width: 1320px; margin: 0 auto;
    padding: 0 48px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  }
  .family-stack .person {
    display: flex; flex-direction: column; gap: 14px;
  }
  .family-stack .person .portrait {
    aspect-ratio: 4/5;
    background: var(--bone-3);
    overflow: hidden;
    position: relative;
  }
  .family-stack .person .portrait img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s ease;
  }
  .family-stack .person:hover .portrait img { transform: scale(1.04); }
  .family-stack .person .role {
    font-family: "Marcellus SC", serif;
    font-size: 10px; letter-spacing: 0.28em;
    color: var(--terra);
  }
  .family-stack .person .name {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: 36px;
    line-height: 1;
    margin: 0;
  }
  .family-stack .person .name em { font-style: italic; color: var(--terra); font-weight: 400; }
  .family-stack .person .bio {
    font-size: 15px; line-height: 1.55;
    color: var(--ink-soft);
    max-width: 32ch;
  }

  /* ===== CTA ===== */
  .cta-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--night);
    color: var(--bone);
    padding: 140px 0 96px;
  }
  .cta-hero .bg { position: absolute; inset: 0; }
  .cta-hero .bg img {
    width: 100%; height: 100%; object-fit: cover;
    animation: kenburns 24s ease-in-out infinite alternate;
  }
  .cta-hero::after {
    content: ""; position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(15,10,5,0.55) 0%, rgba(15,10,5,0.35) 40%, rgba(15,10,5,0.85) 100%);
    pointer-events: none;
  }
  .cta-hero .wrap {
    position: relative; z-index: 2;
    max-width: 980px; margin: 0 auto;
    padding: 0 48px;
    text-align: center;
  }
  .cta-hero .stamp {
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.4em;
    color: oklch(0.85 0.10 45);
    margin-bottom: 36px;
  }
  .cta-hero h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
    font-size: clamp(56px, 8vw, 128px);
    line-height: 0.92;
    margin: 0 0 22px;
  }
  .cta-hero h2 em { font-style: italic; color: oklch(0.85 0.10 45); font-weight: 400; }
  .cta-hero h2 .hand {
    font-family: "Pinyon Script", serif;
    color: oklch(0.85 0.10 45);
    font-size: 0.78em;
    line-height: 1; display: inline-block;
    transform: translateY(8px) rotate(-3deg);
    font-weight: 400;
  }
  .cta-hero .lede {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: clamp(20px, 1.6vw, 26px);
    max-width: 52ch;
    margin: 0 auto;
    color: rgba(244,236,223,0.88);
  }
  .cta-hero .open {
    margin-top: 36px;
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.32em;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .cta-hero .open .pip { width: 7px; height: 7px; border-radius: 99px; background: oklch(0.78 0.16 130); box-shadow: 0 0 0 4px oklch(0.78 0.16 130 / 0.25); }
  form.interest {
    margin-top: 60px;
    max-width: 720px;
    margin-left: auto; margin-right: auto;
    background: rgba(244,236,223,0.08);
    border: 1px solid rgba(244,236,223,0.2);
    backdrop-filter: blur(10px);
    padding: 36px;
    text-align: left;
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  }
  form.interest .full-w { grid-column: 1 / -1; }
  form.interest label {
    display: block;
    font-family: "Marcellus SC", serif;
    font-size: 10px; letter-spacing: 0.28em;
    margin-bottom: 8px;
    color: rgba(244,236,223,0.75);
  }
  form.interest input,
  form.interest textarea,
  form.interest select {
    width: 100%;
    background: transparent;
    border: 0; border-bottom: 1px solid rgba(244,236,223,0.4);
    color: var(--bone);
    padding: 8px 0 12px;
    font-family: "Spectral", serif;
    font-size: 16px; outline: none;
  }
  form.interest input::placeholder,
  form.interest textarea::placeholder { color: rgba(244,236,223,0.4); }
  form.interest input:focus,
  form.interest textarea:focus,
  form.interest select:focus { border-bottom-color: var(--terra); }
  form.interest textarea { resize: none; min-height: 80px; }
  form.interest button {
    grid-column: 1 / -1;
    background: var(--terra);
    color: var(--bone);
    border: 0;
    padding: 18px 24px;
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.28em;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 14px;
    transition: background .25s ease;
    margin-top: 8px;
  }
  form.interest button:hover { background: var(--terra-deep); }
  form.interest button .arrow {
    font-family: "Cormorant Garamond", serif;
    font-style: italic; font-size: 18px;
  }
  .thanks {
    display: none;
    margin-top: 36px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 22px;
    color: oklch(0.85 0.10 45);
  }
  .thanks.on { display: block; }

  /* ===== Footer ===== */
  footer {
    background: var(--night);
    color: rgba(244,236,223,0.7);
    padding: 80px 0 48px;
    border-top: 1px solid rgba(244,236,223,0.08);
  }
  footer .col {
    max-width: 1320px; margin: 0 auto;
    padding: 0 48px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  }
  footer .brand-mark {
    font-family: "Marcellus", serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 22px;
    color: var(--bone);
  }
  footer .brand-mark em { font-style: italic; color: var(--terra); text-transform: none; }
  footer .brand-mark img { display: block; height: 96px; width: auto; }
  footer h4 {
    font-family: "Marcellus SC", serif;
    font-size: 11px; letter-spacing: 0.24em;
    color: rgba(244,236,223,0.55);
    margin: 0 0 16px;
  }
  footer p, footer a {
    font-family: "Spectral", serif;
    font-size: 15px; line-height: 1.6;
    color: rgba(244,236,223,0.7);
    text-decoration: none;
    margin: 0 0 6px;
    display: block;
  }
  footer a:hover { color: var(--terra); }
  footer .end {
    max-width: 1320px; margin: 64px auto 0;
    padding: 24px 48px 0;
    border-top: 1px solid rgba(244,236,223,0.08);
    display: flex; justify-content: space-between;
    font-family: "Marcellus SC", serif;
    font-size: 10px; letter-spacing: 0.24em;
    color: rgba(244,236,223,0.4);
  }
  footer .credit {
    display: block;
    max-width: 1320px; margin: 20px auto 0;
    padding: 18px 48px 0;
    border-top: 1px solid rgba(244,236,223,0.06);
    text-align: center;
    font-family: "Marcellus SC", serif;
    font-size: 10px; letter-spacing: 0.28em;
    color: rgba(244,236,223,0.4);
  }
  footer .credit a {
    display: inline; font-family: inherit; font-size: inherit;
    letter-spacing: inherit; color: var(--terra);
    border-bottom: 1px solid rgba(184,92,47,0.45);
    margin: 0; padding-bottom: 1px;
  }
  footer .credit a:hover { color: var(--bone); border-color: var(--bone); }
  footer .credit .hand { font-size: 19px; letter-spacing: 0; vertical-align: -3px; margin: 0 2px; }

  /* ===== Mobile guard ===== */
  @media (max-width: 768px) {
    .nav { padding: 18px 22px; grid-template-columns: 1fr auto; }
    .nav .center { display: none; }
    .hud { display: none; }
    .hold, .hold-narrow { padding: 0 24px; }
    .pin-split .rail { grid-template-columns: 1fr; }
    .pin-split .stick { height: 70svh; }
    .pin-split .panels .panel { padding: 80px 24px; min-height: auto; }
    .reel-vert .moment::after { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 15%, rgba(0,0,0,0.5) 48%, rgba(0,0,0,0.92) 100%); }
    .reel-vert .moment .copy { grid-template-columns: 1fr; gap: 14px; padding: 72px 24px 10vh; background: linear-gradient(0deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.52) 45%, rgba(0,0,0,0.22) 75%, transparent 100%); }
    .reel-vert .moment .copy .clock { display: none; }
    .reel-vert .moment .copy h3 { font-size: clamp(30px, 8.5vw, 44px); text-shadow: 0 1px 10px rgba(0,0,0,0.95), 0 3px 30px rgba(0,0,0,0.8); }
    .reel-vert .moment .copy .body { font-size: 16px; line-height: 1.5; text-shadow: 0 1px 8px rgba(0,0,0,0.95), 0 2px 20px rgba(0,0,0,0.8); }
    .reel-vert .moment .copy .lab { font-size: 13px; letter-spacing: 0.28em; opacity: 1; color: oklch(0.92 0.09 45); text-shadow: 0 1px 10px rgba(0,0,0,0.98), 0 2px 24px rgba(0,0,0,0.9); }
    .rooms-h-shell { height: auto !important; }
    .rooms-h-sticky { position: relative; height: 100svh; overflow: hidden; }
    .rooms-h { width: 100%; height: 100%; overflow-x: scroll; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; transform: none !important; }
    .rooms-h .room-card { flex: 0 0 100vw; height: 100%; scroll-snap-align: start; }
    .rooms-h-shell .ctrl { position: relative; bottom: auto; right: auto; padding: 16px 24px; justify-content: center; background: var(--night); }
    .rooms-h .room-card .meta { top: 24px; left: 24px; }
    .rooms-h .room-card .copy { left: 24px; right: 24px; bottom: 24px; grid-template-columns: 1fr; gap: 16px; }
    .rooms-h .room-card .copy .num-big { font-size: 100px; }
    .family-hero .copy { padding: 80px 24px 24px; }
    .family-hero .play-btn { width: 72px; height: 72px; bottom: 24px; right: 24px; font-size: 9px; }
    .family-stack .row { grid-template-columns: 1fr 1fr; padding: 0 24px; gap: 18px; }
    .cta-hero .wrap { padding: 0 24px; }
    form.interest { grid-template-columns: 1fr; padding: 24px; }
    footer .col { grid-template-columns: 1fr 1fr; gap: 32px; padding: 0 24px; }
    footer .end { flex-direction: column; gap: 8px; padding: 24px 24px 0; }
  }


  /* ===== Conversion / form helpers ===== */
  form.interest .opt { opacity: 0.45; font-size: 9px; letter-spacing: 0.1em; }
  form.interest .hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .form-err { grid-column: 1 / -1; margin-top: 8px; font-family: "Spectral", serif; font-size: 13px; color: #ffb4a2; }
  footer .soon { display: block; margin: 0 0 6px; font-family: "Spectral", serif; font-size: 15px; line-height: 1.6; color: rgba(244,236,223,0.4); }

  /* ===== Essentials band ===== */
  .essentials { background: var(--bone-2); color: var(--ink); padding: 96px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .essentials .inner { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
  .essentials .eyebrow { font-family: "Marcellus SC", serif; font-size: 11px; letter-spacing: 0.32em; color: var(--ink-mute); text-transform: uppercase; }
  .essentials h2 { font-family: "Cormorant Garamond", serif; font-weight: 300; font-size: clamp(36px, 5vw, 64px); line-height: 0.96; margin: 14px 0 48px; letter-spacing: -0.015em; }
  .essentials h2 em { font-style: italic; color: var(--terra); }
  .essentials .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 56px; }
  .essentials .fact .k { font-family: "Marcellus SC", serif; font-size: 11px; letter-spacing: 0.26em; color: var(--terra-deep); text-transform: uppercase; margin-bottom: 10px; }
  .essentials .fact .v { font-family: "Spectral", serif; font-size: 17px; line-height: 1.55; color: var(--ink-soft); }
  .essentials .fact .v strong { font-weight: 500; color: var(--ink); }
  @media (max-width: 860px) { .essentials { padding: 64px 0; } .essentials .grid { grid-template-columns: 1fr; gap: 30px; } }

  /* ===== Headline legibility over photography ===== */
  .hero .crest h1, .hero .crest .issue, .hero .crest .sub,
  .reel-vert .moment .copy h2 { text-shadow: 0 2px 28px rgba(0,0,0,0.32); }
  .hero .crest .hand, .cta-hero h2 .hand { text-shadow: 0 1px 16px rgba(0,0,0,0.45); }

  /* ===== Motion / accessibility ===== */
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    .pin-split .stick img, .pin-split .stick video,
    .rooms-h .room-card .bg img, .reel-vert .moment .bg img { animation: none !important; transform: none !important; }
  }

/* ===== Audience nav ===== */
.audience-nav {
  display: flex; gap: 20px; align-items: center;
  font-family: "Marcellus SC", serif;
  font-size: 10px; letter-spacing: 0.28em;
  mix-blend-mode: difference;
}
.audience-nav a {
  color: inherit; text-decoration: none;
  opacity: 0.7; transition: opacity 0.2s;
}
.audience-nav a:hover { opacity: 1; }
.audience-nav a.active { opacity: 1; border-bottom: 1px solid currentColor; }
@media (max-width: 768px) {
  .audience-nav { display: none; }
}

/* ===== Landing page shared styles ===== */
.lp-hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: flex-end;
  color: var(--bone); overflow: hidden;
}
.lp-hero__bg { position: absolute; inset: 0; }
.lp-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.lp-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.lp-hero__copy {
  position: relative; z-index: 2;
  padding: 0 8vw 12vh; max-width: 900px;
}
.lp-hero__stamp {
  font-family: "Marcellus SC", serif; font-size: 11px;
  letter-spacing: 0.36em; color: oklch(0.85 0.10 45);
  margin-bottom: 20px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}
.lp-hero h1 {
  font-size: clamp(44px, 7vw, 96px); line-height: 0.92;
  font-weight: 300; margin: 0 0 24px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.lp-hero__sub {
  font-family: "Spectral", serif; font-size: 18px; line-height: 1.5;
  max-width: 48ch; color: rgba(244,236,223,0.9);
  text-shadow: 0 1px 12px rgba(0,0,0,0.8);
  margin: 0 0 32px;
}
.lp-hero__cta {
  display: inline-block;
  font-family: "Marcellus SC", serif; font-size: 12px; letter-spacing: 0.3em;
  color: var(--bone); border: 1px solid rgba(244,236,223,0.6);
  padding: 14px 28px; text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.lp-hero__cta:hover { background: var(--bone); color: var(--ink); }
.lp-brief { background: var(--night); color: var(--bone); padding: 80px 8vw; }
.lp-brief__inner { max-width: 680px; }
.lp-brief p { font-family: "Spectral", serif; font-size: 20px; line-height: 1.65; }
.lp-specifics { background: var(--bone); }
.lp-guide {
  background: var(--night); color: var(--bone);
  padding: 100px 8vw;
}
.lp-guide__inner {
  display: grid; grid-template-columns: 280px 1fr; gap: 80px;
  align-items: start; max-width: 1000px;
}
.lp-guide__photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 2px;
}
.lp-guide__bio h2 {
  font-family: "Cormorant Garamond", serif; font-weight: 300;
  font-size: clamp(40px, 5vw, 72px); line-height: 1; margin: 12px 0 24px;
}
.lp-guide__bio p {
  font-family: "Spectral", serif; font-size: 18px; line-height: 1.65;
  color: rgba(244,236,223,0.88); max-width: 52ch;
}
.lp-faq { background: var(--bone-2); padding: 100px 8vw; }
.lp-faq__inner { max-width: 800px; margin: 0 auto; }
.lp-faq__inner h2 { font-family: "Cormorant Garamond", serif; font-weight: 300; font-size: clamp(36px,5vw,64px); line-height:0.96; margin: 14px 0 56px; }
.lp-faq__list { display: flex; flex-direction: column; gap: 0; }
.lp-faq__item { border-top: 1px solid var(--line); padding: 0; }
.lp-faq__item:last-child { border-bottom: 1px solid var(--line); }
.lp-faq__item summary {
  font-family: "Marcellus SC", serif; font-size: 13px; letter-spacing: 0.2em;
  padding: 22px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.lp-faq__item summary::after { content: "+"; font-family: serif; font-size: 20px; }
.lp-faq__item[open] summary::after { content: "\2212"; }
.lp-faq__item p {
  font-family: "Spectral", serif; font-size: 16px; line-height: 1.65;
  padding: 0 0 24px; margin: 0; color: var(--ink-soft);
}
@media (max-width: 768px) {
  .lp-hero__copy { padding: 0 24px 10vh; }
  .lp-brief { padding: 60px 24px; }
  .lp-brief p { font-size: 17px; }
  .lp-guide { padding: 60px 24px; }
  .lp-guide__inner { grid-template-columns: 1fr; gap: 32px; }
  .lp-guide__photo { max-width: 200px; aspect-ratio: 1; }
  .lp-faq { padding: 60px 24px; }
}
