
/* =========================================
   HABITZ ELITE — DARK LUXURY SPORTSWEAR
   Aesthetic: Night-Race / Carbon-Luxury
========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #06060A;
  --ink2: #0D0D14;
  --surface: #111118;
  --panel: #16161F;
  --edge: rgba(255,255,255,0.07);
  --edge2: rgba(255,255,255,0.12);
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.45);
  --muted2: rgba(255,255,255,0.65);
  --accent: #FF3B2F;
  --accent2: #FF6B1A;
  --gold: #C9A84C;
  --gold-lt: #F0D080;
  --cyan: #00D4FF;
  --fire: linear-gradient(135deg, #FF3B2F 0%, #FF6B1A 100%);
  --gold-grad: linear-gradient(135deg, #C9A84C 0%, #F0D080 50%, #C9A84C 100%);
  --glass: rgba(255,255,255,0.04);
  --glass2: rgba(255,255,255,0.08);
  --r-sm: 1.2rem;
  --r-md: 2rem;
  --r-lg: 3rem;
  --font-display: 'Bebas Neue', sans-serif;
  --font-ui: 'Rajdhani', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 62.5%; scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  color: var(--white);
  background: var(--ink);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.6;
  cursor: default;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ──────── SCROLLBAR ──────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ──────── LAYOUT ──────── */
.pw { max-width: 1440px; margin: 0 auto; padding: 0 2.4rem; }
@media(min-width:768px) { .pw { padding: 0 4rem; } }
@media(min-width:1200px) { .pw { padding: 0 6rem; } }

/* ──────── GRAIN OVERLAY ──────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.5;
}

/* ══════════════════════════════
   ANNOUNCEMENT TICKER
══════════════════════════════ */
.announce {
  background: var(--accent);
  height: 3.6rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
.announce::before,
.announce::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  z-index: 2;
}
.announce::before { left: 0; background: linear-gradient(to right, var(--accent), transparent); }
.announce::after { right: 0; background: linear-gradient(to left, var(--accent), transparent); }
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  padding: 0 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-item::before { content: '◆'; font-size: 0.8rem; opacity: 0.7; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(6,6,10,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--edge);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 6.8rem;
  gap: 2rem;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.logo-mark {
  height: 4.8rem;
  width: auto;
  max-width: 5.6rem;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--edge2);
  flex-shrink: 0;
  position: relative;
  background: #0b0b12;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}
.logo-mark img {
  height: 100%;
  width: auto !important;
  max-width: 100%;
  object-fit: contain !important;
  object-position: center;
}
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.25rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.3rem;
  color: var(--muted);
  text-transform: uppercase;
}

/* Desktop Nav */
.main-nav { display: none; align-items: center; gap: 0.2rem; }
@media(min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a {
  font-family: var(--font-ui);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--muted2);
  padding: 0.7rem 1.4rem;
  border-radius: 0.8rem;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: 0.3rem; left: 50%; right: 50%;
  height: 2px; background: var(--accent);
  transition: left 0.25s var(--ease-out), right 0.25s var(--ease-out);
  border-radius: 2px;
}
.main-nav a:hover { color: #fff; background: var(--glass2); }
.main-nav a:hover::after { left: 1.4rem; right: 1.4rem; }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.1rem; text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 0.8rem;
  background: var(--fire);
  color: #fff !important;
  box-shadow: 0 0 20px rgba(255,59,47,0.35);
  transition: box-shadow 0.25s, transform 0.25s !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 4px 28px rgba(255,59,47,0.55) !important; }
.nav-cta::after { display: none !important; }

/* Header Icons */
.hdr-icons { display: flex; align-items: center; gap: 0.8rem; }
.hdr-btn {
  background: var(--glass2);
  border: 1px solid var(--edge);
  color: var(--white);
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-size: 1.6rem;
  position: relative;
}
.hdr-btn:hover { background: var(--glass); border-color: var(--edge2); }
.cart-pill {
  position: absolute; top: -0.5rem; right: -0.5rem;
  min-width: 1.8rem; height: 1.8rem;
  background: var(--accent);
  border-radius: 2rem;
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  padding: 0 0.4rem;
  font-family: var(--font-ui);
  border: 1px solid var(--ink);
}
.burger {
  background: var(--glass2); border: 1px solid var(--edge);
  width: 4rem; height: 4rem; border-radius: 1rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; cursor: pointer;
}
@media(min-width: 1024px) { .burger { display: none; } }
.burger span { display: block; width: 2rem; height: 0.2rem; background: #fff; border-radius: 2px; transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(0.7rem) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-0.7rem) rotate(-45deg); }

/* Mobile Drawer */
.drawer-bg { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 800; backdrop-filter: blur(4px); }
.drawer-bg.open { display: block; }
.mobile-drawer {
  position: fixed; left: 0; top: 0; bottom: 0;
  width: 30rem; max-width: 82vw;
  background: var(--ink2);
  border-right: 1px solid var(--edge2);
  z-index: 900;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-out);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 2rem;
  border-bottom: 1px solid var(--edge);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-close {
  background: var(--glass2); border: 1px solid var(--edge);
  color: #fff; width: 3.6rem; height: 3.6rem;
  border-radius: 0.8rem; cursor: pointer;
  font-size: 1.8rem; display: flex; align-items: center; justify-content: center;
}
.drawer-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 1.8rem; font-weight: 700;
  letter-spacing: 0.1rem; text-transform: uppercase;
  color: var(--muted2);
  padding: 1.4rem 2rem;
  border-bottom: 1px solid var(--edge);
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-links a:hover { color: #fff; padding-left: 2.6rem; }
.drawer-links a.cta { color: var(--accent); }
.drawer-foot {
  margin-top: auto; padding: 2rem;
  background: var(--glass);
  border-top: 1px solid var(--edge);
}
.drawer-foot p { font-size: 1.3rem; color: var(--muted); line-height: 1.8; }
.drawer-foot strong { color: var(--muted2); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-bg-left {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero-bg-left::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,0.03) 40px,
    rgba(201,168,76,0.03) 42px
  );
}
.hero-bg-right {
  position: relative;
  overflow: hidden;
}
.hero-bg-right img { filter: brightness(0.55) saturate(1.2); }
.hero-bg-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 40%),
              linear-gradient(to top, var(--ink) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 2.4rem 6rem;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 100svh;
  max-width: 1440px; margin: 0 auto; width: 100%;
}
@media(min-width: 768px) { .hero-content { padding: 10rem 4rem 8rem; } }
@media(min-width: 1200px) { .hero-content { padding: 12rem 6rem 10rem; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-bottom: 2.4rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}
.eyebrow-dot { width: 0.8rem; height: 0.8rem; border-radius: 50%; background: var(--accent); }
.eyebrow-text {
  font-family: var(--font-ui);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.4rem; text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 16rem);
  line-height: 0.9;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  max-width: 12ch;
  margin-bottom: 2.8rem;
  opacity: 0; animation: fadeUp 0.9s 0.35s var(--ease-out) forwards;
}
.hero-title-line { display: block; }
.hero-title-line.stroke {
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
  color: transparent;
}
.hero-title-line.fire {
  background: var(--fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: var(--muted2);
  max-width: 44rem;
  line-height: 1.7;
  margin-bottom: 4rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center;
  margin-bottom: 5rem;
  opacity: 0; animation: fadeUp 0.9s 0.65s var(--ease-out) forwards;
}
.btn-fire {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--font-ui);
  font-size: 1.5rem; font-weight: 700; letter-spacing: 0.15rem;
  text-transform: uppercase;
  padding: 1.4rem 3rem;
  border-radius: 0.8rem;
  background: var(--fire);
  color: #fff;
  box-shadow: 0 0 30px rgba(255,59,47,0.4), 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  border: none; cursor: pointer;
}
.btn-fire:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(255,59,47,0.6), 0 8px 32px rgba(0,0,0,0.5); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--font-ui);
  font-size: 1.5rem; font-weight: 700; letter-spacing: 0.15rem;
  text-transform: uppercase;
  padding: 1.3rem 3rem;
  border-radius: 0.8rem;
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--edge2);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-ghost:hover { background: var(--glass2); color: #fff; border-color: rgba(255,255,255,0.25); }

.hero-stats {
  display: flex; gap: 3.2rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.8s var(--ease-out) forwards;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: 1.2rem; color: var(--muted); letter-spacing: 0.1rem; text-transform: uppercase; font-family: var(--font-ui); font-weight: 600; }
.stat-divider { width: 1px; background: var(--edge); self-align: stretch; }

/* Floating image card */
.hero-card {
  display: none;
  position: absolute; right: 3.5%; bottom: 8%;
  z-index: 3;
  background: var(--panel);
  border: 1px solid var(--edge2);
  border-radius: 1.6rem;
  padding: 1.6rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  opacity: 0; animation: fadeUp 1s 1s var(--ease-out) forwards;
}
@media(min-width: 900px) { .hero-card { display: block; } }
.hero-card-inner { display: flex; align-items: center; gap: 1.4rem; }
.hero-card-img { width: 6rem; height: 6rem; border-radius: 1rem; overflow: hidden; flex-shrink: 0; }
.hero-card-text h4 { font-family: var(--font-ui); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.3rem; }
.hero-card-text p { font-size: 1.2rem; color: var(--muted); }
.hero-card-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(0,212,255,0.12); border: 1px solid rgba(0,212,255,0.25);
  border-radius: 5rem; padding: 0.4rem 1rem;
  margin-top: 0.8rem;
}
.hero-card-badge span { font-size: 1.1rem; color: var(--cyan); font-family: var(--font-ui); font-weight: 700; letter-spacing: 0.05rem; }
.badge-dot { width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--cyan); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.3);} }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════
   MARQUEE STRIP
══════════════════════════════ */
.strip {
  background: var(--ink2);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 1.8rem 0;
  overflow: hidden;
}
.strip-track {
  display: flex; white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.strip-item {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.2rem;
  color: var(--muted);
  padding: 0 3rem;
  display: flex; align-items: center; gap: 2rem;
}
.strip-item em { color: var(--gold); font-style: normal; }
.strip-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

/* ══════════════════════════════
   SECTION BASE
══════════════════════════════ */
.section { padding: 7rem 0; }
.section-sm { padding: 5rem 0; }
.section-label {
  font-family: var(--font-ui);
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.35rem;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before { content: ''; width: 2.4rem; height: 2px; background: var(--accent); }
.section-h {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.section-h.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap;
}
.see-all {
  font-family: var(--font-ui);
  font-size: 1.3rem; font-weight: 700; letter-spacing: 0.15rem;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 0.6rem;
  border-bottom: 1px solid var(--edge2); padding-bottom: 0.3rem;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.see-all:hover { color: #fff; border-color: #fff; }

/* ══════════════════════════════
   COLLECTION GRID
══════════════════════════════ */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
@media(min-width: 600px) { .coll-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width: 900px) { .coll-grid { grid-template-columns: repeat(5, 1fr); } }

.coll-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 1.4rem;
  overflow: hidden;
  cursor: pointer;
  background: var(--panel);
  border: 1px solid var(--edge);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.coll-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.coll-card img { transition: transform 0.6s var(--ease-out); filter: brightness(0.75) saturate(1.1); }
.coll-card:hover img { transform: scale(1.08); filter: brightness(0.9) saturate(1.2); }
.coll-card-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.coll-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.8rem 1.6rem;
}
.coll-tag {
  font-family: var(--font-ui);
  font-size: 1rem; font-weight: 700; letter-spacing: 0.15rem;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.4rem;
}
.coll-name {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: 0.05rem; text-transform: uppercase;
  color: #fff; line-height: 1.1;
}
.coll-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--fire);
  font-size: 1.4rem;
  position: absolute; top: 1.4rem; right: 1.4rem;
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
}
.coll-card:hover .coll-arrow { opacity: 1; transform: scale(1); }

/* ══════════════════════════════
   SPLIT FEATURE BANNER
══════════════════════════════ */
.split-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media(min-width: 768px) { .split-feature { grid-template-columns: 1fr 1fr; } }
.split-card {
  position: relative;
  min-height: 55vw;
  max-height: 500px;
  border-radius: 1.8rem;
  overflow: hidden;
  cursor: pointer;
  background: var(--panel);
}
@media(min-width: 768px) { .split-card { min-height: 40vw; } }
.split-card img { transition: transform 0.6s var(--ease-out); filter: brightness(0.6) saturate(1.2); }
.split-card:hover img { transform: scale(1.05); filter: brightness(0.75) saturate(1.3); }
.split-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%);
}
.split-body {
  position: absolute; bottom: 3rem; left: 3rem; right: 3rem; z-index: 2;
}
.split-eyebrow {
  font-family: var(--font-ui); font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.3rem; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem;
}
.split-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 7rem);
  letter-spacing: 0.05rem; text-transform: uppercase;
  line-height: 0.95; color: #fff;
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.split-pill {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1.8rem; border-radius: 5rem;
  font-family: var(--font-ui); font-size: 1.3rem; font-weight: 700;
  letter-spacing: 0.1rem; text-transform: uppercase; color: #fff;
  transition: background 0.25s;
}
.split-pill:hover { background: var(--fire); border-color: transparent; }

/* ══════════════════════════════
   WOMEN + KIDS SECTION
══════════════════════════════ */
.collage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media(min-width: 600px) { .collage-grid { grid-template-columns: 1fr 1fr; } }
.collage-left {
  border-radius: 1.8rem; overflow: hidden;
  position: relative; cursor: pointer;
  min-height: 40rem;
  background: var(--panel);
}
.collage-left img { transition: transform 0.5s; filter: brightness(0.7); }
.collage-left:hover img { transform: scale(1.04); filter: brightness(0.85); }
.collage-right {
  display: grid; grid-template-rows: 1fr 1fr; gap: 1.4rem;
}
.collage-sm {
  border-radius: 1.4rem; overflow: hidden;
  position: relative; cursor: pointer;
  min-height: 18rem;
  background: var(--panel);
}
.collage-sm img { transition: transform 0.5s; filter: brightness(0.7); }
.collage-sm:hover img { transform: scale(1.05); filter: brightness(0.85); }
.collage-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 65%); }
.collage-info { position: absolute; bottom: 2rem; left: 2rem; z-index: 2; }
.collage-label { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; letter-spacing: 0.2rem; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.collage-name { font-family: var(--font-display); font-size: 2.4rem; text-transform: uppercase; color: #fff; line-height: 1.1; }

/* ══════════════════════════════
   GEAR UP BAND
══════════════════════════════ */
.band {
  background: var(--ink2);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}
.band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media(min-width: 768px) { .band-inner { grid-template-columns: 1fr 1fr; } }
.band-media {
  position: relative; overflow: hidden;
  min-height: 30rem;
}
@media(min-width: 768px) { .band-media { min-height: 50rem; } }
.band-media img { filter: brightness(0.8) saturate(1.2); }
.band-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ink2));
}
.band-content {
  padding: 5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
@media(min-width: 1024px) { .band-content { padding: 7rem 6rem; } }
.band-h {
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 7rem);
  line-height: 0.95; text-transform: uppercase;
  margin-bottom: 2rem;
}
.band-h span { background: var(--fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.band-desc { font-size: 1.5rem; color: var(--muted2); line-height: 1.7; margin-bottom: 3rem; max-width: 40rem; }
.band-contact {
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 3.5rem;
}
.contact-row {
  display: flex; align-items: center; gap: 1.4rem;
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 1rem;
  padding: 1.2rem 1.6rem;
}
.contact-icon { font-size: 2rem; }
.contact-text p { font-size: 1.2rem; color: var(--muted); font-family: var(--font-ui); font-weight: 600; letter-spacing: 0.05rem; text-transform: uppercase; }
.contact-text a { font-size: 1.6rem; font-weight: 600; color: #fff; }

/* ══════════════════════════════
   TRAINING ROW (4 wide)
══════════════════════════════ */
.four-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
@media(min-width: 768px) { .four-grid { grid-template-columns: repeat(4, 1fr); } }

/* ══════════════════════════════
   PROCESS STEPS
══════════════════════════════ */
.process {
  background: var(--ink2);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media(min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 1.6rem;
  padding: 2.4rem 2rem;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.step-card:hover { border-color: var(--edge2); background: var(--glass2); }
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--fire);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.step-card:hover::before { transform: scaleX(1); }
.step-num {
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: rgba(255,255,255,0.05);
  position: absolute; top: 1rem; right: 1.6rem;
}
.step-icon { font-size: 3rem; margin-bottom: 1.6rem; }
.step-h { font-family: var(--font-ui); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.05rem; }
.step-p { font-size: 1.3rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════
   BLOG
══════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media(min-width: 600px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 1.6rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s;
}
.blog-card:hover { transform: translateY(-8px); border-color: var(--edge2); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.blog-img { height: 19rem; overflow: hidden; position: relative; }
.blog-img img { transition: transform 0.5s; filter: brightness(0.8); }
.blog-card:hover .blog-img img { transform: scale(1.06); filter: brightness(0.95); }
.blog-cat {
  position: absolute; top: 1.4rem; left: 1.4rem;
  font-family: var(--font-ui); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.2rem; text-transform: uppercase;
  background: var(--fire); color: #fff;
  padding: 0.4rem 1rem; border-radius: 5rem;
}
.blog-body { padding: 2.4rem; }
.blog-title { font-family: var(--font-ui); font-size: 1.8rem; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 1.2rem; }
.blog-cta { font-family: var(--font-ui); font-size: 1.3rem; font-weight: 700; letter-spacing: 0.1rem; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 0.6rem; transition: color 0.2s; }
.blog-card:hover .blog-cta { color: var(--gold); }

/* ══════════════════════════════
   WELCOME / ABOUT
══════════════════════════════ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid var(--edge);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
@media(min-width: 768px) { .about-wrap { grid-template-columns: 1fr 1fr; } }
.about-media { position: relative; min-height: 30rem; }
.about-media img { filter: brightness(0.8) saturate(1.1); }
.about-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--ink2));
}
.about-content {
  background: var(--ink2);
  padding: 4rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
@media(min-width: 1024px) { .about-content { padding: 6rem 5rem; } }
.about-h {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  text-transform: uppercase; line-height: 0.95;
  margin-bottom: 2rem;
}
.about-p { font-size: 1.45rem; color: var(--muted2); line-height: 1.75; margin-bottom: 1.6rem; }
.feat-pills { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.feat-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--glass); border: 1px solid var(--edge2);
  border-radius: 5rem; padding: 0.7rem 1.4rem;
  font-family: var(--font-ui); font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.05rem; text-transform: uppercase; color: var(--muted2);
}
.feat-pill em { color: var(--gold); font-style: normal; }

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.reviews { background: var(--ink2); border-top: 1px solid var(--edge); }
.reviews-head { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 4rem; }
.stars-row { display: flex; gap: 0.4rem; margin-bottom: 1rem; }
.star { font-size: 2rem; color: var(--gold); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
@media(min-width: 600px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 1.6rem;
  padding: 2.4rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute; top: -1rem; right: 2rem;
  font-family: var(--font-display); font-size: 10rem;
  color: rgba(255,255,255,0.03); line-height: 1;
  pointer-events: none;
}
.review-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 1.4rem; margin-bottom: 1.4rem; letter-spacing: 0.15rem; }
.review-text { font-size: 1.4rem; color: var(--muted2); line-height: 1.7; margin-bottom: 2rem; }
.review-author { display: flex; align-items: center; gap: 1.2rem; }
.review-av {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--fire);
  font-family: var(--font-display); font-size: 1.8rem; color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-family: var(--font-ui); font-size: 1.5rem; font-weight: 700; }
.review-loc { font-size: 1.2rem; color: var(--muted); }

/* ══════════════════════════════
   BULK CTA BANNER
══════════════════════════════ */
.bulk-banner {
  position: relative; overflow: hidden;
  border-radius: 2rem;
  background: var(--ink2);
  border: 1px solid var(--edge2);
}
.bulk-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(255,59,47,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}
.bulk-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: 5rem 3rem;
}
@media(min-width: 768px) { .bulk-inner { grid-template-columns: 1fr 1fr; padding: 7rem 6rem; } }
.bulk-h {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: 0.9; text-transform: uppercase;
}
.bulk-h span { background: var(--fire); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bulk-desc { font-size: 1.5rem; color: var(--muted2); margin: 2rem 0 3rem; line-height: 1.7; max-width: 40rem; }
.bulk-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-content: start; }
.feat-box {
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 1.4rem;
  padding: 2rem;
  transition: border-color 0.25s, background 0.25s;
}
.feat-box:hover { border-color: var(--edge2); background: var(--glass2); }
.feat-box-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.feat-box-h { font-family: var(--font-ui); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.4rem; }
.feat-box-p { font-size: 1.2rem; color: var(--muted); }

/* ══════════════════════════════
   INSTAGRAM FEED
══════════════════════════════ */
.insta { background: var(--ink); border-top: 1px solid var(--edge); }
.insta-head { text-align: center; margin-bottom: 3.5rem; }
.insta-handle {
  font-family: var(--font-display);
  font-size: 3rem; letter-spacing: 0.1rem;
  color: var(--muted2); margin-bottom: 0.5rem;
}
.insta-handle span { color: #fff; }
.insta-sub { font-size: 1.4rem; color: var(--muted); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
@media(min-width: 600px) { .insta-grid { grid-template-columns: repeat(6, 1fr); } }
.insta-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  cursor: pointer;
}
.insta-item img { transition: transform 0.5s; filter: brightness(0.8) saturate(1.2); }
.insta-item:hover img { transform: scale(1.1); filter: brightness(1) saturate(1.4); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  font-size: 2.4rem;
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--ink2);
  border-top: 1px solid var(--edge);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: 6rem 0 4rem;
}
@media(min-width: 600px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(min-width: 1024px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr 1.15fr; } }
.footer-brand p { font-size: 1.4rem; color: var(--muted); line-height: 1.7; margin-top: 1.6rem; max-width: 28rem; }
.footer-socials { display: flex; gap: 1rem; margin-top: 2rem; }
.soc-btn {
  width: 3.8rem; height: 3.8rem;
  background: var(--glass); border: 1px solid var(--edge);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--muted2);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.soc-btn:hover { background: var(--fire); color: #fff; transform: translateY(-2px); border-color: transparent; }
.soc-btn svg { width: 1.8rem; height: 1.8rem; display: block; }
.footer-col h4 {
  font-family: var(--font-ui); font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.3rem; text-transform: uppercase;
  margin-bottom: 2rem; color: var(--muted2);
}
.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul li a { font-size: 1.4rem; color: var(--muted); transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.footer-col ul li a:hover { color: #fff; padding-left: 0.6rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.footer-contact-item .ci { font-size: 1.6rem; flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact-item p { font-size: 1.4rem; color: var(--muted); }
.footer-contact-item a { color: var(--muted2); font-weight: 500; transition: color 0.2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: center; justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid var(--edge);
}
.footer-copy { font-size: 1.3rem; color: var(--muted); }
.pay-badges { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 3.4rem;
  padding: 0.35rem 0.5rem;
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 0.6rem;
  overflow: hidden;
}
.pay-badge svg { display: block; width: 100%; height: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ══════════════════════════════
   SCROLL REVEAL UTILITY
══════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ══════════════════════════════
   FLOATING CTA (mobile) — removed
══════════════════════════════ */
.float-cta { display: none !important; }
