/* ============================================================
   REENTRY AUTO — Design System
   Tokens · Glass · Type · Shape · Motion · Sections
   ============================================================ */

/* ---------- TOKENS (mirror Tailwind v4 @theme) ---------- */
:root {
  --color-asphalt: #0E0F11;
  --color-asphalt-panel: #16181B;
  --color-cream: #F7F1EB;
  --color-orange: #F5872C;
  --color-bronze: #F5872C;
  --color-trust: #1F3D32;
  --color-ink: #1A1614;
  --white: #ffffff;

  /* logo-style orange gradient + glow */
  --grad-orange: linear-gradient(135deg, #FCA64E 0%, #F5872C 48%, #EE6A1C 100%);
  --grad-orange-hi: linear-gradient(135deg, #FFC078 0%, #F8922F 50%, #F2671C 100%);
  --glow-orange: 0 12px 32px rgba(238, 106, 28, 0.42);

  --font-display: "Saira Condensed", "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --maxw: 1320px;
  --gut: clamp(20px, 5vw, 64px);

  --clip: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-asphalt);
  color: var(--color-cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

/* ---------- TYPE ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  line-height: 0.92;
}
.micro {
  font-family: var(--font-body);
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
}
.micro--up { text-transform: uppercase; }

/* ---------- GLASS ---------- */
.glass-dark {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.glass-dark:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(245, 135, 43, 0.18);
}
.glass-light {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow: 0 10px 30px rgba(26, 22, 20, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.glass-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(26, 22, 20, 0.14);
}

/* shine-sweep helper */
.shine { position: relative; overflow: hidden; }
.shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease);
  pointer-events: none;
}
.shine:hover::after { left: 130%; }

.clip { clip-path: var(--clip); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.6em;
  border: 1px solid transparent;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  backdrop-filter: blur(10px) saturate(160%);
  transition: transform 0.3s var(--bounce), background 0.3s var(--ease), color 0.3s var(--ease),
    box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg.arrow { transform: translateX(4px); }

.btn--orange { background: var(--grad-orange); color: var(--white); border-color: rgba(255,255,255,0.24); box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), var(--glow-orange); }
.btn--orange:hover { background: var(--grad-orange-hi); box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 18px 44px rgba(238,106,28,0.58); transform: translateY(-1px); }
.btn--ghost-light { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.22); box-shadow: inset 0 1px 0 rgba(255,255,255,0.18); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.42); }
.btn--ink { background: rgba(26,22,20,0.92); color: var(--color-cream); border-color: rgba(26,22,20,0.5); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12); }
.btn--ink:hover { transform: translateY(-1px); }
.btn--outline-ink { background: rgba(255,255,255,0.5); border: 1px solid rgba(26,22,20,0.18); color: var(--color-ink); }
.btn--outline-ink:hover { background: var(--grad-orange); color: #fff; border-color: transparent; box-shadow: var(--glow-orange); }

/* ---------- REVEAL (motion) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* headline mask-reveal */
.mask { display: block; overflow: hidden; }
.mask > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease);
}
.mask.in > span { transform: none; }
.mask[data-delay="1"] > span { transition-delay: 0.1s; }
.mask[data-delay="2"] > span { transition-delay: 0.2s; }
.mask[data-delay="3"] > span { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .mask > span { transition: none !important; opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

@media print {
  .reveal, .mask > span { opacity: 1 !important; transform: none !important; }
  .swish svg path { stroke-dashoffset: 0 !important; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.45s var(--ease), backdrop-filter 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.header.solid {
  background: rgba(14, 15, 17, 0.72);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 50px; width: auto; display: block; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.45)); }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__txt b { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; font-size: 1.05rem; text-transform: uppercase; }
.brand__txt b span { color: var(--color-orange); }
.brand__txt small { font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(247,241,235,0.55); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 2px; background: rgba(255, 255, 255, 0.07); -webkit-backdrop-filter: blur(22px) saturate(170%); backdrop-filter: blur(22px) saturate(170%); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 999px; padding: 5px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 8px 24px rgba(0, 0, 0, 0.28); }
.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--color-cream);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
  position: relative;
}
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.nav a.active { color: #fff; background: var(--grad-orange); box-shadow: 0 6px 16px rgba(238, 106, 28, 0.4); }
.header__cta { display: flex; align-items: center; gap: 14px; }
.header__cta .btn { height: 50px; padding-block: 0; }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.burger svg { width: 26px; height: 26px; color: var(--color-cream); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(14, 15, 17, 0.96);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: var(--gut);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.8rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a span { color: var(--color-orange); margin-right: 14px; font-size: 0.9rem; font-family: var(--font-body); letter-spacing: 0.2em; }

/* ============================================================
   01 — HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,15,17,0.55) 0%, rgba(14,15,17,0.12) 30%, rgba(14,15,17,0.45) 62%, var(--color-asphalt) 100%),
    radial-gradient(120% 80% at 18% 80%, rgba(14,15,17,0.7), transparent 60%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vh, 96px); padding-top: 140px; }
.hero__grid { display: grid; grid-template-columns: 1.6fr 0.82fr; gap: clamp(32px, 5vw, 72px); align-items: end; }
.hero__copy, .auction-widget { min-width: 0; }
.hero__copy { min-width: 0; }
.hero__eyebrow { display: inline-block; color: var(--color-orange); margin-bottom: 26px; }
.hero__eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--color-orange); display: inline-block; vertical-align: middle; margin-right: 12px; }
.hero h1 { font-size: clamp(2.05rem, 5.2vw, 4.9rem); margin-bottom: 26px; word-break: normal; hyphens: none; }
.hero h1 .line2 { background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero__sub { max-width: 46ch; font-size: clamp(1rem, 1.3vw, 1.18rem); color: rgba(247,241,235,0.82); margin-bottom: 36px; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* auction widget */
.auction-widget { padding: 26px; border-radius: 4px; }
.auction-widget .micro { color: var(--color-bronze); display: flex; align-items: center; gap: 10px; }
.auction-widget .micro::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--color-orange); box-shadow: 0 0 0 0 rgba(245,135,43,0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(245,135,43,0.55); } 70% { box-shadow: 0 0 0 10px rgba(245,135,43,0); } 100% { box-shadow: 0 0 0 0 rgba(245,135,43,0); } }
.auction-widget h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.02em; font-size: 1.5rem; margin: 14px 0 18px; line-height: 1; }
.auction-widget__row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.auction-widget__row span { color: rgba(247,241,235,0.6); font-size: 0.82rem; }
.auction-widget__row b { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -0.01em; }
.auction-widget__row b.orange { color: var(--color-orange); }
.countdown { display: flex; gap: 8px; }
.countdown div { text-align: center; }
.countdown b { display: block; font-family: var(--font-display); font-size: 1.4rem; line-height: 1; }
.countdown small { font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,241,235,0.5); }
.auction-widget .btn { width: 100%; justify-content: center; margin-top: 18px; }

.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(247,241,235,0.5); }
.hero__scroll .mouse { width: 24px; height: 38px; border: 1px solid rgba(247,241,235,0.4); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 2px; background: var(--color-orange); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 10px); } 100% { opacity: 0; } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { position: relative; }
.sec-cream { background: var(--color-cream); color: var(--color-ink); --rule: rgba(26,22,20,0.16); }
.sec-asphalt { background: var(--color-asphalt); color: var(--color-cream); --rule: rgba(247,241,235,0.15); }
.sec-black { background: #060708; color: var(--color-cream); --rule: rgba(247,241,235,0.15); }
.pad { padding-block: clamp(58px, 8vh, 104px); }

/* branded section divider: hairline + glowing orange diamond */
.sec-cream.pad, .sec-asphalt.pad { position: relative; }
.sec-cream.pad::before, .sec-asphalt.pad::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(var(--maxw), calc(100% - 2 * var(--gut))); height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--rule) 26%, transparent 47%, transparent 53%, var(--rule) 74%, transparent);
}
.sec-cream.pad::after, .sec-asphalt.pad::after {
  content: ""; position: absolute; top: -5px; left: 50%;
  width: 10px; height: 10px; transform: translateX(-50%) rotate(45deg);
  background: var(--grad-orange); border-radius: 2px; pointer-events: none;
  box-shadow: 0 0 18px rgba(238, 106, 28, 0.55);
}

.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 52px); }
.sec-head .micro { color: var(--color-orange); margin-bottom: 16px; display: block; }
.sec-head h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.012em; line-height: 0.95; font-size: clamp(2.1rem, 5vw, 4.2rem); }
.sec-cream .sec-head h2 { color: var(--color-ink); }
.sec-head p { max-width: 42ch; color: rgba(26,22,20,0.62); font-size: 1.02rem; }
.sec-asphalt .sec-head p, .sec-black .sec-head p { color: rgba(247,241,235,0.62); }

/* bronze wavy underline */
.swish { position: relative; white-space: nowrap; }
.swish svg { position: absolute; left: 0; right: 0; bottom: -0.18em; width: 100%; height: 0.34em; color: var(--color-bronze); }
.swish svg path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.swish.in svg path { animation: draw 1.1s var(--ease) forwards 0.3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ============================================================
   02 — MISSION
   ============================================================ */
.mission__lead { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: -0.025em; line-height: 1.02; font-size: clamp(1.9rem, 4.4vw, 3.6rem); max-width: 18ch; }
.mission__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.mission__body p { color: rgba(26,22,20,0.7); font-size: 1.08rem; margin-bottom: 26px; max-width: 46ch; }
.mission__head { font-size: clamp(2.4rem, 4.6vw, 4rem); margin-bottom: 0; }
.stats { display: grid; gap: 16px; }
.stat { padding: 28px 30px; border-radius: 4px; display: flex; flex-direction: column; gap: 4px; background: var(--color-asphalt); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 18px 44px rgba(26,22,20,0.16); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.stat:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(26,22,20,0.22), 0 0 36px rgba(238,106,28,0.18); }
.stat b { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.012em; text-transform: uppercase; font-size: clamp(2.6rem, 4.4vw, 3.6rem); line-height: 1; background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat b .pre { -webkit-text-fill-color: transparent; color: transparent; }
.stat span { font-size: 0.92rem; color: rgba(247,241,235,0.6); }
.stat b span { font-size: inherit; color: inherit; }
.stat .micro { color: var(--color-orange); margin-bottom: 8px; font-size: 0.78rem; }

/* ============================================================
   03 — INVENTORY CAROUSEL
   ============================================================ */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 6px; scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.drag { cursor: grabbing; scroll-snap-type: none; }
.vcard {
  flex: 0 0 clamp(280px, 30vw, 360px); scroll-snap-align: start;
  border-radius: 20px; padding: 16px; display: flex; flex-direction: column;
}
.vcard__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.vcard__cat { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-bronze); }
.vcard__pill { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 5px 11px; border-radius: 999px; }
.pill-live { background: rgba(245,135,43,0.16); color: #c2611a; border: 1px solid rgba(245,135,43,0.35); }
.pill-soon { background: rgba(31,61,50,0.12); color: var(--color-trust); border: 1px solid rgba(31,61,50,0.25); }
.pill-sold { background: rgba(26,22,20,0.08); color: rgba(26,22,20,0.5); border: 1px solid rgba(26,22,20,0.12); }
.vcard__img { position: relative; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; margin-bottom: 16px; background: #ddd2c6; }
.vcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.vcard:hover .vcard__img img { transform: scale(1.06); }
.vcard__name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: -0.01em; font-size: 1.3rem; line-height: 1; color: var(--color-ink); margin-bottom: 10px; }
.vcard__meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.vcard__price { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--color-ink); letter-spacing: -0.02em; }
.vcard__was { font-size: 0.9rem; color: rgba(26,22,20,0.4); text-decoration: line-through; }
.vcard__cd { display: flex; gap: 8px; margin-bottom: 16px; }
.vcard__cd div { background: rgba(26,22,20,0.05); border-radius: 9px; padding: 7px 9px; text-align: center; min-width: 42px; }
.vcard__cd b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--color-ink); line-height: 1; }
.vcard__cd small { font-size: 0.5rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(26,22,20,0.45); }
.vcard .btn { width: 100%; justify-content: center; margin-top: auto; }

.carousel__foot { display: flex; align-items: center; gap: 20px; margin-top: 34px; }
.carousel__progress { flex: 1; height: 3px; background: rgba(26,22,20,0.12); border-radius: 999px; position: relative; overflow: hidden; }
.sec-asphalt .carousel__progress { background: rgba(255,255,255,0.12); }
.carousel__thumb { position: absolute; left: 0; top: 0; height: 100%; width: 28%; background: var(--color-orange); border-radius: 999px; }
.carousel__arrows { display: flex; gap: 10px; }
.carousel__arrows button { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(26,22,20,0.18); color: var(--color-ink); transition: all 0.3s var(--ease); }
.sec-asphalt .carousel__arrows button { border-color: rgba(255,255,255,0.2); color: var(--color-cream); }
.carousel__arrows button:hover { background: var(--color-orange); border-color: var(--color-orange); color: #fff; }
.carousel__arrows button svg { width: 20px; height: 20px; }

/* ============================================================
   04 — CATEGORIES
   ============================================================ */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; min-height: 84vh; }
.cat { position: relative; overflow: hidden; display: flex; align-items: flex-end; min-height: 60vh; }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,7,8,0.15) 0%, rgba(6,7,8,0.2) 45%, rgba(6,7,8,0.9) 100%); transition: background 0.5s var(--ease); }
.cat:hover img { transform: scale(1.07); }
.cat:hover::after { background: linear-gradient(180deg, rgba(6,7,8,0.1) 0%, rgba(245,135,43,0.12) 50%, rgba(6,7,8,0.92) 100%); }
.cat__vtext { position: absolute; top: 28px; right: 22px; writing-mode: vertical-rl; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: clamp(2.6rem, 4vw, 4.2rem); color: rgba(255,255,255,0.08); z-index: 1; }
.cat__inner { position: relative; z-index: 2; padding: clamp(28px, 3vw, 44px); width: 100%; }
.cat__num { font-family: var(--font-display); color: var(--color-orange); font-size: 0.9rem; letter-spacing: 0.1em; }
.cat__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.02em; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 0.95; margin: 10px 0 8px; }
.cat__desc { color: rgba(247,241,235,0.7); font-size: 0.92rem; margin-bottom: 20px; max-width: 28ch; }
.cat .btn { backdrop-filter: blur(40px) saturate(180%); -webkit-backdrop-filter: blur(40px) saturate(180%); }

/* ============================================================
   05 — PROGRAM TILES
   ============================================================ */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile { padding: clamp(28px, 3vw, 42px); border-radius: 4px; display: flex; flex-direction: column; min-height: 320px; }
.tile__ico { width: 72px; height: 72px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(252,166,78,0.2), rgba(238,106,28,0.1)); border: 1px solid rgba(245,135,44,0.32); color: var(--color-orange); margin-bottom: 26px; transition: background 0.4s var(--ease); }
.tile__ico svg { width: 40px; height: 40px; stroke-width: 1.5; }
.tile:hover .tile__ico { background: linear-gradient(135deg, rgba(252,166,78,0.34), rgba(238,106,28,0.18)); }
.tile h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: -0.02em; font-size: 1.55rem; line-height: 1; margin-bottom: 14px; }
.tile p { color: rgba(247,241,235,0.66); font-size: 0.98rem; margin-bottom: 24px; }
.tile__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--color-orange); font-weight: 600; font-size: 0.9rem; }
.tile__link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.tile:hover .tile__link svg { transform: translateX(4px); }
.tile__num { font-family: var(--font-display); font-size: 0.8rem; color: rgba(247,241,235,0.3); letter-spacing: 0.1em; margin-bottom: 18px; }

/* ============================================================
   06 — RIDESHARE SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.split__media { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 5/6; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split__badge { position: absolute; bottom: 22px; left: 22px; right: 22px; padding: 18px 22px; border-radius: 16px; display: flex; align-items: center; justify-content: space-between; }
.split__badge b { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-ink); letter-spacing: -0.02em; }
.split__badge span { font-size: 0.82rem; color: rgba(26,22,20,0.6); }
.split h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.012em; line-height: 0.95; font-size: clamp(2rem, 4.4vw, 3.6rem); color: var(--color-ink); margin: 16px 0 22px; }
.split p { color: rgba(26,22,20,0.68); font-size: 1.06rem; margin-bottom: 28px; max-width: 44ch; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 500; color: var(--color-ink); }
.chip svg { width: 16px; height: 16px; color: var(--color-orange); stroke-width: 1.6; }

/* ============================================================
   YOUTH CLASSES BAND
   ============================================================ */
.youth { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.youth__media { position: relative; min-height: 520px; overflow: hidden; }
.youth__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.youth__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 40%, rgba(14,15,17,0.85) 100%); }
.youth__body { padding: clamp(44px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.youth__body h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.012em; line-height: 0.94; font-size: clamp(2.1rem, 4.6vw, 3.8rem); margin: 16px 0 22px; }
.youth__body h2 em { font-style: normal; background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.youth__body p { color: rgba(247,241,235,0.7); font-size: 1.06rem; margin-bottom: 28px; max-width: 42ch; }
.topics { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.topic { padding: 9px 16px; border-radius: 999px; font-size: 0.82rem; color: var(--color-cream); border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); }

/* ============================================================
   07 — PARTNERS
   ============================================================ */
.partners__strip { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.plogo { padding: 18px 34px; border-radius: 999px; display: flex; align-items: center; gap: 12px; color: rgba(26,22,20,0.55); font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; font-size: 1.1rem; text-transform: uppercase; }
.plogo svg { width: 26px; height: 26px; color: var(--color-bronze); }

/* ============================================================
   08 — AUCTION UPDATES
   ============================================================ */
.updates { text-align: center; max-width: 720px; margin-inline: auto; }
.updates h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: -0.012em; line-height: 0.95; font-size: clamp(2.1rem, 5vw, 4rem); margin-bottom: 18px; }
.updates h2 em { font-style: normal; background: var(--grad-orange); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.updates p { color: rgba(247,241,235,0.66); margin-bottom: 36px; font-size: 1.06rem; }
.emailbar { display: flex; gap: 8px; padding: 8px; border-radius: 999px; max-width: 520px; margin-inline: auto; }
.emailbar input { flex: 1; background: transparent; border: none; outline: none; color: var(--color-cream); padding: 0 18px; font-size: 0.98rem; font-family: inherit; }
.emailbar input::placeholder { color: rgba(247,241,235,0.4); }
.emailbar .btn { flex-shrink: 0; }
.updates small { display: block; margin-top: 16px; color: rgba(247,241,235,0.4); font-size: 0.8rem; }

/* ============================================================
   09 — FOOTER
   ============================================================ */
.footer { background: var(--color-asphalt); border-top: 1px solid rgba(255,255,255,0.07); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-block: clamp(56px, 7vw, 90px); }
.footer .brand { margin-bottom: 22px; }
.footer .brand img { height: 62px; }
.footer__about { color: rgba(247,241,235,0.6); font-size: 0.95rem; max-width: 34ch; margin-bottom: 26px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.12); color: rgba(247,241,235,0.7); transition: all 0.3s var(--ease); }
.socials a:hover { background: var(--color-orange); border-color: var(--color-orange); color: #fff; transform: translateY(-2px); }
.socials a svg { width: 18px; height: 18px; }
.fcol h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-bronze); margin-bottom: 20px; }
.fcol a { display: block; color: rgba(247,241,235,0.66); font-size: 0.94rem; padding: 7px 0; transition: color 0.25s var(--ease), padding 0.25s var(--ease); }
.fcol a:hover { color: var(--color-orange); padding-left: 6px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-block: 26px; border-top: 1px solid rgba(255,255,255,0.07); color: rgba(247,241,235,0.45); font-size: 0.82rem; }
.footer__bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--color-cream); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .header__cta .btn { display: none; }
  .burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .auction-widget { max-width: 460px; }
  .mission__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .header__cta .btn { display: none; }
  .burger { display: flex; }
  .cats { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__media { aspect-ratio: 4/3; order: -1; }
  .youth { grid-template-columns: 1fr; }
  .youth__media { min-height: 320px; }
  .youth__media::after { background: linear-gradient(180deg, transparent 40%, rgba(14,15,17,0.7) 100%); }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; }
  .emailbar { flex-direction: column; border-radius: 20px; }
  .emailbar input { padding: 14px 18px; text-align: center; }
  .brand__txt small { display: none; }
}
