/* ===================================================================
   Garage 202 — Premium Vehicle Storage
   Dark, moody luxe with a warm bronze accent.
=================================================================== */

:root {
  --bg:        #0b0c0e;
  --bg-2:      #121317;
  --bg-3:      #181a1f;
  --surface:   #16181d;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);
  --text:      #f3f1ec;
  --muted:     #9a9aa2;
  --muted-2:   #6f6f78;
  --bronze:    #c79a5b;
  --bronze-2:  #e0bd84;
  --bronze-dim:#8a6a38;
  --radius:    14px;
  --radius-lg: 22px;
  --maxw:      1200px;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --shadow:    0 30px 60px -20px rgba(0,0,0,0.7);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, .brand-text {
  font-family: "Sora", "Inter", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; }

p { color: var(--muted); }
strong { color: var(--text); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(70px, 11vw, 140px) 0; position: relative; }

.eyebrow {
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bronze);
  margin-bottom: 18px;
}

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 72px); text-align: center; }
.section-head .eyebrow { display: inline-block; }
.section-lead { margin-top: 18px; font-size: 1.08rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s, border-color .3s, color .3s, box-shadow .3s;
}
.btn.full { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--bronze-2), var(--bronze));
  color: #1a1306;
  box-shadow: 0 10px 30px -10px rgba(199,154,91,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(199,154,91,0.6); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze-2); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,12,14,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid; place-items: center;
  height: 38px; padding: 0 11px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bronze-2), var(--bronze-dim));
  color: #16110a;
  font-family: "Sora", sans-serif; font-weight: 800; font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.brand-text { font-size: 1.15rem; letter-spacing: 0.18em; font-weight: 700; }
.brand-accent { color: var(--bronze); margin-left: 2px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-family: "Sora", sans-serif; font-size: 0.92rem; font-weight: 500;
  color: var(--muted); transition: color .25s; position: relative;
}
.nav a:hover { color: var(--text); }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--bronze); transition: width .3s var(--ease);
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: 9px 20px; border: 1px solid var(--line-2); border-radius: 100px; color: var(--text);
}
.nav-cta:hover { border-color: var(--bronze); color: var(--bronze-2); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform .3s, opacity .3s; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,12,14,0.92) 0%, rgba(11,12,14,0.6) 45%, rgba(11,12,14,0.35) 100%),
    linear-gradient(180deg, rgba(11,12,14,0.5) 0%, rgba(11,12,14,0) 30%, rgba(11,12,14,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 60px; max-width: 880px; }
.hero h1 { margin-bottom: 26px; text-shadow: 0 2px 40px rgba(0,0,0,0.5); font-size: clamp(2.6rem, 6.4vw, 5rem); }
.hero h1 .accent {
  font-family: "Fraunces", "Sora", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--bronze-2), var(--bronze));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-family: "Fraunces", "Inter", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1.55;
  color: #e4e1da;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero-stats { list-style: none; display: flex; flex-wrap: wrap; gap: 44px; border-top: 1px solid var(--line); padding-top: 28px; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: "Sora", sans-serif; font-size: 1.5rem; letter-spacing: -0.02em; }
.hero-stats span { color: var(--muted); font-size: 0.9rem; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: var(--muted); font-size: 1.6rem; animation: bob 2s infinite var(--ease);
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ===== Intro ===== */
.intro { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.intro-copy h2 { margin-bottom: 22px; }
.intro-copy p + p { margin-top: 18px; }
.intro-figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); }

/* ===== Amenities ===== */
.amenities { background: var(--bg-2); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition: transform .45s var(--ease), border-color .4s, box-shadow .4s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 22px;
  background: rgba(199,154,91,0.12); border: 1px solid rgba(199,154,91,0.25);
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.98rem; }

/* ===== Pricing (rate cards) ===== */
.pricing { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.rate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.rate-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1000px; margin: 0 auto; }
.rate-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), border-color .4s, box-shadow .4s;
}
.rate-card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.rate-card.featured {
  border-color: rgba(199,154,91,0.5);
  background: linear-gradient(180deg, #1c1810, #151217);
  box-shadow: 0 30px 70px -30px rgba(199,154,91,0.35);
}
.rate-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--bronze-2), var(--bronze));
  color: #1a1306; font-family: "Sora", sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; white-space: nowrap;
}
.rate-name { font-size: 1.1rem; margin-bottom: 6px; }
.rate-price { font-family: "Sora", sans-serif; font-weight: 800; font-size: 2.7rem; color: var(--text); margin: 6px 0 8px; letter-spacing: -0.03em; }
.rate-price .currency { font-size: 1.3rem; vertical-align: super; color: var(--bronze); margin-right: 1px; }
.rate-price .per { font-size: 0.95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.rate-year { font-size: 0.85rem; color: var(--bronze-2); margin-bottom: 14px; }
.rate-year strong { color: var(--bronze-2); font-weight: 700; }
.rate-desc { font-size: 0.92rem; color: var(--muted); margin-top: auto; }
.pricing-note { text-align: center; margin-top: 36px; font-size: 0.95rem; color: var(--muted); }
.pricing-note a { color: var(--bronze-2); font-weight: 600; }
.pricing-note a:hover { color: var(--bronze); }

/* (legacy tier styles, kept for safety) */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier {
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), border-color .4s, box-shadow .4s;
}
.tier:hover { transform: translateY(-6px); border-color: var(--line-2); }
.tier.featured {
  border-color: rgba(199,154,91,0.5);
  background: linear-gradient(180deg, #1c1810, #151217);
  box-shadow: 0 30px 70px -30px rgba(199,154,91,0.35);
}
.tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--bronze-2), var(--bronze));
  color: #1a1306; font-family: "Sora", sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
}
.tier-name { margin-bottom: 8px; }
.tier-desc { font-size: 0.95rem; min-height: 48px; }
.tier-price { font-family: "Sora", sans-serif; font-weight: 800; font-size: 3rem; color: var(--text); margin: 18px 0 22px; letter-spacing: -0.03em; }
.tier-price .currency { font-size: 1.4rem; vertical-align: super; color: var(--bronze); margin-right: 2px; }
.tier-price .per { font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.tier-price--custom { font-size: 2.2rem; color: var(--bronze-2); }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex: 1; }
.tier-features li { position: relative; padding-left: 28px; font-size: 0.96rem; color: var(--muted); }
.tier-features li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--bronze);
  font-weight: 700;
}
.pricing-note { text-align: center; margin-top: 30px; font-size: 0.85rem; color: var(--muted-2); }

/* ===== Vehicles ===== */
.vehicles { background: var(--bg); }
.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.vehicle { background: var(--bg-2); padding: 40px 34px; transition: background .4s; }
.vehicle:hover { background: var(--bg-3); }
.v-num { font-family: "Sora", sans-serif; font-weight: 700; color: var(--bronze); font-size: 0.85rem; letter-spacing: 0.1em; }
.vehicle h3 { margin: 14px 0 8px; }
.vehicle p { font-size: 0.95rem; }

/* ===== Gallery (slideshow) ===== */
.gallery { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.slideshow { position: relative; max-width: 1040px; margin: 0 auto; padding: 0 24px; }
.slides {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow); background: var(--bg-3);
}
.slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .8s var(--ease); pointer-events: none; }
.slide.is-active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(11,12,14,0.5); border: 1px solid var(--line-2); color: var(--text);
  font-size: 2rem; line-height: 1; cursor: pointer;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .25s, border-color .25s, transform .25s;
}
.slide-nav:hover { background: rgba(199,154,91,0.3); border-color: var(--bronze); }
.slide-prev { left: 38px; }
.slide-next { right: 38px; }
.slide-prev:hover { transform: translateY(-50%) translateX(-2px); }
.slide-next:hover { transform: translateY(-50%) translateX(2px); }
.slide-dots { display: flex; justify-content: center; gap: 11px; margin-top: 22px; }
.slide-dots button {
  width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: var(--line-2); transition: background .25s, transform .25s;
}
.slide-dots button:hover { background: var(--bronze-dim); }
.slide-dots button.is-active { background: var(--bronze); transform: scale(1.3); }

/* ===== About ===== */
.about { position: relative; overflow: hidden; }
.about-bg { position: absolute; inset: 0; z-index: 0; }
.about-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.22; }
.about::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--bg) 0%, rgba(11,12,14,0.7) 60%, rgba(11,12,14,0.4) 100%); }
.about-inner { position: relative; z-index: 2; max-width: 660px; }
.about-inner h2 { margin-bottom: 22px; }
.about-inner p + p { margin-top: 16px; }
.about-inner .btn { margin-top: 30px; }

/* ===== FAQ ===== */
.faq { background: var(--bg-2); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 26px; transition: border-color .3s, background .3s;
}
.faq-item[open] { border-color: var(--line-2); background: var(--bg-3); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 0; font-family: "Sora", sans-serif;
  font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--bronze); font-size: 1.5rem; font-weight: 400; transition: transform .3s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 22px; font-size: 0.98rem; }
.faq-item em { color: var(--bronze-dim); font-style: italic; }

/* ===== Contact ===== */
.contact { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.contact-info h2 { margin-bottom: 18px; }
.contact-details { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-details li { display: flex; flex-direction: column; gap: 3px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.c-label { font-family: "Sora", sans-serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.7rem; color: var(--bronze); }
.c-value { color: var(--text); font-size: 1.05rem; }
.c-value a:hover { color: var(--bronze-2); }

.contact-form {
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.hp-field { display: none !important; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-family: "Sora", sans-serif; font-size: 0.85rem; font-weight: 500; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: 0.98rem;
  transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(199,154,91,0.15);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c79a5b' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; }
.contact-call { margin-top: 32px; }
.contact-form .btn { margin-top: 8px; }
.form-status { margin-top: 14px; font-size: 0.9rem; color: var(--bronze-2); min-height: 1.2em; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-brand { max-width: 360px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-tag { font-family: "Sora", sans-serif; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.7rem; color: var(--bronze); margin-bottom: 14px; }
.footer-brand p { font-size: 0.95rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 28px; align-content: flex-start; }
.footer-nav a { font-family: "Sora", sans-serif; font-size: 0.92rem; color: var(--muted); transition: color .25s; }
.footer-nav a:hover { color: var(--bronze-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); }
.footer-bottom p { font-size: 0.85rem; color: var(--muted-2); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(6,7,8,0.94); backdrop-filter: blur(8px);
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.06); border: 1px solid var(--line-2);
  color: var(--text); cursor: pointer; border-radius: 50%; display: grid; place-items: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(199,154,91,0.2); border-color: var(--bronze); }
.lb-close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 1.8rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .cards, .tiers, .vehicle-grid, .rate-grid { grid-template-columns: repeat(2, 1fr); }
  .slide-prev { left: 14px; }
  .slide-next { right: 14px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-figure { order: -1; }
  .tier.featured { transform: none; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px;
    background: var(--bg-2); border-left: 1px solid var(--line); padding: 40px;
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 90;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 95; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .cards, .tiers, .rate-grid, .vehicle-grid, .contact-grid, .field-row { grid-template-columns: 1fr; }
  .rate-grid { gap: 28px; }
  .hero-stats { gap: 26px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(11,12,14,0.5) 0%, rgba(11,12,14,0.2) 30%, rgba(11,12,14,0.92) 85%); }
  .about::before { background: linear-gradient(180deg, rgba(11,12,14,0.7), rgba(11,12,14,0.92)); }
}

@media (max-width: 480px) {
  .slide-nav { width: 42px; height: 42px; font-size: 1.5rem; }
  body { font-size: 16px; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
