    /* ============================================================
       DESIGN TOKENS
       ============================================================ */
    :root {
      /* Color — light mode (default) */
      --color-bg:               oklch(97% 0.012 80);
      --color-surface:          oklch(95% 0.015 80);
      --color-surface-2:        oklch(93% 0.018 78);
      --color-surface-offset:   oklch(91% 0.012 75);
      --color-divider:          oklch(85% 0.010 78);

      --color-text:             oklch(22% 0.012 80);
      --color-text-muted:       oklch(42% 0.012 78);
      --color-text-faint:       oklch(60% 0.010 78);
      --color-text-inverse:     oklch(96% 0.010 80);

      --color-border:           oklch(from var(--color-text) l c h / 0.10);

      --color-primary:          oklch(38% 0.070 145);
      --color-primary-hover:    oklch(33% 0.072 145);
      --color-primary-active:   oklch(28% 0.070 145);
      --color-primary-highlight: oklch(88% 0.040 145);

      --color-accent-warm:      oklch(62% 0.060 55);

      --color-hero-bg:          oklch(22% 0.018 110);
      --color-hero-bg-2:        oklch(18% 0.020 110);

      /* Typography */
      --font-display: 'Zodiak', Georgia, serif;
      --font-body:    'Satoshi', system-ui, -apple-system, sans-serif;

      --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
      --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
      --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
      --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
      --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
      --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
      --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

      /* Spacing */
      --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-32: 8rem;

      /* Radius */
      --radius-sm:   0.25rem;
      --radius-md:   0.5rem;
      --radius-lg:   0.75rem;
      --radius-xl:   1rem;
      --radius-full: 9999px;

      /* Shadows */
      --shadow-sm: 0 1px 2px oklch(0.2 0.02 80 / 0.06);
      --shadow-md: 0 4px 12px oklch(0.2 0.02 80 / 0.08), 0 1px 3px oklch(0.2 0.02 80 / 0.05);
      --shadow-lg: 0 12px 32px oklch(0.2 0.02 80 / 0.10), 0 3px 8px oklch(0.2 0.02 80 / 0.06);

      /* Transitions */
      --transition-base: 180ms cubic-bezier(0.16, 1, 0.3, 1);
      --transition-slow: 320ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Light mode only. The dark-mode @media and [data-theme="dark"] blocks
       were removed: this site ships single-theme to avoid token-flip bugs on
       the always-dark hero and contact sections. */

    /* ============================================================
       BASE
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      scroll-behavior: smooth;
      scroll-padding-top: var(--space-16);
      hanging-punctuation: first last;
    }
    body {
      min-height: 100dvh;
      font-family: var(--font-body);
      font-size: var(--text-base);
      color: var(--color-text);
      background-color: var(--color-bg);
      line-height: 1.6;
    }
    img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
    ul[role="list"], ol[role="list"] { list-style: none; }
    input, button, textarea, select { font: inherit; color: inherit; }
    h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); font-weight: 500; }
    p, li, figcaption { text-wrap: pretty; max-width: 65ch; }
    a, button, [role="button"], input, textarea, select {
      transition: color var(--transition-base), background var(--transition-base),
                  border-color var(--transition-base), box-shadow var(--transition-base),
                  opacity var(--transition-base);
    }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; background: none; border: none; }
    :focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }
    ::selection { background: oklch(from var(--color-primary) l c h / 0.15); color: var(--color-text); }

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

    .container {
      max-width: 1100px;
      margin-inline: auto;
      padding-inline: clamp(var(--space-4), 5vw, var(--space-12));
    }
    .container-wide { max-width: 1280px; margin-inline: auto; padding-inline: clamp(var(--space-4), 5vw, var(--space-12)); }

    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
    }
    .skip-link:focus {
      position: fixed; top: var(--space-3); left: var(--space-3); z-index: 100;
      width: auto; height: auto; clip: auto; margin: 0;
      padding: var(--space-3) var(--space-5);
      background: var(--color-primary); color: var(--color-text-inverse);
      border-radius: var(--radius-md);
    }

    /* Typography helpers */
    .overline {
      font-family: var(--font-body);
      font-size: var(--text-xs);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-muted);
      font-weight: 500;
    }
    .eyebrow-trust {
      font-family: var(--font-body);
      font-size: var(--text-xs);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--color-text-muted);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-2);
      font-family: var(--font-body);
      font-size: var(--text-sm);
      font-weight: 500;
      padding: var(--space-3) var(--space-6);
      border-radius: var(--radius-md);
      min-height: 44px;
      white-space: nowrap;
      letter-spacing: 0.005em;
    }
    .btn-primary {
      background: var(--color-primary);
      color: oklch(98% 0.01 80);
    }
    .btn-primary:hover { background: var(--color-primary-hover); }
    .btn-primary:active { background: var(--color-primary-active); }
    .btn-ghost {
      background: transparent;
      color: var(--color-text-inverse);
      border: 1px solid oklch(from var(--color-text-inverse) l c h / 0.25);
    }
    .btn-ghost:hover { background: oklch(from var(--color-text-inverse) l c h / 0.06); }
    .btn-sm {
      font-size: var(--text-xs);
      padding: var(--space-2) var(--space-4);
      min-height: 36px;
    }

    /* ============================================================
       HEADER
       ============================================================ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: oklch(from var(--color-surface) l c h / 0.82);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: box-shadow var(--transition-base), border-color var(--transition-base);
    }
    .site-header.scrolled {
      box-shadow: var(--shadow-sm);
      border-bottom-color: var(--color-border);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-6);
      height: 64px;
    }
    .logo-link {
      display: inline-flex;
      align-items: center;
      gap: var(--space-3);
      color: var(--color-text);
    }
    .logo-mark { width: 28px; height: 28px; color: var(--color-primary); flex-shrink: 0; }
    .logo-text {
      font-family: var(--font-display);
      font-size: 1.0625rem;
      letter-spacing: 0.005em;
      font-weight: 500;
      color: var(--color-text);
    }
    .nav-primary {
      display: none;
      gap: var(--space-6);
    }
    .nav-primary a {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      padding: var(--space-2) 0;
      position: relative;
    }
    .nav-primary a:hover { color: var(--color-primary); }
    .header-actions {
      display: flex;
      align-items: center;
      gap: var(--space-2);
    }
    .hamburger {
      width: 44px; height: 44px;
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--color-text);
      border-radius: var(--radius-md);
    }
    .hamburger:hover { background: var(--color-surface-2); }

    .nav-cta { display: none; }

    @media (min-width: 768px) {
      .nav-primary { display: flex; }
      .hamburger { display: none; }
      .nav-cta { display: inline-flex; }
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 64px 0 auto 0;
      background: var(--color-bg);
      border-bottom: 1px solid var(--color-border);
      padding: var(--space-4) clamp(var(--space-4), 5vw, var(--space-8));
      box-shadow: var(--shadow-md);
      z-index: 49;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-1); }
    .mobile-menu a {
      display: block;
      padding: var(--space-4);
      min-height: 44px;
      font-size: var(--text-base);
      border-radius: var(--radius-md);
      color: var(--color-text);
    }
    .mobile-menu a:hover { background: var(--color-surface-2); color: var(--color-primary); }
    .mobile-menu .mobile-cta {
      margin-top: var(--space-3);
      padding-top: var(--space-3);
      border-top: 1px solid var(--color-border);
    }

    /* ============================================================
       HERO
       ============================================================ */
    .hero {
      position: relative;
      background: var(--color-hero-bg);
      color: var(--color-text-inverse);
      min-height: 100dvh;
      padding-block: clamp(var(--space-20), 12vw, var(--space-32));
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.85  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
      opacity: 0.04;
      pointer-events: none;
      mix-blend-mode: screen;
    }
    .hero::after {
      content: "";
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 30% 30%, oklch(from var(--color-hero-bg) calc(l + 0.05) c h / 0.6), transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      gap: var(--space-12);
      grid-template-columns: 1fr;
      align-items: center;
    }
    @media (min-width: 900px) {
      .hero-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-16);
      }
    }
    .hero-text { display: flex; flex-direction: column; gap: var(--space-6); }
    .hero .overline { color: oklch(from var(--color-text-inverse) l c h / 0.65); }
    .hero h1 {
      font-family: var(--font-display);
      font-size: var(--text-3xl);
      color: var(--color-text-inverse);
      font-weight: 400;
      letter-spacing: -0.015em;
      max-width: 14ch;
    }
    .hero-subhead {
      font-size: var(--text-base);
      color: oklch(from var(--color-text-inverse) l c h / 0.75);
      max-width: 52ch;
      line-height: 1.65;
    }
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-3);
      margin-top: var(--space-2);
    }
    .trust-bar {
      display: flex; flex-wrap: wrap;
      gap: var(--space-2) var(--space-4);
      list-style: none;
      margin-top: var(--space-4);
    }
    .trust-bar li {
      font-size: var(--text-xs);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: oklch(from var(--color-text-inverse) l c h / 0.55);
      display: inline-flex; align-items: center; gap: var(--space-4);
    }
    .trust-bar li:not(:last-child)::after {
      content: "·";
      margin-left: var(--space-4);
      opacity: 0.5;
    }
    .hero-image {
      position: relative;
      aspect-ratio: 4 / 5;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .hero-image img { width: 100%; height: 100%; object-fit: cover; }
    .hero-image::after {
      content: "";
      position: absolute; inset: 0;
      box-shadow: inset 0 0 0 1px oklch(from var(--color-text-inverse) l c h / 0.08);
      border-radius: inherit;
      pointer-events: none;
    }
    .scroll-cue {
      position: absolute;
      bottom: var(--space-8);
      left: 50%;
      transform: translateX(-50%);
      color: oklch(from var(--color-text-inverse) l c h / 0.4);
      animation: bob 2.4s ease-in-out infinite;
      z-index: 2;
    }
    @keyframes bob {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, 6px); }
    }

    /* ============================================================
       SECTIONS — shared
       ============================================================ */
    section { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }
    .section-sand { background: var(--color-surface); }
    .section-tight { padding-block: clamp(var(--space-12), 7vw, var(--space-24)); }
    .section-dark { background: var(--color-hero-bg); color: var(--color-text-inverse); }

    .section-h2 {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    /* ============================================================
       SECTION 7.2 — Why Owners Sell
       ============================================================ */
    .about-grid {
      display: grid;
      gap: var(--space-12);
      grid-template-columns: 1fr;
      align-items: start;
    }
    @media (min-width: 900px) {
      .about-grid { grid-template-columns: 3fr 2fr; gap: var(--space-16); }
    }
    .about-text { display: flex; flex-direction: column; gap: var(--space-6); }
    .about-text p { color: var(--color-text); font-size: var(--text-base); max-width: 55ch; line-height: 1.7; }
    .about-text p + p { color: var(--color-text-muted); }
    .about-image {
      aspect-ratio: 7 / 8;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .about-image img { width: 100%; height: 100%; object-fit: cover; }
    .reasons-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
      margin-top: var(--space-6);
    }
    .reasons-list li {
      padding-left: var(--space-4);
      border-left: 2px solid var(--color-primary-highlight);
      display: flex;
      flex-direction: column;
      gap: var(--space-1);
      max-width: 60ch;
    }
    .reasons-list .reason-label {
      font-family: var(--font-body);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--color-text);
    }
    .reasons-list .reason-desc {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.55;
    }

    /* ============================================================
       SECTION 7.3 — Process
       ============================================================ */
    .process-head {
      text-align: center;
      display: flex; flex-direction: column;
      align-items: center; gap: var(--space-3);
      margin-bottom: var(--space-16);
    }
    .process-head h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; }
    .process-head p { color: var(--color-text-muted); font-size: var(--text-base); }

    .process-steps {
      position: relative;
      display: grid;
      gap: var(--space-10);
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) {
      .process-steps { grid-template-columns: repeat(3, 1fr); gap: var(--space-10); }
      .process-steps::before {
        content: "";
        position: absolute;
        top: 32px;
        left: 12%; right: 12%;
        height: 1px;
        background: var(--color-divider);
        z-index: 0;
      }
    }
    /* Mobile vertical connector */
    @media (max-width: 899px) {
      .process-steps::before {
        content: "";
        position: absolute;
        top: 0; bottom: 0;
        left: 24px;
        width: 1px;
        background: var(--color-divider);
      }
      .step { padding-left: var(--space-12); position: relative; }
    }

    .step {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }
    .step-number {
      font-family: var(--font-display);
      font-size: var(--text-3xl);
      font-weight: 400;
      color: var(--color-primary-highlight);
      line-height: 1;
      letter-spacing: -0.02em;
      opacity: 0.9;
    }
    @media (max-width: 899px) {
      .step-number {
        position: absolute;
        left: 0;
        top: 0;
        background: var(--color-surface);
        padding-right: var(--space-3);
        font-size: var(--text-2xl);
      }
    }
    .step-title {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 500;
      color: var(--color-text);
    }
    .step-desc {
      font-size: var(--text-base);
      color: var(--color-text-muted);
      line-height: 1.65;
      max-width: 38ch;
    }
    .process-reassure {
      text-align: center;
      margin-top: var(--space-16);
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      font-style: italic;
      max-width: 60ch;
      margin-inline: auto;
    }

    /* ============================================================
       SECTION 7.4 — Why us / Bento
       ============================================================ */
    .why-head { margin-bottom: var(--space-12); max-width: 60ch; }
    .why-head h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; letter-spacing: -0.01em; }
    .why-head p {
      color: var(--color-text-muted);
      margin-top: var(--space-4);
      font-size: var(--text-base);
      max-width: 55ch;
    }

    .bento {
      display: grid;
      gap: var(--space-4);
      grid-template-columns: 1fr;
    }
    @media (min-width: 700px) {
      .bento { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1000px) {
      .bento { grid-template-columns: repeat(3, 1fr); }
      .bento .card-span-2 { grid-column: span 2; }
    }
    .bento-card {
      background: var(--color-surface-offset);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: var(--space-8);
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
      box-shadow: var(--shadow-sm);
      min-height: 200px;
    }
    .bento-card h3 {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 500;
      letter-spacing: -0.005em;
      max-width: 22ch;
    }
    .bento-card p {
      color: var(--color-text-muted);
      font-size: var(--text-base);
      line-height: 1.6;
      max-width: 55ch;
    }
    .bento-card.card-span-2 p { font-size: var(--text-base); }
    .bento-card .marker {
      width: 28px; height: 1px;
      background: var(--color-primary);
      margin-bottom: var(--space-2);
    }

    /* ============================================================
       SECTION 7.5 — Stewardship
       ============================================================ */
    .stewardship-grid {
      display: grid;
      gap: var(--space-12);
      grid-template-columns: 1fr;
      align-items: start;
    }
    @media (min-width: 900px) {
      .stewardship-grid { grid-template-columns: 3fr 2fr; gap: var(--space-16); align-items: center; }
    }
    .stewardship-text { display: flex; flex-direction: column; gap: var(--space-5); }
    .stewardship-text h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; }
    .stewardship-text p { color: var(--color-text); font-size: var(--text-base); line-height: 1.7; max-width: 55ch; }
    .stewardship-text p + p { color: var(--color-text-muted); }
    blockquote.pull-quote {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 400;
      line-height: 1.3;
      color: var(--color-text);
      border-left: 3px solid var(--color-primary);
      padding-left: var(--space-6);
      margin-block: var(--space-8) var(--space-4);
      max-width: 24ch;
      letter-spacing: -0.005em;
    }
    .stewardship-image {
      aspect-ratio: 3 / 2;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .stewardship-image img { width: 100%; height: 100%; object-fit: cover; }

    /* ============================================================
       SECTION 7.6 — FAQ
       ============================================================ */
    .faq-section { background: var(--color-surface); }
    .faq-wrap { max-width: 860px; margin-inline: auto; }
    .faq-head {
      text-align: center;
      margin-bottom: var(--space-12);
    }
    .faq-head h2 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--color-border);
    }
    .faq-item {
      border-bottom: 1px solid var(--color-border);
    }
    .faq-trigger {
      width: 100%;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-6);
      padding: var(--space-5) var(--space-2);
      min-height: 64px;
      font-family: var(--font-body);
      font-size: var(--text-base);
      font-weight: 500;
      color: var(--color-text);
    }
    .faq-trigger:hover { color: var(--color-primary); }
    .faq-icon {
      width: 20px; height: 20px;
      position: relative;
      flex-shrink: 0;
      color: var(--color-text-muted);
    }
    .faq-icon::before, .faq-icon::after {
      content: "";
      position: absolute;
      background: currentColor;
      top: 50%; left: 50%;
      transition: transform var(--transition-base), opacity var(--transition-base);
    }
    .faq-icon::before {
      width: 14px; height: 1.5px;
      transform: translate(-50%, -50%);
    }
    .faq-icon::after {
      width: 1.5px; height: 14px;
      transform: translate(-50%, -50%);
    }
    .faq-trigger[aria-expanded="true"] .faq-icon::after {
      transform: translate(-50%, -50%) rotate(90deg);
      opacity: 0;
    }
    .faq-panel {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows var(--transition-slow);
    }
    .faq-panel-inner { overflow: hidden; }
    .faq-trigger[aria-expanded="true"] + .faq-panel { grid-template-rows: 1fr; }
    .faq-panel-inner p {
      padding: 0 var(--space-2) var(--space-6) var(--space-2);
      color: var(--color-text-muted);
      font-size: var(--text-base);
      line-height: 1.7;
      max-width: 70ch;
    }

    /* ============================================================
       SECTION 7.7 — Contact / Form
       ============================================================ */
    .contact-section {
      background: var(--color-hero-bg);
      color: var(--color-text-inverse);
      position: relative;
      overflow: hidden;
    }
    .contact-section::before {
      content: "";
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.85  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n2)' opacity='0.5'/></svg>");
      opacity: 0.04;
      pointer-events: none;
    }
    .contact-grid {
      position: relative;
      z-index: 1;
      display: grid;
      gap: var(--space-12);
      grid-template-columns: 1fr;
      align-items: start;
    }
    @media (min-width: 900px) {
      .contact-grid { grid-template-columns: 2fr 3fr; gap: var(--space-16); }
    }
    .contact-left { display: flex; flex-direction: column; gap: var(--space-6); }
    .contact-left h2 {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      font-weight: 500;
      color: var(--color-text-inverse);
    }
    .contact-left p {
      color: oklch(from var(--color-text-inverse) l c h / 0.7);
      font-size: var(--text-base);
      line-height: 1.7;
      max-width: 42ch;
    }
    .contact-rows {
      display: flex; flex-direction: column;
      gap: var(--space-3);
      margin-top: var(--space-4);
      padding-top: var(--space-6);
      border-top: 1px solid oklch(from var(--color-text-inverse) l c h / 0.12);
    }
    .contact-row {
      display: flex; align-items: center; gap: var(--space-3);
      color: oklch(from var(--color-text-inverse) l c h / 0.8);
      font-size: var(--text-sm);
    }
    .contact-row svg {
      width: 18px; height: 18px;
      color: oklch(from var(--color-text-inverse) l c h / 0.55);
      flex-shrink: 0;
    }

    .form-card {
      background: oklch(from var(--color-text-inverse) l c h / 0.04);
      border: 1px solid oklch(from var(--color-text-inverse) l c h / 0.10);
      border-radius: var(--radius-xl);
      padding: clamp(var(--space-6), 3vw, var(--space-10));
      backdrop-filter: blur(8px);
    }
    .form-grid {
      display: grid;
      gap: var(--space-5);
      grid-template-columns: 1fr;
    }
    @media (min-width: 600px) {
      .form-grid { grid-template-columns: repeat(2, 1fr); }
      .form-field-full { grid-column: 1 / -1; }
    }
    .form-field { display: flex; flex-direction: column; gap: var(--space-2); }
    .form-field label {
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--color-text-inverse);
      display: flex; align-items: baseline; gap: var(--space-2);
    }
    .form-field .optional {
      font-size: var(--text-xs);
      color: oklch(from var(--color-text-inverse) l c h / 0.5);
      font-weight: 400;
      letter-spacing: 0.02em;
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
      background: oklch(from var(--color-text-inverse) l c h / 0.06);
      border: 1px solid oklch(from var(--color-text-inverse) l c h / 0.15);
      color: var(--color-text-inverse);
      border-radius: var(--radius-md);
      padding: var(--space-3) var(--space-4);
      font-size: var(--text-base);
      width: 100%;
      min-height: 44px;
    }
    .form-field textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: oklch(from var(--color-text-inverse) l c h / 0.4);
    }
    .form-field input:focus-visible,
    .form-field select:focus-visible,
    .form-field textarea:focus-visible {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.20);
    }
    .form-field select {
      appearance: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%23f4ede0' stroke-opacity='0.6' stroke-width='1.5' stroke-linecap='round'/></svg>");
      background-repeat: no-repeat;
      background-position: right var(--space-4) center;
      padding-right: var(--space-10);
    }
    .form-consent {
      display: flex;
      align-items: flex-start;
      gap: var(--space-3);
      margin-top: var(--space-2);
      color: oklch(from var(--color-text-inverse) l c h / 0.75);
      font-size: var(--text-sm);
      line-height: 1.5;
      cursor: pointer;
    }
    .form-consent input {
      margin-top: 3px;
      width: 18px; height: 18px;
      accent-color: var(--color-primary);
      flex-shrink: 0;
    }
    .form-submit {
      width: 100%;
      background: var(--color-primary);
      color: oklch(98% 0.01 80);
      font-weight: 600;
      font-size: var(--text-sm);
      padding: var(--space-4);
      border-radius: var(--radius-md);
      margin-top: var(--space-2);
      letter-spacing: 0.01em;
      min-height: 52px;
    }
    .form-submit:hover { background: var(--color-primary-hover); }

    .form-success {
      display: none;
      padding: var(--space-10) var(--space-4);
      text-align: center;
      color: var(--color-text-inverse);
    }
    .form-success.visible { display: block; }
    .form-success .check {
      width: 56px; height: 56px;
      border-radius: var(--radius-full);
      display: inline-flex; align-items: center; justify-content: center;
      background: oklch(from var(--color-primary) l c h / 0.18);
      color: var(--color-primary);
      margin-bottom: var(--space-5);
    }
    .form-success h3 {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      margin-bottom: var(--space-3);
      color: var(--color-text-inverse);
      font-weight: 500;
    }
    .form-success p { color: oklch(from var(--color-text-inverse) l c h / 0.7); max-width: 38ch; margin-inline: auto; }

    .form-active.hidden { display: none; }

    /* ============================================================
       FOOTER
       ============================================================ */
    .site-footer {
      background: var(--color-surface);
      padding-block: var(--space-16) var(--space-8);
      border-top: 1px solid var(--color-border);
    }
    .footer-row-1 {
      display: grid;
      gap: var(--space-10);
      grid-template-columns: 1fr;
    }
    @media (min-width: 800px) {
      .footer-row-1 { grid-template-columns: 1.2fr 1fr 1fr; gap: var(--space-12); }
    }
    .footer-brand { display: flex; flex-direction: column; gap: var(--space-3); }
    .footer-brand .logo-link { color: var(--color-text); }
    .footer-brand p {
      color: var(--color-text-muted);
      font-size: var(--text-sm);
      max-width: 32ch;
      line-height: 1.6;
    }
    .footer-col h4 {
      font-family: var(--font-body);
      font-size: var(--text-xs);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-faint);
      font-weight: 500;
      margin-bottom: var(--space-4);
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
    .footer-col a {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
    }
    .footer-col a:hover { color: var(--color-primary); }
    .footer-col p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }
    .footer-row-2 {
      margin-top: var(--space-12);
      padding-top: var(--space-6);
      border-top: 1px solid var(--color-border);
      text-align: center;
      font-size: var(--text-xs);
      color: var(--color-text-faint);
      max-width: 70ch;
      margin-inline: auto;
    }

    /* ============================================================
       SCROLL ANIMATIONS
       ============================================================ */
    @supports (animation-timeline: scroll()) {
      .fade-in-section {
        opacity: 0;
        animation: fade-in-reveal linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 60%;
      }
    }
    @keyframes fade-in-reveal { to { opacity: 1; } }
