/* ==================================================================
   STEADMANBRYCE.COM — STYLESHEET
   Built from the approved hero-cinematic.html reference.
   Tokens (colours, fonts, spacing) are set as CSS variables at the
   top of this file. Change a value there to change it everywhere.
   ================================================================== */

:root {
  /* Dark theme (default, most sections) */
  --bg: #0B0C0E;
  --text: #F4F2ED;
  --text-dim: rgba(244,242,237,.76);
  --text-dimmer: rgba(244,242,237,.6);
  --border: rgba(244,242,237,.14);
  --border-strong: rgba(244,242,237,.32);
  --gold: #D6A856;
  --gold-hover: #E7BE72;

  /* Light theme (sections 03 and 07 only) */
  --bg-light: #F3EFE6;
  --text-light: #17140F;
  --text-light-dim: rgba(23,20,15,.72);
  --border-light: rgba(23,20,15,.14);
  --border-light-strong: rgba(23,20,15,.32);

  --display-font: Archivo, "Helvetica Neue", Arial, sans-serif;
  --body-font: Inter, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--gold); color: #0B0C0E;
  padding: 10px 16px; border-radius: 6px; font-weight: 600;
  z-index: 100; transition: top .2s;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------------- HEADER (fixed) ---------------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px clamp(20px, 4vw, 54px);
  background: linear-gradient(to bottom, rgba(11,12,14,.75) 0%, transparent 100%);
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }
.hero-topbar { display: none; }

.logomark {
  width: 42px; height: 42px; border: 1px solid rgba(244,242,237,.5); border-radius: 50%;
  display: grid; place-items: center; font-family: var(--display-font); font-weight: 800;
  font-size: 14px; letter-spacing: -.02em; text-decoration: none; color: var(--text);
  background: rgba(11,12,14,.3); flex: none;
}
.topbar-right { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.topbar-link {
  font-size: 13.5px; font-weight: 500; text-decoration: none; color: rgba(244,242,237,.86);
  border-bottom: 1px solid transparent; padding-bottom: 3px; transition: border-color .2s;
}
.topbar-link:hover { border-bottom-color: var(--gold); }
.menu-btn {
  background: none; border: 1px solid rgba(244,242,237,.32); color: inherit;
  font: 500 13px/1 var(--body-font); padding: 12px 18px; border-radius: 999px; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.menu-btn:hover { background: rgba(244,242,237,.1); border-color: rgba(244,242,237,.6); }

/* ---------------- OVERLAY MENU ---------------- */
.overlay {
  position: fixed; inset: 0; z-index: 60;
  background: #0B0C0E;
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.65,0,.35,1);
  display: flex; flex-direction: column;
  padding: 22px clamp(20px, 4vw, 54px) 40px;
  overflow-y: auto;
}
.overlay.is-open { transform: translateY(0); }
.overlay-top { display: flex; align-items: center; justify-content: space-between; }
.overlay-body { margin-top: clamp(14px, 3vh, 34px); flex: 1; display: flex; flex-direction: column; justify-content: flex-start; gap: clamp(20px, 4vh, 40px); }
.overlay-list { list-style: none; margin: 0; padding: 0; }
.overlay-list li { border-top: 1px solid rgba(244,242,237,.14); }
.overlay-list li:last-child { border-bottom: 1px solid rgba(244,242,237,.14); }
.overlay-list a {
  display: flex; align-items: baseline; gap: 20px;
  padding: clamp(14px, 2.4vw, 22px) 4px;
  text-decoration: none; color: var(--text);
  font-family: var(--display-font); font-weight: 800; text-transform: uppercase;
  font-size: clamp(24px, 4.4vw, 46px); letter-spacing: -.03em;
  transition: color .2s, padding-left .2s;
}
.overlay-list a:hover, .overlay-list a:focus-visible { color: var(--gold); padding-left: 14px; }
.ov-num { font-family: var(--display-font); font-weight: 700; font-size: 14px; color: var(--gold); min-width: 26px; }
.overlay-edu-label {
  display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,242,237,.5); margin-bottom: 14px;
}
.overlay-edu-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.overlay-edu-list a {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text-dim);
  font-size: clamp(14px, 1.6vw, 17px); font-weight: 400;
  border-bottom: 1px solid rgba(244,242,237,.22); padding-bottom: 2px;
}
.overlay-edu-list a:hover { color: var(--gold); border-color: var(--gold); }
.ext { font-size: .8em; }

/* ---------------- HERO ---------------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: hidden; }

.reel { position: absolute; inset: 0; z-index: 0; }
.reel-img {
  position: absolute; inset: -6%;
  background:
    radial-gradient(70% 55% at 62% 34%, rgba(214,168,86,.30), transparent 62%),
    radial-gradient(90% 70% at 22% 78%, rgba(38,62,104,.55), transparent 70%),
    linear-gradient(168deg, #1a1d24 0%, #0E1016 48%, #16110c 100%);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to   { transform: scale(1.12) translate3d(-1.8%, -1.4%, 0); }
}
.reel-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 46%;
  filter: grayscale(6%) sepia(3%) saturate(104%) brightness(.94) contrast(1.03);
}
.reel-photo {
  position: absolute; inset: -6%; width: 112%; height: 112%;
  object-fit: cover; object-position: 55% 60%;
  filter: grayscale(30%) sepia(15%) saturate(125%) brightness(.5) contrast(1.18);
  animation: drift 26s ease-in-out infinite alternate;
}
.reel-grain {
  position: absolute; inset: 0; opacity: .32; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
.reel-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,12,14,.52) 0%, rgba(11,12,14,.06) 30%, rgba(11,12,14,.34) 72%, rgba(11,12,14,.88) 93%, #0B0C0E 100%);
}

.hero-main {
  position: relative; z-index: 2; margin-top: auto;
  padding: 0 clamp(20px, 4vw, 54px) clamp(28px, 4vw, 44px);
}
/* The name sits on ONE line across the page. It used to stack as
   "STEDMAN-" / "BRYCE", which took roughly twice the vertical space and
   pushed the hero copy up over Louis's face. Sized to fill the column
   width at 1440px with a little slack; `nowrap` keeps it honest. If the
   two-line stack is ever wanted back, restore `display: block` on
   .line2 and drop `white-space: nowrap`. */
.hero-name {
  font-family: var(--display-font); font-weight: 900;
  font-size: clamp(26px, 9.7vw, 200px);
  line-height: .84; letter-spacing: -.045em; margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-name .line2 { display: inline; padding-left: 0; }

.ticker {
  position: relative; margin: clamp(18px, 2.4vw, 30px) 0 clamp(20px, 2.6vw, 34px);
  border-top: 1px solid rgba(244,242,237,.22); border-bottom: 1px solid rgba(244,242,237,.22);
  padding: 11px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-flex; animation: slide 34s linear infinite; }
.ticker-track span {
  font-size: clamp(11px, 1.05vw, 13.5px); font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(244,242,237,.62); padding-right: 34px;
}
.ticker-track span i { color: var(--gold); font-style: normal; padding-left: 34px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.hero-line {
  font-size: clamp(16px, 1.55vw, 21px); line-height: 1.5; font-weight: 300;
  color: rgba(244,242,237,.9); max-width: 34ch; margin: 0;
}
.cta { display: inline-flex; align-items: center; gap: 15px; text-decoration: none; }
.cta-text { font-size: 14px; font-weight: 600; letter-spacing: .01em; }
.cta-ring {
  width: 62px; height: 62px; border-radius: 50%; border: 1px solid rgba(244,242,237,.4);
  display: grid; place-items: center; flex: none; transition: background .22s, border-color .22s, transform .22s;
}
.cta-ring svg { width: 17px; height: 17px; }
.cta:hover .cta-ring, .cta:focus-visible .cta-ring { background: var(--gold); border-color: var(--gold); color: #0B0C0E; transform: translateY(-2px); }

.scrollhint {
  position: relative; z-index: 2; text-align: center; padding-bottom: 20px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(244,242,237,.4);
}

/* ---------------- SECTIONS (shared) ---------------- */
.sec { padding: clamp(70px, 9vw, 140px) clamp(20px, 4vw, 54px); }
.sec-dark { background: var(--bg); border-top: 1px solid var(--border); }
.sec-light { background: var(--bg-light); color: var(--text-light); border-top: 1px solid var(--border-light); }

.sec-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: clamp(28px, 3.5vw, 50px); }
.sec-num { font-family: var(--display-font); font-weight: 800; font-size: 13px; color: var(--gold); letter-spacing: .06em; }
.sec-label { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: rgba(244,242,237,.5); }
.sec-light .sec-label { color: rgba(23,20,15,.55); }

.sec-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(34px, 5vw, 84px); align-items: center; }
.sec-grid > * { min-width: 0; }

.sec-h2 {
  font-family: var(--display-font); font-weight: 800; text-transform: uppercase;
  font-size: clamp(30px, 4.4vw, 66px); line-height: .96; letter-spacing: -.035em; margin: 0 0 26px; max-width: 15ch;
}
.sec-h2-wide { max-width: 20ch; }
.sec-kicker {
  font-family: var(--display-font); font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; font-size: clamp(14px, 1.4vw, 17px); color: var(--gold); margin: -14px 0 22px;
}
/* Sub-heading inside a section, for a section that breaks into named
   parts (section 03). Reads as a real heading rather than a label:
   same display face as the h2 at roughly a third the size, with a
   short gold rule above it to mark the break. */
.sec-sub {
  font-family: var(--display-font); font-weight: 800; text-transform: uppercase;
  font-size: clamp(19px, 1.9vw, 26px); line-height: 1.06; letter-spacing: -.02em;
  margin: 40px 0 18px; max-width: 22ch; position: relative; padding-top: 22px;
}
.sec-sub::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 46px; height: 2px; background: var(--gold);
}
.sec-p { font-size: clamp(15.5px, 1.2vw, 17.5px); line-height: 1.68; font-weight: 300; color: var(--text-dim); max-width: 54ch; margin: 0 0 20px; }
.sec-light .sec-p { color: var(--text-light-dim); }
.sec-p-wide { max-width: 68ch; }
.sec-p strong { color: var(--text); font-weight: 500; }
.sec-light .sec-p strong { color: var(--text-light); }

.sec-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 15px 28px; border-radius: 999px; text-decoration: none;
  font-size: 14px; font-weight: 600; transition: background .2s, color .2s, border-color .2s;
  border: 1px solid transparent; cursor: pointer;
}
.btn-solid { background: var(--gold); color: #0B0C0E; }
.btn-solid:hover { background: var(--gold-hover); }
.sec-light .btn-ghost { border-color: rgba(23,20,15,.34); color: var(--text-light); }
.sec-light .btn-ghost:hover { border-color: var(--text-light); }
.btn-ghost { border: 1px solid rgba(244,242,237,.34); color: var(--text); }
.btn-ghost:hover { border-color: var(--text); }

.fine-print {
  font-size: 12px; color: rgba(244,242,237,.42); font-weight: 300; margin-top: 22px; max-width: 60ch;
}
.sec-light .fine-print { color: rgba(23,20,15,.42); }

.sec-media { position: relative; aspect-ratio: 4/5; border-radius: 3px; overflow: hidden;
  background: linear-gradient(200deg, #2a2f3a 0%, #1a1e26 55%, #241c12 100%); }
.sec-media::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 40% 20%, rgba(214,168,86,.2), transparent 65%); }
.sec-media-light { background: linear-gradient(200deg, #e7ded0 0%, #d8cdb8 55%, #cbb98f 100%); }
.sec-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Section 01 portrait: the studio backdrop is much brighter than the rest
   of the site, so it was cutting a light rectangle out of a dark page.
   Knock the brightness back, warm it very slightly towards the site's
   palette, and feather the edges into the dark ground. */
#mission .sec-media img {
  filter: brightness(.80) contrast(1.07) saturate(.86) sepia(.09);
}
/* Section 02 studio photo: a bright, warm interior shot on a near-black page.
   Same two-part treatment section 01's portrait gets — knock the brightness
   back and warm it very slightly, then feather the edges into the dark ground
   so it doesn't cut a lit rectangle out of the section. */
#inkfish .sec-media img {
  filter: brightness(.82) contrast(1.06) saturate(.88) sepia(.07);
}
#inkfish .sec-media::after {
  background:
    radial-gradient(80% 60% at 40% 20%, rgba(214,168,86,.16), transparent 65%),
    linear-gradient(to bottom, rgba(11,12,14,.32) 0%, rgba(11,12,14,0) 24%, rgba(11,12,14,0) 54%, rgba(11,12,14,.36) 82%, rgba(11,12,14,.72) 100%),
    radial-gradient(112% 84% at 50% 44%, transparent 42%, rgba(11,12,14,.50) 100%);
}

#mission .sec-media::after {
  background:
    radial-gradient(80% 60% at 40% 20%, rgba(214,168,86,.2), transparent 65%),
    linear-gradient(to bottom, rgba(11,12,14,.30) 0%, rgba(11,12,14,0) 24%, rgba(11,12,14,0) 52%, rgba(11,12,14,.34) 82%, rgba(11,12,14,.70) 100%),
    radial-gradient(112% 84% at 50% 42%, transparent 42%, rgba(11,12,14,.46) 100%);
}
.consult-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
  grid-template-areas: "feature feature b" "feature feature c" "d e f";
  gap: 6px; height: 100%; width: 100%;
}
.consult-card { position: relative; overflow: hidden; border-radius: 6px; border: 1px solid var(--border); }
.consult-card:nth-child(1) { grid-area: feature; }
.consult-card:nth-child(2) { grid-area: b; }
.consult-card:nth-child(3) { grid-area: c; }
.consult-card:nth-child(4) { grid-area: d; }
.consult-card:nth-child(5) { grid-area: e; }
.consult-card:nth-child(6) { grid-area: f; }
.consult-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.consult-card:hover img, .consult-card:focus-within img { transform: scale(1.045); }
.consult-card:hover, .consult-card:focus-within { border-color: var(--border-strong); }
#consultancy .sec-media { aspect-ratio: 1/1; }
@media (min-width: 881px) {
  #consultancy .sec-grid { grid-template-columns: .8fr 1.2fr; }
}
.press-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-areas: "feature feature" "b c";
  gap: 10px;
}
.press-card {
  position: relative; overflow: hidden; border-radius: 6px;
  border: 1px solid var(--border); background: linear-gradient(200deg, #2a2f3a 0%, #1a1e26 55%, #241c12 100%);
  box-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.press-card-feature { grid-area: feature; aspect-ratio: 16/9; }
.press-card:nth-child(2) { grid-area: b; aspect-ratio: 4/3; }
.press-card:nth-child(3) { grid-area: c; aspect-ratio: 4/3; }
.press-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.press-card:hover img, .press-card:focus-within img { transform: scale(1.045); }
.press-card:hover, .press-card:focus-within { border-color: var(--border-strong); }
.media-tag {
  position: absolute; bottom: 14px; left: 14px; z-index: 2; font-size: 11px; font-weight: 500;
  letter-spacing: .02em; padding: 6px 10px; border-radius: 2px; background: rgba(0,0,0,.5); color: rgba(244,242,237,.8);
}
.sec-media-light .media-tag { background: rgba(255,255,255,.6); color: rgba(23,20,15,.75); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border);
  border: 1px solid var(--border); margin-top: clamp(46px, 6vw, 84px); }
.stat { background: var(--bg); padding: 26px 24px; }
.sec-light .stat { background: var(--bg-light); }
.stat b { display: block; font-family: var(--display-font); font-weight: 800; font-size: clamp(28px, 3vw, 44px); letter-spacing: -.03em; margin-bottom: 8px; }
.stat span { font-size: 13.5px; line-height: 1.5; color: rgba(244,242,237,.6); font-weight: 300; }
.sec-light .stat span { color: rgba(23,20,15,.6); }
.stats-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------------- INSIGHTS (05) ---------------- */
.insight-list { display: flex; flex-direction: column; margin-top: clamp(32px, 4vw, 56px); }
.insight { padding: 0; border-top: 1px solid var(--border); }
.insight:last-child { border-bottom: 1px solid var(--border); }
.insight > summary {
  list-style: none; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between;
  gap: clamp(16px, 3vw, 32px); padding: clamp(20px, 2.6vw, 28px) 0;
}
.insight > summary::-webkit-details-marker { display: none; }
.insight-summary-text { flex: 1; min-width: 0; }
.insight-h3 {
  font-family: var(--display-font); font-weight: 700; text-transform: uppercase;
  font-size: clamp(16px, 1.7vw, 21px); letter-spacing: -.01em; margin: 0 0 6px; max-width: 40ch;
}
.insight-hook { font-size: clamp(14px, 1.05vw, 15.5px); line-height: 1.5; font-weight: 300; color: var(--text-dim); margin: 0; max-width: 56ch; }
.insight-toggle {
  flex-shrink: 0; display: flex; align-items: center; gap: 7px; padding-top: 3px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--gold); white-space: nowrap;
}
.insight-toggle svg { width: 11px; height: 11px; transition: transform .25s ease; }
.insight[open] > summary .insight-toggle svg { transform: rotate(180deg); }
.insight-body { padding: 0 0 clamp(20px, 2.6vw, 28px); }
.insight .sec-p { max-width: 74ch; margin: 0 0 16px; }
.source { font-size: 12.5px; color: rgba(244,242,237,.5); margin: 0; }
.source a { color: rgba(244,242,237,.72); text-decoration: underline; text-underline-offset: 2px; }
.source a:hover { color: var(--gold); }

/* ---------------- CONTACT (07) ---------------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; max-width: 52ch; }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--text-light); }
.field em { font-weight: 400; font-style: normal; opacity: .55; }
.field input, .field select, .field textarea {
  font: 400 15px/1.5 var(--body-font); color: var(--text-light);
  background: rgba(23,20,15,.03); border: 1px solid var(--border-light-strong); border-radius: 8px;
  padding: 13px 16px; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  cursor: pointer;
}
.field-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex: none;
  accent-color: var(--gold);
}
.connect-line { margin-top: 26px; }
.connect-line a { color: var(--text-light); text-decoration: underline; text-underline-offset: 2px; }
.connect-line a:hover { color: var(--gold); }

.contact-side { display: flex; flex-direction: column; gap: 12px; }
.side-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 22px 24px; border: 1px solid var(--border-light-strong); border-radius: 10px;
  text-decoration: none; color: var(--text-light); font-weight: 600; font-size: 14.5px;
  transition: border-color .2s, background .2s;
  min-width: 0;
}
.side-card > span:first-child { min-width: 0; overflow-wrap: break-word; }
.side-card:hover { border-color: var(--text-light); }
.side-card-accent { background: var(--text-light); color: var(--bg-light); border-color: var(--text-light); }
.side-card-accent:hover { background: #2a251c; }

/* ---------------- FOOTER ---------------- */
.footer {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 34px clamp(20px, 4vw, 54px); border-top: 1px solid var(--border);
}
.footer-copy { font-size: 12.5px; color: rgba(244,242,237,.5); margin: 0; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 12.5px; color: rgba(244,242,237,.7); text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 880px) {
  .sec-grid, .contact-grid { grid-template-columns: 1fr; }
  .sec-media { aspect-ratio: 3/2; order: -1; }
  #mission .sec-media { aspect-ratio: 4/5; }
  #consultancy .sec-media { aspect-ratio: 1/1; }
  .press-grid { order: -1; }
  .stats, .stats-3 { grid-template-columns: 1fr; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 24px; }
  .topbar-link.hide-sm { display: none; }
  .contact-side { flex-direction: row; flex-wrap: wrap; }
  .side-card { flex: 1 1 220px; }
}
@media (max-width: 480px) {
  .hero-name { font-size: clamp(26px, 9.2vw, 90px); }
  .side-card { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

.page-error {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.page-error .logomark { margin-bottom: 28px; }
.page-error .sec-h2 { max-width: 12ch; }
.page-error .sec-p { margin-left: auto; margin-right: auto; }
.page-error .sec-actions { justify-content: center; }

.form-status {
  font-size: 14px;
  line-height: 1.5;
  margin: 4px 0 0;
}
.form-status.is-success { color: #2c6e49; }
.form-status.is-error { color: #8a2a2a; }
