    :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;
      -moz-osx-font-smoothing: grayscale;
    }
    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 */
    .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 */
    .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; }

    /* Buttons */
    .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-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
    .btn-secondary:hover { background: var(--ink); color: var(--cream); }
    .btn-on-dark { background: var(--terracotta); color: var(--cream); }
    .btn-on-dark:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(184, 92, 56, 0.55); }
    .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); }
    .text-link .arrow { display: inline-block; transition: transform 0.2s ease; }
    .text-link:hover .arrow { transform: translateX(3px); }

    /* Section base */
    .section { padding: 5rem 0; position: relative; }
    .section-tight { padding: 3.5rem 0; }
    .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 — Deep Pine */
    .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.5rem, 5.5vw, 4rem);
      line-height: 1.05;
      letter-spacing: -0.025em;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 1.5rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }
    .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;
    }

    /* Tiers */
    .tier {
      padding: 5rem 0;
      border-top: 1px solid var(--rule);
    }
    .tier.alt { background: var(--cream-warm); }

    .tier-grid {
      display: grid;
      gap: 3rem;
    }
    @media (min-width: 900px) {
      .tier-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }
    }

    .tier-sidebar { position: sticky; top: 90px; }
    @media (max-width: 899px) { .tier-sidebar { position: static; } }

    .tier-number {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-weight: 400;
      font-size: 0.875rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 1rem;
    }
    .tier-number .total { opacity: 0.6; }

    .tier-title {
      font-size: clamp(1.85rem, 3.4vw, 2.5rem);
      line-height: 1.1;
      margin-bottom: 0.85rem;
      letter-spacing: -0.02em;
    }
    .tier-price {
      font-family: 'Fraunces', serif;
      font-size: 1.125rem;
      font-style: italic;
      color: var(--terracotta-dark);
      margin-bottom: 2rem;
    }
    .tier-cta { display: inline-flex; align-items: center; gap: 0.5rem; }

    .tier-content > * + * { margin-top: 2.25rem; }

    .tier-block h4 {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 0.85rem;
    }
    .tier-block p {
      font-size: 1.0625rem;
      line-height: 1.7;
      color: var(--ink);
    }
    .tier-block .checklist { display: flex; flex-direction: column; gap: 0.6rem; }
    .tier-block .checklist li {
      position: relative;
      padding-left: 1.5rem;
      font-size: 0.9375rem;
      line-height: 1.55;
      color: var(--ink);
    }
    .tier-block .checklist li::before {
      content: '';
      position: absolute;
      left: 0; top: 0.5em;
      width: 0.55rem;
      height: 0.55rem;
      background: var(--terracotta);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(184, 92, 56, 0.12);
    }

    .quotes { display: flex; flex-direction: column; gap: 0.75rem; }
    .quote {
      background: var(--cream);
      border-left: 3px solid var(--sage);
      padding: 1.1rem 1.4rem;
      border-radius: 4px 12px 12px 4px;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1rem;
      line-height: 1.55;
      color: var(--ink);
    }
    .tier.alt .quote { background: var(--cream-warm); border-left-color: var(--sage); }

    .packages { display: grid; gap: 1rem; }
    @media (min-width: 720px) {
      .packages { grid-template-columns: repeat(2, 1fr); }
    }
    .package {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 16px;
      padding: 1.5rem 1.4rem;
    }
    .tier.alt .package { background: var(--cream); border-color: var(--rule); }
    .package-eyebrow {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--terracotta-dark);
      margin-bottom: 0.5rem;
    }
    .package h5 {
      font-family: 'Fraunces', serif;
      font-size: 1.1875rem;
      font-weight: 500;
      margin-bottom: 0.6rem;
      letter-spacing: -0.01em;
    }
    .package p {
      font-size: 0.9375rem;
      line-height: 1.55;
      color: var(--ink-muted);
    }

    .pricing-breakdown {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 16px;
      padding: 1.5rem 1.75rem;
    }
    .tier.alt .pricing-breakdown { background: var(--cream); }
    .pricing-breakdown ul { display: flex; flex-direction: column; gap: 0.75rem; }
    .pricing-breakdown li {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px dashed var(--rule);
      font-size: 0.9375rem;
      line-height: 1.45;
    }
    .pricing-breakdown li:last-child { border-bottom: none; padding-bottom: 0; }
    .pricing-breakdown .label { color: var(--ink); flex: 1; }
    .pricing-breakdown .label strong { display: block; font-weight: 600; }
    .pricing-breakdown .value {
      font-family: 'Fraunces', serif;
      font-style: italic;
      color: var(--terracotta-dark);
      white-space: nowrap;
    }
    .pricing-note {
      margin-top: 1rem;
      font-size: 0.8125rem;
      color: var(--sage-dark);
      font-style: italic;
    }

    /* Notes (curriculum / pricing aside) */
    .note-aside {
      border-left: 2px solid var(--terracotta-light);
      padding: 0.85rem 1.25rem;
      background: rgba(232, 166, 114, 0.08);
      border-radius: 4px 8px 8px 4px;
      font-size: 0.9375rem;
      line-height: 1.6;
      color: var(--ink);
    }
    .note-aside strong { display: block; margin-bottom: 0.25rem; color: var(--terracotta-dark); }

    /* Access section */
    .access {
      background: var(--ink);
      color: var(--cream);
      padding: 5rem 0;
    }
    .access h2 {
      color: var(--cream);
      font-size: clamp(1.85rem, 3.4vw, 2.5rem);
      margin-bottom: 1.5rem;
      max-width: 760px;
    }
    .access p {
      color: rgba(248, 244, 237, 0.82);
      font-size: 1.0625rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
      max-width: 720px;
    }
    .access .eyebrow { color: var(--terracotta-light); }
    .access .eyebrow::before { background: var(--terracotta-light); }

    /* What we don't do */
    .what-not h2 {
      font-size: clamp(1.85rem, 3.4vw, 2.5rem);
      margin-bottom: 1rem;
    }
    .what-not-intro {
      font-size: 1.125rem;
      color: var(--ink-muted);
      margin-bottom: 3rem;
      max-width: 640px;
    }
    .what-not-grid { display: grid; gap: 2rem; }
    @media (min-width: 720px) { .what-not-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }

    .what-not-item h3 {
      font-size: 1.25rem;
      line-height: 1.3;
      margin-bottom: 0.85rem;
      color: var(--terracotta-dark);
      font-weight: 500;
    }
    .what-not-item p {
      font-size: 0.9375rem;
      line-height: 1.7;
      color: var(--ink-muted);
    }

    /* FAQ */
    .faq { background: var(--cream-warm); }
    .faq h2 {
      font-size: clamp(1.85rem, 3.4vw, 2.5rem);
      margin-bottom: 3rem;
      text-align: center;
    }
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .faq-item {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.25s ease;
    }
    .faq-item[open] { border-color: var(--sage-light); }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 1.25rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      font-family: 'Fraunces', serif;
      font-size: 1.0625rem;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      color: var(--terracotta);
      transition: transform 0.25s ease;
      flex-shrink: 0;
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-item-body {
      padding: 0 1.5rem 1.5rem;
      color: var(--ink-muted);
      font-size: 0.9375rem;
      line-height: 1.7;
    }
    .faq-item-body p + p { margin-top: 0.85rem; }

    /* Final CTA */
    .final-cta {
      text-align: center;
      padding: 7rem 0 8rem;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      max-width: 100vw;
      max-height: 100vw;
      background: radial-gradient(circle, rgba(184, 92, 56, 0.08) 0%, transparent 60%);
      border-radius: 50%;
      pointer-events: none;
    }
    .final-cta .container { position: relative; z-index: 1; }
    .final-cta h2 {
      font-size: clamp(2.25rem, 5vw, 3.75rem);
      line-height: 1.05;
      max-width: 800px;
      margin: 0 auto 1.75rem;
    }
    .final-cta h2 .accent { color: var(--sage-dark); font-style: italic; font-weight: 400; }
    .final-cta p {
      font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
      color: var(--ink-muted);
      max-width: 600px;
      margin: 0 auto 2.5rem;
      line-height: 1.65;
    }
    .final-cta-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }

    /* 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);
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }

    /* Reveal */
    .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 (max-width: 720px) {
      .preview-banner { font-size: 0.7rem; padding: 0.55rem 1rem; }
      .brand-logo { height: 36px; }
      .header-actions .btn { display: none; }
      .tier { padding: 3.5rem 0; }
    }
