/* ============================================================
   HOTSHOTS BASKETBALL — MAIN STYLESHEET
   Brand Kit: Court Navy #042A5A | Flame Red #E01C2C | Bone White #FAFAF7
   Neutrals: Ink #0E1B3D | Slate #4A5775 | Steel #8E96AB | Mist #D9DCE5
   ============================================================ */

/* ── CSS Custom Properties ──────────────────────────────────────────────────── */
:root {
  /* Brand primary colours */
  --color-orange:     #E01C2C;   /* Flame Red — primary accent */
  --color-orange-dark:#B5141F;   /* deeper red for hover states */
  --color-orange-light:#E84455;  /* lighter red */
  --color-black:      #042A5A;   /* Court Navy — primary dark */
  --color-dark:       #0E1B3D;   /* Ink 900 */
  --color-dark-mid:   #1A2B5F;   /* slightly lighter navy */
  --color-white:      #FAFAF7;   /* Bone White — surface */
  --color-gray-100:   #D9DCE5;   /* Mist 200 */
  --color-gray-200:   #D9DCE5;   /* Mist 200 */
  --color-gray-300:   #8E96AB;   /* Steel 400 */
  --color-gray-500:   #4A5775;   /* Slate 600 */
  --color-gray-700:   #0E1B3D;   /* Ink 900 */
  --color-whatsapp:   #25D366;

  --font-display:    'Bebas Neue', 'Impact', sans-serif;
  --font-heading:    'Oswald', 'Arial Narrow', sans-serif;
  --font-body:       'Roboto', system-ui, -apple-system, sans-serif;

  --fs-xs:  0.8125rem;  /* 13px — minimum readable size */
  --fs-sm:  0.9375rem;  /* 15px */
  --fs-base:1rem;       /* 16px */
  --fs-md:  1.125rem;
  --fs-lg:  1.25rem;
  --fs-xl:  1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.5rem;
  --fs-5xl: 5rem;

  --lh-tight:  1.1;
  --lh-snug:   1.25;
  --lh-normal: 1.6;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl:5rem;
  --spacing-3xl:8rem;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
  --shadow-md:  0 4px 12px rgba(0,0,0,.15);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.2);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.3);
  --shadow-orange: 0 8px 30px rgba(224,28,44,.35);

  --header-h:   72px;
  --container:  1200px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.hb-nav-open { overflow: hidden; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
address { font-style: normal; }

/* ── Skip Link ───────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -9999px; left: 0;
  background: var(--color-orange); color: #fff;
  padding: .5rem 1rem; z-index: 9999; border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { top: 0; }

/* ── Utilities ───────────────────────────────────────────────────────────────── */
.hb-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hb-container { width: min(var(--container), 100%); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.hb-text-center { text-align: center; }
.hb-text--orange { color: var(--color-orange); }
.hb-section { padding-block: clamp(3rem, 8vw, 6rem); }
.hb-section--dark { background: var(--color-black); color: var(--color-white); }
.hb-section--orange { background: var(--color-orange); color: var(--color-white); }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.hb-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.hb-btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); }
.hb-btn:hover svg { transform: translateX(3px); }
.hb-btn:active { transform: scale(.97); }

.hb-btn--primary { background: var(--color-orange); color: var(--color-white); }
.hb-btn--primary:hover { background: var(--color-orange-dark); box-shadow: var(--shadow-orange); }

.hb-btn--outline { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.hb-btn--outline:hover { background: var(--color-white); color: var(--color-black); }
.hb-btn--outline.hb-btn--dark { color: var(--color-black); border-color: var(--color-black); }
.hb-btn--outline.hb-btn--dark:hover { background: var(--color-black); color: var(--color-white); }

.hb-btn--sm  { padding: .5rem 1.25rem; font-size: var(--fs-sm); }
.hb-btn--lg  { padding: .95rem 2.25rem; font-size: var(--fs-lg); }
.hb-btn--full { width: 100%; justify-content: center; }

.hb-btn--whatsapp { background: var(--color-whatsapp); color: #fff; border-color: var(--color-whatsapp); }
.hb-btn--whatsapp:hover { background: #1ab857; }

.hb-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }

/* ── Section Headers ─────────────────────────────────────────────────────────── */
.hb-section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: .75rem;
  padding-left: 1.25rem;
  position: relative;
}
.hb-section__label::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: .75rem; height: 2px;
  background: var(--color-orange);
  transform: translateY(-50%);
}
.hb-section__label--light { color: var(--color-orange-light); }
.hb-section__label--light::before { background: var(--color-orange-light); }

.hb-section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.hb-section__header .hb-section__label { padding-left: 0; }
.hb-section__header .hb-section__label::before { display: none; }

.hb-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: var(--lh-tight);
  color: var(--color-black);
  margin-bottom: 1rem;
  letter-spacing: .02em;
}
.hb-section__title--light { color: var(--color-white); }
.hb-section__subtitle { color: var(--color-gray-700); font-size: var(--fs-md); max-width: 600px; margin-inline: auto; }

/* Titles / subtitles on dark-background sections */
.hb-section--dark .hb-section__title { color: var(--color-white); }
.hb-section--dark .hb-section__subtitle { color: rgba(255,255,255,.65); }
.hb-section__cta { text-align: center; margin-top: 3rem; }

/* ── Intro strip (homepage welcome paragraph) ───────────────────────────────── */
.hb-intro { padding-block: clamp(2rem, 4vw, 3rem); background: var(--color-white); }
.hb-intro__inner { max-width: 780px; margin-inline: auto; text-align: center; }
.hb-intro__text {
  font-size: clamp(var(--fs-base), 1.5vw, var(--fs-lg));
  color: var(--color-gray-500);
  line-height: var(--lh-normal);
}

/* ── Stat descriptions (hero) ───────────────────────────────────────────────── */
.hb-hero__stat-desc {
  display: block;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  margin-top: .35rem;
  max-width: 180px;
}

/* ── About Why closing line ─────────────────────────────────────────────────── */
.hb-about-why__closing {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
  font-weight: 700;
  color: var(--color-black);
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-gray-200);
}

/* ── Tags ────────────────────────────────────────────────────────────────────── */
.hb-tag {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: var(--radius-sm);
}

/* ── Announcement Bar ────────────────────────────────────────────────────────── */
.hb-announcement {
  background: var(--color-orange);
  color: var(--color-white);
  font-size: var(--fs-sm);
  text-align: center;
  padding: .5rem 1rem;
  /* position is normal flow within the fixed header */
}
.hb-announcement .hb-container { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.hb-announcement p { margin: 0; }
.hb-announcement__close {
  background: transparent; border: none; color: #fff; font-size: 1.1rem;
  cursor: pointer; padding: 0; opacity: .8; flex-shrink: 0;
}
.hb-announcement__close:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════════════ */
.hb-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(4,42,90,.1);
  transition: background var(--transition), box-shadow var(--transition);
}
.hb-header.hb-header--scrolled {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(4,42,90,.1);
}
.hb-header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

/* Logo */
.hb-logo {
  display: flex; align-items: center; text-decoration: none;
}
.hb-logo img {
  height: 52px; width: auto;
  display: block;
  transition: opacity var(--transition);
}
.hb-header .hb-logo img { height: 66px; mix-blend-mode: multiply; }
.hb-logo:hover img { opacity: .88; }
/* Fallback text logo (hidden when image loads) */
.hb-logo-text {
  display: flex; flex-direction: column; line-height: 1; gap: 0;
  text-decoration: none;
}
.hb-logo-text__hotshot {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-orange);
  letter-spacing: .05em;
}
.hb-logo-text__basketball {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--color-white);
  text-transform: uppercase;
}
.custom-logo { height: 52px; width: auto; }

/* Nav */
.hb-nav { flex: 1; display: flex; justify-content: center; }
.hb-nav__list {
  display: flex; align-items: center; gap: .25rem; list-style: none;
}
.hb-nav__list li a {
  display: block;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.hb-nav__list li a:hover,
.hb-nav__list li.current-menu-item > a,
.hb-nav__list li.current_page_item > a { color: var(--color-orange); background: rgba(224,28,44,.12); }

/* Dropdown */
.hb-nav__list li { position: relative; }
.hb-nav__list li ul {
  position: absolute; top: calc(100% + .5rem); left: 0;
  min-width: 200px;
  background: var(--color-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}
.hb-nav__list li:hover > ul,
.hb-nav__list li:focus-within > ul { opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(0); }
.hb-nav__list li ul li a { color: var(--color-gray-300); white-space: nowrap; border-radius: 0; }
.hb-nav__list li ul li:first-child a { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.hb-nav__list li ul li:last-child  a { border-radius: 0 0 var(--radius-md) var(--radius-md); }

/* Header Actions */
.hb-header__actions { display: flex; align-items: center; gap: 1rem; }
.hb-header__cta { padding: .55rem 1.25rem; font-size: var(--fs-base); }
.hb-header__phone svg { width: 20px; height: 20px; color: var(--color-dark); transition: color var(--transition); }
.hb-header__phone:hover svg { color: var(--color-orange); }

/* Hamburger */
.hb-menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: .4rem;
  background: transparent; border: none; cursor: pointer; z-index: 1100;
}
.hb-menu-toggle__line {
  display: block; width: 24px; height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
  transform-origin: center;
}
.hb-header--nav-open .hb-menu-toggle__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hb-header--nav-open .hb-menu-toggle__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hb-header--nav-open .hb-menu-toggle__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.hb-nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 900; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}

/* Main offset for fixed header — JS overrides this with exact header.offsetHeight */
.hb-main { margin-top: calc(var(--header-h) + 40px); } /* 40px ≈ announcement bar height */

/* ══════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════ */
.hb-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(224,28,44,.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 30%, rgba(14,27,61,.8) 0%, transparent 70%),
    var(--color-black);
}
.hb-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; z-index: 0; opacity: .4;
}
.hb-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(4,42,90,.92) 0%, rgba(4,42,90,.7) 50%, rgba(224,28,44,.2) 100%);
}
.hb-hero__court-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hb-court-line {
  position: absolute; background: rgba(224,28,44,.1);
  transform-origin: center;
}
.hb-court-line--1 { width: 1px; height: 100%; left: 25%; transform: rotate(-15deg) scaleY(1.5); }
.hb-court-line--2 { width: 1px; height: 100%; right: 30%; transform: rotate(10deg) scaleY(1.5); }
.hb-court-line--3 { width: 420px; height: 420px; border: 1px solid rgba(224,28,44,.18); border-radius: 50%; bottom: -120px; right: 8%; }

/* Dot-grid texture overlay on hero */
.hb-hero__court-lines::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hb-hero__content {
  position: relative; z-index: 2;
  padding-block: clamp(3rem, 8vw, 6rem);
  max-width: 750px;
}
.hb-hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(224,28,44,.15);
  border: 1px solid rgba(224,28,44,.35);
  color: var(--color-orange-light);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.hb-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: var(--lh-tight);
  color: var(--color-white);
  letter-spacing: .02em;
  margin-bottom: 1.5rem;
}
.hb-hero__subheading {
  font-size: clamp(var(--fs-md), 2vw, var(--fs-lg));
  color: var(--color-gray-300);
  margin-bottom: 2.5rem;
  max-width: 550px;
  line-height: var(--lh-normal);
}
.hb-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Stats */
.hb-hero__stats {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hb-hero__stat { text-align: center; }
.hb-hero__stat-number, .hb-hero__stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-orange);
  letter-spacing: .02em;
  line-height: 1;
}
.hb-hero__stat-plus { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.hb-hero__stat-label { display: block; font-size: var(--fs-xs); color: var(--color-gray-500); text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }
.hb-hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* Scroll indicator */
.hb-hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hb-hero__scroll-wheel {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hb-hero__scroll-wheel::after {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--color-orange);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce { 0%,100% { transform: translateX(-50%) translateY(0); opacity:1; } 50% { transform: translateX(-50%) translateY(12px); opacity:.2; } }

/* ══════════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════════════════ */
.hb-page-hero {
  position: relative;
  min-height: 340px;
  display: flex; align-items: flex-end;
  background: var(--color-black);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}
.hb-page-hero--has-image .hb-page-hero__bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3;
}
.hb-page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,42,90,.96) 30%, rgba(4,42,90,.55) 100%);
}
.hb-page-hero__content { position: relative; z-index: 2; padding-top: 5rem; }
.hb-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--color-white);
  letter-spacing: .03em;
  line-height: var(--lh-tight);
  margin-bottom: .75rem;
}
.hb-page-hero__subtitle { color: var(--color-gray-300); font-size: var(--fs-md); max-width: 600px; }

/* Breadcrumb */
.hb-breadcrumb {
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hb-breadcrumb a { color: var(--color-orange-light); }
.hb-breadcrumb a:hover { color: var(--color-orange); }

/* ══════════════════════════════════════════════════════════════════════
   PROGRAMS
   ══════════════════════════════════════════════════════════════════════ */
.hb-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px,100%), 1fr));
  gap: 2rem;
}

/* 4-column prize grid */
.hb-programs-grid[style*="--grid-cols:4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hb-programs-grid--full { grid-template-columns: repeat(auto-fit, minmax(min(340px,100%), 1fr)); }

.hb-program-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-200);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.hb-program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hb-program-card--featured {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 2px var(--color-orange), var(--shadow-md);
}

.hb-program-card__ribbon {
  position: absolute; top: 1.25rem; right: -2.5rem;
  background: var(--color-orange); color: #fff;
  font-family: var(--font-heading); font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem 3rem;
  transform: rotate(35deg);
  z-index: 1;
}

.hb-program-card__image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.hb-program-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hb-program-card:hover .hb-program-card__image img { transform: scale(1.06); }
.hb-program-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--color-black); color: var(--color-orange);
  font-family: var(--font-heading); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: var(--radius-sm);
}

.hb-program-card__header { padding: 1rem 1.5rem .25rem; }
.hb-program-card__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-orange);
  background: rgba(224,28,44,.1);
  border: 1px solid rgba(224,28,44,.25);
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
}
.hb-program-card--featured .hb-program-card__tag {
  background: rgba(224,28,44,.15);
  border-color: var(--color-orange);
}

.hb-program-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .85rem; }
.hb-program-card--centered .hb-program-card__body { align-items: center; text-align: center; }
.hb-program-card--centered .hb-program-card__meta { align-items: center; }
.hb-program-card--centered .hb-program-card__meta li { justify-content: center; }
.hb-program-card--centered .hb-program-card__footer { justify-content: center; }
.hb-program-card__title { font-family: var(--font-heading); font-size: var(--fs-xl); font-weight: 700; color: var(--color-black); line-height: var(--lh-snug); }
.hb-program-card__title a:hover { color: var(--color-orange); }
.hb-program-card__excerpt { color: var(--color-gray-700); font-size: var(--fs-base); line-height: var(--lh-normal); flex: 1; }
.hb-program-card__icon { font-size: 2.5rem; line-height: 1; color: var(--color-orange); }
.hb-program-card__icon svg { width: 40px; height: 40px; color: var(--color-orange); }

.hb-program-card__meta { display: flex; flex-direction: column; gap: .4rem; }
.hb-program-card__meta li {
  display: flex; align-items: center; gap: .5rem;
  font-size: var(--fs-base); color: var(--color-gray-700);
}
.hb-program-card__meta svg { width: 16px; height: 16px; color: var(--color-orange); flex-shrink: 0; }
.hb-program-card__meta--full { flex-direction: row; flex-wrap: wrap; gap: .5rem 1.5rem; }
.hb-program-card__meta--full li { font-size: var(--fs-base); }

.hb-program-card__features { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin: .5rem 0; }
.hb-program-card__features li { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-base); }
.hb-program-card__features svg { width: 16px; height: 16px; color: var(--color-orange); flex-shrink: 0; }

.hb-program-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--color-gray-200); }
.hb-program-card__price { font-family: var(--font-display); font-size: var(--fs-2xl); color: var(--color-orange); letter-spacing: .02em; line-height: 1; }
.hb-program-card__price small { font-size: var(--fs-sm); color: var(--color-gray-500); font-family: var(--font-body); }
.hb-program-card__pricing { display: flex; align-items: baseline; gap: .25rem; }
.hb-program-card__price-period { font-size: var(--fs-sm); color: var(--color-gray-500); }
.hb-program-card__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Filters */
.hb-program-filters, .hb-gallery-filters {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem;
}
.hb-filter-btn {
  padding: .5rem 1.25rem;
  font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  color: var(--color-gray-700);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.hb-filter-btn:hover,
.hb-filter-btn--active { background: var(--color-orange); border-color: var(--color-orange); color: #fff; }

/* FAQ Accordion */
.hb-accordion { max-width: 800px; margin-inline: auto; }
.hb-accordion__item { border-bottom: 1px solid var(--color-gray-200); }
.hb-accordion__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 0;
  font-family: var(--font-heading); font-size: var(--fs-md); font-weight: 600;
  color: var(--color-black); text-align: left; background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.hb-accordion__btn:hover { color: var(--color-orange); }
.hb-accordion__icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); }
.hb-accordion__btn[aria-expanded="true"] .hb-accordion__icon { transform: rotate(180deg); }
.hb-accordion__body { padding-bottom: 1.25rem; color: var(--color-gray-700); font-size: var(--fs-base); line-height: var(--lh-normal); }
.hb-faq__cta { text-align: center; margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }

/* ══════════════════════════════════════════════════════════════════════
   COACHES
   ══════════════════════════════════════════════════════════════════════ */
.hb-coaches-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
.hb-coaches-grid--full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.hb-coach-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.hb-coach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.hb-coach-card__image {
  position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--color-dark);
}
.hb-coach-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hb-coach-card:hover .hb-coach-card__image img { transform: scale(1.05); }
.hb-coach-card__avatar-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-dark), var(--color-dark-mid));
}
.hb-coach-card__avatar-placeholder svg { width: 60%; height: 60%; color: rgba(255,255,255,.2); }
.hb-coach-card__avatar--letter {
  font-family: var(--font-display); font-size: 4rem; color: var(--color-orange);
  background: var(--color-dark);
}
.hb-coach-card__overlay {
  position: absolute; inset: 0; background: rgba(224,28,44,.88);
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  opacity: 0; transition: opacity var(--transition);
}
.hb-coach-card:hover .hb-coach-card__overlay { opacity: 1; }
.hb-coach-card__overlay a {
  color: #fff; font-family: var(--font-heading); font-size: var(--fs-sm);
  font-weight: 700; letter-spacing: .06em; padding: .4rem .8rem;
  border: 2px solid rgba(255,255,255,.5); border-radius: var(--radius-sm);
  transition: background var(--transition), border-color var(--transition);
}
.hb-coach-card__overlay a:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.hb-coach-card__social { display: flex; gap: .75rem; justify-content: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--color-gray-100); }
.hb-coach-card__social a { color: var(--color-gray-500); background: var(--color-gray-100); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: background var(--transition), color var(--transition); }
.hb-coach-card__social a:hover { background: var(--color-orange); color: #fff; }
.hb-coach-card__social svg { width: 18px; height: 18px; }

.hb-coach-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.hb-coach-card__name { font-family: var(--font-heading); font-size: var(--fs-lg); font-weight: 700; margin-bottom: .35rem; }
.hb-coach-card__name a:hover { color: var(--color-orange); }
.hb-coach-card__role { font-size: var(--fs-sm); color: var(--color-orange); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .4rem; min-height: 2.8rem; }
.hb-coach-card__specialty { font-size: var(--fs-base); color: var(--color-gray-700); display: flex; align-items: center; gap: .4rem; margin-bottom: .75rem; }
.hb-coach-card__specialty svg { width: 14px; height: 14px; color: var(--color-orange); }
.hb-coach-card__exp {
  display: inline-block; font-size: var(--fs-sm); background: var(--color-orange);
  color: #fff; padding: .2rem .6rem; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-weight: 700; letter-spacing: .05em;
  margin-bottom: .75rem;
}
.hb-coach-card__bio { font-size: var(--fs-base); color: var(--color-gray-700); line-height: var(--lh-normal); margin-bottom: 1rem; }
.hb-coach-card__details { display: flex; flex-direction: column; gap: .4rem; margin: .75rem 0 1rem; font-size: var(--fs-base); }
.hb-coach-card__detail { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-base); color: var(--color-gray-700); }
.hb-coach-card__detail svg { width: 16px; height: 16px; color: var(--color-orange); flex-shrink: 0; }
.hb-coach-card__excerpt { font-size: var(--fs-base); color: var(--color-gray-700); margin-bottom: 1rem; }

/* ══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════ */
.hb-testimonials-slider { position: relative; overflow: hidden; }
.hb-testimonials-track {
  display: flex; gap: 1.5rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.hb-testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hb-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Standalone testimonial card on a dark section */
.hb-section--dark .hb-testimonial-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  max-width: 760px;
  margin-inline: auto;
}
.hb-section--dark .hb-testimonial-card__text { color: rgba(255,255,255,.8); }
.hb-section--dark .hb-testimonial-card__name { color: var(--color-white); }
.hb-section--dark .hb-testimonial-card__role { color: rgba(255,255,255,.5); }
.hb-section--dark .hb-testimonial-card__quote { color: var(--color-orange); }
.hb-testimonials-masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }

.hb-testimonial-card__quote {
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--color-orange); opacity: .2;
  pointer-events: none; user-select: none;
}
.hb-stars { display: inline-flex; gap: 2px; margin-bottom: 1rem; }
.star { color: var(--color-gray-300); font-size: 1.1rem; }
.star.filled { color: var(--color-orange); }
.hb-testimonial-card__text { font-size: var(--fs-base); line-height: var(--lh-normal); color: var(--color-gray-700); margin-bottom: 1.25rem; font-style: italic; }
.hb-testimonial-card__text p { margin: 0; }
.hb-testimonial-card__author { display: flex; align-items: center; gap: .85rem; }
.hb-testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.hb-testimonial-card__avatar-placeholder {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--color-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: var(--fs-md); font-weight: 700;
  flex-shrink: 0;
}
.hb-testimonial-card__name { display: block; font-weight: 700; font-size: var(--fs-base); font-style: normal; }
.hb-testimonial-card__role { display: block; font-size: var(--fs-sm); color: var(--color-gray-500); }

/* Slider Nav */
.hb-testimonials-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.hb-testimonials-prev, .hb-testimonials-next {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-gray-100); color: var(--color-black);
  font-size: 1.25rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.hb-testimonials-prev:hover, .hb-testimonials-next:hover { background: var(--color-orange); color: #fff; }
.hb-testimonials-dots { display: flex; gap: .4rem; }
.hb-testimonials-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-gray-300);
  transition: background var(--transition), width var(--transition);
  cursor: pointer;
}
.hb-testimonials-dots .dot.active { background: var(--color-orange); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════════════════════════════════
   WHY US
   ══════════════════════════════════════════════════════════════════════ */
.hb-why-us__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hb-why-us__image-frame {
  border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 6/7;
  box-shadow: var(--shadow-xl);
}
.hb-why-us__image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hb-why-us__image { position: relative; }
.hb-why-us__experience-badge {
  position: absolute; bottom: 2rem; right: -1.5rem;
  background: var(--color-orange); color: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-lg);
  font-family: var(--font-heading); font-size: var(--fs-sm);
  font-weight: 700; text-transform: uppercase;
}
.hb-why-us__years { display: block; font-family: var(--font-display); font-size: var(--fs-3xl); line-height: 1; }
.hb-placeholder { background: var(--color-dark); border-radius: var(--radius-xl); }
.hb-placeholder--large { background: var(--color-dark); border-radius: var(--radius-xl); aspect-ratio: 6/7; width: 100%; }

.hb-why-us__features { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.5rem 0 2rem; }
.hb-feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.hb-feature-item__icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; margin-top: .1rem; }
.hb-feature-item__title { font-family: var(--font-heading); font-size: var(--fs-base); font-weight: 700; margin-bottom: .2rem; }
.hb-feature-item__desc { font-size: var(--fs-base); color: var(--color-gray-700); }

/* ── Why Grid (homepage "Why Choose Us" cards on dark bg) ─────────────────── */
.hb-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.hb-why-card {
  position: relative;
  background: linear-gradient(145deg, #0E1B3D 0%, #042A5A 60%, #0A2050 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 2.25rem 1.75rem 2rem;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hb-why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(224,28,44,.1) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.hb-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224,28,44,.35);
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
}
.hb-why-card:hover::before { opacity: 1; }

.hb-why-card__icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-white);
  transition: background .25s ease, border-color .25s ease;
}
.hb-why-card:hover .hb-why-card__icon { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }
.hb-why-card__icon svg { width: 24px; height: 24px; }

.hb-why-card__icon-wrap {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(224,28,44,.15);
  border: 1.5px solid rgba(224,28,44,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-orange);
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.hb-why-card:hover .hb-why-card__icon-wrap {
  background: rgba(224,28,44,.25);
  border-color: var(--color-orange);
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(224,28,44,.3);
}
.hb-why-card__icon-wrap svg { width: 26px; height: 26px; }

.hb-why-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: .65rem;
  letter-spacing: .03em;
}
.hb-why-card__desc,
.hb-why-card__text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════════════ */
.hb-about-story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hb-about-story__image { position: relative; }
.hb-about-story__image img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); aspect-ratio: 5/6; object-fit: cover; }
.hb-about-story__overlay-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--color-orange); color: #fff;
  padding: 1.5rem 2rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  text-align: center; font-family: var(--font-heading); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; font-size: var(--fs-sm);
}
.hb-about-story__year { display: block; font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.hb-about-story__content { display: flex; flex-direction: column; gap: 1rem; }
.hb-about-story__content p { color: var(--color-gray-700); line-height: var(--lh-normal); }

.hb-mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.hb-mv-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
}
.hb-mv-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.hb-mv-card__title { font-family: var(--font-heading); font-size: var(--fs-xl); color: var(--color-white); font-weight: 700; margin-bottom: 1rem; }
.hb-mv-card__text { color: rgba(255,255,255,.75); font-size: var(--fs-base); line-height: var(--lh-normal); }
.hb-mv-card__list { color: rgba(255,255,255,.75); font-size: var(--fs-base); display: flex; flex-direction: column; gap: .5rem; padding-left: 1.25rem; list-style: disc; }

.hb-about-why__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 2rem; }
.hb-about-why__card {
  background: var(--color-black);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
}
.hb-about-why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--color-orange);
}
.hb-about-why__icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.hb-about-why__title { font-family: var(--font-heading); font-size: var(--fs-md); font-weight: 700; margin-bottom: .5rem; color: var(--color-white); }
.hb-about-why__desc { font-size: var(--fs-base); color: rgba(255,255,255,.6); line-height: var(--lh-normal); }

.hb-achievements__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem; }
.hb-achievement { text-align: center; }
.hb-achievement__number { display: block; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; letter-spacing: .02em; line-height: 1; }
.hb-achievement__label { display: block; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.7); margin-top: .3rem; }

/* ══════════════════════════════════════════════════════════════════════
   GALLERY STRIP
   ══════════════════════════════════════════════════════════════════════ */
.hb-gallery-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
  overflow: hidden;
}
.hb-gallery-strip__item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.hb-gallery-strip__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.hb-gallery-strip__item:hover img { transform: scale(1.08); }
.hb-gallery-strip__placeholder {
  width: 100%; height: 100%;
  background: var(--color-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  color: var(--color-gray-500);
}
.hb-gallery-strip__placeholder svg { width: 32px; height: 32px; }
.hb-gallery-strip__placeholder span { font-size: var(--fs-xs); text-align: center; }

/* ══════════════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════════════ */
.hb-contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.hb-contact-info { display: flex; flex-direction: column; gap: 2rem; }
.hb-contact-info__cards { display: flex; flex-direction: column; gap: 1rem; }
.hb-contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--color-gray-100); border-radius: var(--radius-md); padding: 1.25rem;
  border-left: 3px solid var(--color-orange);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hb-contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.hb-contact-card--whatsapp { border-left-color: var(--color-whatsapp); }
.hb-contact-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--color-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hb-contact-card__icon svg { width: 22px; height: 22px; }
.hb-contact-card--whatsapp .hb-contact-card__icon { background: var(--color-whatsapp); }
.hb-contact-card h3 { font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .25rem; }
.hb-contact-card a { color: var(--color-black); font-weight: 600; font-size: var(--fs-base); }
.hb-contact-card a:hover { color: var(--color-orange); }
.hb-contact-card p { font-size: var(--fs-xs); color: var(--color-gray-500); margin-top: .2rem; }

.hb-contact-hours h3,
.hb-contact-social h3 { font-family: var(--font-heading); font-size: var(--fs-md); font-weight: 700; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.hb-hours-table { width: 100%; font-size: var(--fs-base); border-collapse: collapse; }
.hb-contact-social .hb-social-icon { width: 48px; height: 48px; background: var(--color-gray-100); border: 1px solid var(--color-gray-200); color: var(--color-dark); }
.hb-contact-social .hb-social-icon svg { width: 22px; height: 22px; }
.hb-contact-social .hb-social-icon:hover { background: var(--color-orange); border-color: var(--color-orange); color: #fff; }
.hb-hours-table td { padding: .5rem .25rem; border-bottom: 1px solid var(--color-gray-200); }
.hb-hours-table td:last-child { text-align: right; font-weight: 600; }

/* Contact Form */
.hb-form-card {
  background: var(--color-white); border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-200);
}
.hb-form-card__title { font-family: var(--font-display); font-size: var(--fs-3xl); margin-bottom: .5rem; }
.hb-form-card__sub { color: var(--color-gray-700); font-size: var(--fs-base); margin-bottom: 1.75rem; }
.hb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hb-form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.hb-label { font-family: var(--font-heading); font-size: var(--fs-base); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--color-black); }
.hb-label span { color: var(--color-orange); }
.hb-input {
  width: 100%; padding: .75rem 1rem;
  font-family: var(--font-body); font-size: var(--fs-base);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  background: var(--color-gray-100);
  color: var(--color-black);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.hb-input:focus { outline: none; border-color: var(--color-orange); background: #fff; box-shadow: 0 0 0 4px rgba(224,28,44,.12); }
.hb-input.is-error { border-color: #e55; }
.hb-textarea { resize: vertical; min-height: 140px; }
.hb-select { cursor: pointer; }
.hb-form-error { font-size: var(--fs-xs); color: #e55; min-height: 1rem; }
.hb-form-response { margin-top: 1rem; padding: 1rem; border-radius: var(--radius-md); font-size: var(--fs-sm); }
.hb-form-response.success { background: rgba(37,211,102,.1); color: #1a7a3a; border: 1px solid rgba(37,211,102,.3); }
.hb-form-response.error   { background: rgba(229,85,85,.1);  color: #a33;    border: 1px solid rgba(229,85,85,.3); }
.hb-hp-field { display: none; }

.hb-btn__loading { display: flex; align-items: center; gap: .5rem; }
.hb-spinner { animation: spin 1s linear infinite; width: 18px; height: 18px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Map */
.hb-map-iframe { display: block; width: 100%; height: 450px; border: none; }

/* Full-width coverage map section */
.hb-coverage-map { background: var(--color-white); }
.hb-coverage-map__header { text-align: center; padding-block: clamp(2.5rem, 5vw, 4rem); }
.hb-coverage-map__iframe { display: block; width: 100%; height: 540px; border: none; }

/* Leaflet county label tooltips */
.hb-map-label {
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  white-space: nowrap;
}
.hb-map-label::before { display: none; }
.hb-map-placeholder {
  height: 350px; background: var(--color-gray-100);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  color: var(--color-gray-500);
}
.hb-map-placeholder svg { width: 48px; height: 48px; }
.hb-map-placeholder p { font-size: var(--fs-sm); max-width: 400px; text-align: center; }

/* ══════════════════════════════════════════════════════════════════════
   BLOG PREVIEW
   ══════════════════════════════════════════════════════════════════════ */
.hb-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

.hb-blog-card {
  background: var(--color-white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hb-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hb-blog-card__image { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--color-dark); }
.hb-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hb-blog-card:hover .hb-blog-card__image img { transform: scale(1.04); }
.hb-blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.hb-blog-card__meta { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.hb-blog-card__date { font-size: var(--fs-xs); color: var(--color-gray-500); }
.hb-blog-card__title { font-family: var(--font-heading); font-size: var(--fs-xl); font-weight: 700; color: var(--color-black); line-height: var(--lh-snug); }
.hb-blog-card__title a:hover { color: var(--color-orange); }
.hb-blog-card__excerpt { font-size: var(--fs-base); color: var(--color-gray-700); line-height: var(--lh-normal); }
.hb-blog-card__readmore { display: flex; align-items: center; gap: .3rem; font-size: var(--fs-sm); font-weight: 700; color: var(--color-orange); }
.hb-blog-card__readmore svg { width: 16px; height: 16px; transition: transform var(--transition); }
.hb-blog-card__readmore:hover svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════════════ */
.hb-section-sep {
  width: 80%;
  max-width: 600px;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 0%, #F5C518 20%, #FFD700 50%, #F5C518 80%, transparent 100%);
  opacity: 0.6;
}

.hb-cta-banner {
  position: relative; padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--color-black); overflow: hidden;
}
.hb-cta-banner::before {
  content: '🏀';
  position: absolute; font-size: 18rem; opacity: .03; right: -2rem; top: 50%;
  transform: translateY(-50%); pointer-events: none; user-select: none;
}
.hb-cta-banner__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(224,28,44,.15) 0%, transparent 65%);
}
.hb-cta-banner__inner { position: relative; z-index: 1; text-align: center; }
.hb-cta-banner__heading { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; margin-bottom: 1rem; }
.hb-cta-banner__sub { color: rgba(255,255,255,.7); font-size: var(--fs-md); max-width: 550px; margin-inline: auto; margin-bottom: 2.5rem; }
.hb-cta-banner__actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════════════════════════════════════ */
.hb-newsletter {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-mid) 100%);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.hb-newsletter__inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.hb-newsletter__copy { flex: 1; min-width: 250px; }
.hb-newsletter__heading { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--color-white); letter-spacing: .02em; margin-bottom: .5rem; }
.hb-newsletter__sub { color: rgba(255,255,255,.65); font-size: var(--fs-base); }
.hb-newsletter__form { flex: 1.2; min-width: 300px; }
.hb-newsletter__fields { display: flex; gap: .75rem; flex-wrap: wrap; }
.hb-newsletter__fields .hb-input { flex: 1; min-width: 180px; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; }
.hb-newsletter__fields .hb-input::placeholder { color: rgba(255,255,255,.4); }
.hb-newsletter__fields .hb-input:focus { background: rgba(255,255,255,.12); border-color: var(--color-orange); }
.hb-newsletter__notice { font-size: var(--fs-xs); color: rgba(255,255,255,.4); margin-top: .5rem; }
.hb-newsletter__msg { font-size: var(--fs-sm); margin-top: .5rem; min-height: 1.25rem; }
.hb-newsletter__msg.success { color: #4ade80; }
.hb-newsletter__msg.error   { color: #f87171; }

/* ══════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════ */
.hb-footer { background: var(--color-black); color: var(--color-gray-300); padding-top: clamp(3rem, 6vw, 5rem); }
.hb-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.hb-footer__logo { display: flex; flex-direction: column; gap: 0; margin-bottom: 1rem; }
.hb-footer .hb-logo img { height: 120px; width: auto; }
.hb-footer__logo .hb-logo-text__hotshot { font-family: var(--font-display); font-size: 1.8rem; color: var(--color-orange); letter-spacing: .05em; }
.hb-footer__logo .hb-logo-text__basketball { font-family: var(--font-heading); font-size: .7rem; letter-spacing: .2em; color: rgba(255,255,255,.5); text-transform: uppercase; }
.hb-footer__tagline { font-size: var(--fs-base); color: var(--color-gray-500); margin-bottom: 1.25rem; line-height: var(--lh-normal); }
.hb-footer__col-title { font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--color-white); margin-bottom: 1.25rem; }
.hb-footer__nav { display: flex; flex-direction: column; gap: .6rem; list-style: none; }
.hb-footer__nav li a { font-size: var(--fs-base); color: var(--color-gray-500); transition: color var(--transition), padding-left var(--transition); display: block; }
.hb-footer__nav li a:hover { color: var(--color-orange); padding-left: .4rem; }
.hb-footer__contact { display: flex; flex-direction: column; gap: .75rem; }
.hb-footer__contact p { display: flex; align-items: flex-start; gap: .6rem; font-size: var(--fs-base); color: var(--color-gray-500); }
.hb-footer__contact svg { width: 16px; height: 16px; color: var(--color-orange); flex-shrink: 0; margin-top: .15rem; }
.hb-footer__contact a { color: var(--color-gray-300); }
.hb-footer__contact a:hover { color: var(--color-orange); }
.hb-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.5rem; flex-wrap: wrap; }
.hb-footer__copy { font-size: var(--fs-xs); color: var(--color-gray-500); }
.hb-footer__copy a:hover { color: var(--color-orange); }
.hb-footer__legal { display: flex; gap: 1.5rem; }
.hb-footer__legal a { font-size: var(--fs-xs); color: var(--color-gray-500); }
.hb-footer__legal a:hover { color: var(--color-orange); }

/* Social Icons */
.hb-social-icons { display: flex; gap: .75rem; flex-wrap: wrap; }
.hb-social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gray-300);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.hb-social-icon svg { width: 16px; height: 16px; }
.hb-social-icon:hover { background: var(--color-orange); border-color: var(--color-orange); color: #fff; }

/* ══════════════════════════════════════════════════════════════════════
   WHATSAPP BUTTON
   ══════════════════════════════════════════════════════════════════════ */
.hb-whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  display: flex; align-items: center; gap: .65rem;
  background: var(--color-whatsapp); color: #fff;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.hb-whatsapp-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.hb-whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,.5); }

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hb-why-us__inner, .hb-about-story__inner { grid-template-columns: 1fr; }
  .hb-why-us__experience-badge, .hb-about-story__overlay-card { display: none; }
  .hb-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hb-contact-layout { grid-template-columns: 1fr; }
  .hb-gallery-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .hb-programs-grid--full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .hb-menu-toggle { display: flex; }

  .hb-nav {
    position: fixed; top: 0; right: -100%; width: min(320px, 100%); height: 100vh;
    background: var(--color-black);
    flex-direction: column; justify-content: flex-start;
    padding-top: calc(var(--header-h) + 1.5rem);
    padding-inline: 1.5rem; padding-bottom: 2rem;
    box-shadow: -10px 0 40px rgba(0,0,0,.5);
    overflow-y: auto;
    z-index: 1000;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .hb-nav.is-open { right: 0; }
  .hb-nav-overlay.is-open { display: block; }
  .hb-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .hb-nav__list li a { padding: .85rem 1rem; border-radius: var(--radius-md); font-size: var(--fs-md); }
  .hb-nav__list li ul { position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none; box-shadow: none; background: rgba(255,255,255,.05); margin-top: .25rem; border-radius: var(--radius-md); }

  .hb-hero__stats { gap: 1rem; }
  .hb-hero__stat-divider { display: none; }

  .hb-programs-grid, .hb-coaches-grid, .hb-blog-grid, .hb-testimonials-masonry { grid-template-columns: 1fr; }
  .hb-about-why__grid, .hb-mv-grid, .hb-why-grid { grid-template-columns: 1fr; }
  .hb-gallery-strip__grid { grid-template-columns: repeat(2, 1fr); }

  .hb-footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .hb-newsletter__inner { flex-direction: column; gap: 1.5rem; }
  .hb-newsletter__fields { flex-direction: column; }

  .hb-form-row { grid-template-columns: 1fr; }

  .hb-testimonial-card { flex: 0 0 90%; }

  .hb-header__cta { display: none; }

  .hb-whatsapp-btn span { display: none; }
  .hb-whatsapp-btn { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hb-hero__ctas { flex-direction: column; align-items: stretch; }
  .hb-hero__ctas .hb-btn { justify-content: center; }
  .hb-cta-group { flex-direction: column; align-items: stretch; }
  .hb-cta-group .hb-btn { justify-content: center; }
  .hb-gallery-strip__grid { grid-template-columns: 1fr; }
  .hb-footer__bottom { flex-direction: column; text-align: center; }
  .hb-hero__stats { grid-template-columns: repeat(2,1fr); display: grid; gap: 1rem; }
}

@media print {
  .hb-header, .hb-footer, .hb-newsletter, .hb-whatsapp-btn { display: none; }
  .hb-main { margin-top: 0; }
}

/* ── Holiday Camps ──────────────────────────────────────────────────────────── */

/* Dark-section card overrides */
.hb-section--dark .hb-program-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.hb-section--dark .hb-program-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(224, 28, 44, 0.4);
}

.hb-section--dark .hb-program-card .hb-program-card__title,
.hb-section--dark .hb-program-card h4 {
  color: var(--color-white);
}

.hb-section--dark .hb-program-card p,
.hb-section--dark .hb-program-card .hb-program-card__excerpt {
  color: var(--color-gray-300);
}

/* Wide card variant that stretches full width */
.hb-program-card--wide {
  width: 100%;
  max-width: 100%;
}

/* Camp details two-column layout inside the wide card */
.hb-camp-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.hb-camp-details__col {
  display: flex;
  flex-direction: column;
}

.hb-camp-details__col > p {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-normal);
  margin: 0 0 0.5rem;
}

.hb-camp-details__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-orange);
  margin-bottom: 0.75rem;
}

.hb-camp-details__title svg {
  flex-shrink: 0;
  color: var(--color-orange);
}

/* Session options list */
.hb-camp-details__sessions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hb-camp-details__sessions li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border-left: 3px solid var(--color-orange);
  gap: 1rem;
}

.hb-camp-details__sessions li strong {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  white-space: nowrap;
}

.hb-camp-details__sessions li span {
  font-size: var(--fs-base);
  color: var(--color-white);
  text-align: right;
}

.hb-camp-details__sessions li em {
  font-size: var(--fs-sm);
  color: var(--color-gray-300);
  font-style: italic;
}

/* Camp structure step list */
.hb-camp-structure {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hb-camp-structure__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.hb-camp-structure__item:hover {
  background: rgba(224, 28, 44, 0.12);
}

.hb-camp-structure__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--color-orange);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hb-camp-structure__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hb-camp-structure__info strong {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

.hb-camp-structure__info span {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.8);
}

/* Prize card variant — compact, trophy-focused */
.hb-program-card--prize {
  text-align: center;
}

.hb-program-card--prize .hb-program-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem 1.25rem;
  gap: 0.75rem;
}

.hb-program-card--prize .hb-program-card__icon svg {
  color: var(--color-orange);
}

.hb-program-card--prize .hb-program-card__title {
  font-size: var(--fs-base);
  text-align: center;
  margin: 0;
}

/* Highlight variant — used for featured/callout cards */
.hb-program-card--highlight {
  border: 2px solid var(--color-orange);
  background: linear-gradient(135deg, rgba(224,28,44,.08) 0%, rgba(4,42,90,.6) 100%);
}

/* ── Championship Prize Cards ───────────────────────────────────────────────── */

.hb-prizes {
  margin-top: 4rem;
}

.hb-prizes__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hb-prizes__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.hb-prizes__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 1rem;
}

.hb-prizes__rule {
  width: 80px;
  height: 3px;
  background: var(--color-orange);
  margin: 0 auto;
  position: relative;
}

.hb-prizes__rule::before,
.hb-prizes__rule::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
}

.hb-prizes__rule::before { left: -12px; }
.hb-prizes__rule::after  { right: -12px; }

.hb-prizes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Base prize card */
.hb-prize-card {
  position: relative;
  background: linear-gradient(160deg, rgba(14,27,61,0.9) 0%, rgba(4,42,90,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--color-orange);
  border-radius: 12px;
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hb-prize-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-orange);
  box-shadow: 0 20px 60px rgba(224,28,44,0.25), 0 0 0 1px rgba(224,28,44,0.2);
}

/* Red spotlight glow, fades in on hover */
.hb-prize-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 0%, rgba(224,28,44,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hb-prize-card:hover::before { opacity: 1; }

/* Shimmer sweep across on hover */
.hb-prize-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  pointer-events: none;
}

.hb-prize-card:hover::after {
  left: 160%;
  transition: left 0.5s ease;
}

/* Ghost rank number */
.hb-prize-card__rank {
  position: absolute;
  top: 0.4rem;
  right: 0.75rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
}

/* Icon circle */
.hb-prize-card__icon {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224,28,44,0.1);
  border-radius: 50%;
  border: 1px solid rgba(224,28,44,0.25);
  transition: background 0.3s ease, transform 0.35s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
}

.hb-prize-card:hover .hb-prize-card__icon {
  background: rgba(224,28,44,0.22);
  transform: scale(1.12) rotate(-6deg);
}

.hb-prize-card__icon svg {
  color: var(--color-orange);
  filter: drop-shadow(0 2px 10px rgba(224,28,44,0.45));
}

/* Prize name */
.hb-prize-card__name {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin: 0;
  line-height: 1.3;
}

/* ── Bonus prize card (full-width scarlet banner) */
.hb-prize-card--bonus {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 2rem 2.5rem;
  gap: 2rem;
  background: linear-gradient(105deg, #E01C2C 0%, #B5141F 55%, #8B0F18 100%);
  border-top-color: rgba(255,255,255,0.35);
  border-color: transparent;
}

.hb-prize-card--bonus:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(224,28,44,0.45);
  border-color: rgba(255,255,255,0.15);
}

.hb-prize-card--bonus::before {
  top: 0; left: 0;
  transform: none;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 0% 50%, rgba(255,255,255,0.12) 0%, transparent 55%);
  opacity: 1;
}

.hb-prize-card--bonus .hb-prize-card__rank {
  font-size: 8rem;
  top: auto;
  bottom: -1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.06);
}

.hb-prize-card--bonus .hb-prize-card__icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.hb-prize-card--bonus:hover .hb-prize-card__icon {
  background: rgba(255,255,255,0.25);
}

.hb-prize-card--bonus .hb-prize-card__icon svg {
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}

.hb-prize-card__bonus-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hb-prize-card__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.2rem;
}

.hb-prize-card--bonus .hb-prize-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.hb-prize-card__bonus-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hb-prize-card__bonus-items span {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ── Responsive: holiday camps ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hb-camp-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hb-camp-details__sessions li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .hb-programs-grid[style*="--grid-cols:4"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .hb-prizes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hb-prize-card--bonus {
    grid-column: 1 / -1;
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.5rem;
    gap: 1.25rem;
  }

  .hb-prize-card__bonus-items {
    justify-content: center;
  }

  .hb-prize-card--bonus .hb-prize-card__rank {
    display: none;
  }
}

@media (max-width: 480px) {
  .hb-programs-grid[style*="--grid-cols:4"] {
    grid-template-columns: 1fr;
  }

  .hb-prizes__grid {
    grid-template-columns: 1fr;
  }
}
