/* ============================================================
   Sam Bard — site styles
   Plain CSS. Tokens live in tokens.css.
   ============================================================ */
@import url("tokens.css");

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; }
p { margin: 0; text-wrap: pretty; }
::selection { background: rgba(47,182,174,0.30); color: var(--foam); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ---------- shared helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); display: inline-flex;
  align-items: center; gap: 11px; margin: 0;
}
.eyebrow--rule::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
.eyebrow--muted { color: var(--text-muted); }
.eyebrow--muted.eyebrow--rule::before { background: var(--text-muted); }
.serif { font-family: var(--font-display); font-weight: 300; letter-spacing: -0.025em; }
.lead { font-size: clamp(18px, 2.1vw, 22px); color: var(--text-secondary); line-height: 1.55; }
.muted { color: var(--text-tertiary); }

.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section__head { max-width: 720px; display: flex; flex-direction: column; gap: var(--s-4); margin-bottom: var(--s-9); }
.section__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(30px, 4.2vw, 52px); letter-spacing: -0.025em; line-height: 1.06; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 50px; padding: 0 26px; border-radius: var(--r-pill);
  font-family: var(--font-sans); font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), box-shadow .3s var(--ease), transform .15s var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-hover); box-shadow: var(--glow); }
.btn--outline { border-color: var(--border-strong); color: var(--text-primary); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost { color: var(--text-secondary); padding-inline: 8px; }
.btn--ghost:hover { color: var(--accent); }
.btn--sm { height: 42px; font-size: 14px; padding: 0 18px; }
.btn--lg { height: 56px; font-size: 16px; padding: 0 32px; }

.arrowlink { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-tertiary); transition: color .2s var(--ease), gap .2s var(--ease); }
.arrowlink:hover { color: var(--accent); gap: 12px; }
.arrowlink svg { width: 15px; height: 15px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background-color .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease), padding .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid { background: rgba(8,13,20,0.82); backdrop-filter: saturate(1.1) blur(14px); border-bottom-color: var(--border); padding-block: 12px; }
.brand { color: var(--text-primary); flex: none; }
.brand__name { font-family: var(--font-display); font-size: 23px; letter-spacing: 0.01em; line-height: 1; white-space: nowrap; }
.brand__name b { font-weight: 500; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-tertiary); padding: 10px 14px; border-radius: var(--r-pill); position: relative;
  transition: color .2s var(--ease);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link.is-active { color: var(--text-primary); }
.nav__link.is-active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px; background: var(--accent); }
.nav__cta { margin-left: 12px; }
.nav__burger { display: none; width: 44px; height: 44px; border: 0; background: none; color: var(--text-primary); cursor: pointer; align-items: center; justify-content: center; }
.nav__burger svg { width: 24px; height: 24px; }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; background: rgba(5,9,15,0.96); backdrop-filter: blur(8px); display: none; flex-direction: column; padding: 24px var(--gutter); }
.drawer.is-open { display: flex; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; }
.drawer__close { width: 44px; height: 44px; border: 0; background: none; color: var(--foam); cursor: pointer; }
.drawer__close svg { width: 26px; height: 26px; }
.drawer__links { display: flex; flex-direction: column; gap: 4px; margin-top: 40px; }
.drawer__links a { font-family: var(--font-display); font-weight: 300; font-size: 34px; letter-spacing: -0.02em; padding: 12px 0; border-bottom: 1px solid var(--border-faint); color: var(--text-secondary); }
.drawer__links a:hover, .drawer__links a.is-active { color: var(--accent); }
.drawer__foot { margin-top: auto; font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; }
.hero__media { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(125% 95% at 68% 18%, #11384d 0%, #0a2030 42%, #05090f 100%); }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media video { opacity: 0; transition: opacity 1.4s var(--ease-soft); }
.hero__media.is-ready video { opacity: 1; }
.hero__media img { animation: drift 26s var(--ease) infinite alternate; }
@keyframes drift { from { transform: scale(1.04); } to { transform: scale(1.12) translate(-1.2%, -1%); } }
.hero::after { content: ""; position: absolute; inset: 0; background: var(--scrim-bottom), var(--scrim-top); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(48px, 8vw, 96px); display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-6); max-width: 920px; }
.hero__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(40px, 6.6vw, 84px); line-height: 1.04; letter-spacing: -0.03em; color: var(--foam); text-wrap: balance; }
.hero__title em { font-style: italic; color: var(--accent); }
.hero__lead { max-width: 540px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,246,246,0.5); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll i { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); display: block; }

/* ============================================================
   TWO STREAMS
   ============================================================ */
.streams { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.stream {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--s-8); border: 1px solid var(--border); isolation: isolate;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.stream:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.stream__bg { position: absolute; inset: 0; z-index: -2; }
.stream__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-soft); }
.stream:hover .stream__bg img { transform: scale(1.05); }
.stream::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(5,9,15,0.94), rgba(5,9,15,0.55) 50%, rgba(5,9,15,0.28)); }
.stream__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--accent); }
.stream__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(26px, 3vw, 36px); margin-top: var(--s-4); letter-spacing: -0.02em; }
.stream__desc { color: var(--text-secondary); margin-top: var(--s-3); max-width: 42ch; }
.stream__link { margin-top: var(--s-6); }

/* ============================================================
   WORK / GALLERY GRID
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }

.tile { position: relative; display: block; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow-2); isolation: isolate; background: var(--ink-800); }
.tile img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 1s var(--ease-soft), filter .5s var(--ease); }
.tile--tall img { aspect-ratio: 3/4; }
.tile--wide img { aspect-ratio: 16/9; }
.tile::after { content: ""; position: absolute; inset: 0; background: var(--scrim-bottom); z-index: 1; opacity: 0.9; }
.tile__body { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; }
.tile__eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.tile__title { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.1; margin-top: 5px; color: var(--foam); }
.tile__meta { font-family: var(--font-mono); font-size: 11px; color: rgba(242,246,246,0.6); margin-top: 7px; letter-spacing: 0.04em; }
.tile:hover img { transform: scale(1.05); }
.tile__tag { position: absolute; top: 16px; left: 18px; z-index: 2; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242,246,246,0.85); background: rgba(5,9,15,0.5); backdrop-filter: blur(6px); border: 1px solid var(--border); padding: 5px 9px; border-radius: var(--r-sm); }

/* plain gallery (no captions) */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.gallery a { display: block; overflow: hidden; border-radius: var(--r-md); cursor: zoom-in; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform .8s var(--ease-soft), opacity .3s; }
.gallery a:hover img { transform: scale(1.06); }

/* video embed */
.embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-media); background: #05090f; }
.embed iframe, .embed video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed__ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 32px; background: repeating-linear-gradient(135deg, #0b1a24, #0b1a24 13px, #0e2030 13px, #0e2030 26px); }
.embed__ph svg { width: 46px; height: 46px; color: var(--accent); opacity: 0.8; }
.embed__ph p { color: var(--text-tertiary); font-family: var(--font-mono); font-size: 13px; line-height: 1.6; max-width: 420px; }

/* ============================================================
   PROJECT ROWS (alternating)
   ============================================================ */
.project { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.project + .project { margin-top: clamp(48px, 7vw, 96px); }
.project:nth-child(even) .project__media { order: 2; }
.project__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-media); }
.project__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.project__status { position: absolute; top: 16px; left: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--r-sm); background: rgba(5,9,15,0.55); backdrop-filter: blur(6px); border: 1px solid var(--border-strong); }
.project__status.is-active { color: var(--kelp); }
.project__status.is-dev { color: var(--sand); }
.project__status.is-post { color: var(--ocean-300); }
.project__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -0.02em; margin-top: var(--s-4); }
.project__role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--text-muted); margin-top: var(--s-3); }
.project__body { color: var(--text-secondary); margin-top: var(--s-5); display: flex; flex-direction: column; gap: var(--s-4); }

/* ============================================================
   CREDENTIALS (offshore)
   ============================================================ */
.creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
.cred { border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--s-6); background: var(--surface); transition: border-color .3s var(--ease); }
.cred:hover { border-color: var(--border-strong); }
.cred__k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.cred .specs .spec { grid-template-columns: 96px 1fr; gap: var(--s-4); padding: var(--s-3) 0; }
.cred .specs .spec:last-child { border-bottom: 0; padding-bottom: 0; }
.cred__v { font-size: 18px; color: var(--text-primary); margin-top: var(--s-3); font-weight: 500; }
.cred__note { color: var(--text-tertiary); font-size: 15px; margin-top: 6px; }

.specs { border-top: 1px solid var(--border); }
.spec { display: grid; grid-template-columns: 200px 1fr; gap: var(--s-5); padding: var(--s-5) 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.spec dt { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.spec dd { margin: 0; color: var(--text-secondary); }

/* fact list — restrained credentials */
.factlist { border-top: 1px solid var(--border); max-width: 760px; }
.fact { display: flex; align-items: baseline; gap: var(--s-5); padding: var(--s-5) 0; border-bottom: 1px solid var(--border); }
.fact__i { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--text-muted); width: 2.2em; flex: none; font-variant-numeric: tabular-nums; }
.fact__t { font-size: clamp(17px, 1.8vw, 20px); color: var(--text-secondary); }
.fact__t b { color: var(--text-primary); font-weight: 600; }

/* stat band */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-7); border-block: 1px solid var(--border); padding-block: var(--s-10); }
.stat__value { font-family: var(--font-display); font-weight: 300; font-size: clamp(38px, 5vw, 60px); line-height: 0.95; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.stat__value span { font-size: 0.5em; color: var(--accent); margin-left: 2px; }
.stat__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 10px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.about-hero__portrait { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-media); }
.about-hero__portrait img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-split { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.about-split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-media); position: sticky; top: 96px; }
.about-split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-split .prose { max-width: 600px; }
.prose { max-width: 680px; display: flex; flex-direction: column; gap: var(--s-5); font-size: 18px; color: var(--text-secondary); line-height: 1.7; }
.prose p strong { color: var(--text-primary); font-weight: 600; }
.timeline { border-top: 1px solid var(--border); }
.tl { display: grid; grid-template-columns: 120px 1fr; gap: var(--s-6); padding: var(--s-6) 0; border-bottom: 1px solid var(--border); }
.tl__year { font-family: var(--font-mono); font-size: 14px; color: var(--accent); letter-spacing: 0.04em; }
.tl__title { font-size: 18px; font-weight: 600; }
.tl__note { color: var(--text-tertiary); margin-top: 6px; }

/* ============================================================
   CTA + CONTACT
   ============================================================ */
.cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--s-5); max-width: 720px; margin-inline: auto; }
.cta__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(30px, 4.6vw, 58px); letter-spacing: -0.025em; line-height: 1.05; }

.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); }
.contact__aside { display: flex; flex-direction: column; gap: var(--s-5); }
.contact__direct { display: flex; flex-direction: column; gap: var(--s-3); margin-top: var(--s-4); font-family: var(--font-mono); font-size: 15px; }
.contact__direct a, .contact__direct span { display: inline-flex; align-items: center; gap: 10px; color: var(--text-secondary); }
.contact__direct a:hover { color: var(--accent); }
.contact__direct svg { width: 17px; height: 17px; color: var(--accent); flex: none; }

.form { display: flex; flex-direction: column; gap: var(--s-5); }
.field { display: flex; flex-direction: column; gap: 9px; }
.field > label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-tertiary); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--surface-sunken); color: var(--text-primary);
  border: 1px solid var(--border-strong); border-radius: var(--r-md);
  font-family: var(--font-sans); font-size: 16px; padding: 14px 16px;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.form__note { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: var(--surface-sunken); padding-block: var(--s-11) var(--s-7); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-8); }
.footer__brand { display: flex; flex-direction: column; gap: var(--s-4); max-width: 280px; }
.footer__mark { display: flex; align-items: center; gap: 14px; }
.footer__mark .brand__mark { color: var(--accent); }
.footer__mark .seal-emblem { width: 70px; height: 70px; color: var(--text-primary); flex: none; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text-primary); flex: none; }
.footer__tag { color: var(--text-tertiary); font-size: 15px; }
.footer__h { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--s-4); }
.footer__col a, .footer__col span { display: block; color: var(--text-tertiary); font-size: 15px; margin-bottom: 11px; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__soon { opacity: 0.55; }
.footer__bar { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-10); padding-top: var(--s-5); border-top: 1px solid var(--border-faint); font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(3,6,11,0.94); display: none; align-items: center; justify-content: center; padding: 4vw; cursor: zoom-out; }
.lightbox.is-open { display: flex; animation: lbfade .3s var(--ease); }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 92vw; max-height: 90vh; width: auto; border-radius: var(--r-md); box-shadow: var(--shadow-media); }
.lightbox__close { position: absolute; top: 24px; right: 28px; width: 48px; height: 48px; border: 0; background: none; color: var(--foam); cursor: pointer; }
.lightbox__close svg { width: 30px; height: 30px; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
html.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   PROGRESSIVE IMAGE LOAD — blur-up "develop into focus"
   Images start soft + dim and resolve once decoded.
   ============================================================ */
html.js img[data-img] { opacity: 0; filter: blur(18px); transform: scale(1.02); transition: opacity 1s var(--ease-soft), filter 1.2s var(--ease-soft), transform 1.1s var(--ease-soft); }
html.js img[data-img].is-loaded { opacity: 1; filter: blur(0); transform: none; }
@media (prefers-reduced-motion: reduce) { html.js img[data-img] { opacity: 1; filter: none; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .streams { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .project, .project:nth-child(even) .project__media { grid-template-columns: 1fr; }
  .project:nth-child(even) .project__media { order: 0; }
  .about-hero { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__media { position: static; }
  .about-split__media img { aspect-ratio: 16/9; }
  .contact { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr 1fr; gap: var(--s-8) var(--s-5); }
  .spec { grid-template-columns: 140px 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .grid-2, .creds, .field--row { grid-template-columns: 1fr; }
  .statband { grid-template-columns: 1fr 1fr; }
  .tl { grid-template-columns: 80px 1fr; gap: var(--s-4); }
  .spec { grid-template-columns: 1fr; gap: 6px; }
  .hero__ctas { width: 100%; }
  .hero__ctas .btn { flex: 1 1 100%; justify-content: center; }
  .gallery { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-7) var(--s-6); }
  .footer__brand .footer__tag { max-width: none; }
}
