/* ═══════════════════════════════════════════════════
   HERTS SWIM COACH — Shared Design System
   Void + Coral · Big Shoulders Display · Space Grotesk
   WCAG AA compliant contrast throughout
═══════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────── */
:root {
  --bg:          #0A0807;
  --bg2:         #111009;
  --text:        #F2EEEB;
  --accent:      #FF2E20;
  --mid:         #A8A5A2;
  --rule:        rgba(242,238,235,0.10);
  --surface:     rgba(242,238,235,0.05);
  --surface2:    rgba(242,238,235,0.09);
  --nav-h:       64px;
  --max-w:       1280px;
  --font-disp:   'Big Shoulders Display', sans-serif;
  --font-body:   'Space Grotesk', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { cursor: pointer; }
button { cursor: pointer; font-family: inherit; }

/* ─── Accessibility ──────────────────────────────── */
.skip-nav {
  position: absolute; top: -999px; left: 16px; z-index: 9999;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 12px 20px; text-decoration: none; border-radius: 0 0 4px 4px;
}
.skip-nav:focus { top: 0; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
*:focus:not(:focus-visible) { outline: none; }

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-disp);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--text);
}
h1 { letter-spacing: -0.01em; }
h2, h3 { letter-spacing: 0.04em; }
h4 { letter-spacing: 0.05em; }
p { font-weight: 500; color: var(--mid); line-height: 1.7; }
.label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

/* ─── Nav ────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  height: var(--nav-h);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-text { display: inline-grid; grid-template-rows: auto auto; gap: 3px; }
.nav-logo-name {
  font-family: var(--font-disp); font-weight: 900;
  font-size: 18px; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1;
}
.nav-logo-sub {
  display: flex; justify-content: space-between;
  font-family: var(--font-body); font-weight: 600;
  font-size: 10px; color: var(--accent);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-links {
  display: none; align-items: center; gap: 24px; flex: 1; justify-content: flex-end;
}
.nav-link {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  color: var(--mid); text-decoration: none;
  transition: color 0.15s var(--ease); padding: 4px 0; white-space: nowrap;
}
.nav-link:hover { color: var(--text); }
.nav-link[aria-current="page"] { color: var(--accent); }
.nav-link-soon { opacity: 0.4; pointer-events: none; }
.nav-cta {
  background: var(--accent); color: var(--bg);
  font-family: var(--font-body); font-weight: 700;
  font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 10px 20px; text-decoration: none;
  min-height: 44px; display: inline-flex; align-items: center;
  transition: opacity 0.15s;
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { opacity: 0.88; }
.hamburger {
  background: none; border: none;
  padding: 10px; min-width: 44px; min-height: 44px;
  display: flex; flex-direction: column;
  gap: 5px; align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: all 0.25s var(--ease);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg2);
  padding: 8px 24px 24px;
  position: sticky; top: var(--nav-h); z-index: 199;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-body); font-weight: 500; font-size: 16px;
  color: var(--text); text-decoration: none;
  padding: 14px 0;
  min-height: 52px; display: flex; align-items: center; justify-content: center;
}
.mobile-menu .nav-link-soon { opacity: 0.4; pointer-events: none; }
.mobile-menu .nav-cta { margin-top: 16px; justify-content: center; font-size: 14px; width: 100%; }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ─── Breadcrumb ─────────────────────────────────── */
.breadcrumb-nav {
  background: var(--bg2);
  padding: 11px 24px;
}
.breadcrumb-nav ol {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb-nav li {
  display: flex; align-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
}
.breadcrumb-nav li + li::before { content: '›'; color: var(--mid); padding: 0 8px; }
.breadcrumb-nav a { color: var(--text); text-decoration: none; transition: color 0.15s; }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav [aria-current="page"] { color: var(--mid); }
@media (min-width: 768px)  { .breadcrumb-nav { padding: 11px 48px; } }
@media (min-width: 1280px) { .breadcrumb-nav { padding: 11px 64px; } }

/* ─── Buttons ────────────────────────────────────── */
.btn-primary {
  background: var(--accent); color: var(--bg);
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 16px 28px; border: none; text-decoration: none; text-align: center;
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center;
  transition: opacity 0.15s; flex-shrink: 0;
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(242,238,235,0.25); color: var(--text);
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 15px 28px; text-decoration: none; text-align: center;
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.btn-outline:hover { background: var(--surface2); border-color: rgba(242,238,235,0.4); }
.btn-dark {
  background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 16px 32px; text-decoration: none; text-align: center;
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center;
  transition: opacity 0.15s;
}
.btn-dark:hover { opacity: 0.85; }

/* ─── Section scaffolding ────────────────────────── */
.section { padding: 72px 24px; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.section-full { padding: 0; }
.section-header { margin-bottom: 48px; }
.section-header .label { margin-bottom: 14px; }
.section-header h2 { font-size: clamp(40px, 7vw, 68px); }
.section-header p { font-size: 16px; margin-top: 16px; max-width: 520px; }
.divider { display: none; }
@media (min-width: 768px)  { .section { padding: 96px 48px; } }
@media (min-width: 1280px) { .section { padding: 96px 64px; } }

/* ─── Hero label override (cream reads better than coral at 11px on image) ── */
.hero-content .label {
  color: rgba(242,238,235,0.80);
  text-shadow: 0 0 12px rgba(0,0,0,0.95), 0 1px 4px rgba(0,0,0,0.8);
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-img { position: absolute; inset: 0; z-index: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,8,7,0.55) 0%, rgba(10,8,7,0.15) 35%, rgba(10,8,7,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 40px 24px;
  max-width: var(--max-w);
  margin: 0 auto; width: 100%;
}
.hero-h1 { font-size: clamp(64px, 15vw, 152px); margin-bottom: 20px; color: var(--text); }
.hero-sub { font-size: 16px; font-weight: 500; color: rgba(242,238,235,0.82); max-width: 480px; margin-bottom: 32px; line-height: 1.6; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; max-width: 340px; }
.hero-stats { display: flex; margin-top: 48px; padding-top: 24px; }
.hero-stat { flex: 1; padding-left: 20px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num { font-family: var(--font-disp); font-weight: 900; font-size: clamp(28px, 4vw, 42px); color: var(--text); line-height: 1; }
.hero-stat-label { font-family: var(--font-mono); font-size: 10px; font-weight: 600; color: var(--mid); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
@media (min-width: 768px) {
  .hero-actions { flex-direction: row; max-width: none; }
  .hero-content { padding: 48px 48px; }
}
@media (min-width: 1280px) { .hero-content { padding: 56px 64px; } }

/* ─── Hub page header (faded image strip, ~260px) ─── */
.page-header {
  position: relative;
  height: clamp(220px, 28vh, 300px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-header-img { position: absolute; inset: 0; z-index: 0; }
.page-header-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,8,7,0.70) 0%, rgba(10,8,7,0.90) 100%);
}
.page-header-content {
  position: relative; z-index: 2;
  padding: 28px 24px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.page-header-crumb {
  list-style: none; display: flex; gap: 8px; flex-wrap: wrap;
  margin: 0 0 14px; padding: 0;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid);
}
.page-header-crumb li + li::before { content: '/'; margin-right: 8px; }
.page-header-crumb a { color: var(--mid); text-decoration: none; }
.page-header-crumb a:hover { color: var(--text); }
.page-header h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  color: var(--text); margin-bottom: 10px; line-height: 1.1;
}
.page-header-sub {
  font-size: 15px; color: var(--mid);
  max-width: 520px; line-height: 1.65; margin: 0;
}
@media (min-width: 768px)  { .page-header-content { padding: 36px 48px; } }
@media (min-width: 1280px) { .page-header-content { padding: 40px 64px; } }
/* Hub page h2 scale — keeps h1 dominant over all section headings */
.hub-page h2 { font-size: clamp(26px, 3.5vw, 44px) !important; }

/* ─── Cluster page header (no image, ~160px) ────────── */
.cluster-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--rule);
  padding: 36px 24px 32px;
}
.cluster-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.cluster-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text); margin-bottom: 10px; line-height: 1.1;
}
/* Cluster page h2 scale — keeps h1 dominant over all section headings */
.cluster-page h2 { font-size: clamp(22px, 3.2vw, 36px) !important; }
.cluster-header-sub {
  font-size: 15px; color: var(--mid);
  max-width: 520px; line-height: 1.65; margin: 0;
}
@media (min-width: 768px)  { .cluster-header { padding: 44px 48px 40px; } }
@media (min-width: 1280px) { .cluster-header { padding: 52px 64px 48px; } }

/* ─── Audience paths ─────────────────────────────── */
.paths-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.path-card {
  background: var(--bg); padding: 40px 0;
  text-decoration: none; display: block;
  transition: background 0.2s var(--ease);
}
@media (min-width: 768px) {
  .paths-grid { grid-template-columns: repeat(3, 1fr); }
  .path-card { padding: 48px 36px; }
  .path-card:first-child { padding-left: 0; }
  .path-card:last-child { padding-right: 0; }
}
.path-num { display: none; }
.path-card h3 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.path-card p { font-size: 14px; color: var(--mid); margin-bottom: 20px; }
.path-card-arrow {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--accent); border: 1px solid var(--accent);
  padding: 10px 20px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.path-card:hover .path-card-arrow,
.path-card:active .path-card-arrow { background: var(--accent); color: #0A0807; }

/* ─── Focus-grid icon (Lucide SVG, replaces 01–06 numbers) ─── */
.focus-num { font-size: 0 !important; min-width: 20px !important; letter-spacing: 0 !important; padding-top: 3px !important; }
.focus-num svg { width: 20px; height: 20px; stroke: var(--accent); display: block; }

/* ─── Body copy links ────────────────────────────── */
main p a:not([class]) {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(242,238,235,0.2);
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
main p a:not([class]):hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* ─── Service cards ──────────────────────────────── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.service-card { background: var(--bg); padding: 32px 0; }
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card { padding: 32px 28px; }
  .service-card:nth-child(4n+1) { padding-left: 0; }
  .service-card:last-child { padding-right: 0; }
}
.service-card h3 { font-size: clamp(18px,2.5vw,24px); margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--mid); line-height: 1.65; }

/* ─── Feature image ──────────────────────────────── */
.feature-img-wrap { position: relative; height: clamp(200px, 28vw, 320px); overflow: hidden; }
.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.feature-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(transparent, rgba(10,8,7,0.85));
}
.feature-img-caption p { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: rgba(242,238,235,0.85); letter-spacing: 0.14em; text-transform: uppercase; }

/* ─── Process ────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; }
.process-step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px 0; align-items: start; }
.step-num { font-family: var(--font-disp); font-weight: 900; font-size: 48px; color: var(--accent); line-height: 1; }
.step-body h3 { font-size: clamp(18px, 2.5vw, 24px); margin-bottom: 8px; line-height: 1; }
.step-body p { font-size: 14px; color: var(--mid); }

/* ─── Testimonials ───────────────────────────────── */
.testimonials { display: grid; grid-template-columns: 1fr; gap: 20px; }
.testimonial { background: var(--surface); border-left: 3px solid var(--accent); padding: 28px 24px; }
.testimonial-quote { font-family: var(--font-body); font-weight: 500; font-size: 16px; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 18px; }
.testimonial-name { font-family: var(--font-mono); font-size: 10px; font-weight: 600; color: var(--mid); letter-spacing: 0.14em; text-transform: uppercase; }
@media (min-width: 768px) { .testimonials { grid-template-columns: 1fr 1fr; } }

/* ─── Locations ──────────────────────────────────── */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.location-item { padding: 16px 0; display: flex; flex-direction: column; gap: 6px; }
.location-item h4 { font-size: 15px; color: var(--text); line-height: 1.2; letter-spacing: 0.10em; }
.location-item span { font-family: var(--font-mono); font-size: 10px; font-weight: 600; color: var(--mid); letter-spacing: 0.14em; }
@media (min-width: 768px) { .locations-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── FAQ ────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-btn { width: 100%; background: none; border: none; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; text-align: left; gap: 16px; min-height: 64px; }
.faq-btn-text { font-family: var(--font-body); font-weight: 500; font-size: 16px; color: var(--text); line-height: 1.45; }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 22px; font-weight: 300; transition: transform 0.25s var(--ease); line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 40px 24px 0; font-size: 15px; color: var(--mid); line-height: 1.75; }

/* ─── Coach CTA Banner ───────────────────────────── */
.coach-banner { background: var(--accent); padding: 64px 24px; text-align: center; }
.coach-banner h2 { font-size: clamp(36px, 7vw, 80px); color: var(--bg); }
.coach-banner p { font-size: 16px; color: rgba(10,8,7,0.72); max-width: 480px; margin: 12px auto 32px; font-weight: 400; }
@media (min-width: 768px) { .coach-banner { padding: 80px 48px; } }

/* ─── Enquire ────────────────────────────────────── */
.enquire { padding: 72px 24px; max-width: 800px; margin: 0 auto; }
.tally-frame { width: 100%; min-height: 480px; border: none; background: transparent; }
@media (min-width: 768px) { .enquire { padding: 96px 48px; } }

/* ─── Tally confirmation ─────────────────────────── */
.tally-confirm { display: none; padding: 48px 0 24px; }
.tally-confirm-inner { display: flex; flex-direction: column; gap: 20px; }
.tally-confirm-inner svg { color: var(--accent); flex-shrink: 0; }
.tally-confirm-inner h3 { font-family: var(--font-disp); font-weight: 900; font-size: clamp(32px, 5vw, 52px); color: var(--text); line-height: 1.05; text-transform: uppercase; letter-spacing: 0.01em; }
.tally-confirm-inner p { font-size: 16px; color: var(--mid); line-height: 1.75; max-width: 440px; }
.tally-confirm-brand { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); margin-top: 8px; }

/* ─── Coaching hours ─────────────────────────────── */
.hours-venues { display: grid; grid-template-columns: 1fr; gap: 2px; margin-top: 32px; }
@media (min-width: 768px) { .hours-venues { grid-template-columns: 1fr 1fr; } }
.hours-venue { background: var(--bg2); padding: 28px 32px; }
.hours-venue h3 { font-size: clamp(18px,2.5vw,24px); margin-bottom: 20px; line-height: 1.2; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--rule); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 9px 0; font-size: 14px; }
.hours-table td:first-child { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); width: 110px; padding-right: 16px; }
.hours-table td:last-child { color: var(--text); }

/* ─── Footer ─────────────────────────────────────── */
.footer { background: var(--bg2); border-top: 1px solid var(--rule); padding: 56px 24px 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 48px; text-align: center; }
.footer-brand-name { font-family: var(--font-disp); font-weight: 900; font-size: 24px; color: var(--text); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; margin-top: 12px; }
.footer-brand-sub { font-family: var(--font-body); font-size: 12px; color: var(--mid); margin-top: 4px; }
.footer-links h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mid); margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.footer-links a { font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--mid); text-decoration: none; transition: color 0.15s; min-height: 28px; display: inline-flex; align-items: center; }
.footer-links a:hover { color: var(--text); }
.footer-coming-soon { font-family: var(--font-body); font-size: 13px; color: var(--mid); line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--rule); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
@media (min-width: 768px) { .footer-grid { text-align: left; } .footer-links ul { align-items: flex-start; } .footer-bottom { justify-content: space-between; } }
.footer-legal { font-family: var(--font-mono); font-size: 10px; font-weight: 600; color: var(--mid); letter-spacing: 0.1em; }
@media (min-width: 768px)  { .footer { padding: 72px 48px 40px; } .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
@media (min-width: 1280px) { .footer { padding: 72px 64px 40px; } }

/* ─── Triathlon hero override ────────────────────── */
.hero-tri .hero-overlay { background: linear-gradient(to bottom, rgba(10,8,7,0.5) 0%, rgba(10,8,7,0.12) 30%, rgba(10,8,7,0.92) 100%); }
.hero-tri .hero-img img { object-position: center 20%; }

/* ─── Utility ────────────────────────────────────── */
.text-accent { color: var(--accent); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
