/* ============================================================
   ShreeKirti Enterprises — one-page brand site
   Gold-on-black couture design system
   ============================================================ */

:root {
  /* Surfaces */
  --bg:        #060504;
  --bg-2:      #0b0a08;
  --panel:     #0f0d0a;
  --panel-2:   #141109;

  /* Gold ramp */
  --gold-100:  #faf1d4;
  --gold-200:  #f1dea6;
  --gold-300:  #e7c96e;
  --gold-400:  #d4af37;
  --gold-500:  #b8912f;
  --gold-600:  #8a6d20;
  --gold-700:  #5f4a15;

  /* Text */
  --ink:       #ece5d5;
  --ink-dim:   rgba(236, 229, 213, 0.62);
  --ink-faint: rgba(236, 229, 213, 0.38);

  /* Lines */
  --line:        rgba(212, 175, 55, 0.16);
  --line-strong: rgba(212, 175, 55, 0.34);
  --line-faint:  rgba(236, 229, 213, 0.08);

  /* Gradients */
  --grad-gold:  linear-gradient(160deg, #faf1d4 0%, #e7c96e 38%, #c39b34 68%, #8a6d20 100%);
  --grad-text:  linear-gradient(180deg, #faf1d4 0%, #eccf7d 52%, #b8912f 100%);
  --grad-hair:  linear-gradient(90deg, transparent, var(--gold-500) 22%, #fff3c9 50%, var(--gold-500) 78%, transparent);

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:    "Jost", "Century Gothic", "Futura", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient page grain + vignette */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 680px at 50% -8%, rgba(212, 175, 55, 0.10), transparent 60%),
    radial-gradient(900px 900px at 92% 8%, rgba(184, 145, 47, 0.06), transparent 55%),
    radial-gradient(1000px 1000px at 4% 100%, rgba(184, 145, 47, 0.05), transparent 55%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(212, 175, 55, 0.28); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

.section { padding: clamp(84px, 12vh, 160px) 0; position: relative; z-index: 1; }
.section--tight { padding: clamp(64px, 9vh, 120px) 0; }

/* Eyebrow / kicker */
.kicker {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.kicker--center { justify-content: center; }
.kicker--center::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
}

.gold-text {
  background:
    linear-gradient(110deg, transparent 42%, rgba(255, 252, 235, 0.85) 50%, transparent 58%) no-repeat,
    var(--grad-text);
  background-size: 240% 100%, 100% 100%;
  background-position: 140% 0, 0 0;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: goldSheen 7s ease-in-out infinite;
}
/* a soft glint of light passes across the gold every few seconds */
@keyframes goldSheen {
  0%   { background-position: 140% 0, 0 0; }
  38%  { background-position: -80% 0, 0 0; }
  100% { background-position: -80% 0, 0 0; }
}

/* Serif display headings */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin: 0;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin: 0.5rem 0 0;
  letter-spacing: 0.01em;
}
.lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: var(--ink-dim);
  font-style: italic;
}
.body-text { color: var(--ink-dim); font-size: 1.02rem; }

/* Ornamental divider */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 0 auto;
  color: var(--gold-400);
}
.ornament span { height: 1px; width: min(160px, 22vw); background: var(--grad-hair); }
.ornament svg { width: 20px; height: 20px; opacity: 0.9; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(6, 5, 4, 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand svg { width: 30px; height: 30px; }
.nav__brand img.nav__mark { width: 30px; height: auto; display: block; }
.nav__brand b {
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.05rem; letter-spacing: 0.24em;
  text-transform: uppercase;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim); position: relative; padding: 4px 0;
  transition: color 0.35s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold-400); transition: width 0.4s var(--ease);
}
.nav__links a:hover { color: var(--gold-200); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--line-strong); border-radius: 2px;
  padding: 9px 18px !important; color: var(--gold-200) !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: rgba(212, 175, 55, 0.1); border-color: var(--gold-400); }
.nav__toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative; padding: 120px 24px 90px;
  overflow: hidden;
}
.hero__glow {
  position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%);
  width: min(900px, 120vw); height: min(900px, 120vw);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.07) 38%, transparent 66%);
  filter: blur(6px); pointer-events: none; z-index: 0;
  animation: breathe 9s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.06); }
}
.hero__inner { position: relative; z-index: 1; max-width: 940px; }

.hero__emblem { width: clamp(240px, 42vw, 430px); margin: 0 auto 30px; }
.hero__emblem-src, .hero__emblem-svg { display: block; width: 100%; height: auto; }

.hero__eyebrow {
  font-size: 0.72rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 26px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7.6vw, 6rem);
  line-height: 0.98; letter-spacing: 0.08em; text-transform: uppercase;
  margin: 0;
}
.hero__rule { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 26px 0; }
.hero__rule span { height: 1px; width: clamp(50px, 12vw, 120px); background: var(--grad-hair); }
.hero__rule svg { width: 16px; height: 16px; color: var(--gold-300); }

.hero__tag {
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--ink); max-width: 720px; margin: 0 auto; line-height: 1.5;
}
.hero__sub {
  margin-top: 22px; font-size: 0.82rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__sub b { color: var(--gold-300); font-weight: 400; }

.scrolldown {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-faint);
}
.scrolldown i {
  width: 1px; height: 46px; background: linear-gradient(180deg, var(--gold-400), transparent);
  position: relative; overflow: hidden;
}
.scrolldown i::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 1px; height: 50%;
  background: var(--gold-100); animation: drop 2.2s var(--ease) infinite;
}
@keyframes drop { 0% { top: -50%; } 60%, 100% { top: 100%; } }

/* ============================================================
   ETHOS / THE GROUP
   ============================================================ */
.ethos__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.ethos__statement {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.32; letter-spacing: 0.005em;
  margin: 18px 0 0;
}
.ethos__statement em { font-style: italic; }
.ethos__body { margin-top: 26px; color: var(--ink-dim); font-size: 1.05rem; max-width: 46ch; }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--bg); padding: 30px 26px; text-align: left; }
.stat__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: 1;
}
.stat__label {
  margin-top: 10px; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-dim);
}

/* ============================================================
   ENTERPRISES / PORTFOLIO
   ============================================================ */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 6vw, 80px); }
.sec-head .body-text { margin-top: 16px; }

.portfolio { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.unit {
  position: relative; display: flex; flex-direction: column;
  padding: 38px 36px 32px; min-height: 340px;
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 246, 215, 0.07) 50%, transparent 58%) no-repeat,
    linear-gradient(180deg, rgba(20, 17, 9, 0.55), rgba(9, 8, 6, 0.55));
  background-size: 320% 100%, 100% 100%;
  background-position: 135% 0, 0 0;
  border: 1px solid rgba(212, 175, 55, 0.5);
  outline: 1px solid rgba(212, 175, 55, 0.4);
  outline-offset: -9px;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 26px 52px -32px rgba(0, 0, 0, 0.72);
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), outline-color 0.55s var(--ease), box-shadow 0.55s var(--ease), background-position 1.1s var(--ease);
}
.unit::before {
  content: ""; position: absolute; inset: 0; opacity: 1;
  background: radial-gradient(360px 300px at 20% 6%, rgba(212, 175, 55, 0.13), transparent 66%);
  transition: opacity 0.55s var(--ease); pointer-events: none;
}
.unit::after {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 100%;
  background: var(--grad-hair); transform: scaleX(1); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.unit:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.75);
  outline-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 42px 76px -30px rgba(0, 0, 0, 0.9);
  background-position: -80% 0, 0 0; /* light sweeps across the card */
}
.unit:hover .unit__idx {
  border-color: rgba(212, 175, 55, 0.85); color: var(--gold-100);
  box-shadow: inset 0 0 0 4px var(--bg), inset 0 0 0 5px rgba(212, 175, 55, 0.55), inset 0 9px 10px -7px rgba(255, 248, 220, 0.45);
}
.unit:hover .unit__plaque { transform: translateY(-2px); }
.unit:hover::before { opacity: 1; }
.unit:hover::after { transform: scaleX(1); }

.unit__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.unit__idx {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  font-family: var(--font-display); font-weight: 500; font-size: 1rem; letter-spacing: 0.05em;
  color: var(--gold-200);
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: inset 0 0 0 4px var(--bg), inset 0 0 0 5px rgba(212, 175, 55, 0.3), inset 0 9px 10px -7px rgba(255, 248, 220, 0.3);
  background: radial-gradient(circle at 50% 28%, rgba(255, 246, 214, 0.2), rgba(212, 175, 55, 0.08) 48%, transparent 72%);
  transition: border-color 0.45s var(--ease), color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.unit__cat {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-300); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.unit__name {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem); line-height: 1.1; margin: 22px 0 0;
}
.unit__tag { color: var(--gold-200); font-style: italic; font-family: var(--font-display); font-size: 1.05rem; margin-top: 6px; }
.unit__tag::after { content: ""; display: block; width: 54px; height: 1px; margin-top: 18px; background: var(--grad-hair); }
.unit__desc { color: var(--ink-dim); font-size: 0.95rem; margin: 14px 0 0; }
.unit__meta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 0.66rem; letter-spacing: 0.06em; color: var(--ink-dim);
  border: 1px solid var(--line-faint); border-radius: 3px; padding: 5px 10px;
  background: rgba(255, 255, 255, 0.012);
}
.unit__foot { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; }
.unit__link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-200);
}
.unit__link svg { width: 15px; height: 15px; transition: transform 0.45s var(--ease); }
.unit:hover .unit__link svg { transform: translate(4px, -4px); }
.unit__url { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink-faint); }

/* Confectionery accent variant */
.unit--sweets {
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 246, 215, 0.07) 50%, transparent 58%) no-repeat,
    linear-gradient(180deg, rgba(26, 18, 8, 0.6), rgba(10, 8, 6, 0.6));
  background-size: 320% 100%, 100% 100%;
  background-position: 135% 0, 0 0;
}
.unit--sweets:hover { background-position: -80% 0, 0 0; }

/* Per-unit logo plaque — original brand colours, on the ground each logo was built for:
   a dark-subtle tile for the white/blue ZN marks, a light tile for the full-colour logos. */
.unit__plaque {
  display: inline-flex; align-items: center; justify-content: flex-start; align-self: flex-start;
  height: 56px; min-width: 88px; max-width: 280px; padding: 4px 16px;
  border-radius: 12px; margin: 22px 0 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 248, 220, 0.18); /* glossy top edge */
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.unit:hover .unit__plaque { border-color: rgba(212, 175, 55, 0.62); }
.unit__plaque img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; display: block; }
/* Tighter padding so compact icon/stacked logos render larger within the same frame */
.unit__plaque--fill { padding: 2px 14px; }
/* Bare: no plaque frame — the logo (with its own border) fills the footprint */
.unit__plaque--bare {
  border-color: transparent; background: none; box-shadow: none;
  justify-content: flex-start;
  padding: 0 0 0 16px; height: 64px; min-width: 0; max-width: 276px;
}
.unit:hover .unit__plaque--bare { border-color: transparent; }
.unit__plaque--light {
  background: linear-gradient(180deg, #faf5ea, #efe7d6);
  border-color: rgba(150, 110, 30, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 32px -18px rgba(0, 0, 0, 0.85);
}

/* Full-width feature card (HumSkul) */
.unit--wide {
  grid-column: 1 / -1; min-height: 0;
  display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 4vw, 58px);
  align-items: center;
}
.unit--wide .unit__wideR { display: flex; flex-direction: column; }
.unit--wide .unit__plaque { height: 62px; max-width: 240px; }
.unit--wide .unit__foot { margin-top: 22px; }

/* ============================================================
   SCHOLARSHIP
   ============================================================ */
.giving {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(212, 175, 55, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
}
.giving__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.giving__mark { display: flex; align-items: center; justify-content: center; }
.giving__mark svg { width: min(300px, 70%); filter: drop-shadow(0 20px 50px rgba(212, 175, 55, 0.14)); }
.giving__mark img.giving__lotus { width: min(280px, 66%); height: auto; filter: drop-shadow(0 20px 50px rgba(212, 175, 55, 0.16)); }
.giving__title { margin: 12px 0 0; }
.giving__body { margin-top: 24px; color: var(--ink-dim); font-size: 1.08rem; max-width: 52ch; }
.giving__pledge {
  margin-top: 30px; padding: 22px 26px; border-left: 2px solid var(--gold-500);
  background: rgba(212, 175, 55, 0.05); font-family: var(--font-display);
  font-style: italic; font-size: 1.25rem; line-height: 1.5; color: var(--ink);
}

/* ============================================================
   VALUES
   ============================================================ */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value { background: var(--bg); padding: clamp(36px, 4vw, 52px) clamp(28px, 3vw, 40px); text-align: center; }
.value__icon { width: 40px; height: 40px; margin: 0 auto 22px; color: var(--gold-300); }
.value__title { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; margin: 0; }
.value__line { margin-top: 14px; color: var(--ink-dim); font-size: 0.96rem; }

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.foot { position: relative; z-index: 1; border-top: 1px solid var(--line); background: var(--bg-2); }
.foot__top { padding: clamp(64px, 8vw, 100px) 0 56px; }
.foot__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; }
.foot__brand svg { width: 64px; margin-bottom: 20px; }
.foot__brand img.foot__lotus { width: 62px; height: auto; display: block; margin-bottom: 20px; }
.foot__brand b { font-family: var(--font-display); letter-spacing: 0.2em; text-transform: uppercase; display: block; font-size: 1.1rem; }
.foot__brand p { color: var(--ink-dim); font-size: 0.95rem; margin: 14px 0 0; max-width: 40ch; }
.foot__col h4 {
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-300); margin: 4px 0 20px; font-weight: 400;
}
.foot__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.foot__col a, .foot__col li { color: var(--ink-dim); font-size: 0.92rem; transition: color 0.35s var(--ease); }
.foot__col a:hover { color: var(--gold-200); }
.foot__bar {
  border-top: 1px solid var(--line-faint); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.74rem; letter-spacing: 0.08em; color: var(--ink-faint);
}
.foot__bar a { color: var(--ink-dim); }
.foot__bar a:hover { color: var(--gold-200); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
/* once revealed, unit cards take back their own hover transitions
   (.js .reveal otherwise overrides them with opacity/transform only) */
.js .unit.reveal.is-visible {
  transition: opacity 1s var(--ease), transform 0.55s var(--ease), border-color 0.55s var(--ease),
              outline-color 0.55s var(--ease), box-shadow 0.55s var(--ease), background-position 1.1s var(--ease);
}
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
.js .reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .ethos__grid { grid-template-columns: 1fr; gap: 44px; }
  .portfolio { grid-template-columns: 1fr; }
  .unit--wide { grid-template-columns: 1fr; gap: 20px; }
  .giving__grid { grid-template-columns: 1fr; }
  .giving__mark { order: -1; }
  .values { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 20px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .unit { padding: 30px 26px; min-height: 0; }
  .hero__title { letter-spacing: 0.05em; }
}

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