/* ═══════════════════════════════════════════
   TENNISSCHOOL DE BRUG — style.css  (v7 redesign)
   ═══════════════════════════════════════════ */

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

:root {
  --dk:       #3D2820;
  --dk-2:     #1F0D02;
  --mid:      #2E1200;
  --clay:     #C85B2A;       /* gravel / hero accent */
  --clay-dk:  #A24720;
  --accent:   #E07B00;
  --yellow:   #F4B02B;
  --yellow-p: #FFF4E6;
  --cream:    #FBF6EE;
  --white:    #FFFAF5;
  --off:      #F5EFE6;
  --muted:    #7A5A3A;
  --ink:      #2B1A0A;
  --border:   rgba(20,7,0,0.10);
  --line:     rgba(20,7,0,0.08);
  --fh:       'Barlow Condensed', sans-serif;
  --fb:       'Barlow', sans-serif;
  --fser:     'DM Serif Display', Georgia, serif;
  --nav-h:    78px;
  --radius:   10px;
  --max-w:    1180px;
  --transition: 0.22s cubic-bezier(.4,.0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --shadow-sm: 0 2px 10px rgba(20,7,0,0.06);
  --shadow-md: 0 10px 30px -10px rgba(20,7,0,0.18);
  --shadow-lg: 0 30px 60px -20px rgba(20,7,0,0.35);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--yellow); color: var(--dk); }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 14px; height: 14px; }
.btn:hover  { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(20,7,0,0.35); }
.btn:active { transform: translateY(0); }

.btn--yellow { background: var(--yellow); color: var(--dk); }
.btn--yellow:hover { background: #FFC24E; }
.btn--ghost  { border: 1.5px solid rgba(255,255,255,0.32); color: #fff; background: transparent; padding: 12.5px 22px; }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--dark   { background: var(--dk); color: #fff; }
.btn--dark:hover { background: #000; }

/* ── EYEBROW ── */
.eyebrow {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--clay);
  display: inline-block;
}
.eyebrow--dim { color: var(--yellow); }
.eyebrow--dim::before { background: var(--yellow); }

/* ── SECTION HEAD ── */
.section__head { max-width: 680px; margin-bottom: 48px; }
.section__head--light .section__lead { color: rgba(255,255,255,0.6); }

.section__title {
  font-family: var(--fh);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 0.92;
  margin-bottom: 20px;
  color: var(--dk);
}
.section__title em {
  font-family: var(--fser);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--clay);
  letter-spacing: -2px;
  font-size: 1.05em;
  line-height: 0.9;
  display: inline-block;
  transform: translateY(2px);
}
.section__title--light { color: #fff; }
.section__title--light em { color: var(--yellow); }
.section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 540px;
}
.section__lead--light { color: rgba(255,255,255,0.65); }

/* ── SECTIONS ── */
.section        { padding: 100px 0; }
.section--dark  { background: var(--cream); color: var(--ink); position: relative; overflow: hidden; }
.section--dark::before {
  content:''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(244,176,43,0.05) 1px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.8;
  pointer-events: none;
}
.section--dark .section__title--light { color: var(--ink); }
.section--dark .section__lead--light { color: var(--muted); }
.section--dark .section__head--light .section__lead { color: var(--muted); }
.section--dark .usp {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(20,7,0,0.04);
}
.section--dark .usp:hover {
  background: var(--cream);
  border-color: rgba(244,176,43,0.55);
}
.section--dark .usp__title { color: var(--ink); }
.section--dark .usp__desc { color: var(--muted); }
.section--off   { background: var(--off); }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20,7,0,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s, height 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav.scrolled {
  background: rgba(20,7,0,0.92);
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
  height: 66px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-img {
  max-height: 46px;
  height: auto;
  width: auto;
  display: block;
  transition: transform var(--transition);
}
.nav__logo:hover .nav__logo-img { transform: scale(1.04); }

.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
}
.nav__links a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav__links a::after {
  content:'';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--yellow);
  transition: right var(--transition);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { right: 0; }
.nav__links a.is-active { color: var(--yellow); }
.nav__links a.is-active::after { right: 0; background: var(--yellow); }

.nav__cta { font-size: 12px; padding: 10px 20px; margin-left: 24px; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(20,7,0,0.97);
  backdrop-filter: blur(14px);
  z-index: 99;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease-out);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__link {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__link:hover { color: var(--yellow); padding-left: 8px; }
.mobile-menu__cta { align-self: flex-start; margin-top: 16px; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dk);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero__slide.is-active {
  opacity: 1;
  animation: kenburns 12s linear forwards;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1.5%, -1%); }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,7,0,0.35) 0%, rgba(20,7,0,0.15) 35%, rgba(20,7,0,0.55) 100%),
    linear-gradient(100deg, rgba(20,7,0,0.55) 0%, rgba(20,7,0,0.30) 40%, rgba(20,7,0,0.10) 65%, rgba(20,7,0,0.25) 100%);
  z-index: 1;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.7;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero__content { max-width: 620px; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244,176,43,0.10);
  border: 1px solid rgba(244,176,43,0.28);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.badge__dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(244,176,43,0.7);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(244,176,43,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(244,176,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,176,43,0); }
}
.badge span:last-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--fh);
  font-size: clamp(58px, 9vw, 108px);
  font-weight: 900;
  color: #fff;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin-bottom: 26px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
.hero__title em {
  font-family: var(--fser);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--yellow);
  letter-spacing: -3px;
  display: inline-block;
  transform: translateY(4px);
  padding: 0 6px;
}

.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 38px;
  font-weight: 400;
}

.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats */
.hero__stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
  max-width: 640px;
}
.stat {
  flex: 1 1 120px;
  padding-right: 24px;
  margin-bottom: 8px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 12px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stat__num {
  font-family: var(--fh);
  font-size: 48px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -1px;
}
.stat__label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--yellow) 0%, rgba(244,176,43,0) 100%);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -40px; left: 0;
  width: 100%; height: 40px;
  background: linear-gradient(to bottom, rgba(244,176,43,0) 0%, var(--yellow) 100%);
  animation: scrollDown 2.1s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -40px; }
  100% { top: 40px; }
}

/* ═══════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════ */
.marquee {
  background: var(--yellow);
  color: var(--dk);
  padding: 16px 0;
  overflow: hidden;
  border-top: 2px solid var(--dk);
  border-bottom: 2px solid var(--dk);
}
.marquee__track {
  display: flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--fh);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  font-size: 16px;
}
.marquee__track span { flex-shrink: 0; }
.marquee__dot { color: var(--clay); font-size: 8px; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SEASONS
   ═══════════════════════════════════════════ */
.seasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.season {
  position: relative;
  min-height: 380px;
  padding: 44px 48px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.season__bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease-out);
  z-index: 0;
}
.season::after {
  content:''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,7,0,0.15) 0%, rgba(20,7,0,0.55) 100%);
  transition: background 0.4s ease;
}
.season--summer::after { background: linear-gradient(180deg, rgba(200,91,42,0.15) 0%, rgba(123,44,9,0.58) 100%); }
.season--winter::after { background: linear-gradient(180deg, rgba(20,7,0,0.15) 0%, rgba(20,7,0,0.6) 100%); }
.season__content { position: relative; z-index: 2; max-width: 500px; }
.season:hover .season__bg { transform: scale(1.08); }
.season:hover::after { filter: brightness(1.1); }

.season__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 12px;
  color: var(--yellow);
}
.season--summer .season__tag { color: rgba(255,230,200,0.85); }
.season__title {
  font-family: var(--fh);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  line-height: 0.88;
  margin-bottom: 14px;
  color: #fff;
}
.season__info {
  font-size: 15px;
  opacity: 0.82;
  line-height: 1.55;
  max-width: 400px;
}
.season__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  transition: background var(--transition), border-color var(--transition);
}
.season__pill svg { width: 12px; height: 12px; transition: transform var(--transition); }
.season:hover .season__pill { background: var(--yellow); border-color: var(--yellow); color: var(--dk); }
.season:hover .season__pill svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   LESSON CARDS
   ═══════════════════════════════════════════ */
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card::before {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--clay) 0%, var(--yellow) 100%);
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out), opacity var(--transition);
  z-index: 0;
  border-radius: inherit;
}
.card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 0.04; transform: translateY(0); }
.card > * { position: relative; z-index: 1; }

.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform var(--transition);
}
.card:hover .card__icon { transform: rotate(-6deg) scale(1.08); }
.card__icon svg { width: 28px; height: 28px; }
.card__icon--a { background: linear-gradient(135deg, #FFF4CC, #FFE79C); }
.card__icon--b { background: linear-gradient(135deg, #E1F1E2, #B6E0BA); }
.card__icon--c { background: linear-gradient(135deg, #FFEDC5, #FFD48A); }
.card__icon--d { background: linear-gradient(135deg, #E5ECDC, #C4D4AE); }
.card__icon--e { background: linear-gradient(135deg, #F8DFD2, #EFC1AC); }

.card__title {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  line-height: 1;
}
.card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}
.card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 11px;
  font-weight: 700;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: gap var(--transition), color var(--transition);
}
.card__arrow svg { width: 14px; height: 14px; transition: transform var(--transition); }
.card__arrow:hover { color: var(--dk); }
.card__arrow:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   HERITAGE
   ═══════════════════════════════════════════ */
.heritage {
  background: var(--cream);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.heritage::before {
  content:''; position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,91,42,0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.heritage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
}
.heritage__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 440px;
}
.heritage__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.8s var(--ease-out);
}
.heritage__visual:hover .heritage__photo { transform: scale(1.03) rotate(-0.5deg); }
.heritage__badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px; height: 140px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
  transition: transform 0.5s var(--ease-out);
}
.heritage__visual:hover .heritage__badge { transform: rotate(-2deg) scale(1.05); }
.heritage__badge-num {
  font-family: var(--fh);
  font-size: 42px;
  font-weight: 900;
  color: var(--dk);
  line-height: 1;
}
.heritage__badge-txt {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dk);
  margin-top: 4px;
  text-align: center;
  line-height: 1.2;
}
.heritage__text .section__title { margin-bottom: 22px; }
.heritage__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
}
.heritage__names {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.heritage__name {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.heritage__name:last-child { border-bottom: none; }
.heritage__name strong {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dk);
  flex-shrink: 0;
  letter-spacing: -0.3px;
}
.heritage__name span {
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
  text-align: right;
}

/* ═══════════════════════════════════════════
   USP
   ═══════════════════════════════════════════ */
.usps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }

.usp {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.usp:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(244,176,43,0.35);
  transform: translateY(-4px);
}
.usp__icon {
  width: 48px; height: 48px;
  background: rgba(244,176,43,0.14);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.usp__icon svg { width: 22px; height: 22px; }
.usp__title {
  font-family: var(--fh);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  line-height: 1;
}
.usp__desc { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.6; }

/* ═══════════════════════════════════════════
   TRAINERS
   ═══════════════════════════════════════════ */
.trainers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trainer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.trainer-card:hover {
  border-color: var(--clay);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.trainer-card__avatar {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #E39800);
  color: var(--dk);
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.12);
  overflow: hidden;
}
.trainer-card__avatar--2 { background: linear-gradient(135deg, #E8B562, #C88525); }
.trainer-card__avatar--3 { background: linear-gradient(135deg, #D49D4A, #A16B1C); }
.trainer-card__avatar--4 { background: linear-gradient(135deg, #C48532, #8B5818); }
.trainer-card__avatar--5 { background: linear-gradient(135deg, #C0702B, #7A4416); }
.trainer-card__avatar--6 { background: linear-gradient(135deg, #AE571B, #6B3110); }
.trainer-card__avatar:has(> img.cms-injected-img) {
  background: none;
  color: transparent;
}
.trainer-card__avatar > img.cms-injected-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.trainer-card__name { font-weight: 700; font-size: 16px; color: var(--dk); margin-bottom: 4px; line-height: 1.2; }
.trainer-card__role { font-size: 11px; color: var(--muted); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.trainer-card__phone {
  font-size: 13px;
  color: var(--clay);
  font-weight: 700;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid transparent;
  transition: color var(--transition);
}
.trainer-card__phone:hover { color: var(--dk); }

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery-section {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--cream) 0%, #F3EAD9 100%);
}
.gallery-section .section__head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.gallery-section .section__head .eyebrow { justify-content: center; }
.gallery-section .section__head .section__lead { margin: 0 auto; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery__tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
  isolation: isolate;
}
.gallery__tile::after {
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,7,0,0.0), rgba(20,7,0,0.3));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
}
.gallery__tile::before {
  content: '+';
  position: absolute;
  top: 50%; left: 50%;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 0;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  z-index: 2;
}
.gallery__tile:hover { transform: scale(0.98); }
.gallery__tile:hover::after { opacity: 1; }
.gallery__tile:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.gallery__tile--lg   { grid-column: span 2; grid-row: span 2; }
.gallery__tile--tall { grid-row: span 2; }
.gallery__tile--wide { grid-column: span 2; }

/* ═══════════════════════════════════════════
   QUOTES / TESTIMONIALS
   ═══════════════════════════════════════════ */
.quotes { padding: 100px 0; background: #fff; }
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.quote {
  position: relative;
  background: var(--cream);
  border-radius: 14px;
  padding: 40px 32px 32px;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.quote__mark {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  color: var(--clay);
  opacity: 0.18;
}
.quote blockquote {
  font-family: var(--fser);
  font-size: 20px;
  line-height: 1.4;
  color: var(--dk);
  margin-bottom: 24px;
  font-style: italic;
  letter-spacing: -0.3px;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.quote figcaption strong {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dk);
}
.quote figcaption span { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════ */
.location {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
}
.location__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.06);
  transition: transform 6s ease-out;
}
.location.is-visible .location__photo { transform: scale(1); }
.location__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(20,7,0,0.45) 0%, rgba(20,7,0,0.30) 60%, rgba(20,7,0,0.15) 100%);
}
.location__inner { position: relative; z-index: 2; }
.location__content { max-width: 560px; }
.location__content .section__title { margin-bottom: 20px; }
.location__addr {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin: 20px 0 32px;
}
.location__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  max-width: 500px;
}
.location__meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.location__meta-val {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.3px;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  background: var(--yellow);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content:''; position: absolute;
  top: -60%; left: -10%;
  width: 120%; height: 220%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}
.cta-banner__title {
  font-family: var(--fh);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--dk);
  line-height: 0.95;
  letter-spacing: -1px;
}
.cta-banner__sub { font-size: 15px; color: rgba(20,7,0,0.7); margin-top: 8px; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { background: #2E1200; padding: 80px 0 0; color: rgba(255,255,255,0.5); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand .nav__logo { justify-content: flex-start; margin: 0 0 20px; }
.footer__logo-img { max-height: 72px; height: auto; margin: 0; }

.footer__address { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 12px; }
.footer__mail    { font-size: 13px; color: rgba(255,255,255,0.55); display: block; margin-bottom: 24px; transition: color var(--transition); }
.footer__mail:hover { color: var(--yellow); }

.footer__social { display: flex; gap: 10px; }
.footer__social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.footer__social-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.footer__social-btn:hover svg { stroke: var(--dk); }
.footer__social-btn svg { width: 16px; height: 16px; transition: stroke var(--transition); }

.footer__heading {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: block;
  line-height: 1;
  padding: 8px 0;
  transition: color var(--transition), padding-left var(--transition);
}
.footer__link:hover { color: var(--yellow); padding-left: 6px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__bottom span { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.3px; }

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,3,1,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__stage {
  max-width: 92vw;
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: 86vh;
  height: auto;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: lbIn 0.4s var(--ease-out);
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.lightbox__close svg,
.lightbox__nav svg { width: 20px; height: 20px; }
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--yellow); color: var(--dk); border-color: var(--yellow); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fh);
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 16px;
  border-radius: 30px;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; opacity:1; transform:translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__slide.is-active { animation: none; }
  .marquee__track { animation: none; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (max 980px)
   ═══════════════════════════════════════════ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  .section { padding: 72px 0; }

  .hero { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 80px; min-height: 90vh; }
  .hero__title { letter-spacing: -2px; }
  .hero__stats { margin-top: 44px; padding-top: 24px; }
  .stat__num { font-size: 38px; }

  .cards { grid-template-columns: repeat(2, 1fr); }
  .usps { grid-template-columns: 1fr 1fr; }
  .trainers { grid-template-columns: repeat(2, 1fr); }

  .heritage__inner { grid-template-columns: 1fr; gap: 48px; }
  .heritage__visual { max-width: 100%; aspect-ratio: 5/4; }
  .heritage__badge { right: 24px; bottom: -24px; width: 120px; height: 120px; }

  .quotes__grid { grid-template-columns: 1fr; gap: 16px; }

  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; }
  .gallery__tile--lg { grid-column: span 2; grid-row: span 2; }
  .gallery__tile--wide { grid-column: span 2; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }

  .location__meta { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 600px)
   ═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }

  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; min-height: 92vh; }
  .hero__title { letter-spacing: -1.2px; }
  .hero__sub { font-size: 15px; }
  .hero__stats { gap: 20px; margin-top: 40px; }
  .stat { flex: 1 1 45%; padding-right: 0; }
  .stat:not(:last-child)::after { display: none; }
  .stat__num { font-size: 34px; }
  .hero__scroll { display: none; }

  .marquee { padding: 12px 0; }
  .marquee__track { font-size: 14px; gap: 24px; }

  .seasons { grid-template-columns: 1fr; }
  .season { padding: 36px 28px; min-height: 300px; }

  .cards { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 26px 22px; }

  .section__title { font-size: clamp(34px, 9vw, 48px); }

  .heritage { padding: 70px 0; }
  .heritage__badge { width: 100px; height: 100px; }
  .heritage__badge-num { font-size: 32px; }
  .heritage__name { flex-direction: column; gap: 2px; align-items: flex-start; }
  .heritage__name span { margin-left: 0; text-align: left; }

  .usps { grid-template-columns: 1fr; }
  .usp { padding: 24px; }

  .trainers { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trainer-card { padding: 20px; }
  .trainer-card__avatar { width: 54px; height: 54px; font-size: 16px; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; padding: 0 12px; gap: 8px; }
  .gallery__tile--lg { grid-column: span 2; grid-row: span 2; }
  .gallery__tile--tall { grid-column: span 1; grid-row: span 2; }
  .gallery__tile--wide { grid-column: span 2; }

  .location { padding: 80px 0; }
  .location__meta { grid-template-columns: 1fr 1fr; gap: 12px; }

  .cta-banner__inner { flex-direction: column; align-items: flex-start; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; gap: 6px; padding: 18px 20px; }

  .lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ── PARTNER (legacy footer) ── */
.footer__partner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__partner-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,0.3);
  font-family: var(--fb);
  white-space: nowrap;
}
.footer__partner-logo img {
  height: 48px;
  width: auto;
  opacity: .85;
  transition: opacity .15s;
}
.footer__partner-logo:hover img { opacity: 1; }
