  :root {
    --porcelain: #ffffff;
    --white: #ffffff;
    --faint: #f6f6f4;
    --mist: #e7e7e4;
    --line: #d4d4d0;
    --ink: #111111;
    --slate: #66665f;
    --charcoal: #1b1b1b;
    --rule: #8e8e88;
    --on-dark: #f4f4f2;
    --on-dark-soft: #b4b4ae;
    --gutter: max(24px, calc(50% - 600px));
    --radius: 2px;
    color-scheme: light;
  }
  /* Single light theme by design: the page renders white in every OS/browser theme. */

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Manrope', 'Helvetica Neue', Arial, sans-serif; font-size: 17px; line-height: 1.65; color: var(--ink); background: var(--porcelain); -webkit-font-smoothing: antialiased; }
  h1, h2, h3, .serif { font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; font-weight: 500; letter-spacing: -0.01em; text-wrap: balance; line-height: 1.1; }
  h2 { font-size: clamp(36px, 3.8vw, 52px); }
  h3 { font-size: 30px; font-weight: 600; line-height: 1.2; }
  p { max-width: 64ch; }
  a { color: inherit; }
  img { max-width: 100%; display: block; }
  .eyebrow { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rule); }
  .lede { font-size: 20px; line-height: 1.6; color: var(--slate); }
  section { padding: 112px var(--gutter); }
  .band-dark { background: var(--charcoal); color: var(--on-dark); }
  .band-dark .lede, .band-dark .muted { color: var(--on-dark-soft); }
  .band-white { background: var(--faint); }
  .sec-head { display: grid; gap: 18px; margin-bottom: 64px; max-width: 780px; }

  .mock { background: var(--charcoal); color: var(--on-dark); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; padding: 8px var(--gutter); }
  .mock span { font-weight: 500; }

  .btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; letter-spacing: 0.02em; padding: 16px 26px; border-radius: var(--radius); text-decoration: none; border: 1px solid transparent; transition: background .15s ease, color .15s ease; }
  .btn:focus-visible, a:focus-visible, summary:focus-visible { outline: 2px solid var(--rule); outline-offset: 3px; }
  .btn-ink { background: var(--ink); color: var(--porcelain); }
  .btn-ink:hover { background: #333; color: var(--on-dark); }
  .btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
  .btn-ghost:hover { background: var(--mist); }
  .band-dark .btn-ink { background: var(--porcelain); color: var(--ink); }
  .band-dark .btn-ghost { border-color: rgba(244,244,242,.5); color: var(--on-dark); }
  .band-dark .btn-ghost:hover { background: rgba(244,244,242,.08); }

  /* header */
  header { background: var(--porcelain); color: var(--ink); padding: 26px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
  .wordmark { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 24px; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
  nav ul { display: flex; gap: 34px; list-style: none; font-size: 15px; font-weight: 500; }
  nav a { text-decoration: none; color: var(--slate); }
  nav a:hover { color: var(--ink); }
  .nav-cta { display: flex; align-items: center; gap: 28px; }
  .nav-cta .tel { text-decoration: none; font-weight: 600; font-size: 15px; }
  .nav-cta .btn { padding: 14px 22px; }

  /* hero */
  .hero { position: relative; isolation: isolate; overflow: hidden; color: var(--on-dark); padding: 120px var(--gutter) 140px; min-height: 780px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 80px; align-items: end; }
  .hero-bg { position: absolute; inset: 0; z-index: -2; background: #1b1b1b; }
  .hero-bg video, .hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05) brightness(.92); }
  .hero-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.68) 50%, rgba(0,0,0,.4) 100%), linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.5) 100%); }
  .hero .eyebrow { color: #ffffff; }
  .hero h1 { font-size: clamp(48px, 6.2vw, 92px); letter-spacing: -0.015em; line-height: 1.02; margin: 28px 0 28px; color: #ffffff; }
  .hero .lede { max-width: 30em; margin-bottom: 36px; color: #ffffff; }
  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
  .hero .btn-ink { background: #ffffff; color: #111; }
  .hero .btn-ink:hover { background: #e7e7e4; color: #111; }
  .hero .btn-ghost { border-color: #ffffff; color: #ffffff; }
  .hero .btn-ghost:hover { background: rgba(255,255,255,.12); }
  .hero-note { margin-top: 24px; font-size: 14px; color: #ffffff; }
  .hero-side { display: flex; justify-content: flex-end; }
  .report { width: 380px; max-width: 100%; background: #ffffff; color: #111; border-top: 2px solid #111; padding: 22px 24px 20px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
  .report .rh { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; }
  .report .rh strong { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
  .report .rh span { font-size: 13px; color: #66665f; font-variant-numeric: tabular-nums; }
  .report ul { list-style: none; display: grid; gap: 12px; }
  .report li { display: grid; grid-template-columns: 88px 1fr 86px; align-items: center; gap: 12px; font-size: 14px; }
  .report li b { font-weight: 600; }
  .gauge { height: 6px; background: #e7e7e4; border-radius: 3px; overflow: hidden; }
  .gauge i { display: block; height: 100%; background: #111; }
  .report li em { font-style: normal; font-size: 13px; color: #66665f; text-align: right; }
  .report .rf { margin-top: 14px; padding-top: 14px; border-top: 1px solid #d4d4d0; font-size: 14px; color: #66665f; }

  /* systems */
  .systems { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .system { display: grid; gap: 16px; padding-top: 24px; border-top: 1px solid var(--line); grid-template-rows: auto 1fr auto; }
  .system .title { display: flex; align-items: baseline; gap: 14px; }
  .system .num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px; font-weight: 500; color: var(--rule); line-height: 1; }
  .system p { font-size: 17px; color: var(--slate); }
  .system figure { margin-top: 8px; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius); background: var(--mist); }
  .system figure img { width: 100%; height: 100%; object-fit: cover; }
  .system figure.contain img { object-fit: contain; padding: 14px; }

  /* profiles */
  .profiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .profile { border: 1px solid rgba(244,244,242,.18); border-radius: var(--radius); padding: 36px 32px; display: grid; gap: 16px; align-content: start; }
  .profile h3 { font-size: 28px; }
  .profile p { font-size: 17px; color: var(--on-dark-soft); }
  .profile .first { margin-top: 8px; padding-top: 16px; border-top: 1px solid rgba(244,244,242,.18); font-size: 15px; color: var(--on-dark); }
  .profile .first b { display: block; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--rule); margin-bottom: 6px; }

  /* phases */
  .phases { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .phase { display: grid; gap: 14px; align-content: start; }
  .phase .marker { display: flex; align-items: center; gap: 0; }
  .phase .marker::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--rule); flex: none; }
  .phase .marker::after { content: ""; flex: 1; height: 1px; background: var(--line); }
  .phase .wk { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--rule); }
  .phase p { font-size: 16px; color: var(--slate); }
  .weekly { margin-top: 64px; padding: 22px 28px; background: var(--mist); border-radius: var(--radius); font-size: 16px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; color: var(--slate); }
  .weekly b { font-weight: 600; color: var(--ink); }

  /* founder */
  .founder { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 96px; align-items: center; }
  .portrait-wrap { position: relative; padding: 0 40px 24px 0; }
  .portrait-wrap::before { content: ""; position: absolute; top: 0; right: 0; bottom: 24px; left: 40px; border: 1px solid var(--rule); }
  .portrait { position: relative; margin-top: 24px; aspect-ratio: 420/540; background: var(--mist); display: grid; place-items: center; text-align: center; padding: 32px; }
  .portrait .init { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 140px; font-weight: 500; letter-spacing: -.04em; color: var(--rule); line-height: 1; }
  .portrait small { display: block; margin-top: 18px; font-size: 14px; color: var(--slate); max-width: 300px; }
  .founder h2 { margin: 6px 0 4px; }
  .founder p + p { margin-top: 14px; }
  .founder .ph { color: var(--rule); font-size: 14px; margin-top: 14px; }
  .quote { margin: 26px 0 0; padding: 6px 0 6px 22px; border-left: 2px solid var(--rule); font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 28px; line-height: 1.35; color: var(--ink); }

  /* leave with */
  .leave { display: grid; grid-template-columns: 480px 1fr; gap: 96px; align-items: start; }
  .leave ul { list-style: none; border-top: 1px solid rgba(244,244,242,.18); }
  .leave li { padding: 22px 0; border-bottom: 1px solid rgba(244,244,242,.18); display: grid; grid-template-columns: 7px 1fr; gap: 18px; align-items: start; }
  .leave li::before { content: ""; width: 7px; height: 7px; background: var(--rule); margin-top: 10px; }
  .leave li b { display: block; font-weight: 600; font-size: 17px; margin-bottom: 4px; }
  .leave li span { color: var(--on-dark-soft); font-size: 14px; }

  /* stories */
  .stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .story { padding: 30px 28px; border: 1px dashed var(--rule); border-radius: var(--radius); display: grid; gap: 18px; align-content: start; }
  .story .eyebrow { color: var(--slate); }
  .story p { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 24px; line-height: 1.35; color: var(--slate); }
  .story footer { font-size: 14px; color: var(--slate); }

  /* investment */
  .invest { display: grid; grid-template-columns: 1fr 520px; gap: 96px; align-items: start; }
  .price-card { background: var(--white); border: 1px solid var(--line); border-top: 2px solid var(--rule); border-radius: var(--radius); padding: 32px; display: grid; gap: 20px; }
  .price-card .big { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px; font-weight: 500; letter-spacing: -.02em; font-variant-numeric: tabular-nums; display: flex; align-items: baseline; gap: 12px; }
  .price-card .big small { font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--slate); letter-spacing: 0; }
  .price-card ul { list-style: none; display: grid; gap: 10px; }
  .price-card li { display: grid; grid-template-columns: 6px 1fr; gap: 14px; font-size: 16px; color: var(--slate); }
  .price-card li::before { content: ""; width: 6px; height: 6px; background: var(--rule); margin-top: 10px; }
  .price-card .ph { color: var(--rule); font-size: 14px; }
  .free { padding: 24px 28px; background: var(--mist); border-radius: var(--radius); display: grid; gap: 8px; margin-top: 18px; }
  .free b { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 26px; }
  .free p { font-size: 14px; color: var(--slate); }

  /* faq */
  .faq { max-width: 860px; }
  .faq details { border-top: 1px solid var(--line); }
  .faq details:last-child { border-bottom: 1px solid var(--line); }
  .faq summary { cursor: pointer; list-style: none; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 28px; padding: 24px 48px 24px 0; position: relative; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 34px; color: var(--rule); font-weight: 500; transition: transform .2s ease; }
  .faq details[open] summary::after { transform: rotate(45deg); }
  .faq details p { padding: 0 0 24px; color: var(--slate); font-size: 17px; max-width: 700px; }

  /* booking */
  .final { display: grid; grid-template-columns: 1fr 460px; gap: 96px; align-items: start; }
  .final h2 { margin-top: 22px; }
  .contact { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 28px; font-size: 17px; }
  .contact dt { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--rule); font-weight: 600; margin-bottom: 6px; }
  .contact dd a { text-decoration: none; }
  .contact .wide { grid-column: 1 / -1; }

  footer.site { padding: 40px var(--gutter); background: var(--porcelain); color: var(--slate); font-size: 14px; display: grid; gap: 20px; border-top: 1px solid var(--line); }
  footer.site .row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
  footer.site ul { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; font-size: 15px; font-weight: 500; }
  footer.site a { text-decoration: none; }
  footer.site a:hover { text-decoration: underline; }
  footer.site p { max-width: none; }

  @media (max-width: 1100px) {
    .leave, .invest, .final { grid-template-columns: 1fr; gap: 48px; }
  }
  @media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; padding-top: 72px; min-height: 0; gap: 48px; }
    .hero-side { justify-content: flex-start; }
    .systems, .profiles, .stories { grid-template-columns: 1fr; }
    .phases { grid-template-columns: 1fr 1fr; }
    .founder { grid-template-columns: 1fr; gap: 48px; }
    nav ul { display: none; }
    section { padding: 72px var(--gutter); }
  }
  @media (max-width: 560px) {
    .phases { grid-template-columns: 1fr; }
    .contact { grid-template-columns: 1fr; }
    .nav-cta .tel { display: none; }
    .report { width: 100%; }
  }
  @media (prefers-reduced-motion: reduce) { .btn { transition: none; } html { scroll-behavior: auto; } }
  .no-motion .hero-video { display: none; }
  .no-motion .hero-bg { background: url("../img/hero-poster.webp") center / cover no-repeat; }

  /* ---------- shared: nav toggle ---------- */
  .nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 12px; font: inherit; font-weight: 600; cursor: pointer; }
  nav a[aria-current="page"] { color: var(--ink); }
  @media (max-width: 960px) {
    .nav-toggle { display: inline-flex; }
    nav { order: 3; width: 100%; }
    nav ul { display: none; flex-direction: column; gap: 14px; padding: 14px 0 6px; border-top: 1px solid var(--line); }
    header.open nav ul { display: flex; }
  }

  /* ---------- inner pages ---------- */
  .page-head { padding: 88px var(--gutter) 64px; border-bottom: 1px solid var(--line); display: grid; gap: 18px; max-width: none; }
  .page-head h1 { font-size: clamp(44px, 5.2vw, 72px); letter-spacing: -0.015em; line-height: 1.04; max-width: 16em; }
  .page-head .lede { max-width: 36em; }
  .page-head.dark { background: var(--charcoal); color: var(--on-dark); border-bottom: 0; }
  .page-head.dark .lede { color: var(--on-dark-soft); }
  .crumbs { font-size: 13px; color: var(--slate); display: flex; gap: 8px; }
  .crumbs a { text-decoration: none; }
  .crumbs a:hover { text-decoration: underline; }
  .prose { max-width: 66ch; display: grid; gap: 18px; }
  .prose h2 { font-size: 36px; margin-top: 24px; }
  .prose h3 { font-size: 26px; margin-top: 12px; }
  .prose p, .prose li { color: var(--slate); }
  .prose ul { padding-left: 18px; display: grid; gap: 8px; }
  .prose .note { color: var(--rule); font-size: 14px; }
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .cell { display: grid; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); align-content: start; }
  .cell h3 { font-size: 26px; }
  .cell p { font-size: 16px; color: var(--slate); }
  .side-figure { aspect-ratio: 4/5; overflow: hidden; background: var(--mist); position: relative; }
  .side-figure img { width: 100%; height: 100%; object-fit: cover; }
  .side-figure.contain img { object-fit: contain; padding: 24px; }
  .sys-nav { display: flex; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; width: max-content; max-width: 100%; }
  .sys-nav a { padding: 12px 22px; text-decoration: none; font-size: 14px; font-weight: 600; color: var(--slate); border-right: 1px solid var(--line); }
  .sys-nav a:last-child { border-right: 0; }
  .sys-nav a[aria-current="page"] { background: var(--ink); color: var(--white); }
  .spec { list-style: none; border-top: 1px solid var(--line); }
  .spec li { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .spec li b { font-weight: 600; }
  .spec li span { color: var(--slate); }
  .sources { font-size: 14px; color: var(--slate); display: grid; gap: 6px; }
  .sources a { word-break: break-all; }
  .cta-band { background: var(--charcoal); color: var(--on-dark); padding: 96px var(--gutter); display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
  .cta-band h2 { font-size: clamp(34px, 4vw, 52px); }
  .cta-band p { color: var(--on-dark-soft); margin-top: 12px; }
  .cta-band .btn-ink { background: var(--white); color: #111; }
  .cta-band .btn-ghost { border-color: rgba(244,244,242,.5); color: var(--on-dark); }
  .week-table { width: 100%; border-collapse: collapse; font-size: 15px; }
  .week-table th, .week-table td { text-align: left; padding: 14px 16px 14px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
  .week-table th { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--rule); font-weight: 600; }
  .week-table td:first-child { font-weight: 600; white-space: nowrap; }
  .week-table td { color: var(--slate); }
  .week-table td:first-child { color: var(--ink); }
  .table-wrap { overflow-x: auto; }
  .posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .post { border-top: 1px solid var(--line); padding-top: 24px; display: grid; gap: 12px; align-content: start; }
  .post h3 { font-size: 30px; }
  .post h3 a { text-decoration: none; }
  .post h3 a:hover { text-decoration: underline; }
  .post .meta { font-size: 13px; color: var(--slate); }
  .post p { font-size: 16px; color: var(--slate); }
  .form { display: grid; gap: 18px; max-width: 560px; }
  .field { display: grid; gap: 8px; }
  .field label { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--rule); }
  .field input, .field textarea { font: inherit; font-size: 16px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); width: 100%; }
  .field input:focus, .field textarea:focus { outline: 2px solid var(--ink); outline-offset: 1px; border-color: var(--ink); }
  .field textarea { min-height: 120px; resize: vertical; }
  .form .fine { font-size: 13px; color: var(--slate); }
  @media (max-width: 960px) {
    .two-col, .three-col, .posts { grid-template-columns: 1fr; gap: 40px; }
    .cta-band { grid-template-columns: 1fr; }
    .spec li { grid-template-columns: 1fr; gap: 4px; }
  }

  /* ---------- services: offer cards ---------- */
  .offers { display: grid; }
  .offer { display: grid; grid-template-columns: 360px 1fr; gap: 56px; padding: 48px 0; border-top: 1px solid var(--line); align-items: start; }
  .offer:last-child { border-bottom: 1px solid var(--line); }
  .offer figure { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
  .offer figure img { width: 100%; height: 100%; object-fit: cover; }
  .offer figure.contain img { object-fit: contain; padding: 22px; }
  .offer .body { display: grid; gap: 14px; align-content: start; }
  .offer h3 { font-size: 34px; }
  .offer h3 a { text-decoration: none; }
  .offer h3 a:hover { text-decoration: underline; }
  .offer > .body > p { font-size: 17px; color: var(--slate); }
  .offer .incl-label { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--rule); margin-top: 6px; }
  .offer .incl { list-style: none; display: grid; gap: 9px; }
  .offer .incl li { display: grid; grid-template-columns: 6px 1fr; gap: 14px; font-size: 16px; color: var(--slate); }
  .offer .incl li::before { content: ""; width: 6px; height: 6px; background: var(--rule); margin-top: 9px; }
  .offer .actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 10px; }
  .offer .actions .btn { padding: 13px 22px; }
  .offer.flagship { background: var(--faint); padding: 48px; border: 1px solid var(--line); border-top-width: 2px; border-top-color: var(--ink); margin-bottom: 8px; }
  .offer.flagship h3 { font-size: 40px; }
  @media (max-width: 960px) {
    .offer { grid-template-columns: 1fr; gap: 28px; }
    .offer.flagship { padding: 32px; }
  }
