/* ==========================================================================
   TOPLINE CRICKET — NEXTGEN
   Design system + global styles
   ========================================================================== */

:root {
  /* Brand — Topline Red + Black */
  --red: #E11D2C;
  --red-2: #FF3344;
  --red-deep: #7A0B16;
  --red-mid: #A8121F;
  --red-glow: rgba(225,29,44,.35);
  /* Legacy aliases — keep so older rules still resolve */
  --lime: var(--red);
  --lime-2: var(--red-2);
  --yellow: var(--red-2);
  --green-deep: var(--red-deep);
  --green-mid: var(--red-mid);

  /* Surfaces */
  --ink: #0A0A0A;
  --ink-2: #141416;
  --ink-3: #1C1C1E;
  --ink-4: #2A2A2D;
  --paper: #F7F5F2;
  --paper-2: #ECEAE5;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.18);
  --line-dark: rgba(10,10,10,.10);

  /* Text */
  --t-on-dark: #F4F2EE;
  --t-on-dark-mute: #9A9A9D;
  --t-on-light: #0A0A0A;
  --t-on-light-mute: #5C5C60;

  /* Effects */
  --grad: linear-gradient(95deg, var(--red-deep) 0%, var(--red) 50%, var(--red-2) 100%);
  --grad-2: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 50%, var(--red-2) 100%);
  --grad-radial: radial-gradient(circle at 30% 20%, var(--red) 0%, var(--red-deep) 40%, transparent 70%);
  --shadow-lg: 0 30px 60px -25px rgba(0,0,0,.55), 0 18px 30px -20px rgba(0,0,0,.4);
  --shadow-md: 0 12px 30px -10px rgba(0,0,0,.35);
  --shadow-red: 0 18px 40px -15px var(--red-glow);

  /* Typography — sans-only system */
  --font-display: "Anton", "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-accent: "Inter", system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.83,0,.17,1);
  --d-slow: .9s;
  --d-med: .55s;
  --d-fast: .3s;

  /* Layout */
  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--t-on-dark);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--lime); color: var(--ink); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .002em;
  line-height: 1.02;
  text-transform: uppercase;
}
h1 { font-size: clamp(40px, 5.6vw, 88px); }
h2 { font-size: clamp(30px, 4vw, 62px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }
h4 { font-size: clamp(17px, 1.5vw, 20px); letter-spacing: .04em; }
p { font-size: clamp(15px, 1.02vw, 16.5px); }
.lede {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--t-on-dark-mute);
  max-width: 60ch;
}
/* Eyebrow + kicker labels — removed per design direction */
.eyebrow, .kicker { display: none !important; }

.accent { color: var(--lime); }
.accent-grad {
  background: linear-gradient(95deg, var(--lime) 0%, var(--lime-2) 50%, var(--yellow) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 8s ease-in-out infinite;
}
@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
/* Headline accent — sans-serif italic, sharp + modern */
.italic {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -.02em;
  font-size: .9em;
  display: inline-block;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(80px, 9vw, 140px) 0; position: relative; }
.section.compact { padding: clamp(60px, 6vw, 90px) 0; }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; margin-bottom: 70px; flex-wrap: wrap;
  position: relative;
}
.section-head .copy { max-width: 720px; }
.section-head .copy::before {
  content: ""; display: block; width: 56px; height: 2px;
  background: var(--grad); margin-bottom: 28px;
  transform-origin: left; transform: scaleX(0);
  transition: transform 1.2s var(--ease-out);
}
.section-head .copy.in::before, .reveal.in .copy::before { transform: scaleX(1); }
.section-head h2 { margin-top: 0; }
.section-head p { margin-top: 22px; color: var(--t-on-dark-mute); font-size: clamp(15px, 1.05vw, 17px); max-width: 56ch; }
.surface-light .section-head p { color: var(--t-on-light-mute); }
.surface-light .section-head .copy::before { background: var(--ink); }
.surface-light { background: var(--paper); color: var(--t-on-light); }
.surface-light .lede, .surface-light .section-head p { color: var(--t-on-light-mute); }
.surface-light .eyebrow.outline { color: var(--green-mid); border-color: var(--green-mid); }

/* ========== TOP MARQUEE ========== */
.topbar {
  background: var(--ink);
  color: var(--t-on-dark-mute);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.topbar-track {
  display: flex; gap: 60px;
  padding: 12px 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.topbar-track > span { display: inline-flex; align-items: center; gap: 10px; }
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.topbar strong { color: var(--t-on-dark); font-weight: 700; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(10,10,10,.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 14px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--t-on-dark);
}
.brand img.logo-img { height: 38px; width: auto; display: block; }
.brand small { font-family: var(--font-body); font-weight: 700; font-size: 10px; letter-spacing: .25em; color: var(--lime); display: block; }

.primary-nav { display: flex; gap: 2px; justify-content: center; flex-wrap: wrap; }
.primary-nav a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--t-on-dark-mute);
  border-radius: 999px;
  position: relative;
  transition: color .15s ease;
}
.primary-nav a:hover { color: var(--t-on-dark); }
.primary-nav a.active { color: var(--ink); background: var(--grad); }
.primary-nav a:not(.active)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: var(--lime); opacity: 0; transform: scaleX(.4); transform-origin: left;
  transition: all .25s ease;
}
.primary-nav a:not(.active):hover::after { opacity: 1; transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  color: var(--t-on-dark);
  position: relative;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.icon-btn > svg,
.icon-btn > [data-icon],
.icon-btn > [data-icon] > svg {
  display: block;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.icon-btn > [data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.icon-btn:hover {
  background: var(--red);
  color: var(--ink);
  border-color: var(--red);
  transform: translateY(-1px);
}
.icon-btn:focus-visible {
  outline: 2px solid var(--red-2);
  outline-offset: 2px;
}
.icon-btn .badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--lime); color: var(--ink);
  font-size: 11px; font-weight: 700;
  min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
}
.menu-toggle { display: none; }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: auto auto; }
  .primary-nav {
    position: fixed; inset: 64px 0 0 0; z-index: 70;
    background: var(--ink-2);
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 30px var(--pad);
    align-items: stretch;
    gap: 4px;
    transform: translateY(-110%); transition: transform .35s ease;
    height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a { font-size: 28px; padding: 16px 0; border-bottom: 1px solid var(--line); border-radius: 0; font-family: var(--font-display); letter-spacing: .03em; }
  .primary-nav a.active { background: transparent; color: var(--lime); }
  .primary-nav a:not(.active)::after { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--grad); color: var(--ink); box-shadow: 0 12px 30px -10px rgba(225,29,44,.45); }
.btn-primary:hover { box-shadow: 0 16px 40px -10px rgba(225,29,44,.65); }
.btn-ghost { border-color: var(--line-strong); color: var(--t-on-dark); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: var(--t-on-dark); color: var(--ink); border-color: var(--t-on-dark); }
.btn-ghost.on-light { color: var(--ink); border-color: rgba(10,10,10,.18); background: transparent; }
.btn-ghost.on-light:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-link {
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px; color: var(--lime);
}
.btn-link:hover { gap: 14px; }
.btn-sm { padding: 10px 16px; font-size: 12px; }

/* ========== HERO (HOME) ========== */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(90px, 11vw, 160px) 0 clamp(80px, 9vw, 130px);
  background: var(--ink);
}
.hero::before {
  content: ""; position: absolute; inset: -10% 40% 30% -10%; z-index: 0;
  background: radial-gradient(closest-side, rgba(225,29,44,.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; right: -8%; top: 0; bottom: 0; width: 50%; z-index: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,.025) 22px 23px),
    radial-gradient(closest-side at 70% 50%, rgba(225,29,44,.25), transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.hero-text { min-width: 0; }
.hero h1 {
  font-size: clamp(44px, 6vw, 96px);
  line-height: .94;
  margin: 22px 0 26px;
}
.hero h1 .gline { display: block; }
.hero h1 .accent-grad { display: inline-block; }
.hero .lede { color: var(--t-on-dark); max-width: 50ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

/* Hero visual — framed side image */
.hero-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg), 0 30px 80px -30px var(--red-glow);
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  isolation: isolate;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.8s var(--ease-out);
}
.hero-visual:hover img { transform: scale(1.05); }
.hero-visual::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,.8) 100%);
  pointer-events: none;
}
.hero-visual .frame-tag {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  background: var(--ink); color: var(--t-on-dark);
  padding: 12px 18px; border-radius: 999px;
  border: 1px solid var(--red);
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.hero-visual .frame-tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero-visual .corner {
  position: absolute; width: 24px; height: 24px; z-index: 2;
  border: 2px solid var(--red);
}
.hero-visual .corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.hero-visual .corner.tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.hero-visual .corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.hero-visual .corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-height: 500px; }
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat strong {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--lime);
}
.hero-stat span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--t-on-dark-mute); }
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* Hero floating ball */
.hero-ball {
  position: absolute; right: -2vw; top: 22%;
  width: clamp(140px, 22vw, 320px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 30px 80px -10px rgba(225,29,44,.5), inset -30px -40px 60px rgba(0,0,0,.4);
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}
.hero-ball::before {
  content: ""; position: absolute; inset: 12%;
  border: 2px dashed rgba(10,10,10,.4); border-radius: 50%;
}
.hero-ball::after {
  content: ""; position: absolute; left: 18%; right: 18%; top: 50%;
  height: 2px; background: rgba(10,10,10,.4); border-radius: 999px;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

/* ========== PAGE BANNER (sub pages) ========== */
.page-banner {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 7vw, 90px);
  background: var(--ink);
}
.page-banner::before {
  content: ""; position: absolute;
  left: -10%; top: -20%; width: 60%; height: 80%;
  z-index: 0;
  background: radial-gradient(closest-side, rgba(225,29,44,.25), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.page-banner::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
  z-index: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255,255,255,.02) 24px 25px);
  pointer-events: none;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.page-banner-text { min-width: 0; }
.page-banner-visual {
  position: relative; aspect-ratio: 4/3;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md), 0 24px 60px -25px var(--red-glow);
  background:
    radial-gradient(circle at 30% 20%, rgba(225,29,44,.10) 0%, transparent 60%),
    var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner-visual img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 14px;
  transition: transform 1.5s var(--ease-out);
}
.page-banner-visual.media-cover img {
  object-fit: cover;
  padding: 0;
}
.page-banner-visual:hover img { transform: scale(1.03); }
.page-banner-visual .corner {
  position: absolute; width: 22px; height: 22px; z-index: 2;
  border: 2px solid var(--red);
}
.page-banner-visual .corner.tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.page-banner-visual .corner.br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }
.page-banner-visual .frame-tag {
  position: absolute; right: 16px; top: 16px; z-index: 2;
  background: rgba(10,10,10,.85); color: var(--red-2);
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--red);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  backdrop-filter: blur(8px);
}
@media (max-width: 880px) {
  .page-banner-grid { grid-template-columns: 1fr; }
  .page-banner-visual { aspect-ratio: 16/10; }
}

.page-banner h1 { font-size: clamp(38px, 4.8vw, 76px); margin-top: 20px; max-width: 18ch; }
.page-banner .lede { margin-top: 22px; color: var(--t-on-dark); max-width: 56ch; }
.page-banner .page-banner-text > * { animation: fadeUp .9s var(--ease-out) backwards; }
.page-banner .page-banner-text > *:nth-child(1) { animation-delay: .05s; }
.page-banner .page-banner-text > *:nth-child(2) { animation-delay: .15s; }
.page-banner .page-banner-text > *:nth-child(3) { animation-delay: .25s; }
.page-banner .page-banner-text > *:nth-child(4) { animation-delay: .35s; }
.page-banner-visual { animation: fadeUp 1s var(--ease-out) backwards; animation-delay: .4s; }
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--t-on-dark-mute);
  margin-bottom: 8px;
}
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb .sep { opacity: .5; }
/* legacy banner-* classes are now no-ops — image moved into .page-banner-visual */

/* ========== CARD: STAT TILE / FEATURE ========== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.feature-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--ink-2), var(--ink));
  transition: transform .3s ease, border-color .3s ease;
  position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--lime); }
.feature-card .num {
  font-family: var(--font-display);
  font-size: 14px; color: var(--lime); letter-spacing: .14em;
}
.feature-card h4 { margin: 14px 0 10px; font-size: 22px; }
.feature-card p { color: var(--t-on-dark-mute); font-size: 15px; }
.feature-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(225,29,44,.12); color: var(--lime);
  margin-bottom: 18px;
}

/* ========== CARD: CATEGORY (large image card) ========== */
.cat-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--ink-2);
  isolation: isolate;
  min-height: 300px;
  transition: transform .35s ease;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease, filter .35s ease;
  filter: grayscale(15%);
  z-index: -2;
}
.cat-card:hover img { transform: scale(1.06); filter: grayscale(0); }
.cat-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,.1) 0%, rgba(10,10,10,.85) 100%);
}
.cat-card .cat-content { position: relative; z-index: 1; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 300px; }
.cat-card h3 { font-size: clamp(28px, 3vw, 44px); margin-bottom: 10px; }
.cat-card .arrow {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  transition: all .3s ease;
}
.cat-card:hover .arrow { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.cat-card.span-7 { grid-column: span 7; min-height: 460px; }
.cat-card.span-7 .cat-content { min-height: 460px; }
.cat-card.span-5 { grid-column: span 5; }
.cat-card.span-6 { grid-column: span 6; min-height: 380px; }
.cat-card.span-4 { grid-column: span 4; }
@media (max-width: 920px) {
  .cat-card.span-7, .cat-card.span-5, .cat-card.span-6, .cat-card.span-4 { grid-column: span 12; }
}

/* ========== PROGRAM ROW ========== */
.program-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.program-row.flip { grid-template-columns: 1fr 1.1fr; }
.program-row.flip .program-media { order: 2; }
.program-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at 30% 20%, rgba(225,29,44,.12) 0%, transparent 60%),
    var(--ink-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
/* Cover-mode opt-in for real photos (homepage Tours, Hitz editorial) */
.program-media.media-cover img,
.tours-media img,
.hitz-media img {
  object-fit: cover;
  padding: 0;
}
.surface-light .program-media {
  background:
    radial-gradient(circle at 30% 20%, rgba(225,29,44,.06) 0%, transparent 60%),
    var(--paper-2);
  border-color: var(--line-dark);
}
.program-media .badge-float {
  position: absolute; top: 22px; left: 22px;
  padding: 10px 16px; background: var(--grad); color: var(--ink);
  font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}
.program-copy h3 { font-size: clamp(28px, 3.6vw, 52px); margin: 14px 0 20px; }
.program-bullets { margin: 26px 0; }
.program-bullets li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
}
.program-bullets li:last-child { border-bottom: 1px solid var(--line); }
.program-bullets .lbl { color: var(--t-on-dark-mute); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; min-width: 120px; }
.program-bullets .val { font-weight: 600; }
.surface-light .program-bullets li { border-color: var(--line-dark); }
.surface-light .program-bullets .lbl { color: var(--t-on-light-mute); }
@media (max-width: 920px) {
  .program-row, .program-row.flip { grid-template-columns: 1fr; gap: 40px; }
  .program-row.flip .program-media { order: 0; }
  .program-media { aspect-ratio: 4/3; }
}

/* ========== COACHES ========== */
.coach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.coach-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  aspect-ratio: 3/4;
  border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease;
}
.coach-card:hover { transform: translateY(-6px); border-color: var(--lime); }
.coach-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%) brightness(.92); transition: filter .35s ease, transform .8s ease; }
.coach-card:hover img { filter: grayscale(0%) brightness(1); transform: scale(1.04); }
.coach-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,.95)); }
.coach-card .info { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; }
.coach-card h4 { font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px); }
.coach-card .role { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--lime); display: block; margin-top: 4px; }
.coach-card .badge {
  position: absolute; top: 14px; right: 14px; z-index: 1;
  padding: 6px 10px; border-radius: 999px; font-size: 10px;
  font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(10,10,10,.65); color: var(--lime);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}

/* ========== TESTIMONIALS ========== */
.testimonial-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 20px; }
.testimonial {
  padding: 30px; border-radius: var(--radius-lg);
  background: var(--ink-2); border: 1px solid var(--line);
}
.testimonial .quote-mark { font-family: var(--font-accent); font-style: italic; font-size: 80px; line-height: .5; color: var(--lime); display: block; height: 30px; }
.testimonial p { margin-top: 18px; font-size: 17px; line-height: 1.5; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.testimonial .who .av { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
.testimonial .who strong { font-size: 15px; }
.testimonial .who span { font-size: 12px; color: var(--t-on-dark-mute); display: block; }
.surface-light .testimonial { background: white; border-color: var(--line-dark); }
.surface-light .testimonial .who { border-color: var(--line-dark); }
.surface-light .testimonial .who span { color: var(--t-on-light-mute); }

/* ========== PARTNERS BAR ========== */
.partner-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 30px; align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner-bar .logo {
  font-family: var(--font-display); font-size: 22px;
  text-align: center; color: var(--t-on-dark-mute);
  letter-spacing: .08em;
  opacity: .8; transition: opacity .2s, color .2s;
}
.partner-bar .logo:hover { opacity: 1; color: var(--t-on-dark); }

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--grad);
  color: var(--ink);
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: "TOPLINE • NEXTGEN • TOPLINE • NEXTGEN • TOPLINE • NEXTGEN • TOPLINE • NEXTGEN •";
  position: absolute; left: -10%; right: -10%; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  white-space: nowrap;
  color: rgba(10,10,10,.05);
  pointer-events: none;
  letter-spacing: .04em;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 30px; position: relative; z-index: 1;
}
.cta-inner h2 { max-width: 16ch; }
.cta-inner .btn-ghost { border-color: var(--ink); color: var(--ink); }
.cta-inner .btn-ghost:hover { background: var(--ink); color: var(--lime); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--ink); color: var(--t-on-dark);
  padding: clamp(60px, 7vw, 100px) 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h5 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: var(--t-on-dark-mute); font-size: 14px; }
.footer-grid a:hover { color: var(--t-on-dark); }
.footer-brand .brand { font-size: 32px; align-items: center; }
.footer-brand p { color: var(--t-on-dark-mute); margin-top: 18px; max-width: 38ch; font-size: 14px; }
.footer-newsletter { margin-top: 24px; display: flex; gap: 8px; }
.footer-newsletter input {
  flex: 1; padding: 14px 16px; background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 999px; color: var(--t-on-dark);
}
.footer-newsletter input:focus { outline: none; border-color: var(--lime); }
.footer-newsletter button { padding: 14px 22px; background: var(--grad); color: var(--ink); border-radius: 999px; font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
}
.socials a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.footer-bottom {
  margin-top: 60px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: var(--t-on-dark-mute); letter-spacing: .06em;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ========== SHOP ========== */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; padding: 60px 0 90px; }
.filter-panel {
  background: var(--ink-2); border: 1px solid var(--line);
  padding: 24px; border-radius: var(--radius-lg);
  position: sticky; top: 100px; align-self: start;
  max-height: calc(100vh - 120px); overflow-y: auto;
}
.filter-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.filter-panel-head h3 { font-size: 18px; }
.filter-clear { color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.filter-group { padding: 14px 0; border-top: 1px solid var(--line); }
.filter-group:first-of-type { border-top: 0; }
.filter-group h4 { font-size: 12px; letter-spacing: .18em; color: var(--t-on-dark-mute); margin-bottom: 12px; font-family: var(--font-body); font-weight: 700; }
.filter-group label { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; font-size: 14px; color: var(--t-on-dark-mute); }
.filter-group label:hover { color: var(--t-on-dark); }
.filter-group input[type="checkbox"], .filter-group input[type="radio"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; border-radius: 5px;
  border: 1px solid var(--line-strong); cursor: pointer; position: relative;
  background: var(--ink-3);
}
.filter-group input[type="radio"] { border-radius: 50%; }
.filter-group input:checked { background: var(--lime); border-color: var(--lime); }
.filter-group input:checked::after {
  content: "✓"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 13px; font-weight: 700;
}
.filter-group input[type="search"], .filter-group input[type="number"] {
  width: 100%; padding: 12px 14px; background: var(--ink-3); border: 1px solid var(--line-strong);
  border-radius: 10px; color: var(--t-on-dark);
}
.filter-group input[type="search"]:focus { outline: none; border-color: var(--lime); }
.price-range { display: flex; gap: 8px; }
.price-range input { flex: 1; }

.shop-results { display: flex; flex-direction: column; gap: 24px; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.shop-toolbar .count { font-size: 14px; color: var(--t-on-dark-mute); }
.shop-toolbar select {
  padding: 10px 14px; background: var(--ink-2); border: 1px solid var(--line-strong);
  border-radius: 999px; color: var(--t-on-dark); font-size: 14px;
}

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 20px; }
.product-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--lime); }
.product-thumb {
  aspect-ratio: 4/5;
  position: relative;
  background: linear-gradient(160deg, var(--ink-3), var(--ink));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-thumb svg { width: 60%; opacity: .6; }
.product-thumb .brand-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-display); font-size: 14px; letter-spacing: .14em;
  padding: 6px 10px; border-radius: 6px;
  background: rgba(10,10,10,.7); color: var(--t-on-dark);
  border: 1px solid var(--line-strong);
}
.product-thumb .stock-tag {
  position: absolute; bottom: 12px; right: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(225,29,44,.18); color: var(--lime); border: 1px solid var(--lime);
}
.product-thumb .stock-tag.low { background: rgba(255,51,68,.15); color: var(--yellow); border-color: var(--yellow); }
.product-thumb .stock-tag.out { background: rgba(255,90,90,.15); color: #ff8a8a; border-color: #ff8a8a; }
.product-info { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-info .meta { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--t-on-dark-mute); }
.product-info h4 { font-family: var(--font-body); font-weight: 700; font-size: 15px; line-height: 1.3; text-transform: none; letter-spacing: 0; }
.product-info .price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 8px; justify-content: space-between; }
.product-info .price { font-family: var(--font-display); font-size: 24px; color: var(--lime); }
.product-info .price.poa { font-size: 14px; color: var(--t-on-dark-mute); letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }
.product-info .enquire {
  margin-top: 12px;
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--t-on-dark);
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-align: center; transition: all .2s ease;
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
}
.product-info .enquire:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }

.empty-state { padding: 60px 30px; text-align: center; border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); color: var(--t-on-dark-mute); }
@media (max-width: 880px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-panel { position: relative; top: 0; max-height: none; }
}

/* ========== BOOK A LANE — calendar ========== */
.book-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 30px; padding-top: 60px; padding-bottom: 90px; align-items: start; }
.calendar {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
}
.calendar-head {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  background: var(--ink-3);
}
.calendar-head h3 { font-size: 18px; }
.cal-nav { display: flex; gap: 6px; }
.cal-nav button { width: 36px; height: 36px; border: 1px solid var(--line-strong); border-radius: 999px; }
.cal-nav button:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }

.day-strip { display: grid; grid-template-columns: repeat(7, 1fr); border-bottom: 1px solid var(--line); }
.day-strip button {
  padding: 14px 6px; text-align: center;
  border-right: 1px solid var(--line); transition: all .2s ease;
}
.day-strip button:last-child { border-right: 0; }
.day-strip button:hover { background: var(--ink-3); }
.day-strip button.active { background: var(--grad); color: var(--ink); }
.day-strip .dow { display: block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; opacity: .65; }
.day-strip .dnum { display: block; font-family: var(--font-display); font-size: 22px; margin-top: 4px; }
.day-strip .dmo { display: block; font-size: 10px; opacity: .55; letter-spacing: .12em; text-transform: uppercase; }

.lane-table { padding: 20px; }
.lane-table .row {
  display: grid; grid-template-columns: 100px 1fr; gap: 14px;
  padding: 12px 0; border-top: 1px solid var(--line);
  align-items: center;
}
.lane-table .row:first-child { border-top: 0; }
.lane-table .lane-lbl { font-family: var(--font-display); font-size: 18px; }
.lane-table .lane-lbl .type { display: block; font-family: var(--font-body); font-size: 10px; color: var(--t-on-dark-mute); letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px,1fr)); gap: 6px; }
.slot {
  padding: 8px 6px; border-radius: 8px;
  background: rgba(225,29,44,.10); border: 1px solid rgba(225,29,44,.4);
  color: var(--lime);
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  cursor: pointer; transition: all .15s ease;
  text-align: center;
}
.slot:hover { background: var(--lime); color: var(--ink); }
.slot.taken { background: rgba(255,255,255,.04); border-color: var(--line); color: var(--t-on-dark-mute); cursor: not-allowed; text-decoration: line-through; }
.slot.taken:hover { background: rgba(255,255,255,.04); color: var(--t-on-dark-mute); }
.slot.selected { background: var(--grad); border-color: var(--lime); color: var(--ink); box-shadow: 0 6px 16px -6px rgba(225,29,44,.6); }

.book-summary {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 26px;
  position: sticky; top: 100px;
}
.book-summary h3 { font-size: 22px; margin-bottom: 16px; }
.book-summary .row {
  padding: 14px 0; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.book-summary .row:first-of-type { border-top: 0; }
.book-summary .row .lbl { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--t-on-dark-mute); }
.book-summary .row .val { font-weight: 600; }
.book-summary .total { font-family: var(--font-display); font-size: 36px; color: var(--lime); }
.book-summary .form { margin-top: 18px; display: grid; gap: 10px; }
.book-summary input, .book-summary select, .book-summary textarea {
  padding: 12px 14px; background: var(--ink-3); border: 1px solid var(--line-strong);
  border-radius: 10px; color: var(--t-on-dark); font-size: 14px; width: 100%;
}
.book-summary input:focus, .book-summary select:focus, .book-summary textarea:focus { outline: none; border-color: var(--lime); }
.book-summary textarea { min-height: 80px; resize: vertical; }
.book-summary .legend { font-size: 12px; color: var(--t-on-dark-mute); display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.book-summary .legend i { width: 12px; height: 12px; border-radius: 4px; display: inline-block; vertical-align: -2px; margin-right: 6px; }
.legend i.av { background: rgba(225,29,44,.4); border: 1px solid var(--lime); }
.legend i.tk { background: rgba(255,255,255,.06); border: 1px solid var(--line-strong); }
.legend i.sl { background: var(--lime); }
@media (max-width: 920px) {
  .book-grid { grid-template-columns: 1fr; }
  .book-summary { position: relative; top: 0; }
}

/* ========== TOUR / EVENT CARD ========== */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 20px; }
.tour-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.tour-card:hover { transform: translateY(-4px); border-color: var(--lime); }
.tour-card .img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(225,29,44,.10) 0%, transparent 60%),
    var(--ink-3);
  display: flex; align-items: center; justify-content: center;
}
.tour-card .img img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 10px;
  transition: transform .8s ease;
}
.tour-card.media-cover .img img {
  object-fit: cover;
  padding: 0;
}
.tour-card:hover .img img { transform: scale(1.04); }
.tour-card .img .badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--grad); color: var(--ink);
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.tour-card .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tour-card .meta { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--t-on-dark-mute); }
.tour-card h4 { font-family: var(--font-display); font-size: 24px; }
.tour-card p { font-size: 14px; color: var(--t-on-dark-mute); flex: 1; }
.tour-card .footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); margin-top: 14px; }

/* ========== PRICING TABLES (membership) ========== */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; }
.tier-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, border-color .3s ease;
}
.tier-card:hover { transform: translateY(-4px); border-color: var(--lime); }
.tier-card.featured { background: var(--grad); color: var(--ink); border-color: var(--lime); }
.tier-card.featured .price-amt { color: var(--ink); }
.tier-card.featured .feat-list li::before { color: var(--ink); }
.tier-card.featured .btn-primary { background: var(--ink); color: var(--lime); }
.tier-card .label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.tier-card h3 { font-size: 32px; }
.tier-card .price-amt { font-family: var(--font-display); font-size: 56px; color: var(--lime); }
.tier-card .price-amt small { font-family: var(--font-body); font-size: 14px; opacity: .65; }
.feat-list { display: flex; flex-direction: column; gap: 12px; margin: 14px 0 22px; }
.feat-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.feat-list li::before {
  content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--lime); color: var(--ink); margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8l3 3 7-7' stroke='%230B0E08' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* ========== GALLERY ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  grid-auto-flow: dense;
}
.gallery .tile { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; }
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery .tile:hover img { transform: scale(1.06); }
.gallery .w2 { grid-column: span 2; }
.gallery .h2 { grid-row: span 2; aspect-ratio: 1/2; }
.gallery .w2.h2 { aspect-ratio: 1; }
@media (max-width: 700px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .w2, .gallery .h2 { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
}

/* ========== FORMS ========== */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--t-on-dark-mute); }
.field input, .field select, .field textarea {
  padding: 14px 16px; background: var(--ink-2); border: 1px solid var(--line-strong);
  border-radius: 12px; color: var(--t-on-dark); font-size: 15px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--lime); }
.field textarea { min-height: 120px; resize: vertical; }
.surface-light .field input, .surface-light .field select, .surface-light .field textarea {
  background: white; color: var(--ink); border-color: var(--line-dark);
}
.surface-light .field label { color: var(--t-on-light-mute); }

/* ========== UTILITIES ========== */
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.row-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 880px) { .row-2 { grid-template-columns: 1fr; gap: 30px; } .row-3 { grid-template-columns: 1fr; } }
.divider { height: 1px; background: var(--line); margin: 60px 0; }
.surface-light .divider { background: var(--line-dark); }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; background: rgba(225,29,44,.14); color: var(--lime); border: 1px solid rgba(225,29,44,.4); }
.tag.warn { background: rgba(255,51,68,.12); color: var(--yellow); border-color: rgba(255,51,68,.4); }
.kicker { display: block; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--lime); margin-bottom: 14px; font-weight: 700; }
.surface-light .kicker { color: var(--green-mid); }

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== ICONS (inline SVG via mask) ========== */
.icn { display: inline-block; width: 18px; height: 18px; vertical-align: -3px; }
[data-icon] { display: inline-block; }

/* Selection drawer (cart/enquiry) */
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--ink-2); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .35s ease;
  z-index: 100; display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 22px; border-bottom: 1px solid var(--line); }
.drawer-header h3 { font-size: 22px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 22px; }
.drawer-footer { padding: 22px; border-top: 1px solid var(--line); }
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 99; }
.drawer-overlay.show { opacity: 1; pointer-events: auto; }

.enquiry-list { display: flex; flex-direction: column; gap: 12px; }
.enquiry-item { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 12px; background: var(--ink-3); border: 1px solid var(--line); border-radius: 12px; }
.enquiry-item h5 { font-size: 14px; font-family: var(--font-body); font-weight: 600; text-transform: none; letter-spacing: 0; }
.enquiry-item .meta { font-size: 11px; color: var(--t-on-dark-mute); }
.enquiry-item button { color: var(--t-on-dark-mute); }
.enquiry-item button:hover { color: #ff8a8a; }

/* Toast */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--grad); color: var(--ink);
  padding: 14px 22px; border-radius: 999px; font-weight: 700; font-size: 14px; letter-spacing: .04em;
  opacity: 0; transition: opacity .25s, transform .25s;
  z-index: 200; box-shadow: var(--shadow-md);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Print */
@media print {
  .topbar, .site-header, .site-footer, .cta-band, .hero-ball { display: none !important; }
  body { background: white; color: black; }
}

/* ==========================================================================
   MOTION LAYER
   ========================================================================== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad); transform-origin: left;
  transform: scaleX(0); z-index: 200;
  transition: transform .1s linear;
  pointer-events: none;
}

/* Hero — split-text reveal */
.hero h1 .gline {
  display: block; overflow: hidden;
  padding: 0 0 .04em;
}
.hero h1 .gline > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineUp 1s var(--ease-out) forwards;
}
.hero h1 .gline:nth-child(1) > span { animation-delay: .1s; }
.hero h1 .gline:nth-child(2) > span { animation-delay: .25s; }
.hero h1 .gline:nth-child(3) > span { animation-delay: .4s; }
@keyframes lineUp {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.hero .lede,
.hero .hero-cta,
.hero .hero-stats {
  opacity: 0; animation: fadeUp .9s var(--ease-out) forwards;
}
.hero .lede { animation-delay: .55s; }
.hero .hero-cta { animation-delay: .68s; }
.hero .hero-stats { animation-delay: .8s; }

/* Hero stat counter */
.hero-stat strong { display: inline-flex; }

/* Magnetic / hover buttons — refined timing */
.btn { transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s ease, color .25s ease, border-color .25s ease; }
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, transparent, rgba(255,255,255,.5), transparent);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out);
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); }

/* Card hover lift refinement */
.feature-card, .coach-card, .product-card, .tour-card, .tier-card, .cat-card {
  transition: transform .55s var(--ease-out), border-color .35s ease, box-shadow .55s var(--ease-out);
}
.feature-card:hover, .tier-card:hover { box-shadow: 0 26px 50px -25px rgba(225,29,44,.28); }

/* Image clip-path reveals on scroll */
.program-media, .tour-card .img, .cat-card {
  position: relative;
}
.program-media img, .tour-card .img img, .cat-card img {
  transition: transform 1.2s var(--ease-out), filter .55s ease, clip-path 1.2s var(--ease-out);
}
.reveal .program-media img,
.reveal.program-media img,
.reveal .tour-card img {
  clip-path: inset(0 100% 0 0);
}
.reveal.in .program-media img,
.reveal.in.program-media img,
.reveal.in .tour-card img {
  clip-path: inset(0 0 0 0);
}

/* Reveal upgrade — subtle stagger using variable delay */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Section underline accent — reveal on enter */
.feature-grid > .feature-card,
.coach-grid > .coach-card,
.tour-grid > .tour-card,
.tier-grid > .tier-card {
  opacity: 1; transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), border-color .35s ease, box-shadow .55s var(--ease-out);
}
.in-grid > * { opacity: 1; transform: translateY(0); }
.in-grid > *:nth-child(1) { transition-delay: 0s; }
.in-grid > *:nth-child(2) { transition-delay: .08s; }
.in-grid > *:nth-child(3) { transition-delay: .16s; }
.in-grid > *:nth-child(4) { transition-delay: .24s; }
.in-grid > *:nth-child(5) { transition-delay: .32s; }
.in-grid > *:nth-child(6) { transition-delay: .4s; }
.in-grid > *:nth-child(7) { transition-delay: .48s; }
.in-grid > *:nth-child(8) { transition-delay: .56s; }

/* Hero ball — orbit decoration ring */
.hero-ball {
  filter: drop-shadow(0 30px 80px rgba(225,29,44,.4));
}
.hero-ball::after {
  animation: spin 12s linear infinite;
  transform-origin: center;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Stat counters — pop on enter */
.hero-stat strong {
  background: linear-gradient(180deg, var(--lime), var(--lime-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Big editorial number stat strip (new component) */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
  position: relative;
}
.stat-strip > .cell {
  padding: clamp(40px, 5vw, 70px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
}
.stat-strip > .cell::before {
  content: ""; position: absolute; inset: 0; background: var(--grad);
  opacity: 0; transition: opacity .35s ease;
  z-index: 0;
}
.stat-strip > .cell:hover::before { opacity: .08; }
.stat-strip > .cell:last-child { border-right: 0; }
.stat-strip > .cell .num {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 110px);
  line-height: .9;
  background: linear-gradient(180deg, var(--lime), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative; z-index: 1;
}
.stat-strip > .cell .lbl {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--t-on-dark-mute);
  margin-top: 14px;
  position: relative; z-index: 1;
}
.surface-light .stat-strip { border-color: var(--line-dark); }
.surface-light .stat-strip > .cell { border-right-color: var(--line-dark); }
.surface-light .stat-strip > .cell .lbl { color: var(--t-on-light-mute); }
.surface-light .stat-strip > .cell .num {
  background: linear-gradient(180deg, var(--green-mid), var(--ink));
  -webkit-background-clip: text;
  background-clip: text;
}
@media (max-width: 880px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip > .cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-strip > .cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .surface-light .stat-strip > .cell { border-bottom-color: var(--line-dark); }
  .surface-light .stat-strip > .cell:nth-child(odd) { border-right-color: var(--line-dark); }
}

/* Big-text marquee divider band */
.marquee-band {
  position: relative; overflow: hidden;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.marquee-band .marquee-track {
  display: flex; gap: 60px; align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(240,244,232,.06);
}
.marquee-band .marquee-track .word { display: inline-flex; align-items: center; gap: 20px; }
.marquee-band .marquee-track .word.alt { color: var(--lime); }
.marquee-band .marquee-track .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}
.surface-light .marquee-band { background: var(--paper-2); border-color: var(--line-dark); }
.surface-light .marquee-band .marquee-track { color: rgba(10,10,10,.06); }
.surface-light .marquee-band .marquee-track .word.alt { color: var(--green-mid); }

/* Pill badge (replacement for eyebrow) — for subtle hero context */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--t-on-dark);
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.pill::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}
.surface-light .pill { background: white; border-color: var(--line-dark); color: var(--ink); }

/* Custom cursor dot (desktop only) */
@media (pointer: fine) {
  .cursor-dot {
    position: fixed; top: 0; left: 0;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--lime); pointer-events: none;
    z-index: 1000; mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease-out), height .25s var(--ease-out);
  }
  .cursor-dot.hover { width: 36px; height: 36px; opacity: .35; }
}

/* Hover detail on links — animated underline */
.btn-link {
  position: relative; padding-bottom: 4px;
}
.btn-link::after {
  content: ""; position: absolute; left: 0; right: 24px; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(.4); transform-origin: left;
  transition: transform .35s var(--ease-out), right .35s var(--ease-out);
}
.btn-link:hover::after { transform: scaleX(1); right: 0; }

/* Hero stats counter color */
.hero-stat strong { transition: transform .35s var(--ease-out); }

/* Refine icon-btn animation */
.icon-btn { transition: all .25s var(--ease-out); }
.icon-btn:hover { transform: rotate(-4deg) scale(1.05); }

/* Cat-card refine */
.cat-card { transition: transform .55s var(--ease-out); }
.cat-card .arrow { transition: all .35s var(--ease-out), transform .35s var(--ease-out); }
.cat-card:hover .arrow { transform: rotate(-45deg); }

/* Coach card hover — subtle gradient ring */
.coach-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color .35s ease;
  pointer-events: none;
}
.coach-card:hover::before { border-color: var(--lime); }

/* Product enquire button micro */
.product-info .enquire { transition: all .25s var(--ease-out); }
.product-card:hover .enquire { background: rgba(225,29,44,.1); border-color: rgba(225,29,44,.6); color: var(--lime); }

/* ==========================================================================
   FONT CONSISTENCY — enforce design system across all elements
   ========================================================================== */
body, input, select, textarea, button {
  font-family: var(--font-body);
}
h1, h2, h3, h4, h5, h6,
.brand,
.partner-bar .logo,
.gline,
.hero-stat strong,
.stat-strip .num,
.stat-strip .cell .num {
  font-family: var(--font-display);
}
.italic {
  font-family: var(--font-body);
}

/* ==========================================================================
   TOPLINE TROPHIES — homepage section
   ========================================================================== */
.trophies-section {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.trophies-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(225,29,44,.12) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.trophies-section .container { position: relative; z-index: 1; }

.trophies-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Trophies hero card */
.trophies-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  min-height: 580px;
  isolation: isolate;
  transition: transform .4s var(--ease-out), border-color .4s ease;
}
.trophies-hero:hover {
  transform: translateY(-4px);
  border-color: rgba(225,29,44,.4);
}
.trophies-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  transition: transform 1s var(--ease-out);
}
.trophies-hero:hover img { transform: scale(1.04); }
.trophies-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,.1) 0%,
    rgba(10,10,10,.55) 45%,
    rgba(10,10,10,.92) 100%);
  z-index: 1;
}
.trophies-hero .th-overlay {
  position: relative;
  z-index: 2;
  padding: 36px 40px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}
.th-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(225,29,44,.18);
  color: var(--red-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(225,29,44,.45);
  margin-bottom: 18px;
}
.trophies-hero h3 {
  font-size: clamp(22px, 2.6vw, 34px);
  margin: 0 0 16px;
  color: var(--t-on-dark);
}
.trophies-hero p {
  color: var(--t-on-dark-mute);
  font-size: clamp(14px, 1vw, 16px);
  max-width: 48ch;
  margin-bottom: 28px;
}
.th-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.th-stats > div { display: flex; flex-direction: column; gap: 4px; }
.th-stats strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--t-on-dark);
  line-height: 1;
}
.th-stats span {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t-on-dark-mute);
}

/* Trophies grid (right side) */
.trophies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.trophy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 24px 24px;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--t-on-dark);
  min-height: 260px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease-out), border-color .35s ease, background .35s ease;
}
.trophy-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(225,29,44,.6), rgba(225,29,44,0) 50%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}
.trophy-card::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  bottom: -120px; right: -120px;
  background: radial-gradient(circle, rgba(225,29,44,.18), transparent 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
  transition: opacity .4s ease;
}
.trophy-card:hover {
  transform: translateY(-4px);
  background: var(--ink-3);
}
.trophy-card:hover::before,
.trophy-card:hover::after { opacity: 1; }
.trophy-card .tc-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(225,29,44,.12);
  color: var(--red-2);
  border: 1px solid rgba(225,29,44,.3);
  margin-bottom: 18px;
  transition: background .35s ease, color .35s ease, transform .35s ease;
  position: relative; z-index: 1;
}
.trophy-card:hover .tc-icon {
  background: var(--red);
  color: var(--ink);
  transform: rotate(-6deg) scale(1.06);
}
.trophy-card .tc-icon svg { width: 22px; height: 22px; }
.trophy-card h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: .03em;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.trophy-card p {
  color: var(--t-on-dark-mute);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.trophy-card .tc-arrow {
  align-self: flex-start;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--t-on-dark);
  transition: background .3s ease, transform .3s ease, color .3s ease, border-color .3s ease;
  position: relative; z-index: 1;
}
.trophy-card:hover .tc-arrow {
  background: var(--red);
  border-color: var(--red);
  color: var(--ink);
  transform: translateX(4px);
}

/* Sports strip below trophies */
.trophies-strip {
  margin-top: 36px;
  padding: 24px 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(225,29,44,.06), rgba(255,255,255,.02));
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-display);
  letter-spacing: .04em;
  font-size: clamp(14px, 1.05vw, 18px);
}
.trophies-strip .ts-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--red);
  color: var(--ink);
  margin-right: 8px;
}
.trophies-strip .ts-word { color: var(--t-on-dark); opacity: .85; }
.trophies-strip .ts-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red-2);
  display: inline-block;
}

@media (max-width: 980px) {
  .trophies-layout { grid-template-columns: 1fr; }
  .trophies-hero { min-height: 480px; }
  .trophies-hero .th-overlay { padding: 28px; }
  .th-stats { gap: 16px; }
}
@media (max-width: 600px) {
  .trophies-grid { grid-template-columns: 1fr; }
  .trophies-hero { min-height: 420px; }
  .trophies-hero .th-overlay { padding: 24px 22px; }
  .th-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .th-stats strong { font-size: 24px; }
  .trophies-strip {
    padding: 18px 22px;
    font-size: 14px;
    border-radius: var(--radius-lg);
  }
  .trophy-card { min-height: 220px; padding: 22px 20px; }
}

/* ==========================================================================
   GALLERY PRO — redesigned editorial action gallery
   ========================================================================== */
.gallery-pro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.g-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  isolation: isolate;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), border-color .4s ease;
}
.g-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out), filter .4s ease;
  filter: saturate(.92);
}
.g-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(225,29,44,.45);
}
.g-tile:hover img {
  transform: scale(1.07);
  filter: saturate(1.05);
}
.g-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,10,10,.65) 70%, rgba(10,10,10,.95) 100%);
  opacity: 1;
  transition: opacity .3s ease;
  pointer-events: none;
}
.g-tile:hover::after { opacity: 1; }

.g-tile figcaption {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(4px);
  opacity: 1;
  transition: transform .35s var(--ease-out);
}
.g-tile:hover figcaption {
  transform: translateY(-2px);
}
.g-tile .g-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-2);
}
.g-tile .g-cap {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--t-on-dark);
  line-height: 1.3;
}

/* Featured tile spans 2 cols × 2 rows */
.g-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

@media (max-width: 980px) {
  .gallery-pro {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }
  .g-feature { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 640px) {
  .gallery-pro {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 8px;
  }
  .g-feature, .g-wide { grid-column: span 2; grid-row: span 1; }
  .g-tall { grid-row: span 2; }
  .g-tile figcaption { left: 12px; right: 12px; bottom: 10px; }
  .g-tile .g-cap { font-size: 12px; }
}

/* ==========================================================================
   TOURS EDITORIAL — refined timeline & media
   ========================================================================== */
.tours-editorial .program-media.tours-media {
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.tours-editorial .tours-media img {
  filter: saturate(.95) contrast(1.02);
  transition: transform 1s var(--ease-out);
}
.tours-editorial .tours-media:hover img { transform: scale(1.05); }
.tours-media-overlay {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 16px;
  background: rgba(10,10,10,.62);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: var(--radius);
}
.tours-media-overlay::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.5));
  pointer-events: none;
  z-index: -1;
}
.tom-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding-right: 12px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.tom-stat:last-child { border-right: 0; }
.tom-stat strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--t-on-dark);
  line-height: 1;
}
.tom-stat span {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--t-on-dark-mute);
}
.tours-editorial .badge-float {
  background: var(--ink);
  color: var(--red-2);
  border: 1px solid rgba(225,29,44,.5);
  box-shadow: 0 8px 24px -10px rgba(225,29,44,.5);
}

/* Tour timeline list */
.tour-timeline {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tt-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--ink-2);
  border: 1px solid var(--line);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.tt-item:hover {
  border-color: rgba(225,29,44,.4);
  background: var(--ink-3);
  transform: translateX(2px);
}
.tt-year {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: .04em;
  color: var(--t-on-dark);
  line-height: 1;
}
.tt-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.tt-body h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--t-on-dark);
  line-height: 1.35;
}
.tt-meta {
  font-size: 12px;
  color: var(--t-on-dark-mute);
  letter-spacing: .04em;
}
.tt-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tt-pill svg { width: 14px; height: 14px; }
.tt-pill-done {
  background: rgba(34,197,94,.12);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,.3);
}
.tt-pill-open {
  background: var(--grad);
  color: var(--ink);
  border: 1px solid transparent;
}
.tt-pill-soon {
  background: rgba(255,255,255,.06);
  color: var(--t-on-dark-mute);
  border: 1px solid var(--line-strong);
}

@media (max-width: 540px) {
  .tt-item {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    padding: 14px;
  }
  .tt-pill {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
  }
  .tours-media-overlay { left: 14px; right: 14px; bottom: 14px; padding: 14px 12px; gap: 8px; }
  .tom-stat { padding-right: 8px; }
}

/* ==========================================================================
   HITZ EDITORIAL — homepage Master Class redesign
   ========================================================================== */
.hitz-editorial { position: relative; }
.hitz-editorial .program-row { gap: clamp(40px, 6vw, 80px); }
.hitz-media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--ink-2);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.18);
}
.hitz-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.02);
  transition: transform 1.2s var(--ease-out);
}
.hitz-media:hover img { transform: scale(1.04); }
.hitz-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,.55) 100%);
  pointer-events: none;
}
.hitz-badge {
  background: var(--ink) !important;
  color: var(--red-2) !important;
  border: 1px solid rgba(225,29,44,.5);
  box-shadow: 0 8px 24px -10px rgba(225,29,44,.5);
}

.hitz-overlay {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
}
.hitz-coach-strip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  background: rgba(10,10,10,.7);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 999px;
}
.hitz-coach-strip img {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink-2);
  margin-right: -14px;
  filter: saturate(1);
}
.hitz-coach-strip img:last-of-type { margin-right: 8px; }
.hitz-coach-strip span {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--t-on-dark);
  white-space: nowrap;
}

.hitz-copy h3 { font-size: clamp(28px, 3.4vw, 48px); }

.hitz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0 28px;
}
.hitz-card {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(10,10,10,.04);
  border: 1px solid rgba(10,10,10,.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .25s var(--ease-out), border-color .25s ease, background .25s ease;
}
.hitz-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225,29,44,.4);
  background: white;
}
.hitz-card .hg-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t-on-light-mute);
}
.hitz-card .hg-value {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1.05;
  margin-top: 4px;
}
.hitz-card .hg-meta {
  font-size: 13px;
  color: var(--t-on-light-mute);
  margin-top: 2px;
}
.hitz-card-accent {
  background: var(--ink);
  color: var(--t-on-dark);
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hitz-card-accent::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(225,29,44,.5), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}
.hitz-card-accent .hg-label { color: var(--red-2); }
.hitz-card-accent .hg-value { color: var(--t-on-dark); }
.hitz-card-accent .hg-meta { color: var(--t-on-dark-mute); }
.hitz-card-accent:hover {
  background: var(--ink);
  border-color: var(--red);
}

.hitz-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hitz-secondary {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--t-on-light-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s ease, gap .2s ease;
}
.hitz-secondary:hover {
  color: var(--ink);
  gap: 14px;
}

@media (max-width: 700px) {
  .hitz-grid { grid-template-columns: 1fr; }
  .hitz-coach-strip { padding: 8px 14px 8px 8px; }
  .hitz-coach-strip img { width: 28px; height: 28px; }
  .hitz-coach-strip span { font-size: 10px; letter-spacing: .12em; }
}

/* ==========================================================================
   TROPHIES PAGE
   ========================================================================== */

/* Page banner refinements for trophies */
.trophies-banner .banner-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.trophies-banner .btn-ghost {
  font-size: 12px;
  letter-spacing: .06em;
}

/* Intro section */
.trophies-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.trophies-intro h2 {
  margin: 18px 0 22px;
  font-size: clamp(28px, 3.6vw, 50px);
}
.check-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--t-on-dark);
}
.check-list li svg {
  color: var(--red-2);
  flex-shrink: 0;
}
.trophies-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ti-card {
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  border: 1px solid var(--line);
  text-align: left;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease-out), border-color .35s ease;
}
.ti-card:nth-child(1)::before,
.ti-card:nth-child(4)::before {
  content: "";
  position: absolute;
  width: 180px; height: 180px;
  top: -90px; right: -90px;
  background: radial-gradient(circle, rgba(225,29,44,.18), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}
.ti-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225,29,44,.4);
}
.ti-card strong {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  color: var(--t-on-dark);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.ti-card span {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t-on-dark-mute);
}

@media (max-width: 880px) {
  .trophies-intro-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .trophies-intro-stats { grid-template-columns: 1fr; }
}

/* What we make grid */
.make-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.make-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease-out), border-color .35s ease, box-shadow .35s ease;
  scroll-margin-top: 100px;
}
.make-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225,29,44,.04), transparent 50%);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: -1;
}
.make-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225,29,44,.4);
  box-shadow: 0 30px 60px -30px rgba(225,29,44,.3);
}
.make-card:hover::before { opacity: 1; }
.make-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--red-2);
  margin-bottom: 22px;
  transition: background .35s ease, transform .35s ease;
}
.make-icon svg { width: 26px; height: 26px; }
.make-card:hover .make-icon {
  background: var(--red);
  color: var(--ink);
  transform: rotate(-6deg) scale(1.05);
}
.make-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 12px;
  color: var(--ink);
}
.make-card > p {
  color: var(--t-on-light-mute);
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
}
.make-card ul {
  border-top: 1px solid var(--line-dark);
  padding-top: 16px;
}
.make-card ul li {
  font-size: 13px;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  padding-left: 18px;
}
.make-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 1px;
  background: var(--red);
  transform: translateY(-50%);
}
@media (max-width: 980px) { .make-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .make-grid { grid-template-columns: 1fr; } }

/* Sports grid */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sport-card {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  border: 1px solid var(--line);
  color: var(--t-on-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s var(--ease-out), border-color .3s ease, background .3s ease;
}
.sport-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--red), transparent);
  border-radius: inherit;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
  padding: 1px;
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.sport-card:hover {
  transform: translateY(-4px);
  background: var(--ink-3);
}
.sport-card:hover::after { opacity: 1; }
.sport-card .sc-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--red-2);
}
.sport-card strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: .03em;
  color: var(--t-on-dark);
  line-height: 1.05;
  margin-top: 16px;
}
.sport-card .sc-meta {
  font-size: 12px;
  color: var(--t-on-dark-mute);
  margin-top: 4px;
  letter-spacing: .04em;
}
.sport-card-more {
  background: var(--grad);
  border-color: transparent;
  color: var(--ink);
}
.sport-card-more .sc-num,
.sport-card-more strong { color: var(--ink); }
.sport-card-more .sc-meta { color: rgba(10,10,10,.7); }
.sport-card-more:hover { background: var(--grad-2); }

@media (max-width: 980px) { .sports-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .sports-grid { grid-template-columns: repeat(2, 1fr); } }

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-step {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line-dark);
  position: relative;
  transition: transform .3s var(--ease-out), border-color .3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(225,29,44,.4);
}
.process-step .ps-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.process-step h4 {
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 12px;
  color: var(--ink);
}
.process-step p {
  color: var(--t-on-light-mute);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.process-step .btn-link {
  font-size: 11px;
}

@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

/* Featured grid */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.featured-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  isolation: isolate;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), border-color .4s ease;
}
.featured-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9);
  transition: transform .9s var(--ease-out), filter .35s ease;
}
.featured-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(225,29,44,.4);
}
.featured-tile:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.featured-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,10,10,.92) 100%);
}
.featured-tile figcaption {
  position: absolute;
  left: 18px; right: 18px; bottom: 16px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.featured-tile .ft-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-2);
  margin-bottom: 4px;
}
.featured-tile strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: .02em;
  color: var(--t-on-dark);
  line-height: 1.1;
}
.featured-tile .ft-meta {
  font-size: 12px;
  color: var(--t-on-dark-mute);
  letter-spacing: .04em;
}
.featured-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.featured-tall {
  grid-row: span 2;
}
@media (max-width: 980px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 640px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .featured-feature, .featured-tall { grid-column: span 2; grid-row: span 1; }
}

/* Quote section */
.trophies-quote-section {
  scroll-margin-top: 80px;
  position: relative;
  background: var(--ink);
}
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}
.quote-copy h2 {
  margin: 18px 0 24px;
  font-size: clamp(28px, 3.6vw, 50px);
}
.quote-contact {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.qc-row {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--ink-2);
  border: 1px solid var(--line);
  transition: border-color .25s ease, background .25s ease;
}
.qc-row:hover {
  border-color: rgba(225,29,44,.4);
  background: var(--ink-3);
}
.qc-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(225,29,44,.12);
  color: var(--red-2);
  border: 1px solid rgba(225,29,44,.3);
  flex-shrink: 0;
}
.qc-icon svg { width: 18px; height: 18px; }
.qc-row > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.qc-lbl {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t-on-dark-mute);
  font-weight: 700;
}
.qc-row strong {
  font-size: 15px;
  color: var(--t-on-dark);
  font-weight: 600;
}
.qc-row a strong { transition: color .2s ease; }
.qc-row a:hover strong { color: var(--red-2); }
.qc-meta {
  font-size: 12px;
  color: var(--t-on-dark-mute);
  margin-top: 2px;
}

.quote-form {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--ink-2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote-form .row-2 { gap: 18px; }
.quote-form button[type="submit"] { margin-top: 8px; align-self: flex-start; }

@media (max-width: 980px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 28px; }
}
@media (max-width: 540px) {
  .quote-form .row-2 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SEARCH OVERLAY
   ========================================================================== */
.search-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 10vh, 120px) 20px 20px;
}
.search-overlay.open { display: flex; animation: searchFade .2s var(--ease-out); }
@keyframes searchFade { from { opacity: 0; } to { opacity: 1; } }

.search-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,5,7,.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.search-modal {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.7);
  overflow: hidden;
  animation: searchPop .25s var(--ease-out);
}
@keyframes searchPop {
  from { opacity: 0; transform: translateY(-12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.search-bar .search-icn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--t-on-dark-mute);
  width: 22px; height: 22px;
}
.search-bar .search-icn svg { width: 22px; height: 22px; display: block; }
.search-bar input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 8px 0;
  font-size: 18px;
  color: var(--t-on-dark);
  outline: none;
  font-family: var(--font-body);
}
.search-bar input::placeholder { color: var(--t-on-dark-mute); }
.search-close {
  width: 36px !important;
  height: 36px !important;
  flex-shrink: 0;
}

.search-results {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.search-results::-webkit-scrollbar { width: 6px; }
.search-results::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 3px; }

.search-section { padding: 8px; }
.search-section + .search-section { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 12px; }
.search-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t-on-dark-mute);
  padding: 6px 10px;
  margin-bottom: 4px;
}
.search-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--t-on-dark);
  transition: background .15s ease;
  cursor: pointer;
}
.search-result:hover,
.search-result.active {
  background: rgba(225,29,44,.12);
}
.search-result .sr-icn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ink-3);
  color: var(--red-2);
  flex-shrink: 0;
}
.search-result .sr-icn svg { width: 16px; height: 16px; display: block; }
.search-result.active .sr-icn { background: var(--red); color: var(--ink); }
.search-result .sr-body {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.search-result .sr-body strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--t-on-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result .sr-body span {
  font-size: 12px;
  color: var(--t-on-dark-mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result .sr-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t-on-dark-mute);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  flex-shrink: 0;
}
.search-result mark {
  background: rgba(255,51,68,.25);
  color: var(--red-2);
  padding: 0 2px;
  border-radius: 3px;
}

.search-empty {
  padding: 40px 24px;
  text-align: center;
}
.search-empty strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .03em;
  color: var(--t-on-dark);
  margin-bottom: 8px;
}
.search-empty p {
  color: var(--t-on-dark-mute);
  font-size: 14px;
}

.search-foot {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--t-on-dark-mute);
  letter-spacing: .04em;
}
.search-foot kbd {
  display: inline-block;
  padding: 2px 6px;
  margin-right: 4px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
}

@media (max-width: 540px) {
  .search-overlay { padding-top: 60px; }
  .search-foot { display: none; }
  .search-modal { max-height: calc(100vh - 80px); }
  .search-bar input { font-size: 16px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01s !important;
  }
}
