    :root {
      --bg: #ffffff;
      --surface: #ffffff;
      --surface-strong: #f8f3ea;
      --surface-dark: #efe6d7;
      --text: #241c13;
      --muted: #7d7468;
      --border: #e8ddc9;
      --sage: #c5a356;
      --sage-deep: #98752c;
      --terracotta: #d9c18c;
      --terracotta-deep: #b99749;
      --shadow: 0 24px 64px rgba(36, 28, 19, 0.07);
      --shadow-soft: 0 12px 28px rgba(36, 28, 19, 0.055);
      --gold-line: linear-gradient(90deg, transparent, rgba(197, 163, 86, 0.72), transparent);
      --radius-xl: 24px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 12px;
      --container: 1240px;
      --space-1: 0.25rem;
      --space-2: 0.5rem;
      --space-3: 0.75rem;
      --space-4: 1rem;
      --space-5: 1.25rem;
      --space-6: 1.5rem;
      --space-8: 2rem;
      --space-10: 2.5rem;
      --space-12: 3rem;
      --space-16: 4rem;
      --space-20: 5rem;
      --space-24: 6rem;
      --space-28: 7rem;
      --rhythm: clamp(4rem, 8vw, 7rem);
      --rhythm-tight: clamp(2.5rem, 5vw, 4rem);
      --font-display: "Cormorant Garamond", serif;
      --font-body: "Jost", sans-serif;
      --mx: 50%;
      --my: 18%;
      --mx-num: 50;
      --my-num: 18;
    }

    body[data-theme="dark"] {
      --bg: #15130f;
      --surface: #1e1a14;
      --surface-strong: #2a241b;
      --surface-dark: #342b1f;
      --text: #fffaf1;
      --muted: #c7bba7;
      --border: rgba(232, 221, 201, 0.16);
      --sage: #d7ba70;
      --sage-deep: #f0d995;
      --terracotta: #bda16a;
      --terracotta-deep: #e2c987;
      --shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
      --shadow-soft: 0 16px 36px rgba(0, 0, 0, 0.2);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      background:
        linear-gradient(180deg, var(--bg) 0%, var(--bg) 50%, color-mix(in srgb, var(--bg) 82%, var(--surface-strong) 18%) 100%);
      color: var(--text);
      font-family: var(--font-body);
      line-height: 1.6;
      overflow-x: hidden;
      transition: background 220ms ease, color 220ms ease;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.8;
      z-index: 10;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.16) 43%, transparent 55%),
        radial-gradient(70rem 42rem at var(--mx) var(--my), rgba(197, 163, 86, 0.13), transparent 58%);
      mix-blend-mode: soft-light;
      opacity: 0.48;
      z-index: 11;
      transition: opacity 260ms ease;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

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

    button,
    input,
    textarea,
    select {
      font: inherit;
      color: inherit;
    }

    button {
      background: none;
      border: none;
      cursor: pointer;
    }

    ::selection {
      background: rgba(197, 163, 86, 0.24);
      color: var(--text);
    }

    .skip-link {
      position: absolute;
      left: 1rem;
      top: -3rem;
      z-index: 40;
      padding: 0.8rem 1rem;
      border-radius: 12px;
      background: var(--text);
      color: var(--surface);
      transition: top 180ms ease;
    }

    .skip-link:focus {
      top: 1rem;
    }

    .container {
      width: min(var(--container), calc(100% - 2rem));
      margin: 0 auto;
    }

    .site-topbar {
      position: relative;
      z-index: 12;
      border-bottom: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(16px);
    }

    .site-topbar::after,
    .site-header::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 1px;
      background: var(--gold-line);
      opacity: 0.58;
      pointer-events: none;
    }

    body[data-theme="dark"] .site-topbar {
      background: rgba(29, 24, 20, 0.76);
    }

    .topbar-inner {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-4);
      color: var(--muted);
      font-size: 0.82rem;
      letter-spacing: 0.05em;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      padding: var(--space-4) 0;
      border-bottom: 1px solid transparent;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(18px);
      transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
    }

    body[data-theme="dark"] .site-header {
      background: rgba(29, 24, 20, 0.68);
    }

    .site-header.is-scrolled {
      padding: 0.85rem 0;
      border-bottom-color: var(--border);
      box-shadow: 0 10px 30px rgba(36, 28, 19, 0.055);
    }

    .header-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-6);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.9rem;
      flex-shrink: 0;
    }

    .brand-mark {
      position: relative;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 88%, white 12%), var(--surface-strong));
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform 220ms ease, box-shadow 220ms ease;
    }

    .brand:hover .brand-mark,
    .brand:focus-visible .brand-mark {
      transform: translateY(-2px) rotate(-3deg);
      box-shadow: 0 18px 38px rgba(36, 28, 19, 0.11);
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: -45%;
      background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.54) 48%, transparent 62%);
      transform: translateX(-58%) rotate(12deg);
      transition: transform 620ms ease;
    }

    .brand:hover .brand-mark::after,
    .brand:focus-visible .brand-mark::after {
      transform: translateX(58%) rotate(12deg);
    }

    .brand-mark svg {
      width: 30px;
      height: 30px;
      color: var(--sage);
    }

    .brand-wordmark {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .brand-title {
      font-family: var(--font-display);
      font-size: 2rem;
      line-height: 0.9;
      font-weight: 600;
      letter-spacing: 0;
    }

    .brand-tagline {
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .nav-shell {
      display: flex;
      align-items: center;
      gap: var(--space-5);
    }

    .nav-list {
      display: flex;
      list-style: none;
      gap: 1.6rem;
      align-items: center;
    }

    .nav-list a {
      position: relative;
      font-size: 0.84rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
      transition: color 180ms ease;
    }

    .nav-list a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.45rem;
      width: 100%;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 180ms ease;
      background: linear-gradient(90deg, var(--sage) 0%, var(--terracotta) 100%);
    }

    .nav-list a:hover,
    .nav-list a:focus-visible,
    .nav-list a.is-active {
      color: var(--text);
    }

    .nav-list a:hover::after,
    .nav-list a:focus-visible::after,
    .nav-list a.is-active::after {
      transform: scaleX(1);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .theme-toggle {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow-soft);
      color: var(--text);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    body[data-theme="dark"] .theme-toggle {
      background: rgba(38, 32, 27, 0.92);
    }

    .theme-toggle svg {
      width: 18px;
      height: 18px;
    }

    .theme-toggle:hover,
    .theme-toggle:focus-visible {
      transform: translateY(-2px) rotate(8deg);
      border-color: color-mix(in srgb, var(--sage) 46%, var(--border));
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0.95rem 1.45rem;
      border-radius: 999px;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      font-size: 0.78rem;
      font-weight: 700;
      transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.32) 47%, transparent 62%);
      transform: translateX(-120%);
      transition: transform 520ms ease;
      z-index: -1;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
    }

    .btn:hover::after,
    .btn:focus-visible::after {
      transform: translateX(120%);
    }

    .btn-primary {
      background: linear-gradient(135deg, #d7b968 0%, #9f792a 100%);
      color: #fffdf8;
      box-shadow: 0 16px 36px rgba(159, 121, 42, 0.24);
    }

    .btn-secondary {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
    }

    .btn-terracotta {
      background: linear-gradient(135deg, var(--text) 0%, #4b3a24 100%);
      color: #fff8ed;
      box-shadow: 0 16px 36px rgba(36, 28, 19, 0.16);
    }

    .nav-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid var(--border);
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: var(--shadow-soft);
    }

    .nav-toggle-line,
    .nav-toggle-line::before,
    .nav-toggle-line::after {
      content: "";
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .nav-toggle-line::before {
      transform: translateY(-6px);
    }

    .nav-toggle-line::after {
      transform: translateY(4px);
    }

    body[data-nav-open="true"] .nav-toggle-line {
      background: transparent;
    }

    body[data-nav-open="true"] .nav-toggle-line::before {
      transform: translateY(0) rotate(45deg);
    }

    body[data-nav-open="true"] .nav-toggle-line::after {
      transform: translateY(-2px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
    }

    .page-section {
      display: none;
      padding: var(--rhythm-tight) 0 var(--rhythm);
      min-height: calc(100vh - 140px);
    }

    .page-section.is-active {
      display: block;
      animation: pageIn 520ms ease both;
    }

    .hero-grid,
    .split-grid,
    .salon-layout,
    .contact-layout,
    .retreat-hero-grid,
    .retreat-value-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: var(--space-10);
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      color: var(--sage);
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 44px;
      height: 1px;
      background: currentColor;
    }

    .hero-copy,
    .page-copy {
      display: grid;
      gap: var(--space-6);
    }

    .display-title,
    .section-title,
    .page-title {
      font-family: var(--font-display);
      line-height: 0.96;
      letter-spacing: 0;
      font-weight: 500;
    }

    .display-title {
      font-size: clamp(3.5rem, 7vw, 6.75rem);
      max-width: 11ch;
      text-wrap: balance;
    }

    .section-title,
    .page-title {
      font-size: clamp(2.5rem, 4vw, 4.75rem);
    }

    .display-title em,
    .section-title em,
    .page-title em {
      color: var(--terracotta);
      font-style: italic;
      font-weight: 600;
    }

    .lead,
    .section-copy,
    .page-copy p {
      font-size: 1.03rem;
      color: var(--muted);
      line-height: 1.9;
      max-width: 60ch;
    }

    .hero-actions,
    .cta-row,
    .chip-row {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0.55rem 0.9rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.84rem;
      box-shadow: var(--shadow-soft);
    }

    body[data-theme="dark"] .chip {
      background: rgba(38, 32, 27, 0.9);
    }

    .hero-visual,
    .media-card,
    .panel,
    .retreat-hero-card,
    .form-shell,
    .map-shell,
    .quote-card,
    .work-card,
    .service-card,
    .team-card,
    .detail-card,
    .itinerary-card,
    .faq-item,
    .contact-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .about-card,
    .split-card,
    .journal-shell,
    .form-shell {
      position: relative;
    }

    .about-card::before,
    .split-card::before,
    .form-shell::before {
      content: "";
      position: absolute;
      left: 1.2rem;
      right: 1.2rem;
      top: 0;
      height: 1px;
      background: var(--gold-line);
      opacity: 0.72;
      pointer-events: none;
    }

    .hero-visual {
      position: relative;
      padding: 1.1rem;
      overflow: hidden;
      transform: perspective(1200px) rotateX(calc((var(--my-num, 50) - 50) * -0.03deg)) rotateY(calc((var(--mx-num, 50) - 50) * 0.035deg));
      transition: transform 220ms ease, box-shadow 220ms ease;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 1.1rem;
      border-radius: calc(var(--radius-xl) - 8px);
      background:
        linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.44) 50%, transparent 58%),
        radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.2), transparent 34%);
      pointer-events: none;
      mix-blend-mode: screen;
      opacity: 0.42;
      z-index: 2;
      transition: opacity 220ms ease;
    }

    .hero-visual:hover {
      box-shadow: 0 36px 90px rgba(36, 28, 19, 0.1);
    }

    .hero-visual:hover::before {
      opacity: 0.68;
    }

    .hero-visual img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: contain;
      border-radius: calc(var(--radius-xl) - 8px);
      background: linear-gradient(180deg, #ffffff 0%, #f6efe1 100%);
      transform: scale(1);
      transition: transform 720ms ease, filter 320ms ease;
    }

    .hero-visual:hover img {
      transform: scale(1.018);
      filter: saturate(1.04) contrast(1.02);
    }

    .hero-note {
      margin-top: var(--space-4);
      color: var(--muted);
      font-size: 0.9rem;
    }

    .section-stack {
      display: grid;
      gap: var(--rhythm);
      margin-top: var(--rhythm);
    }

    .page-section > .container:first-child .section-stack,
    .section-stack + .section-stack,
    .cinematic-break + .container .section-stack,
    .container + .cinematic-break {
      margin-top: 0;
    }

    /* The cinematic break stands on its own — neighbors don't add gaps */
    .cinematic-break {
      --rhythm: clamp(4rem, 8vw, 7rem);
    }

    .stat-band {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .stat-item {
      position: relative;
      padding: 1.2rem 1.25rem;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      display: grid;
      gap: 0.5rem;
      min-height: 100%;
      overflow: hidden;
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .stat-item::after {
      content: "";
      position: absolute;
      inset: auto 1.25rem 0;
      height: 3px;
      border-radius: 999px 999px 0 0;
      background: linear-gradient(90deg, var(--sage), var(--terracotta));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 260ms ease;
    }

    .stat-item:hover {
      transform: translateY(-4px);
      border-color: color-mix(in srgb, var(--sage) 38%, var(--border));
      box-shadow: 0 20px 42px rgba(36, 28, 19, 0.08);
    }

    .stat-item:hover::after {
      transform: scaleX(1);
    }

    body[data-theme="dark"] .stat-item {
      background: rgba(38, 32, 27, 0.92);
    }

    .stat-item strong {
      font-family: var(--font-display);
      font-size: 2.1rem;
      line-height: 1;
      font-weight: 500;
      letter-spacing: 0;
    }

    .stat-item span {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .editorial-band,
    .retreat-band {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .editorial-band.four-up,
    .retreat-band.four-up {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .editorial-card,
    .retreat-fact,
    .journal-shell {
      padding: 1.4rem;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    body[data-theme="dark"] .editorial-card,
    body[data-theme="dark"] .retreat-fact,
    body[data-theme="dark"] .journal-shell {
      background: rgba(38, 32, 27, 0.9);
    }

    .editorial-card {
      display: grid;
      gap: 0.8rem;
      min-height: 100%;
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .editorial-card:hover,
    .split-card:hover,
    .quote-card:hover,
    .service-group:hover,
    .team-card:hover,
    .detail-card:hover,
    .itinerary-card:hover,
    .contact-card:hover {
      transform: translateY(-5px);
      border-color: color-mix(in srgb, var(--terracotta) 34%, var(--border));
      box-shadow: 0 22px 48px rgba(36, 28, 19, 0.085);
    }

    .editorial-card span,
    .retreat-fact span {
      font-size: 0.76rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage);
      font-weight: 700;
    }

    .editorial-card h3,
    .journal-shell h3,
    .retreat-fact strong {
      font-family: var(--font-display);
      font-size: 1.75rem;
      line-height: 1;
      font-weight: 500;
    }

    .editorial-card p,
    .journal-shell p,
    .retreat-fact p {
      color: var(--muted);
      line-height: 1.8;
    }

    .journal-shell {
      display: grid;
      gap: 1rem;
      position: relative;
      overflow: hidden;
    }

    .journal-shell::before {
      content: "";
      position: absolute;
      top: 0;
      left: 1.4rem;
      right: 1.4rem;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--terracotta), var(--sage), transparent);
      opacity: 0.72;
    }

    .journal-shell::after {
      content: "";
      position: absolute;
      right: -3rem;
      bottom: -4rem;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(197, 163, 86, 0.12), transparent 70%);
      pointer-events: none;
    }

    .journal-shell blockquote {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3vw, 2.7rem);
      line-height: 1.05;
      letter-spacing: 0;
      max-width: 18ch;
      color: var(--text);
    }

    .about-card,
    .split-card,
    .retreat-price,
    .story-card,
    .legal-card {
      padding: clamp(1.4rem, 2vw, 2rem);
      background: rgba(255, 255, 255, 0.94);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    body[data-theme="dark"] .about-card,
    body[data-theme="dark"] .split-card,
    body[data-theme="dark"] .retreat-price,
    body[data-theme="dark"] .story-card,
    body[data-theme="dark"] .legal-card {
      background: rgba(38, 32, 27, 0.9);
    }

    .about-card p + p,
    .story-card p + p {
      margin-top: 1rem;
    }

    .split-card {
      display: grid;
      gap: 1rem;
      min-height: 100%;
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .split-card strong,
    .retreat-price strong {
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
    }

    .split-card h3,
    .retreat-price h3,
    .service-group h3,
    .team-card h3,
    .itinerary-card h3,
    .detail-card h3,
    .contact-card h3,
    .quote-card h3 {
      font-family: var(--font-display);
      font-size: 2rem;
      line-height: 1;
      font-weight: 500;
    }

    .split-card p,
    .retreat-price p,
    .detail-card p,
    .contact-card p,
    .team-card p {
      color: var(--muted);
      line-height: 1.8;
    }

    .split-card ul,
    .service-list,
    .inclusion-list,
    .detail-list,
    .contact-list {
      list-style: none;
      display: grid;
      gap: 0.8rem;
    }

    .split-card li,
    .service-list li,
    .inclusion-list li,
    .detail-list li,
    .contact-list li {
      position: relative;
      padding-left: 1.05rem;
      color: var(--text);
      line-height: 1.7;
    }

    .split-card li::before,
    .service-list li::before,
    .inclusion-list li::before,
    .detail-list li::before,
    .contact-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.7rem;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--sage) 0%, var(--terracotta) 100%);
    }

    .quote-grid,
    .work-grid,
    .service-grid,
    .team-grid,
    .detail-grid,
    .contact-grid {
      display: grid;
      gap: 1.25rem;
    }

    .quote-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .work-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .service-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid,
    .detail-grid,
    .contact-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .quote-card,
    .work-card,
    .service-card,
    .team-card,
    .detail-card,
    .itinerary-card,
    .contact-card,
    .form-shell {
      padding: 1.45rem;
    }

    .quote-card {
      display: grid;
      gap: 1rem;
      min-height: 100%;
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .quote-card blockquote {
      font-family: var(--font-display);
      font-size: 1.55rem;
      line-height: 1.12;
      color: var(--text);
    }

    .quote-card cite {
      color: var(--muted);
      font-style: normal;
      font-size: 0.9rem;
    }

    .work-card {
      overflow: hidden;
      position: relative;
      min-height: 100%;
      display: grid;
      gap: 0.8rem;
      transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
    }

    .work-card::after,
    .gallery-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.22) 100%);
      opacity: 0;
      pointer-events: none;
      transition: opacity 240ms ease;
    }

    .work-card:hover,
    .gallery-card:hover {
      transform: translateY(-6px);
      border-color: color-mix(in srgb, var(--sage) 36%, var(--border));
      box-shadow: 0 24px 52px rgba(36, 28, 19, 0.095);
    }

    .work-card:hover::after,
    .gallery-card:hover::after {
      opacity: 1;
    }

    .work-visual {
      border-radius: calc(var(--radius-lg) - 10px);
      overflow: hidden;
      background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 60%, white 40%), var(--surface-strong));
      border: 1px solid var(--border);
      aspect-ratio: 4 / 5;
    }

    .work-visual svg {
      width: 100%;
      height: 100%;
      transition: transform 520ms ease;
    }

    .work-card:hover .work-visual svg,
    .gallery-card:hover .gallery-visual svg {
      transform: scale(1.035);
    }

    .work-meta {
      display: flex;
      justify-content: space-between;
      gap: 0.8rem;
      align-items: baseline;
    }

    .work-meta strong {
      font-family: var(--font-display);
      font-size: 1.35rem;
      line-height: 1;
    }

    .work-meta span,
    .service-price,
    .team-role {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .service-section,
    .gallery-section,
    .retreat-section {
      display: grid;
      gap: var(--space-12);
    }

    .service-group {
      display: grid;
      gap: 1rem;
      padding: 1.6rem;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    body[data-theme="dark"] .service-group {
      background: rgba(38, 32, 27, 0.9);
    }

    .service-header {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      align-items: end;
    }

    .service-header small {
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .page-intro {
      display: grid;
      gap: 1rem;
      max-width: 60rem;
    }

    .retreat-hero-card,
    .retreat-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
      display: block;
    }

    .retreat-visual,
    .map-shell {
      overflow: hidden;
    }

    .retreat-visual svg,
    .map-shell svg {
      width: 100%;
      height: 100%;
    }

    .retreat-hero-card {
      padding: 0;
      min-height: 540px;
      position: relative;
      isolation: isolate;
    }

    .retreat-hero-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 52%, transparent 62%);
      transform: translateX(-30%);
      animation: slowSheen 8s ease-in-out infinite;
      pointer-events: none;
      z-index: 2;
    }

    .retreat-price {
      display: grid;
      gap: 0.9rem;
    }

    .price-line {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      align-items: baseline;
    }

    .price-line strong {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 4vw, 4rem);
      line-height: 0.95;
      color: var(--text);
      letter-spacing: 0;
    }

    .price-line span {
      color: var(--muted);
      font-size: 1rem;
    }

    .itinerary-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .itinerary-card small {
      color: var(--terracotta);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .itinerary-card {
      display: grid;
      gap: 0.9rem;
      min-height: 100%;
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .itinerary-card p {
      color: var(--muted);
      line-height: 1.85;
    }

    .retreat-value-grid {
      align-items: start;
    }

    .retreat-fact {
      display: grid;
      gap: 0.65rem;
      min-height: 100%;
    }

    .inclusion-panel {
      display: grid;
      gap: 1.2rem;
      padding: 1.8rem;
    }

    .faq-list {
      display: grid;
      gap: 1rem;
    }

    .faq-item {
      padding: 1.25rem 1.35rem;
      transition: border-color 180ms ease, box-shadow 180ms ease;
    }

    .faq-item[open] {
      border-color: color-mix(in srgb, var(--sage) 42%, var(--border));
      box-shadow: 0 18px 38px rgba(43, 31, 20, 0.08);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      color: var(--text);
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      flex-shrink: 0;
      color: var(--terracotta);
      font-size: 1.1rem;
      transition: transform 180ms ease;
    }

    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-answer {
      padding-top: 0.95rem;
      color: var(--muted);
      line-height: 1.85;
    }

    .filter-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .filter-btn {
      min-height: 40px;
      padding: 0.65rem 1rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.94);
      color: var(--muted);
      font-size: 0.84rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
    }

    body[data-theme="dark"] .filter-btn {
      background: rgba(38, 32, 27, 0.9);
    }

    .filter-btn.is-active,
    .filter-btn:hover,
    .filter-btn:focus-visible {
      background: var(--sage);
      color: #f8f4ee;
      border-color: var(--sage);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .gallery-card {
      position: relative;
      display: grid;
      gap: 0.9rem;
      padding: 1rem;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform 220ms ease, opacity 180ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .gallery-card[hidden] {
      display: none;
    }

    .gallery-visual {
      border-radius: calc(var(--radius-lg) - 10px);
      overflow: hidden;
      aspect-ratio: 4 / 5;
      border: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--surface-strong));
    }

    .gallery-visual svg,
    .gallery-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 720ms ease, filter 360ms ease;
    }

    .gallery-card:hover .gallery-visual img {
      transform: scale(1.04);
      filter: saturate(1.06) contrast(1.02);
    }

    .gallery-card strong {
      font-family: var(--font-display);
      font-size: 1.5rem;
      line-height: 1;
    }

    .gallery-card span {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .map-shell {
      aspect-ratio: 16 / 10;
      min-height: 100%;
    }

    .contact-card {
      display: grid;
      gap: 1rem;
      min-height: 100%;
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .form-shell {
      display: grid;
      gap: 1.2rem;
      transition: border-color 220ms ease, box-shadow 220ms ease;
    }

    .form-shell:focus-within {
      border-color: color-mix(in srgb, var(--sage) 48%, var(--border));
      box-shadow: 0 22px 52px rgba(36, 28, 19, 0.09);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .hp-field {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .field.is-invalid input,
    .field.is-invalid textarea,
    .field.is-invalid select {
      border-color: #b3331f;
      box-shadow: 0 0 0 4px rgba(179, 51, 31, 0.12);
    }

    .field-error {
      font-size: 0.78rem;
      color: #b3331f;
      margin-top: 0.25rem;
      min-height: 1em;
    }

    .form-status {
      margin-top: 1rem;
      font-size: 0.92rem;
      min-height: 1.2em;
    }

    .form-status.is-success {
      color: var(--sage-deep);
      font-weight: 600;
    }

    .form-status.is-error {
      color: #b3331f;
    }

    form[data-submitting] button[type="submit"] {
      opacity: 0.6;
      pointer-events: none;
    }

    .field {
      display: grid;
      gap: 0.5rem;
    }

    .field label {
      font-size: 0.84rem;
      font-weight: 600;
      color: var(--muted);
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      min-height: 50px;
      padding: 0.85rem 0.95rem;
      border-radius: 14px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.9);
      color: var(--text);
      transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      outline: none;
      border-color: var(--sage);
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--sage) 18%, transparent);
      background: rgba(255, 255, 255, 0.82);
    }

    body[data-theme="dark"] .field input,
    body[data-theme="dark"] .field textarea,
    body[data-theme="dark"] .field select {
      background: rgba(49, 41, 34, 0.9);
    }

    .field textarea {
      min-height: 140px;
      resize: vertical;
    }

    .fine-note {
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.7;
    }

    footer {
      padding: 0 0 6rem;
    }

    .footer-shell {
      display: grid;
      gap: 1.4rem;
      padding: 1.6rem;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    body[data-theme="dark"] .footer-shell {
      background: rgba(38, 32, 27, 0.9);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem 1.2rem;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .footer-socials {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1rem;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .legal-copy {
      display: grid;
      gap: 0.6rem;
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.8;
    }

    .mobile-sticky-cta {
      display: none;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 480ms ease, transform 480ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 80ms;
    }

    .reveal-delay-2 {
      transition-delay: 160ms;
    }

    .reveal-delay-3 {
      transition-delay: 240ms;
    }

    @keyframes pageIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slowSheen {
      0%,
      38% {
        transform: translateX(-42%);
        opacity: 0;
      }

      54% {
        opacity: 0.78;
      }

      72%,
      100% {
        transform: translateX(42%);
        opacity: 0;
      }
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .split-grid,
      .salon-layout,
      .contact-layout,
      .retreat-hero-grid,
      .retreat-value-grid {
        grid-template-columns: 1fr;
      }

      .quote-grid,
      .work-grid,
      .gallery-grid,
      .detail-grid,
      .contact-grid,
      .stat-band,
      .editorial-band,
      .retreat-band,
      .editorial-band.four-up,
      .retreat-band.four-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .team-grid,
      .itinerary-grid {
        grid-template-columns: 1fr;
      }

      .nav-list { gap: 1rem; }
      .nav-list a { font-size: 0.76rem; letter-spacing: 0.08em; }
      .nav-shell { gap: 1rem; }
    }

    @media (max-width: 860px) {
      .topbar-inner,
      .header-shell {
        gap: 0.8rem;
      }

      .nav-list,
      .header-actions .btn {
        display: none;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .mobile-menu {
        position: fixed;
        inset: 92px 1rem auto 1rem;
        display: grid;
        gap: 1rem;
        padding: 1rem;
        border-radius: 24px;
        background: var(--surface);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
        z-index: 18;
      }

      body[data-nav-open="true"] .mobile-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .mobile-menu nav {
        display: grid;
        gap: 0.6rem;
      }

      .mobile-menu a {
        padding: 0.85rem 0.95rem;
        border-radius: 14px;
        background: color-mix(in srgb, var(--surface) 80%, white 20%);
        border: 1px solid var(--border);
      }

      body[data-theme="dark"] .mobile-menu a {
        background: color-mix(in srgb, var(--surface) 90%, black 10%);
      }

      .hero-grid,
      .service-grid,
      .quote-grid,
      .work-grid,
      .gallery-grid,
      .contact-grid,
      .detail-grid,
      .stat-band,
      .form-grid,
      .editorial-band,
      .retreat-band,
      .editorial-band.four-up,
      .retreat-band.four-up {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .site-header {
        padding: 0.8rem 0;
      }

      .brand-title {
        font-size: 1.65rem;
      }

      .brand-tagline {
        display: none;
      }

      .page-section {
        padding: 1.4rem 0 5.5rem;
      }

      .display-title {
        font-size: clamp(2.75rem, 13vw, 4.4rem);
      }

      .section-title,
      .page-title {
        font-size: clamp(2.2rem, 12vw, 3.3rem);
      }

      .hero-actions,
      .cta-row {
        flex-direction: column;
      }

      .hero-visual img {
        aspect-ratio: 1 / 1.15;
      }

      .mobile-sticky-cta {
        position: fixed;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        z-index: 30;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 56px;
        padding: 0.95rem 1rem;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
        color: #f8f4ee;
        font-size: 0.84rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        box-shadow: 0 18px 36px rgba(159, 121, 42, 0.24);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }

      .page-section.is-active {
        animation: none;
      }

      body::after,
      .hero-visual::before,
      .retreat-hero-card::after {
        display: none;
      }

      .hero-visual {
        transform: none;
      }
    }

    /* ── The Path (guide) ── */
    .path-thesis {
      display: grid;
      gap: var(--space-6);
      max-width: 66ch;
    }

    .guide-band {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: var(--space-12);
    }

    .guide-stat {
      background: var(--surface);
      padding: 1.6rem 1.3rem;
      display: grid;
      gap: 0.4rem;
    }

    .guide-stat strong {
      font-family: var(--font-display);
      font-size: 2.2rem;
      line-height: 0.95;
      font-weight: 500;
      color: var(--sage-deep);
    }

    body[data-theme="dark"] .guide-stat strong { color: var(--sage); }

    .guide-stat span {
      font-size: 0.84rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .principle-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      margin-top: var(--space-8);
    }

    .principle {
      display: grid;
      gap: 0.7rem;
      padding: 1.75rem;
      border-radius: var(--radius-lg);
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .principle-num {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 2.4rem;
      line-height: 1;
      color: color-mix(in srgb, var(--sage) 55%, transparent);
    }

    .principle h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 500;
      line-height: 1.1;
    }

    .principle p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.65;
    }

    .offering-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
      margin-top: var(--space-8);
    }

    .offering-card {
      display: grid;
      gap: 0.85rem;
      padding: 2rem 1.9rem;
      border-radius: var(--radius-xl);
      background: var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
    }

    .offering-card::before {
      content: "";
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--sage), var(--terracotta-deep));
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 320ms ease;
    }

    .offering-card:hover {
      transform: translateY(-5px);
      border-color: color-mix(in srgb, var(--sage) 38%, var(--border));
      box-shadow: 0 22px 48px rgba(36,28,19,0.09);
    }

    .offering-card:hover::before { transform: scaleY(1); }

    .offering-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sage);
      font-weight: 700;
    }

    .offering-card h3 {
      font-family: var(--font-display);
      font-size: 1.75rem;
      font-weight: 500;
      line-height: 1.05;
    }

    .offering-format {
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      color: var(--text);
      font-weight: 600;
      padding: 0.4rem 0;
    }

    .offering-card p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .offering-card .btn {
      justify-self: start;
      margin-top: 0.4rem;
    }

    @media (max-width: 820px) {
      .guide-band { grid-template-columns: repeat(2, 1fr); }
      .principle-grid { grid-template-columns: 1fr; }
      .offering-grid { grid-template-columns: 1fr; }
    }

    /* ── Membership / Retreat Path ── */
    .membership-hero {
      display: grid;
      gap: var(--space-6);
      max-width: 64ch;
    }

    .membership-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      align-self: start;
      padding: 0.5rem 1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(215,185,104,0.18), rgba(159,121,42,0.1));
      border: 1px solid color-mix(in srgb, var(--sage) 40%, var(--border));
      color: var(--sage-deep);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    body[data-theme="dark"] .membership-badge { color: var(--sage); }

    .path-headline {
      display: grid;
      gap: 0.4rem;
      margin: var(--space-8) 0 var(--space-4);
    }

    .path-figure {
      display: flex;
      align-items: baseline;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .path-figure .amount {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 7vw, 5.5rem);
      line-height: 0.9;
      font-weight: 500;
      background: linear-gradient(180deg, var(--sage) 0%, var(--sage-deep) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .path-figure .cadence {
      font-size: 1rem;
      color: var(--muted);
      letter-spacing: 0.04em;
    }

    .path-math {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: var(--space-6);
    }

    .path-math-cell {
      background: var(--surface);
      padding: 1.4rem 1.2rem;
      display: grid;
      gap: 0.35rem;
      text-align: center;
    }

    .path-math-cell strong {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 500;
      line-height: 1;
    }

    .path-math-cell span {
      font-size: 0.78rem;
      color: var(--muted);
      letter-spacing: 0.06em;
    }

    .path-math-op {
      display: grid;
      place-items: center;
      background: var(--surface-strong);
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--sage);
    }

    .included-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-top: var(--space-8);
    }

    .included-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.5rem 1.6rem;
      display: grid;
      gap: 0.6rem;
      box-shadow: var(--shadow-soft);
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .included-card:hover {
      transform: translateY(-4px);
      border-color: color-mix(in srgb, var(--sage) 38%, var(--border));
      box-shadow: 0 18px 38px rgba(36,28,19,0.08);
    }

    .included-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(215,185,104,0.18), rgba(159,121,42,0.08));
      border: 1px solid color-mix(in srgb, var(--sage) 30%, var(--border));
      color: var(--sage-deep);
    }

    body[data-theme="dark"] .included-icon { color: var(--sage); }
    .included-icon svg { width: 20px; height: 20px; }

    .included-card h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 500;
      line-height: 1.1;
    }

    .included-card p {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.65;
    }

    .timeline {
      display: grid;
      gap: 0;
      margin-top: var(--space-8);
      counter-reset: step;
    }

    .timeline-step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.4rem;
      padding-bottom: var(--space-6);
      position: relative;
    }

    .timeline-step::before {
      counter-increment: step;
      content: counter(step);
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--surface);
      border: 1.5px solid var(--sage);
      color: var(--sage-deep);
      z-index: 2;
      flex-shrink: 0;
    }

    body[data-theme="dark"] .timeline-step::before { color: var(--sage); }

    .timeline-step:not(:last-child)::after {
      content: "";
      position: absolute;
      left: 22px;
      top: 44px;
      bottom: 0;
      width: 1.5px;
      background: linear-gradient(180deg, var(--sage), transparent);
      opacity: 0.4;
    }

    .timeline-content { display: grid; gap: 0.3rem; padding-top: 0.4rem; }
    .timeline-content h4 { font-size: 1.05rem; font-weight: 600; }
    .timeline-content p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

    .path-cta-band {
      margin-top: var(--space-12);
      padding: clamp(2.5rem, 5vw, 3.5rem);
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, var(--text) 0%, #3a2c1b 100%);
      color: #fff8ed;
      display: grid;
      gap: var(--space-5);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .path-cta-band::after {
      content: "8";
      position: absolute;
      right: -2rem;
      bottom: -4rem;
      font-family: var(--font-display);
      font-size: 18rem;
      line-height: 1;
      color: rgba(215,185,104,0.08);
      pointer-events: none;
    }

    .path-cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.4vw,2.8rem); font-weight: 500; position: relative; z-index: 1; }
    .path-cta-band p { color: rgba(255,248,237,0.78); max-width: 54ch; margin: 0 auto; position: relative; z-index: 1; }
    .path-cta-band .cta-row { justify-content: center; position: relative; z-index: 1; }

    .path-finepoint {
      font-size: 0.82rem;
      color: var(--muted);
      max-width: 60ch;
      margin-top: var(--space-6);
      padding-top: var(--space-4);
      border-top: 1px solid var(--border);
    }

    @media (max-width: 760px) {
      .included-grid { grid-template-columns: 1fr; }
      .path-math-cell strong { font-size: 1.4rem; }
    }

    /* ── The Eighth Feature ── */
    .eighth-feature {
      position: relative;
      padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(80% 100% at 0% 0%, color-mix(in srgb, var(--sage) 12%, var(--surface)) 0%, var(--surface) 60%),
        var(--surface);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(180px, 280px) 1fr;
      gap: clamp(2rem, 5vw, 4rem);
      align-items: center;
      isolation: isolate;
    }

    .eighth-feature::before {
      content: "";
      position: absolute;
      left: 1.4rem;
      right: 1.4rem;
      top: 0;
      height: 1px;
      background: var(--gold-line);
      opacity: 0.85;
      pointer-events: none;
      z-index: 1;
    }

    .eighth-feature::after {
      content: "";
      position: absolute;
      right: -8%;
      bottom: -40%;
      width: 60%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(197,163,86,0.18) 0%, transparent 65%);
      z-index: 0;
      pointer-events: none;
    }

    .eighth-mark {
      position: relative;
      z-index: 2;
      display: grid;
      place-items: center;
      aspect-ratio: 1;
      max-width: 240px;
      margin-inline: auto;
    }

    .eighth-mark svg {
      width: 100%;
      height: auto;
      filter: drop-shadow(0 14px 32px rgba(159,121,42,0.18));
    }

    .eighth-numerals {
      font-family: var(--font-display);
      font-size: clamp(7rem, 14vw, 11rem);
      line-height: 0.78;
      font-weight: 500;
      letter-spacing: -0.04em;
      background: linear-gradient(180deg, var(--sage) 0%, var(--sage-deep) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }

    .eighth-copy {
      position: relative;
      z-index: 2;
      display: grid;
      gap: var(--space-4);
    }

    .eighth-list {
      list-style: none;
      padding: 0;
      margin: var(--space-4) 0 0;
      display: grid;
      gap: 0.95rem;
    }

    .eighth-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.1rem;
      align-items: baseline;
      padding-bottom: 0.95rem;
      border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
    }

    .eighth-list li:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .eighth-list-num {
      font-family: var(--font-display);
      font-size: 1.8rem;
      line-height: 1;
      font-weight: 500;
      color: var(--sage);
      font-style: italic;
      min-width: 1ch;
    }

    .eighth-list-text {
      display: grid;
      gap: 0.25rem;
    }

    .eighth-list-label {
      font-size: 0.7rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
    }

    .eighth-list-thing {
      font-size: 1.05rem;
      color: var(--text);
      line-height: 1.45;
    }

    .eighth-pull {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.2rem;
      line-height: 1.5;
      color: var(--muted);
      padding-top: var(--space-3);
      border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
      margin-top: var(--space-3);
    }

    @media (max-width: 760px) {
      .eighth-feature {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1.5rem;
      }
      .eighth-mark {
        max-width: 180px;
      }
    }

    /* ── Amal Story Section ── */
    .amal-story {
      padding: 0;
      margin: 0;
      position: relative;
    }

    .amal-story-grid {
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: var(--space-12);
      align-items: center;
    }

    .amal-portrait {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4 / 5;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .amal-portrait::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, transparent 0 45%, rgba(255,255,255,0.18) 52%, transparent 60%),
        linear-gradient(180deg, transparent 60%, rgba(36,28,19,0.18) 100%);
      pointer-events: none;
      z-index: 2;
      mix-blend-mode: soft-light;
    }

    .amal-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 460ms ease;
    }

    .amal-portrait:hover img {
      transform: scale(1.04);
      filter: saturate(1.06);
    }

    .amal-portrait figcaption {
      position: absolute;
      left: 1.4rem;
      bottom: 1.2rem;
      z-index: 3;
      color: #fffaf0;
      font-family: var(--font-display);
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }

    .amal-story-copy {
      display: grid;
      gap: var(--space-5);
    }

    .amal-story-copy blockquote {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 1.7vw, 1.7rem);
      line-height: 1.45;
      font-weight: 500;
      font-style: italic;
      color: var(--text);
      padding-left: 1.1rem;
      border-left: 2px solid var(--sage);
    }

    .amal-story-copy cite {
      font-style: normal;
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
    }

    /* ── Cinematic Break ── */
    .cinematic-break {
      position: relative;
      margin-top: var(--rhythm);
      margin-bottom: var(--rhythm);
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      width: 100vw;
      min-height: clamp(420px, 60vh, 720px);
      overflow: hidden;
      isolation: isolate;
    }

    .cinematic-break img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      transform: scale(1.02);
      transition: transform 1200ms ease;
    }

    .cinematic-break:hover img {
      transform: scale(1.06);
    }

    .cinematic-break::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(36,28,19,0.55) 0%, rgba(36,28,19,0.18) 55%, rgba(159,121,42,0.32) 100%);
      z-index: 2;
    }

    .cinematic-break::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
      opacity: 0.8;
      z-index: 3;
      mix-blend-mode: overlay;
      pointer-events: none;
    }

    .cinematic-overlay {
      position: relative;
      z-index: 4;
      display: grid;
      gap: var(--space-5);
      max-width: 880px;
      margin: 0 auto;
      padding: clamp(3rem, 8vw, 7rem) 1.5rem;
      text-align: center;
      color: #fffaf0;
    }

    .cinematic-overlay .eyebrow {
      justify-self: center;
      color: #f4dcb0;
    }

    .cinematic-overlay .eyebrow::before {
      background: rgba(244,220,176,0.7);
    }

    .cinematic-overlay blockquote {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.4vw, 3.6rem);
      line-height: 1.18;
      font-weight: 500;
      letter-spacing: -0.005em;
      text-wrap: balance;
      color: #fff8ed;
      text-shadow: 0 4px 28px rgba(0,0,0,0.32);
    }

    .cinematic-overlay blockquote em {
      font-style: italic;
      color: #f6d99e;
    }

    .cinematic-overlay cite {
      font-style: normal;
      font-size: 0.84rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: #f4dcb0;
      font-weight: 600;
    }

    @media (max-width: 900px) {
      .amal-story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
      }
      .amal-portrait {
        max-width: 460px;
        margin: 0 auto;
      }
      .cinematic-overlay {
        padding: clamp(2.5rem, 12vw, 5rem) 1.5rem;
      }
    }

    /* ── Testimonials ── */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      margin-top: var(--space-12);
    }

    .testimonial-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      padding: 2rem 1.75rem;
      display: grid;
      gap: 1.1rem;
      position: relative;
      overflow: hidden;
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .testimonial-card::before {
      content: "\201C";
      position: absolute;
      top: -0.5rem;
      right: 1.25rem;
      font-family: var(--font-display);
      font-size: 7rem;
      line-height: 1;
      color: var(--sage);
      opacity: 0.12;
      pointer-events: none;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      border-color: color-mix(in srgb, var(--sage) 38%, var(--border));
      box-shadow: 0 22px 48px rgba(36, 28, 19, 0.085);
    }

    .testimonial-stars {
      display: flex;
      gap: 0.2rem;
      color: var(--sage);
      font-size: 0.95rem;
    }

    .testimonial-card blockquote {
      font-family: var(--font-display);
      font-size: 1.25rem;
      line-height: 1.5;
      font-weight: 500;
      color: var(--text);
    }

    .testimonial-meta {
      display: grid;
      gap: 0.15rem;
      margin-top: 0.5rem;
    }

    .testimonial-name {
      font-weight: 700;
      font-size: 0.88rem;
      letter-spacing: 0.06em;
    }

    .testimonial-detail {
      font-size: 0.78rem;
      color: var(--muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .reviews-cta-band {
      margin-top: var(--space-12);
      padding: 2.5rem 2rem;
      background: var(--surface-strong);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-8);
      flex-wrap: wrap;
    }

    .reviews-cta-band p {
      font-size: 1rem;
      color: var(--muted);
      max-width: 52ch;
    }

    /* ── FAQ ── */
    .faq-list {
      display: grid;
      gap: 0.75rem;
      margin-top: var(--space-12);
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }

    .faq-item {
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: border-color 180ms ease;
    }

    .faq-item:hover {
      border-color: color-mix(in srgb, var(--sage) 38%, var(--border));
    }

    .faq-trigger {
      width: 100%;
      text-align: left;
      padding: 1.35rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-size: 1rem;
      font-weight: 600;
      background: var(--surface);
      color: var(--text);
      cursor: pointer;
      border: none;
      border-radius: 0;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      color: var(--sage);
      transition: transform 260ms ease, background 180ms ease;
    }

    .faq-item[data-open="true"] .faq-icon {
      transform: rotate(45deg);
      background: var(--sage);
      color: #fff8ed;
      border-color: var(--sage);
    }

    .faq-body {
      display: none;
      padding: 0 1.5rem 1.35rem;
      background: var(--surface);
      color: var(--muted);
      line-height: 1.85;
    }

    .faq-item[data-open="true"] .faq-body {
      display: block;
    }

    /* ── Newsletter ── */
    .newsletter-band {
      background: linear-gradient(135deg, var(--surface-strong) 0%, var(--surface-dark) 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 3.5rem 3rem;
      display: grid;
      gap: var(--space-8);
      position: relative;
      overflow: hidden;
    }

    .newsletter-band::before {
      content: "";
      position: absolute;
      left: 1.5rem;
      right: 1.5rem;
      top: 0;
      height: 1px;
      background: var(--gold-line);
      opacity: 0.72;
    }

    .newsletter-copy {
      display: grid;
      gap: var(--space-4);
      max-width: 52ch;
    }

    .newsletter-form {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .newsletter-form .field {
      flex: 1 1 240px;
    }

    .newsletter-form input {
      background: rgba(255,255,255,0.88);
    }

    body[data-theme="dark"] .newsletter-form input {
      background: rgba(38, 32, 27, 0.92);
    }

    .newsletter-fine {
      font-size: 0.78rem;
      color: var(--muted);
      max-width: 44ch;
    }

    /* ── Booking ── */
    .booking-shell {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-10);
      align-items: start;
      margin-top: var(--space-12);
    }

    .booking-copy {
      display: grid;
      gap: var(--space-6);
    }

    .booking-options {
      display: grid;
      gap: 1rem;
    }

    .booking-option {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.5rem 1.75rem;
      display: grid;
      gap: 0.5rem;
      transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

    .booking-option:hover {
      transform: translateY(-4px);
      border-color: color-mix(in srgb, var(--sage) 38%, var(--border));
      box-shadow: 0 18px 38px rgba(36, 28, 19, 0.08);
    }

    .booking-option-label {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      font-weight: 700;
    }

    .booking-option h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1.1;
    }

    .booking-option p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.75;
    }

    .booking-widget-frame {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 2rem;
      min-height: 420px;
      display: grid;
      place-items: center;
      text-align: center;
      gap: 1rem;
    }

    .booking-widget-frame p {
      color: var(--muted);
      font-size: 0.92rem;
    }

    /* ── Booking embed ── */
    .booking-embed-wrap {
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      background: var(--surface);
      min-height: 680px;
    }

    .booking-embed-wrap iframe,
    .booking-embed-wrap .cal-embed {
      width: 100%;
      min-height: 680px;
      border: none;
      display: block;
    }

    .booking-placeholder {
      min-height: 680px;
      display: grid;
      place-items: center;
      padding: 3rem 2rem;
    }

    .booking-placeholder-inner {
      display: grid;
      gap: 1rem;
      text-align: center;
      max-width: 480px;
    }

    .booking-placeholder-inner h3 {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 500;
    }

    .booking-placeholder-inner p {
      color: var(--muted);
      line-height: 1.75;
    }

    .booking-placeholder-inner code {
      background: var(--surface-strong);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 0.1em 0.4em;
      font-size: 0.85em;
      font-family: monospace;
    }

    .page-intro {
      display: grid;
      gap: var(--space-4);
      max-width: 70ch;
    }

    /* ── responsive additions ── */
    @media (max-width: 900px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
      .booking-shell {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .reviews-cta-band {
        flex-direction: column;
        align-items: flex-start;
      }
      .newsletter-band {
        padding: 2.5rem 1.5rem;
      }
    }
