/* ============================================================
   WhiteByte Technologies — Elegant edition
   Charcoal · champagne gold · ivory · editorial serif
   ============================================================ */

:root {
  --bg: #0b0b0d;             /* near-black warm charcoal */
  --bg-soft: #101013;
  --panel: rgba(255, 255, 255, 0.025);
  --panel-2: rgba(255, 255, 255, 0.04);
  --line: rgba(220, 210, 190, 0.14);
  --line-strong: rgba(220, 210, 190, 0.28);
  --text: #ece7dc;           /* warm ivory */
  --text-dim: #9a9488;
  --gold: #c9a86a;
  --gold-bright: #e6ce97;
  --gold-deep: #a4854f;
  --gold-grad: linear-gradient(120deg, #e6ce97 0%, #c9a86a 55%, #a4854f 100%);
  --radius: 3px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* overflow-x: clip on BOTH the root and body reliably contains the
   off-canvas mobile menu. iOS Safari frequently ignores overflow-x:hidden
   on <body>, which let the whole page (footer included) be dragged
   sideways off the screen on some phones; clip is honoured everywhere. */
html {
  scroll-behavior: auto;
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  width: 100%;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
/* Lock the page while the mobile menu is open. */
body.menu-open { overflow: hidden; }

/* ---------- 3D canvas ---------- */
#bg-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -2; display: block; }
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1100px 700px at 72% -10%, rgba(201, 168, 106, 0.10), transparent 60%),
    radial-gradient(900px 600px at 8% 30%, rgba(201, 168, 106, 0.05), transparent 60%),
    linear-gradient(180deg, rgba(11,11,13,0.35), rgba(11,11,13,0.55));
}

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.section-title {
  font-family: var(--serif); font-weight: 500; letter-spacing: 0.005em;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.08; color: var(--text);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-head { max-width: 720px; margin: 0 auto 70px; text-align: center; }
.section-lead { color: var(--text-dim); font-size: 1.05rem; margin-top: 22px; }

/* ---------- Progress hairline ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--gold-grad); z-index: 100;
}

/* ---------- Elegant flight overlay ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 42; pointer-events: none;
  font-family: var(--sans);
}
.overlay__mark {
  position: absolute; top: 30px; left: 62px;
  font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--text-dim);
}
.flight-index {
  position: absolute; top: 50%; right: 40px; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
  pointer-events: auto;
}
.flight-index__item {
  background: none; border: 0; cursor: pointer; font: inherit;
  display: flex; align-items: center; gap: 12px;
  color: var(--text-dim); opacity: 0.55; transition: opacity 0.4s var(--ease), color 0.4s;
}
.flight-index__item:hover { opacity: 1; color: var(--text); }
.flight-index__num {
  font-family: var(--serif); font-size: 0.82rem; font-style: italic; letter-spacing: 0.05em;
}
.flight-index__tick {
  width: 16px; height: 1px; background: currentColor; transition: width 0.4s var(--ease), background 0.4s;
}
.flight-index__item.active { opacity: 1; color: var(--gold); }
.flight-index__item.active .flight-index__tick { width: 30px; background: var(--gold); }
.flight-caption {
  position: absolute; bottom: 34px; left: 62px;
  display: flex; flex-direction: column; gap: 3px;
}
.flight-caption__k {
  font-size: 0.58rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--text-dim);
}
.flight-caption em {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--text); font-weight: 500;
}

/* Holographic gate labels (tracking 3D) */
#gate-labels { position: fixed; inset: 0; z-index: 41; pointer-events: none; }
.gate-label {
  position: absolute; top: 0; left: 0; will-change: transform, opacity;
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 1.05rem; letter-spacing: 0.06em; color: #6a5220; white-space: nowrap;
  opacity: 0; text-shadow: 0 1px 12px rgba(245, 242, 234, 0.95), 0 0 2px rgba(245, 242, 234, 0.95);
}
.gate-label::after {
  content: ""; display: block; height: 1px; margin-top: 6px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.7;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(22px, 5vw, 66px);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 11, 13, 0.72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding-top: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.brand {
  position: relative; display: inline-flex; align-items: center; flex: 0 0 auto;
  width: 112px; aspect-ratio: 665 / 393; overflow: hidden;
  line-height: 1; text-decoration: none; color: var(--text);
  transition: width 0.4s var(--ease);
}
.nav.scrolled .brand { width: 96px; }
.nav .brand__logo {
  position: absolute; display: block; width: 153.985%; max-width: none; height: auto;
  left: -27.82%; top: -62.34%;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.01em; }
.brand__sub { font-size: 0.56rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  color: var(--text-dim); text-decoration: none; font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.08em; position: relative; transition: color 0.3s;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--text); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--line-strong); color: var(--text) !important;
  padding: 11px 22px; border-radius: 999px; letter-spacing: 0.1em; white-space: nowrap;
  transition: border-color 0.35s, background 0.35s, color 0.35s;
}
.nav__cta:hover { border-color: var(--gold); background: rgba(201, 168, 106, 0.08); }
.nav__burger {
  display: none; position: relative; width: 44px; height: 44px; margin-right: -10px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 0; border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.3s var(--ease);
}
/* soft champagne ring that fades in on hover / when open */
.nav__burger::before {
  content: ""; position: absolute; inset: 4px; border-radius: 50%;
  border: 1px solid transparent; background: transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.35s var(--ease);
}
.nav__burger:hover::before { border-color: var(--line-strong); background: rgba(201, 168, 106, 0.06); }
.nav__burger.open::before { border-color: var(--line); background: rgba(201, 168, 106, 0.08); }
.nav__burger span {
  width: 22px; height: 1.5px; background: var(--text); border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.2s var(--ease), background 0.3s, width 0.35s var(--ease);
}
.nav__burger:hover span { background: var(--gold-bright); }
.nav__burger.open span { background: var(--gold-bright); width: 24px; }
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Mobile menu backdrop ---------- */
.nav__backdrop {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(6, 6, 8, 0.55);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.nav__backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; border-radius: 999px; font-family: var(--sans);
  font-weight: 400; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn--primary { background: var(--gold-grad); color: #2a2113; }
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 140px clamp(22px, 5vw, 66px) 90px; position: relative;
}
.hero__content { max-width: 900px; position: relative; }
.hero__title {
  font-family: var(--serif); font-weight: 500; letter-spacing: 0.005em;
  font-size: clamp(2.9rem, 7.4vw, 6rem); line-height: 1.04; margin-bottom: 30px;
}
.hero__title em { font-style: italic; color: var(--gold); display: block; }
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--text-dim);
  max-width: 620px; margin: 0 auto 44px; font-weight: 300;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 70px; }
.hero__stats {
  width: min(100%, 760px); margin-inline: auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 5vw, 64px);
}
.stat { min-width: 0; display: flex; flex-direction: column; align-items: center; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 4.4vw, 3.4rem); font-weight: 500; color: var(--gold-bright); }
.stat__label {
  max-width: 18ch; color: var(--text-dim); font-size: 0.72rem;
  line-height: 1.5; letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 8px; overflow-wrap: anywhere;
}
.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--text-dim); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
}
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: -40%; left: 0; width: 100%; height: 40%; background: var(--gold-bright); animation: fall 2s var(--ease) infinite; }
@keyframes fall { to { top: 100%; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; white-space: nowrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; background: rgba(16,16,19,0.5); }
.marquee__track { display: inline-flex; gap: 30px; align-items: center; animation: marquee 42s linear infinite; font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--text-dim); }
.marquee__track i { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections common ---------- */
section { position: relative; z-index: 1; }

/* ---------- Services (editorial grid) ---------- */
.services { padding: 130px clamp(22px, 5vw, 66px); max-width: var(--maxw); margin: 0 auto; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 0; }
.svc {
  position: relative; padding: 40px 34px 44px; border-top: 1px solid var(--line);
  border-left: 1px solid var(--line); transition: background 0.5s var(--ease);
}
.svc:hover { background: var(--panel); }
.svc__num {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--gold);
  display: block; margin-bottom: 26px; letter-spacing: 0.05em;
}
.svc__title { font-family: var(--serif); font-weight: 600; font-size: 1.55rem; margin-bottom: 12px; letter-spacing: 0.01em; }
.svc__text { color: var(--text-dim); font-size: 0.95rem; }
.svc::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.5s var(--ease);
}
.svc:hover::after { width: 100%; }
/* close the right & bottom of the grid frame */
.svc-grid { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- About ---------- */
.about { padding: 130px clamp(22px, 5vw, 66px); max-width: var(--maxw); margin: 0 auto; }
.about__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.about__text .section-title { text-align: left; margin-bottom: 28px; }
.about__text p { color: var(--text-dim); margin-bottom: 18px; }
.about__list { list-style: none; display: grid; gap: 14px; margin-top: 30px; }
.about__list li { position: relative; padding-left: 28px; color: var(--text); font-weight: 300; }
.about__list li::before { content: ""; position: absolute; left: 0; top: 12px; width: 14px; height: 1px; background: var(--gold); }
.about__visual { display: flex; align-items: center; justify-content: center; }
.gem-wrap { position: relative; width: min(400px, 82vw); aspect-ratio: 1; cursor: grab; touch-action: none; }
.gem-wrap:active { cursor: grabbing; }
#gem-canvas { width: 100%; height: 100%; display: block; filter: drop-shadow(0 30px 80px rgba(201, 168, 106, 0.18)); }
.gem-hint { position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-dim); pointer-events: none; opacity: 0.7; transition: opacity 0.4s; }
.gem-wrap:active .gem-hint { opacity: 0; }

/* ---------- Process ---------- */
.process { padding: 130px clamp(22px, 5vw, 66px); max-width: var(--maxw); margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.step { padding: 34px 28px; border-top: 1px solid var(--line-strong); transition: transform 0.5s var(--ease); }
.step:hover { transform: translateY(-6px); }
.step__num { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: 16px; }
.step h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- Contact ---------- */
.contact { padding: 130px clamp(22px, 5vw, 66px); max-width: 860px; margin: 0 auto; text-align: center; }
.contact__card { border: 1px solid var(--line); padding: clamp(34px, 5vw, 68px); background: var(--panel); }
.contact__card .section-title { margin-bottom: 14px; }
.contact__lead { color: var(--text-dim); margin-bottom: 40px; }
.contact__form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; text-align: left; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-strong);
  padding: 20px 2px 10px; color: var(--text); font-family: var(--sans); font-size: 1rem; font-weight: 300;
  resize: vertical; transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field label {
  position: absolute; left: 2px; top: 18px; color: var(--text-dim); font-size: 1rem; pointer-events: none;
  transition: 0.25s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 0; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.contact__form .btn { grid-column: 1 / -1; justify-self: center; margin-top: 10px; }
.contact__note { grid-column: 1 / -1; text-align: center; font-size: 0.9rem; color: var(--gold-bright); min-height: 1.2em; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line); background: rgba(16,16,19,0.6);
  padding: 70px clamp(22px, 5vw, 66px) 34px; display: grid; grid-template-columns: 1.1fr 2fr; gap: 44px;
}
.footer__brand {
  position: relative; align-self: center; width: clamp(240px, 28vw, 340px); max-width: 100%;
  aspect-ratio: 804 / 467; overflow: hidden; line-height: 1;
}
.footer__brand .brand__logo {
  position: absolute; display: block; width: 127.363%; max-width: none; height: auto;
  left: -12.687%; top: -54.176%;
}
.footer__cols { min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.footer__cols > div { min-width: 0; }
.footer__cols h4 { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--gold); margin-bottom: 16px; font-weight: 400; }
.footer__cols a {
  display: block; max-width: 100%; color: var(--text-dim); text-decoration: none;
  font-size: 0.92rem; line-height: 1.55; margin-bottom: 11px;
  overflow-wrap: anywhere; word-break: break-word; transition: color 0.3s;
}
.footer__cols a:hover { color: var(--text); }
.footer__copy { grid-column: 1 / -1; text-align: center; color: var(--text-dim); font-size: 0.78rem; letter-spacing: 0.1em; margin-top: 26px; border-top: 1px solid var(--line); padding-top: 26px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 46px; }
  .about__text .section-title, .about__text { text-align: center; }
  .about__list { text-align: left; max-width: 330px; margin-inline: auto; }
  .footer { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Tablet: keep the inline nav + CTA on one comfortable line */
@media (max-width: 900px) and (min-width: 761px) {
  .nav { padding: 16px 26px; }
  .nav.scrolled { padding-top: 11px; padding-bottom: 11px; }
  .brand { width: 96px; }
  .nav.scrolled .brand { width: 88px; }
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 0.76rem; letter-spacing: 0.05em; }
  .nav__cta { padding: 9px 15px; }
  .brand__name { font-size: 1.3rem; }
}
@media (max-width: 760px) {
  .nav { padding: 14px 22px; }
  .nav.scrolled { padding-top: 10px; padding-bottom: 10px; }
  .brand { width: 88px; }
  .nav.scrolled .brand { width: 78px; }
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh;
    width: min(82vw, 320px); z-index: 55;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 30px;
    padding: 44px; background: rgba(11,11,13,0.98);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border-left: 1px solid var(--line-strong);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.45);
    transform: translateX(100%); transition: transform 0.45s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  /* gentle staggered entrance for the links once the panel is open */
  .nav__links a {
    opacity: 0; transform: translateX(16px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.3s;
  }
  .nav__links.open a { opacity: 1; transform: translateX(0); }
  .nav__links.open a:nth-child(1) { transition-delay: 0.08s; }
  .nav__links.open a:nth-child(2) { transition-delay: 0.13s; }
  .nav__links.open a:nth-child(3) { transition-delay: 0.18s; }
  .nav__links.open a:nth-child(4) { transition-delay: 0.23s; }
  .nav__links.open a:nth-child(5) { transition-delay: 0.28s; }
  .nav__burger { display: flex; flex: 0 0 auto; z-index: 60; }
  .footer__brand { width: clamp(240px, 72vw, 320px); }
  .contact__form { grid-template-columns: 1fr; }
  .hero {
    min-height: 100svh;
    padding: 118px 20px 76px;
  }
  .hero__content { width: 100%; }
  .hero__title { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .hero__subtitle { font-size: 0.98rem; line-height: 1.65; }
  .hero__actions { margin-bottom: 52px; }
  .hero__stats { gap: 12px; }
  .stat__num { font-size: clamp(2rem, 10vw, 2.8rem); }
  .stat__label { max-width: 13ch; font-size: 0.58rem; line-height: 1.45; letter-spacing: 0.1em; }
  .services, .about, .process, .contact { padding-top: 90px; padding-bottom: 90px; }
  .section-head { margin-bottom: 50px; }
  .footer { padding-top: 54px; gap: 38px; text-align: center; }
  .footer__brand { justify-self: center; margin-inline: auto; }
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 24px; }
  .footer__cols { justify-items: center; }
  .footer__cols > div { width: 100%; }
  .footer__cols a { width: 100%; text-align: center; }
  .footer__cols > div:last-child { grid-column: 1 / -1; }
  #bg-canvas { opacity: 0.72; }
  /* On phones the flight index + caption crowd the content — hide them.
     Navigation is handled by the burger menu here anyway. */
  .flight-index, .flight-caption, .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .eyebrow { font-size: 0.6rem; line-height: 1.6; letter-spacing: 0.28em; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; padding-inline: 18px; }
  .hero__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .stat__label { font-size: 0.54rem; letter-spacing: 0.06em; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__cols > div:last-child { grid-column: auto; }
  .footer__copy { line-height: 1.7; letter-spacing: 0.06em; }
}

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