    :root {
      --sage: #7A9E82;
      --sage-light: #B5BCA8;
      --sage-dark: #5A6453;
      --terracotta: #B85C38;
      --terracotta-light: #E8A672;
      --terracotta-dark: #8F4628;
      --cream: #F8F4ED;
      --cream-warm: #FAF7F0;
      --bg: #FAF7F0;
      --ink: #1C2B1E;
      --ink-muted: #6B6356;
      --rule: #E6DFD2;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
      background: var(--cream);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, h4, h5 {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    a { color: inherit; text-decoration: none; }
    ::selection { background: var(--terracotta); color: var(--cream); }
    img { max-width: 100%; height: auto; display: block; }
    [hidden] { display: none !important; }
    ul { list-style: none; }

    .preview-banner {
      background: var(--ink); color: var(--cream);
      padding: 0.65rem 1.5rem;
      font-size: 0.8125rem; letter-spacing: 0.06em;
      text-align: center;
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
      font-weight: 500;
    }
    .preview-banner svg { width: 14px; height: 14px; opacity: 0.7; }

    .container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
    .container-narrow { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; }

    .header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(248, 244, 237, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--rule);
    }
    .header-inner { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; gap: 1rem; }
    .brand-logo { height: 44px; width: auto; display: block; }
    .nav { display: none; gap: 1.75rem; }
    .nav-link { font-size: 0.875rem; font-weight: 500; color: var(--ink); transition: color 0.2s ease; }
    .nav-link:hover, .nav-link.is-active { color: var(--terracotta); }
    .nav-link.is-active { font-weight: 600; }
    @media (min-width: 900px) { .nav { display: flex; } }

    .header-actions { display: flex; align-items: center; gap: 0.75rem; }
    .lang-switcher { display: inline-flex; align-items: center; gap: 0.4rem; }
    .lang-btn {
      position: relative; display: inline-flex;
      width: 30px; height: 30px;
      padding: 0; background: transparent;
      border: none; border-radius: 50%;
      cursor: pointer; transition: transform 0.2s ease;
      opacity: 0.55;
    }
    .lang-btn svg { width: 100%; height: 100%; border-radius: 50%; box-shadow: 0 1px 3px rgba(28, 43, 30, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.5) inset; }
    .lang-btn:hover { opacity: 1; transform: translateY(-1px); }
    .lang-btn[aria-pressed="true"] { opacity: 1; }
    .lang-btn[aria-pressed="true"] svg { box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--sage), 0 2px 8px rgba(122, 158, 130, 0.4); }
    .lang-btn[disabled] { cursor: not-allowed; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 0.5rem;
      font-family: inherit; font-size: 0.9375rem; font-weight: 600;
      padding: 0.85rem 1.5rem; border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer; transition: all 0.2s ease;
      text-decoration: none; white-space: nowrap;
    }
    .btn-primary { background: var(--terracotta); color: var(--cream); }
    .btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(184, 92, 56, 0.45); }
    .btn-sm { padding: 0.55rem 1.05rem; font-size: 0.8125rem; }
    .btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
    .btn .arrow { display: inline-block; transition: transform 0.2s ease; }
    .btn:hover .arrow { transform: translateX(3px); }

    .text-link {
      color: var(--terracotta-dark); font-weight: 500;
      border-bottom: 1px solid currentColor; padding-bottom: 1px;
      transition: color 0.2s ease;
    }
    .text-link:hover { color: var(--terracotta); }

    .section { padding: 5rem 0; position: relative; }
    .section-lg { padding: 7rem 0; }
    @media (max-width: 720px) {
      .section { padding: 3.5rem 0; }
      .section-lg { padding: 4.5rem 0; }
    }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--sage-dark); margin-bottom: 1rem;
    }
    .eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--sage); opacity: 0.5; }

    /* HERO */
    .hero {
      position: relative;
      padding: 6rem 0 5.5rem;
      overflow: hidden;
      background: var(--ink);
      color: var(--cream);
      text-align: center;
    }
    .hero::before {
      content: ''; position: absolute; top: -180px; right: -160px;
      width: 520px; height: 520px;
      background: radial-gradient(circle, rgba(184, 92, 56, 0.18) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none;
    }
    .hero::after {
      content: ''; position: absolute; bottom: -160px; left: -180px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(122, 158, 130, 0.10) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none;
    }
    .hero .container { position: relative; z-index: 1; }
    .hero .eyebrow { color: var(--terracotta-light); justify-content: center; }
    .hero .eyebrow::before { background: var(--terracotta-light); opacity: 0.5; }
    .hero-title {
      font-size: clamp(2.75rem, 6vw, 4.5rem);
      line-height: 1.05; letter-spacing: -0.025em;
      font-weight: 500; color: var(--cream);
      margin-bottom: 1.5rem;
    }
    .hero-title .accent { color: var(--terracotta-light); font-style: italic; font-weight: 400; }
    .hero-sub {
      font-size: clamp(1.0625rem, 1.8vw, 1.3125rem);
      color: rgba(248, 244, 237, 0.78);
      max-width: 640px; margin: 0 auto;
      line-height: 1.6;
    }

    /* Page intro */
    .page-intro { padding: 5rem 0 0; }
    .page-intro p {
      font-family: 'Fraunces', Georgia, serif;
      font-size: clamp(1.25rem, 2vw, 1.5rem);
      font-style: italic; line-height: 1.55;
      color: var(--ink);
      max-width: 760px; margin: 0 auto; text-align: center;
    }

    /* Paths */
    .paths {
      padding: 5rem 0 0;
      display: flex; flex-direction: column;
      gap: 4rem;
    }
    .path {
      display: grid; gap: 2rem;
      padding-bottom: 4rem;
      border-bottom: 1px solid var(--rule);
    }
    .path:last-child { border-bottom: none; padding-bottom: 0; }
    @media (min-width: 820px) {
      .path { grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: start; }
    }

    .path-side .path-number {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 400;
      font-size: 0.875rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--terracotta-dark);
      margin-bottom: 1rem;
    }
    .path-side .path-number strong { font-weight: 500; font-style: italic; }
    .path-side h2 {
      font-size: clamp(1.85rem, 3.4vw, 2.5rem);
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .path-side p {
      font-size: 1rem;
      line-height: 1.65;
      color: var(--ink-muted);
    }

    .path-body p {
      font-size: 1.0625rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }
    .path-body p:last-of-type { margin-bottom: 1.75rem; }

    /* Scheduler embed */
    .scheduler-card {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px -22px rgba(28, 43, 30, 0.18);
    }
    .scheduler-header {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 1.1rem 1.5rem;
      background: var(--cream-warm);
      border-bottom: 1px solid var(--rule);
    }
    .scheduler-header .icon {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(184, 92, 56, 0.12);
      display: flex; align-items: center; justify-content: center;
      color: var(--terracotta);
      flex-shrink: 0;
    }
    .scheduler-header .icon svg { width: 18px; height: 18px; }
    .scheduler-header .meta {
      flex: 1;
      min-width: 0;
    }
    .scheduler-header .title {
      font-family: 'Fraunces', serif;
      font-size: 1.0625rem;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.2;
      letter-spacing: -0.01em;
    }
    .scheduler-header .subtitle {
      font-size: 0.8125rem;
      color: var(--ink-muted);
      margin-top: 0.15rem;
    }
    .scheduler-frame {
      position: relative;
      background: #fff;
      min-height: 700px;
    }
    .scheduler-frame iframe {
      display: block;
      width: 100%;
      height: 700px;
      border: 0;
    }
    .scheduler-fallback {
      padding: 1rem 1.5rem;
      background: var(--cream-warm);
      border-top: 1px solid var(--rule);
      font-size: 0.8125rem;
      color: var(--ink-muted);
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
      justify-content: space-between;
    }
    .scheduler-fallback a {
      color: var(--terracotta-dark);
      font-weight: 500;
      border-bottom: 1px solid currentColor;
      padding-bottom: 1px;
    }
    .scheduler-fallback a:hover { color: var(--terracotta); }
    @media (max-width: 640px) {
      .scheduler-frame, .scheduler-frame iframe { min-height: 620px; height: 620px; }
      .scheduler-header { padding: 1rem 1.25rem; }
      .scheduler-fallback { padding: 1rem 1.25rem; }
    }

    /* Contact form */
    .contact-form {
      background: var(--cream-warm);
      border: 1px solid var(--rule);
      border-radius: 20px;
      padding: 2.25rem;
    }
    .form-row { display: grid; gap: 1.25rem; margin-bottom: 1.25rem; }
    @media (min-width: 640px) { .form-row.two-col { grid-template-columns: 1fr 1fr; } }
    .form-field { display: flex; flex-direction: column; }
    .form-field label {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 0.5rem;
    }
    .form-field label .required { color: var(--terracotta); }
    .form-field input,
    .form-field select,
    .form-field textarea {
      font-family: inherit;
      font-size: 0.9375rem;
      padding: 0.85rem 1rem;
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 12px;
      color: var(--ink);
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      width: 100%;
    }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--sage);
      box-shadow: 0 0 0 4px rgba(122, 158, 130, 0.15);
    }
    .form-field textarea {
      resize: vertical;
      min-height: 140px;
      font-family: inherit;
    }
    .form-submit {
      display: flex; justify-content: flex-end;
      margin-top: 1.5rem;
    }

    /* Email card */
    .email-card {
      background: var(--cream-warm);
      border: 1px solid var(--rule);
      border-radius: 20px;
      padding: 2rem 2.25rem;
      display: flex; align-items: center; gap: 1.5rem;
      flex-wrap: wrap;
    }
    .email-icon {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: rgba(122, 158, 130, 0.15);
      display: flex; align-items: center; justify-content: center;
      color: var(--sage-dark);
      flex-shrink: 0;
    }
    .email-icon svg { width: 26px; height: 26px; }
    .email-detail {
      flex: 1; min-width: 220px;
    }
    .email-detail .label {
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 0.4rem;
    }
    .email-detail a {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      color: var(--ink);
      font-weight: 500;
      letter-spacing: -0.01em;
      border-bottom: 1px solid var(--terracotta);
      padding-bottom: 2px;
    }
    .email-detail a:hover { color: var(--terracotta-dark); }
    .email-detail small {
      display: block;
      margin-top: 0.5rem;
      font-size: 0.8125rem;
      color: var(--ink-muted);
      font-style: italic;
    }

    /* Info section (response, service area, media) */
    .info-section { background: var(--cream-warm); }
    .info-grid { display: grid; gap: 3rem; }
    @media (min-width: 820px) { .info-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
    .info-block h3 {
      font-size: 1.375rem;
      line-height: 1.25;
      margin-bottom: 1rem;
    }
    .info-block p {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--ink-muted);
      margin-bottom: 0.75rem;
    }
    .info-block ul {
      display: flex; flex-direction: column; gap: 0.65rem;
      margin-top: 0.75rem;
    }
    .info-block li {
      position: relative;
      padding-left: 1.25rem;
      font-size: 0.9375rem;
      line-height: 1.55;
      color: var(--ink);
    }
    .info-block li::before {
      content: ''; position: absolute; left: 0; top: 0.55em;
      width: 0.4rem; height: 0.4rem;
      background: var(--terracotta); border-radius: 50%;
    }
    .info-block li strong { font-weight: 600; color: var(--ink); }
    .info-block .icon-row {
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(184, 92, 56, 0.12);
      color: var(--terracotta);
      margin-bottom: 1rem;
    }
    .info-block .icon-row svg { width: 20px; height: 20px; }

    /* Media inquiries */
    .media {
      background: var(--ink);
      color: var(--cream);
    }
    .media .eyebrow { color: var(--terracotta-light); }
    .media .eyebrow::before { background: var(--terracotta-light); }
    .media h2 {
      color: var(--cream);
      font-size: clamp(1.85rem, 3.4vw, 2.5rem);
      margin-bottom: 1.25rem;
      max-width: 720px;
    }
    .media p {
      color: rgba(248, 244, 237, 0.82);
      font-size: 1.0625rem;
      line-height: 1.7;
      max-width: 640px;
      margin-bottom: 1.5rem;
    }
    .media a.media-email {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      color: var(--terracotta-light);
      border-bottom: 1px solid var(--terracotta);
      padding-bottom: 2px;
    }
    .media a.media-email:hover { color: var(--cream); }

    /* Footer */
    .footer { background: var(--ink); color: rgba(248, 244, 237, 0.7); padding: 4rem 0 2rem; }
    .footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
    @media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; } }
    .footer-brand svg { height: 44px; width: auto; display: block; margin-bottom: 1.25rem; }
    .footer-brandline {
      font-family: 'Fraunces', serif; font-style: italic;
      font-size: 1.125rem; color: rgba(248, 244, 237, 0.85);
      max-width: 320px; line-height: 1.45; margin-top: 0.5rem;
    }
    .footer-col h4 {
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
    .footer-col a { color: rgba(248, 244, 237, 0.7); font-size: 0.9375rem; transition: color 0.2s ease; }
    .footer-col a:hover { color: var(--terracotta-light); }
    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(248, 244, 237, 0.1);
      display: flex; flex-wrap: wrap; gap: 1rem;
      justify-content: space-between; align-items: center;
      font-size: 0.8125rem; color: rgba(248, 244, 237, 0.55);
    }

    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }
    @media (max-width: 720px) {
      .preview-banner { font-size: 0.7rem; padding: 0.55rem 1rem; }
      .brand-logo { height: 36px; }
      .header-actions .btn { display: none; }
      .email-card { padding: 1.5rem 1.5rem; }
      .email-detail a { font-size: 1.25rem; }
      .contact-form { padding: 1.75rem 1.5rem; }
    }
