/* ─── Art Direction ────────────────────────────────────────────
       Concept: Nature + Engineering — warm earth + botanical green
       Palette: Warm terracotta surfaces, deep forest green primary
       Typography: Zodiak (serif display) + Satoshi (clean body)
       Density: Spacious / editorial — inspired by Apple & Airbnb
    ────────────────────────────────────────────────────────────── */

    :root, [data-theme="light"] {
      --font-display: 'Zodiak', Georgia, serif;
      --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;

      /* Type scale */
      --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);
      --text-hero: clamp(3rem,     0.5rem + 7vw, 8rem);

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

      /* Botany Warm Earth palette */
      --color-bg:             #f5f1eb;
      --color-surface:        #f7f4ef;
      --color-surface-2:      #faf8f4;
      --color-surface-offset: #ede8df;
      --color-surface-offset-2: #e5dfd4;
      --color-surface-dynamic: #d9d1c6;
      --color-divider:        #cec6bb;
      --color-border:         #c5bdb0;

      /* Text */
      --color-text:           #2a2318;
      --color-text-muted:     #6b5f4f;
      --color-text-faint:     #a89880;
      --color-text-inverse:   #f7f4ef;

      /* Primary — deep forest green */
      --color-primary:        #2d5a27;
      --color-primary-hover:  #1e3f1a;
      --color-primary-active: #142a11;
      --color-primary-highlight: #c4d4c0;

      /* Accent — terracotta */
      --color-accent:         #b85c2c;
      --color-accent-hover:   #8f431c;
      --color-accent-highlight: #e8d0c0;

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

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

      /* Shadows */
      --shadow-sm: 0 1px 2px oklch(0.18 0.03 60 / 0.07);
      --shadow-md: 0 4px 16px oklch(0.18 0.03 60 / 0.10);
      --shadow-lg: 0 16px 40px oklch(0.18 0.03 60 / 0.14);

      /* Content widths */
      --content-narrow: 640px;
      --content-default: 960px;
      --content-wide: 1200px;
    }

    [data-theme="dark"] {
      --color-bg:             #18150f;
      --color-surface:        #1d1a13;
      --color-surface-2:      #221e16;
      --color-surface-offset: #1a1710;
      --color-surface-offset-2: #1f1c14;
      --color-surface-dynamic: #2c2820;
      --color-divider:        #2e2a22;
      --color-border:         #3a3528;
      --color-text:           #d4cfc5;
      --color-text-muted:     #8a8070;
      --color-text-faint:     #5a5248;
      --color-text-inverse:   #221e16;
      --color-primary:        #6ea868;
      --color-primary-hover:  #4a8944;
      --color-primary-active: #336b2e;
      --color-primary-highlight: #2a3a28;
      --color-accent:         #d97b4a;
      --color-accent-hover:   #c05e2c;
      --color-accent-highlight: #3d2a1e;
      --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.25);
      --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
      --shadow-lg: 0 16px 40px oklch(0 0 0 / 0.45);
    }

    /* ─── Reset & 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-20);
    }
    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"] { list-style: none; }
    input, button, textarea, select { font: inherit; color: inherit; }
    h1, h2, h3, h4 { text-wrap: balance; line-height: 1.1; font-family: var(--font-display); }
    p { text-wrap: pretty; }
    button { cursor: pointer; background: none; border: none; }
    a { color: inherit; text-decoration: none; }
    a, button, [role="button"] {
      transition: color var(--transition), background var(--transition),
                  border-color var(--transition), box-shadow var(--transition),
                  opacity var(--transition);
    }
    ::selection { background: oklch(from var(--color-primary) l c h / 0.2); }
    :focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

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

    /* ─── Scroll Reveal ──────────────────────────────────────────  */
    .fade-in { opacity: 1; }
    @supports (animation-timeline: scroll()) {
      .fade-in {
        opacity: 0;
        animation: reveal-fade linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 80%;
      }
    }
    @keyframes reveal-fade { to { opacity: 1; } }

    /* ─── Layout Helpers ─────────────────────────────────────────── */
    .container {
      max-width: var(--content-wide);
      margin-inline: auto;
      padding-inline: clamp(var(--space-4), 5vw, var(--space-16));
    }
    .container--narrow { max-width: var(--content-narrow); }
    .container--default { max-width: var(--content-default); }

    /* ─── NAV ────────────────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: var(--space-4) 0;
      backdrop-filter: blur(20px) saturate(160%);
      background: oklch(from var(--color-bg) l c h / 0.82);
      border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.07);
    }
    .nav__inner {
      max-width: var(--content-wide);
      margin-inline: auto;
      padding-inline: clamp(var(--space-4), 5vw, var(--space-16));
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav__logo {
      display: flex; align-items: center; gap: var(--space-3);
      font-family: var(--font-display);
      font-size: var(--text-base);
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--color-text);
    }
    .nav__logo svg { flex-shrink: 0; }
    .nav__links {
      display: flex; align-items: center; gap: var(--space-8);
      list-style: none;
    }
    .nav__links a {
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--color-text-muted);
    }
    .nav__links a:hover { color: var(--color-text); }
    .nav__right { display: flex; align-items: center; gap: var(--space-4); }
    .nav__cta {
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--color-text-inverse);
      background: var(--color-primary);
      padding: var(--space-2) var(--space-5);
      border-radius: var(--radius-full);
    }
    .nav__cta:hover { background: var(--color-primary-hover); }
    .theme-toggle {
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      border-radius: var(--radius-full);
      color: var(--color-text-muted);
      border: 1px solid oklch(from var(--color-text) l c h / 0.12);
    }
    .theme-toggle:hover { color: var(--color-text); background: var(--color-surface-offset); }
    .nav__hamburger { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; }

    @media (max-width: 768px) {
      .nav__links { display: none; }
      .nav__cta { display: none; }
      .nav__hamburger { display: flex; }
    }

    /* ─── HERO ───────────────────────────────────────────────────── */
    .hero {
      min-height: 100svh;
      display: grid;
      place-items: center;
      padding-top: var(--space-24);
      padding-bottom: var(--space-24);
      position: relative;
      overflow: hidden;
    }
    .hero__bg {
      position: absolute; inset: 0; z-index: 0;
    }
    .hero__bg img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.28) saturate(0.7);
    }
    .hero__bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(in oklab,
        oklch(0.15 0.04 80 / 0.85) 0%,
        oklch(0.15 0.04 80 / 0.6) 50%,
        oklch(0.15 0.04 80 / 0.75) 100%);
    }
    .hero__content {
      position: relative; z-index: 1;
      text-align: center;
      padding-inline: clamp(var(--space-4), 6vw, var(--space-24));
      max-width: 900px;
    }
    .hero__eyebrow {
      display: inline-flex; align-items: center; gap: var(--space-2);
      font-size: var(--text-xs);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: oklch(0.75 0.08 140);
      background: oklch(from var(--color-primary) l c h / 0.25);
      border: 1px solid oklch(from var(--color-primary) l c h / 0.4);
      padding: var(--space-1) var(--space-4);
      border-radius: var(--radius-full);
      margin-bottom: var(--space-6);
    }
    .hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: oklch(0.75 0.12 140); }
    .hero__title {
      font-size: var(--text-hero);
      font-weight: 300;
      color: #f0ece4;
      letter-spacing: -0.03em;
      line-height: 1.0;
      margin-bottom: var(--space-6);
    }
    .hero__title em {
      font-style: italic;
      font-weight: 400;
      color: oklch(0.78 0.1 140);
    }
    .hero__sub {
      font-size: var(--text-lg);
      color: oklch(0.72 0.02 70);
      font-weight: 300;
      max-width: 56ch;
      margin-inline: auto;
      margin-bottom: var(--space-10);
      line-height: 1.5;
    }
    .hero__actions { display: flex; align-items: center; justify-content: center; gap: var(--space-4); flex-wrap: wrap; }
    .btn {
      display: inline-flex; align-items: center; gap: var(--space-2);
      font-size: var(--text-sm); font-weight: 600;
      padding: var(--space-3) var(--space-6);
      border-radius: var(--radius-full);
      transition: all var(--transition);
    }
    .btn--primary {
      background: var(--color-primary);
      color: #f0ece4;
    }
    .btn--primary:hover { background: var(--color-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn--ghost {
      background: transparent;
      color: #f0ece4;
      border: 1px solid oklch(1 0 0 / 0.3);
    }
    .btn--ghost:hover { background: oklch(1 0 0 / 0.1); border-color: oklch(1 0 0 / 0.5); }
    .hero__scroll-hint {
      position: absolute; bottom: var(--space-8); left: 50%; transform: translateX(-50%);
      z-index: 1;
      display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
      color: oklch(0.65 0.01 70);
      font-size: var(--text-xs);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      animation: bounce 2.4s ease-in-out infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(6px); }
    }

    /* ─── SECTION DEFAULTS ──────────────────────────────────────── */
    .section {
      padding-block: clamp(var(--space-16), 8vw, var(--space-32));
    }
    .section__label {
      font-size: var(--text-xs);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--color-primary);
      margin-bottom: var(--space-4);
    }
    .section__title {
      font-size: var(--text-2xl);
      font-weight: 300;
      letter-spacing: -0.03em;
      color: var(--color-text);
      margin-bottom: var(--space-6);
    }
    .section__title strong { font-weight: 600; }
    .section__body {
      font-size: var(--text-base);
      color: var(--color-text-muted);
      max-width: 52ch;
      line-height: 1.7;
    }

    /* ─── BRAND STATEMENT ───────────────────────────────────────── */
    .brand-stmt {
      background: var(--color-surface);
      border-top: 1px solid var(--color-divider);
      border-bottom: 1px solid var(--color-divider);
    }
    .brand-stmt__inner {
      display: grid;
      grid-template-columns: 1fr 1px 1fr 1px 1fr;
      gap: 0;
    }
    .brand-stat {
      padding: var(--space-10) var(--space-8);
      display: flex; flex-direction: column; gap: var(--space-2);
    }
    .brand-stat__number {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      font-weight: 300;
      color: var(--color-text);
      letter-spacing: -0.04em;
    }
    .brand-stat__number span { color: var(--color-primary); }
    .brand-stat__label {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      font-weight: 400;
    }
    .stat-divider { background: var(--color-divider); }

    @media (max-width: 640px) {
      .brand-stmt__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .stat-divider { display: none; }
      .brand-stat { border-bottom: 1px solid var(--color-divider); padding: var(--space-8); }
      .brand-stat:last-child { border-bottom: none; }
    }

    /* ─── SOLUTIONS GRID ────────────────────────────────────────── */
    .solutions { background: var(--color-bg); }
    .solutions__header {
      margin-bottom: var(--space-16);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-12);
      align-items: end;
    }
    .solutions__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-4);
    }
    .solution-card {
      background: var(--color-surface);
      border: 1px solid oklch(from var(--color-text) l c h / 0.08);
      border-radius: var(--radius-2xl);
      overflow: hidden;
      transition: box-shadow var(--transition), transform var(--transition);
      cursor: default;
    }
    .solution-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-3px);
    }
    .solution-card--featured {
      grid-column: span 2;
    }
    .solution-card__img {
      width: 100%; aspect-ratio: 16/9; object-fit: cover;
    }
    .solution-card--featured .solution-card__img { aspect-ratio: 21/9; }
    .solution-card__body { padding: var(--space-6); }
    .solution-card__tag {
      display: inline-block;
      font-size: var(--text-xs);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-primary);
      background: var(--color-primary-highlight);
      padding: var(--space-1) var(--space-3);
      border-radius: var(--radius-full);
      margin-bottom: var(--space-4);
    }
    .solution-card__title {
      font-size: var(--text-lg);
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: var(--space-2);
      line-height: 1.25;
      letter-spacing: -0.02em;
    }
    .solution-card__desc {
      font-size: var(--text-sm);
      color: var(--color-text-muted);
      line-height: 1.6;
    }
    .solution-card__arrow {
      display: inline-flex; align-items: center; gap: var(--space-1);
      margin-top: var(--space-4);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--color-primary);
    }
    .solution-card__arrow:hover { gap: var(--space-2); }

    @media (max-width: 768px) {
      .solutions__header { grid-template-columns: 1fr; gap: var(--space-4); }
      .solutions__grid { grid-template-columns: 1fr; }
      .solution-card--featured { grid-column: span 1; }
    }

    /* ─── PHILOSOPHY ────────────────────────────────────────────── */
    .philosophy {
      background: var(--color-primary);
      color: var(--color-text-inverse);
      position: relative;
      overflow: hidden;
    }
    .philosophy::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 0C13.43 0 0 13.43 0 30s13.43 30 30 30 30-13.43 30-30S46.57 0 30 0zm0 2c15.46 0 28 12.54 28 28S45.46 58 30 58 2 45.46 2 30 14.54 2 30 2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.4;
    }
    .philosophy__inner {
      position: relative; z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-16);
      align-items: center;
    }
    .philosophy__quote {
      font-size: var(--text-2xl);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: oklch(0.95 0.03 130);
    }
    .philosophy__quote em { font-style: italic; color: oklch(0.85 0.1 130); }
    .philosophy__text { font-size: var(--text-base); line-height: 1.75; color: oklch(0.85 0.03 130); }
    .philosophy__text p + p { margin-top: var(--space-4); }

    @media (max-width: 768px) {
      .philosophy__inner { grid-template-columns: 1fr; gap: var(--space-8); }
    }

    /* ─── PROCESS ───────────────────────────────────────────────── */
    .process { background: var(--color-surface); }
    .process__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-6);
      margin-top: var(--space-16);
    }
    .process-step {
      position: relative;
      padding: var(--space-6);
      background: var(--color-bg);
      border: 1px solid oklch(from var(--color-text) l c h / 0.08);
      border-radius: var(--radius-xl);
    }
    .process-step__num {
      font-family: var(--font-display);
      font-size: var(--text-3xl);
      font-weight: 300;
      color: oklch(from var(--color-text) l c h / 0.08);
      line-height: 1;
      margin-bottom: var(--space-4);
      letter-spacing: -0.05em;
    }
    .process-step__icon {
      width: 40px; height: 40px;
      background: var(--color-primary-highlight);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: var(--space-4);
      color: var(--color-primary);
    }
    .process-step__title {
      font-size: var(--text-lg);
      font-weight: 500;
      letter-spacing: -0.02em;
      margin-bottom: var(--space-2);
    }
    .process-step__body { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.6; }

    @media (max-width: 900px) {
      .process__grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .process__grid { grid-template-columns: 1fr; }
    }

    /* ─── ABOUT SPLIT ───────────────────────────────────────────── */
    .about { background: var(--color-bg); }
    .about__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-20);
      align-items: center;
    }
    .about__img-wrap {
      position: relative;
      border-radius: var(--radius-2xl);
      overflow: hidden;
    }
    .about__img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
    .about__img-badge {
      position: absolute; bottom: var(--space-6); left: var(--space-6);
      background: oklch(from var(--color-bg) l c h / 0.9);
      backdrop-filter: blur(12px);
      border-radius: var(--radius-xl);
      padding: var(--space-4) var(--space-5);
      box-shadow: var(--shadow-lg);
    }
    .about__img-badge-title { font-weight: 600; font-size: var(--text-sm); margin-bottom: var(--space-1); }
    .about__img-badge-sub { font-size: var(--text-xs); color: var(--color-text-muted); }
    .about__text .section__body { margin-bottom: var(--space-8); }
    .about__values { display: flex; flex-direction: column; gap: var(--space-4); }
    .about__value {
      display: flex; gap: var(--space-4); align-items: flex-start;
    }
    .about__value-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: var(--color-primary-highlight);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      color: var(--color-primary);
    }
    .about__value-text strong { font-size: var(--text-sm); font-weight: 600; display: block; margin-bottom: 2px; }
    .about__value-text span { font-size: var(--text-sm); color: var(--color-text-muted); }

    @media (max-width: 768px) {
      .about__inner { grid-template-columns: 1fr; gap: var(--space-12); }
    }

    /* ─── CONTACT ──────────────────────────────────────────────── */
    .contact {
      background: var(--color-surface-offset);
    }
    .contact__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-16);
      align-items: start;
    }
    .contact__form {
      background: var(--color-surface);
      padding: var(--space-8);
      border-radius: var(--radius-2xl);
      border: 1px solid oklch(from var(--color-text) l c h / 0.07);
      box-shadow: var(--shadow-sm);
    }
    .form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
    .form-group label { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
    .form-group input,
    .form-group textarea,
    .form-group select {
      padding: var(--space-3) var(--space-4);
      border: 1px solid oklch(from var(--color-text) l c h / 0.14);
      border-radius: var(--radius-md);
      background: var(--color-bg);
      color: var(--color-text);
      font-size: var(--text-sm);
      transition: border-color var(--transition), box-shadow var(--transition);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
    }
    .contact__info { padding-top: var(--space-2); }
    .contact__detail {
      display: flex; gap: var(--space-4); align-items: flex-start;
      margin-bottom: var(--space-6);
    }
    .contact__detail-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--color-primary-highlight);
      border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      color: var(--color-primary);
    }
    .contact__detail strong { font-size: var(--text-sm); font-weight: 600; display: block; margin-bottom: 2px; }
    .contact__detail span { font-size: var(--text-sm); color: var(--color-text-muted); }

    @media (max-width: 768px) {
      .contact__inner { grid-template-columns: 1fr; }
    }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    .footer {
      background: var(--color-text);
      color: var(--color-text-inverse);
      padding-block: var(--space-12);
    }
    .footer__inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: var(--space-12);
      margin-bottom: var(--space-12);
    }
    .footer__brand-name {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      font-weight: 500;
      margin-bottom: var(--space-3);
      display: flex; align-items: center; gap: var(--space-2);
    }
    .footer__tagline { font-size: var(--text-sm); color: oklch(0.65 0.02 70); line-height: 1.6; max-width: 32ch; }
    .footer__col-title { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: oklch(0.65 0.02 70); margin-bottom: var(--space-5); }
    .footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
    .footer__links a { font-size: var(--text-sm); color: oklch(0.75 0.02 70); }
    .footer__links a:hover { color: oklch(0.95 0.03 130); }
    .footer__bottom {
      border-top: 1px solid oklch(1 0 0 / 0.1);
      padding-top: var(--space-6);
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: var(--space-4);
    }
    .footer__copy { font-size: var(--text-xs); color: oklch(0.55 0.02 70); }
    .footer__legal { display: flex; gap: var(--space-6); }
    .footer__legal a { font-size: var(--text-xs); color: oklch(0.55 0.02 70); }
    .footer__legal a:hover { color: oklch(0.85 0.02 70); }

    @media (max-width: 768px) {
      .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
    }
    @media (max-width: 480px) {
      .footer__inner { grid-template-columns: 1fr; }
    }