    :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); }
    .text-link .arrow { display: inline-block; transition: transform 0.2s ease; }
    .text-link:hover .arrow { transform: translateX(3px); }

    .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(2rem, 4.4vw, 3.25rem);
      line-height: 1.1; letter-spacing: -0.025em;
      font-weight: 500; color: var(--cream);
      margin-bottom: 1.75rem;
      max-width: 1000px; 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: 720px; 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: 820px; margin: 0 auto; text-align: center;
    }

    /* Value points strip */
    .values-strip {
      padding: 5rem 0;
      background: var(--cream-warm);
      border-bottom: 1px solid var(--rule);
    }
    .values-grid {
      display: grid; gap: 2.5rem;
    }
    @media (min-width: 820px) {
      .values-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
    }
    .value-item {
      position: relative;
      padding-top: 1.85rem;
      border-top: 1px solid var(--terracotta);
    }
    .value-num {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 0.8125rem;
      letter-spacing: 0.18em;
      color: var(--sage-dark);
      margin-bottom: 0.6rem;
    }
    .value-item h3 {
      font-size: 1.375rem;
      line-height: 1.2;
      margin-bottom: 0.65rem;
      letter-spacing: -0.015em;
    }
    .value-item p {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: var(--ink-muted);
    }

    /* Counselor note */
    .counselor {
      padding: 5rem 0;
      background: var(--cream-warm);
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      margin-top: 5rem;
    }
    .counselor-grid { display: grid; gap: 2rem; max-width: 920px; margin: 0 auto; }
    @media (min-width: 820px) {
      .counselor-grid { grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
    }
    .counselor-side h2 {
      font-size: clamp(1.85rem, 3.4vw, 2.5rem);
      line-height: 1.1; margin-bottom: 1rem;
    }
    .counselor-quote {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.25rem;
      line-height: 1.45;
      color: var(--terracotta-dark);
    }
    .counselor-content p {
      font-size: 1.0625rem;
      line-height: 1.7;
      color: var(--ink);
      margin-bottom: 1.25rem;
    }
    .counselor-content p:last-child { margin-bottom: 0; }
    .counselor-cta { margin-top: 2rem; }

    /* Partnership models */
    .partnerships-intro {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 4rem;
    }
    .partnerships-intro h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }

    .partnerships-grid {
      display: grid; gap: 1.75rem;
    }
    @media (min-width: 820px) {
      .partnerships-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .partnerships-grid .partnership-card:nth-last-child(1):nth-child(odd) {
        grid-column: 1 / -1;
      }
    }

    .partnership-card {
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 24px;
      padding: 2.25rem;
      display: flex; flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .partnership-card:hover {
      transform: translateY(-4px);
      border-color: var(--terracotta-light);
      box-shadow: 0 20px 40px -16px rgba(184, 92, 56, 0.18);
    }
    .partnership-eyebrow {
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--terracotta-dark);
      margin-bottom: 0.85rem;
      display: flex; align-items: center; gap: 0.5rem;
    }
    .partnership-eyebrow::before {
      content: ''; width: 14px; height: 1px; background: var(--terracotta);
    }
    .partnership-card h3 {
      font-size: 1.5rem; line-height: 1.2;
      margin-bottom: 1.25rem; letter-spacing: -0.015em;
    }
    .partnership-meta {
      display: flex; flex-direction: column; gap: 0.85rem;
      margin-bottom: 1.5rem;
    }
    .partnership-meta-row {
      display: flex; gap: 0.85rem;
      font-size: 0.9375rem;
      line-height: 1.55;
    }
    .partnership-meta-label {
      font-weight: 600; color: var(--sage-dark);
      min-width: 80px;
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding-top: 3px;
    }
    .partnership-meta-value { color: var(--ink); flex: 1; }

    .partnership-included { flex: 1; }
    .partnership-included h4 {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 0.85rem;
    }
    .partnership-included ul {
      display: flex; flex-direction: column; gap: 0.55rem;
    }
    .partnership-included li {
      position: relative; padding-left: 1.4rem;
      font-size: 0.9375rem; line-height: 1.55;
    }
    .partnership-included li::before {
      content: ''; position: absolute; left: 0; top: 0.5em;
      width: 0.5rem; height: 0.5rem;
      background: var(--terracotta);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(184, 92, 56, 0.12);
    }
    .partnership-investment {
      margin-top: 1.5rem;
      padding-top: 1.25rem;
      border-top: 1px dashed var(--rule);
      font-family: 'Fraunces', serif;
      font-style: italic;
      color: var(--terracotta-dark);
      font-size: 1.0625rem;
    }
    .partnership-investment strong {
      font-family: 'DM Sans', sans-serif;
      font-style: normal;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage-dark);
      display: block; margin-bottom: 0.4rem;
    }

    .pricing-footnote {
      margin-top: 3rem;
      max-width: 920px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
      background: rgba(232, 166, 114, 0.14);
      border: 1px solid rgba(184, 92, 56, 0.25);
      border-radius: 14px;
    }
    .pricing-footnote-icon {
      color: var(--terracotta);
      font-size: 1.25rem;
      line-height: 1.4;
      flex-shrink: 0;
    }
    .pricing-footnote p {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: var(--ink);
      margin: 0;
    }
    .pricing-footnote strong {
      color: var(--terracotta-dark);
      font-weight: 600;
    }

    /* Why partner */
    .why-partner { background: var(--ink); color: var(--cream); }
    .why-partner h2 {
      color: var(--cream);
      font-size: clamp(1.85rem, 3.4vw, 2.5rem);
      margin-bottom: 3rem;
      max-width: 760px;
    }
    .why-partner .eyebrow { color: var(--terracotta-light); }
    .why-partner .eyebrow::before { background: var(--terracotta-light); }
    .why-grid {
      display: grid; gap: 2.5rem;
    }
    @media (min-width: 820px) { .why-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
    .why-item h3 {
      color: var(--cream);
      font-size: 1.25rem;
      line-height: 1.3;
      margin-bottom: 0.85rem;
      font-weight: 500;
    }
    .why-item p {
      color: rgba(248, 244, 237, 0.78);
      font-size: 0.9375rem;
      line-height: 1.7;
    }

    /* Partnerships list */
    .past-partnerships {
      max-width: 920px; margin: 0 auto;
      display: flex; flex-direction: column;
      gap: 1rem;
    }
    .past-partnership {
      display: flex; gap: 1.5rem;
      padding: 1.5rem 1.75rem;
      background: var(--cream);
      border: 1px solid var(--rule);
      border-radius: 16px;
    }
    @media (max-width: 640px) {
      .past-partnership { flex-direction: column; gap: 0.5rem; padding: 1.25rem 1.5rem; }
    }
    .past-partnership-name {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 1.125rem;
      letter-spacing: -0.01em;
      color: var(--ink);
      min-width: 280px;
    }
    .past-partnership-detail {
      font-size: 0.9375rem;
      line-height: 1.55;
      color: var(--ink-muted);
      flex: 1;
    }
    .past-partnerships-note {
      margin-top: 2rem;
      text-align: center;
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 0.9375rem;
      color: var(--sage-dark);
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .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; }
    }
