/* =========================================================
   FinnonCam — "Chrome & Heavy"
   Global stylesheet · mobile-first · design tokens
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Surfaces */
  --bg:            #0a0a0b;
  --bg-2:          #101012;
  --surface:       #18181b;
  --surface-2:     #1f1f23;
  --surface-3:     #26262b;
  --line:          #2e2e34;
  --line-strong:   #3a3a42;

  /* Text */
  --text:          #f4f4f5;
  --text-dim:      #a1a1aa;
  --text-faint:    #71717a;

  /* Accent (aggressive red) */
  --red:           #e11d2a;
  --red-bright:    #ff2740;
  --red-deep:      #8f0e18;
  --red-glow:      rgba(225, 29, 42, .55);

  /* Chrome gradient stops */
  --chrome-hi:     #f4f4f6;
  --chrome-mid:    #b6b6bd;
  --chrome-lo:     #6a6a72;
  --chrome-shadow: #3a3a40;

  /* Type */
  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Scale (px): 12 14 16 18 24 32 48 72 */
  --step--1: .8125rem;   /* 13 */
  --step-0:  1rem;       /* 16 */
  --step-1:  1.25rem;    /* 20 */
  --step-2:  1.75rem;    /* 28 */
  --step-3:  2.5rem;     /* 40 */
  --step-4:  clamp(3rem, 8vw, 5.5rem);
  --step-5:  clamp(4rem, 14vw, 10rem);

  /* Spacing (4/8 rhythm) */
  --sp-1: .5rem; --sp-2: 1rem; --sp-3: 1.5rem; --sp-4: 2rem;
  --sp-5: 3rem;  --sp-6: 4rem; --sp-7: 6rem;

  /* Layout */
  --maxw: 1200px;
  --radius: 2px;
  --nav-h: 68px;

  /* Motion */
  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --t-fast: 140ms;
  --t-mid:  240ms;

  /* Z-index scale */
  --z-nav: 100; --z-overlay: 200; --z-toast: 300;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

/* ---------- Background texture (subtle grain + brushed sheen) ---------- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(225,29,42,.10), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.014) 0 2px, transparent 2px 4px);
  opacity: .9;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.page { position: relative; z-index: 1; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--sp-3); }
.section { padding-block: var(--sp-6); }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--red-bright);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.section-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 700;
  line-height: .95;
  letter-spacing: .01em;
  font-size: var(--step-3);
  margin-block: var(--sp-2) var(--sp-1);
}
.section-sub { color: var(--text-dim); max-width: 58ch; }

/* Chrome / brushed-metal text */
.chrome {
  background: linear-gradient(180deg,
      var(--chrome-hi) 0%, #dcdce0 26%,
      var(--chrome-mid) 50%, var(--chrome-lo) 72%,
      var(--chrome-shadow) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,.06);
}

/* Brushed metal panel surface */
.metal {
  background:
    linear-gradient(180deg, var(--surface-2), var(--surface)) padding-box,
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 3px) padding-box;
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -1px 0 rgba(0,0,0,.5);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .85rem; --pad-x: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; font-size: var(--step--1);
  border: 1px solid transparent; border-radius: var(--radius);
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out),
              background-color var(--t-fast), border-color var(--t-fast);
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }

.btn-red {
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  color: #fff;
  border-color: var(--red-deep);
  box-shadow: 0 0 0 0 var(--red-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-red:hover { box-shadow: 0 0 26px -2px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.25); }

.btn-ghost {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.btn-ghost:hover { border-color: var(--chrome-lo); color: #fff; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  height: var(--nav-h);
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-2);
}
.brand {
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  font-size: 1.4rem; line-height: 1;
  display: inline-flex; align-items: center; gap: .55rem;
}
.brand .dot { width: 10px; height: 10px; background: var(--red); box-shadow: 0 0 12px var(--red-glow); border-radius: 1px; }

.nav-links { display: none; align-items: center; gap: var(--sp-1); }
.nav-links a {
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .12em; font-size: var(--step--1); font-weight: 500;
  color: var(--text-dim);
  padding: .6rem .85rem; border-radius: var(--radius);
  position: relative;
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .25rem;
  height: 2px; background: var(--red); box-shadow: 0 0 10px var(--red-glow);
}
.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: transparent; border: 1px solid var(--line-strong); border-radius: var(--radius);
  color: var(--text);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile drawer */
.nav-mobile {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: var(--z-nav);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  transform: translateY(-110%);
  transition: transform var(--t-mid) var(--ease-out);
  padding: var(--sp-2) var(--sp-3) var(--sp-4);
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  display: block;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em;
  font-size: var(--step-1); font-weight: 500; color: var(--text-dim);
  padding: var(--sp-2) 0; border-bottom: 1px solid var(--line);
}
.nav-mobile a[aria-current="page"] { color: var(--red-bright); }
.nav-mobile .btn { width: 100%; margin-top: var(--sp-3); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: var(--sp-6) var(--sp-6); overflow: hidden; }
.hero-grid { display: grid; gap: var(--sp-5); }
.hero-wordmark {
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; line-height: .82; letter-spacing: -.01em;
  font-size: var(--step-5);
  margin-block: var(--sp-2);
}
.hero-wordmark .sub { display: block; font-size: .3em; letter-spacing: .35em; color: var(--text-faint); -webkit-text-fill-color: var(--text-faint); }
.hero-tag { color: var(--text-dim); font-size: var(--step-1); max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }

/* Featured video frame */
.video-frame {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius);
  overflow: hidden; isolation: isolate;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -30px #000, inset 0 1px 0 rgba(255,255,255,.06);
}
.video-frame .thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.thumb-placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 120% at 30% 10%, #2a2a30, #0c0c0e 70%),
    linear-gradient(115deg, rgba(225,29,42,.25), transparent 40%);
}
.thumb-placeholder::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(transparent 95%, rgba(255,255,255,.04) 95%);
  background-size: 100% 8px;
}
.play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  border: 1px solid var(--red-deep);
  color: #fff;
  box-shadow: 0 0 0 0 var(--red-glow);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid);
}
.play-btn svg { width: 34px; height: 34px; margin-left: 4px; }
.video-frame:hover .play-btn { transform: scale(1.08); box-shadow: 0 0 40px 4px var(--red-glow); }
.video-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--sp-3) var(--sp-3) var(--sp-2);
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  display: flex; align-items: end; justify-content: space-between; gap: var(--sp-2);
}
.video-meta h3 { font-family: var(--font-head); text-transform: uppercase; font-weight: 600; font-size: var(--step-1); }
.tag {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em;
  font-size: .7rem; font-weight: 600; padding: .3rem .55rem; border-radius: var(--radius);
  background: rgba(225,29,42,.16); color: var(--red-bright); border: 1px solid rgba(225,29,42,.3);
  white-space: nowrap;
}

/* ---------- Stats bar ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { padding: var(--sp-3) var(--sp-2); text-align: center; background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: var(--step-2); line-height: 1; }
.stat .label { font-size: var(--step--1); color: var(--text-dim); text-transform: uppercase; letter-spacing: .14em; margin-top: .4rem; }

/* ---------- Video grid / cards ---------- */
.grid-videos { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
.vcard {
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  transition: transform var(--t-mid) var(--ease-out), border-color var(--t-fast), box-shadow var(--t-mid);
}
.vcard:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 18px 40px -24px #000, 0 0 0 1px rgba(225,29,42,.14); }
.vcard .thumb-wrap { position: relative; aspect-ratio: 16/9; }
.vcard .thumb-wrap .play-btn { width: 60px; height: 60px; }
.vcard .thumb-wrap .play-btn svg { width: 24px; height: 24px; }
.vcard:hover .play-btn { transform: scale(1.08); box-shadow: 0 0 30px 2px var(--red-glow); }
.vcard .body { padding: var(--sp-2) var(--sp-2) var(--sp-3); display: flex; flex-direction: column; gap: .5rem; }
.vcard .body h3 { font-family: var(--font-head); text-transform: uppercase; font-weight: 600; font-size: var(--step-1); line-height: 1.1; }
.vcard .body p { color: var(--text-dim); font-size: var(--step--1); }
.vcard .vmeta { display: flex; align-items: center; gap: .8rem; color: var(--text-faint); font-size: var(--step--1); margin-top: .2rem; }
.vcard .vmeta span { display: inline-flex; align-items: center; gap: .35rem; }
.vcard .vmeta svg { width: 15px; height: 15px; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-block: var(--sp-3) var(--sp-4); }
.chip {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em;
  font-size: var(--step--1); font-weight: 500;
  padding: .6rem 1.1rem; min-height: 44px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  color: var(--text-dim);
  transition: color var(--t-fast), border-color var(--t-fast), background-color var(--t-fast);
}
.chip:hover { color: var(--text); }
.chip[aria-pressed="true"] {
  color: #fff; border-color: var(--red);
  background: linear-gradient(180deg, rgba(225,29,42,.22), rgba(225,29,42,.08));
  box-shadow: inset 0 0 0 1px rgba(225,29,42,.35);
}

/* ---------- Split / About ---------- */
.split { display: grid; gap: var(--sp-5); align-items: center; }
.portrait {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 90% at 70% 0%, #2b2b31, #0b0b0d 75%),
    linear-gradient(160deg, rgba(225,29,42,.28), transparent 45%);
  box-shadow: 0 30px 80px -30px #000;
}
.portrait .badge {
  position: absolute; left: var(--sp-2); bottom: var(--sp-2);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em;
  font-size: var(--step--1); padding: .5rem .8rem;
  background: rgba(10,10,11,.7); border: 1px solid var(--line-strong); border-radius: var(--radius);
}
.prose p { color: var(--text-dim); margin-top: var(--sp-2); max-width: 62ch; }
.prose p strong { color: var(--text); }

/* Gear list */
.gear { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: var(--sp-3); }
.gear li { display: flex; align-items: center; gap: var(--sp-2); padding: var(--sp-2); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.gear .ic { width: 40px; height: 40px; flex: none; display: grid; place-items: center; color: var(--red-bright); border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--bg-2); }
.gear .ic svg { width: 20px; height: 20px; }
.gear .gname { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.gear .gdesc { color: var(--text-faint); font-size: var(--step--1); }

/* Timeline */
.timeline { border-left: 2px solid var(--line-strong); margin-top: var(--sp-3); padding-left: var(--sp-3); display: grid; gap: var(--sp-3); }
.timeline li { position: relative; }
.timeline li::before { content: ""; position: absolute; left: calc(-1 * var(--sp-3) - 6px); top: .4rem; width: 10px; height: 10px; background: var(--red); border-radius: 1px; box-shadow: 0 0 12px var(--red-glow); }
.timeline .year { font-family: var(--font-head); color: var(--red-bright); letter-spacing: .14em; font-size: var(--step--1); }
.timeline h4 { font-family: var(--font-head); text-transform: uppercase; font-size: var(--step-1); font-weight: 600; }
.timeline p { color: var(--text-dim); font-size: var(--step--1); }

/* ---------- Forms ---------- */
.form { display: grid; gap: var(--sp-3); }
.field { display: grid; gap: .5rem; }
.field label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: var(--step--1); font-weight: 500; }
.field label .req { color: var(--red-bright); }
.field .hint { color: var(--text-faint); font-size: var(--step--1); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: .8rem 1rem;
  background: var(--bg-2); color: var(--text);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  font-family: var(--font-body); font-size: var(--step-0);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,29,42,.22);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: var(--red-bright);
}
.field .error { color: var(--red-bright); font-size: var(--step--1); display: none; align-items: center; gap: .4rem; }
.field .error svg { width: 15px; height: 15px; flex: none; }
.field .error.show { display: flex; }
.form-row { display: grid; gap: var(--sp-3); }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 140%);
  z-index: var(--z-toast);
  display: flex; align-items: center; gap: .7rem;
  padding: .9rem 1.2rem; max-width: calc(100vw - 32px);
  background: var(--surface-2); border: 1px solid var(--line-strong); border-left: 3px solid var(--red);
  border-radius: var(--radius); box-shadow: 0 20px 50px -20px #000;
  transition: transform var(--t-mid) var(--ease-out);
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: #36d399; flex: none; }

/* ---------- Contact aside ---------- */
.contact-grid { display: grid; gap: var(--sp-5); }
.info-card { padding: var(--sp-3); border-radius: var(--radius); }
.info-card h3 { font-family: var(--font-head); text-transform: uppercase; font-size: var(--step-1); font-weight: 600; }
.info-list { display: grid; gap: var(--sp-2); margin-top: var(--sp-3); }
.info-list li { display: flex; align-items: center; gap: var(--sp-2); }
.info-list .ic { width: 40px; height: 40px; flex: none; display: grid; place-items: center; color: var(--red-bright); border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--bg-2); }
.info-list .ic svg { width: 19px; height: 19px; }
.info-list .k { font-size: var(--step--1); color: var(--text-faint); text-transform: uppercase; letter-spacing: .1em; }
.info-list .v { font-weight: 500; }

/* ---------- Socials ---------- */
.socials { display: flex; flex-wrap: wrap; gap: .7rem; }
.social {
  width: 48px; height: 48px; display: grid; place-items: center;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  color: var(--text-dim);
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.social:hover { color: #fff; border-color: var(--red); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 240px at 50% 120%, rgba(225,29,42,.22), transparent 70%);
}
.cta-band .inner { position: relative; }
.cta-band h2 { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; line-height: .95; font-size: var(--step-3); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: var(--sp-5) var(--sp-4); margin-top: var(--sp-6); }
.footer-grid { display: grid; gap: var(--sp-4); }
.footer .brand { font-size: 1.2rem; }
.footer p { color: var(--text-faint); font-size: var(--step--1); margin-top: var(--sp-2); max-width: 40ch; }
.footer h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; font-size: var(--step--1); color: var(--text-dim); margin-bottom: var(--sp-2); }
.footer-links { display: grid; gap: .6rem; }
.footer-links a { color: var(--text-dim); font-size: var(--step--1); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: space-between; color: var(--text-faint); font-size: var(--step--1); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Breakpoints
   ========================================================= */
@media (min-width: 640px) {
  .grid-videos { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .container { padding-inline: var(--sp-4); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .hero-actions .btn { min-width: 190px; }
}
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .grid-videos { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: .9fr 1.1fr; }
  .split.reverse { grid-template-columns: 1.1fr .9fr; }
  .contact-grid { grid-template-columns: 1.2fr .8fr; align-items: start; }
  .section { padding-block: var(--sp-7); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
