/* ============================================================
   Kent Grapple — Design System v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --teal:        #2e7d82;
  --teal-dark:   #1f5c60;
  --teal-light:  #5ab0b5;
  --teal-pale:   #e8f5f5;
  --teal-muted:  rgba(46,125,130,0.12);

  --black:       #080808;
  --dark-1:      #0f0f0f;
  --dark-2:      #181818;
  --dark-3:      #242424;
  --dark-4:      #2e2e2e;

  --body-text:   #3d3d3d;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --border-dark: rgba(255,255,255,0.07);
  --surface:     #f5f6f7;
  --surface-2:   #efefef;
  --white:       #ffffff;

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --section-py:    96px;
  --section-py-sm: 60px;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.06);

  --ease:      0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  0.35s cubic-bezier(0, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #111;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ---------- Layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-pad { padding: var(--section-py) 0; }
.text-center { text-align: center; }

/* ---------- Section Headers ---------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.5;
}

/* alias for backward compat */
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.section-label::before, .section-label::after { content: ''; display: block; width: 20px; height: 1.5px; background: currentColor; opacity: 0.5; }

.section-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: #111;
}
.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.75;
  font-weight: 400;
}
.divider {
  width: 36px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 0 auto 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
              transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 8px 24px rgba(46,125,130,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.7);
}
.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ---------- Scroll fade ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow var(--ease);
}
.site-nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.5); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo-text { font-weight: 900; font-size: 19px; color: var(--white); letter-spacing: -0.02em; }
.nav-logo-text span { color: var(--teal-light); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--teal-light);
  border-radius: 2px;
}
.nav-cta {
  margin-left: 10px;
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--teal-dark) !important; box-shadow: 0 4px 16px rgba(46,125,130,0.45) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.28s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--dark-2);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 28px; border-radius: 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-links a.active::after { bottom: 0; left: 0; right: 0; border-radius: 0; }
  .nav-cta { margin: 14px 24px 0 !important; border-radius: var(--radius-sm) !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-color: var(--dark-1);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Layered gradient for strong left text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.72) 45%, rgba(0,0,0,0.22) 100%),
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 45%);
}

/* Teal accent stripe */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--teal-light), var(--teal-dark));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  color: var(--white);
  padding: 56px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,125,130,0.2);
  border: 1px solid rgba(90,176,181,0.4);
  color: #8fd6da;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(90,176,181,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(90,176,181,0); }
}
.hero h1 {
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  color: var(--teal-light);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
}
.hero-scroll-hint svg { animation: bounce 2s ease infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 60% { transform: translateY(6px); } }

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 88px 0 76px;
  text-align: center;
  color: var(--white);
  background: var(--dark-1);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.78) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--teal-light) 30%, var(--teal) 60%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.55); font-size: 17px; }

/* ============================================================
   VALUE STRIP
   ============================================================ */
.value-strip { background: var(--teal); }
.value-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background var(--ease);
}
.value-item:hover { background: rgba(255,255,255,0.06); }
.value-item:last-child { border-right: none; }
.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--white); letter-spacing: -0.01em; }
.value-item p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.55; }

@media (max-width: 680px) {
  .value-strip-inner { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .value-item:last-child { border-bottom: none; }
}

/* ============================================================
   CLASS CARDS
   ============================================================ */
.classes-section { background: var(--surface); }
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 22px;
}
.class-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease-out), box-shadow var(--ease-out);
  border: 1px solid var(--border);
}
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.class-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.class-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.class-card:hover .class-card-img-wrap img { transform: scale(1.07); }

/* Type badge overlaid on image bottom-left */
.class-card-type-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.class-card-img-placeholder {
  height: 200px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 48px;
}
.class-card-body { padding: 18px 20px 22px; }
.class-card-body h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
  letter-spacing: -0.02em;
}
.class-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 5px;
  font-weight: 500;
}
.class-meta svg { color: var(--teal); flex-shrink: 0; }

/* ============================================================
   WEEKLY SCHEDULE
   ============================================================ */
.schedule-section { background: var(--white); }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.schedule-day {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
/* Weekend days slightly different */
.schedule-day:nth-child(6),
.schedule-day:nth-child(7) { background: #f0f7f8; border-color: #d8eced; }

.schedule-day-header {
  background: var(--dark-1);
  color: var(--white);
  padding: 11px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.schedule-day:nth-child(6) .schedule-day-header,
.schedule-day:nth-child(7) .schedule-day-header { background: var(--teal-dark); }

.schedule-day-body { padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.schedule-slot {
  border-radius: 5px;
  padding: 8px 9px;
  font-size: 11px;
  line-height: 1.35;
  cursor: default;
  transition: filter var(--ease);
}
.schedule-slot:hover { filter: brightness(0.94); }
.schedule-slot .slot-time { font-weight: 800; font-size: 12px; display: block; margin-bottom: 1px; }
.schedule-slot .slot-class { font-weight: 500; opacity: 0.85; }

.slot-gi    { background: #dff0f1; color: #1a545a; }
.slot-nogi  { background: #fef3e2; color: #7a4200; }
.slot-kids  { background: #e8f5e9; color: #1b5e20; }
.slot-mat   { background: #ede7f6; color: #311b92; }

/* Schedule legend */
.schedule-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  justify-content: center;
}

/* Mobile table fallback */
.schedule-table-wrap { display: none; overflow-x: auto; }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.schedule-table thead { background: var(--teal); color: var(--white); }
.schedule-table th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.schedule-table tbody tr:nth-child(even) { background: var(--surface); }
.schedule-table tbody tr { transition: background var(--ease); }
.schedule-table tbody tr:hover { background: #e6f4f5; }
.schedule-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.class-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.badge-gi    { background: #dff0f1; color: #1a545a; }
.badge-nogi  { background: #fef3e2; color: #7a4200; }
.badge-kids  { background: #e8f5e9; color: #1b5e20; }
.badge-mat   { background: #ede7f6; color: #311b92; }

@media (max-width: 780px) {
  .schedule-grid { display: none; }
  .schedule-table-wrap { display: block; }
}

/* ============================================================
   ABOUT TEASER (Homepage dark section)
   ============================================================ */
.about-teaser { background: var(--dark-2); color: var(--white); }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-teaser-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-teaser-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
/* Teal corner accent */
.about-teaser-img::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--teal-light);
  border-left: 3px solid var(--teal-light);
  border-radius: var(--radius-xl) 0 0 0;
  z-index: 1;
  pointer-events: none;
}
.about-teaser-img::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--teal-light);
  border-right: 3px solid var(--teal-light);
  border-radius: 0 0 var(--radius-xl) 0;
  pointer-events: none;
}
.about-teaser-img-placeholder {
  width: 100%;
  height: 480px;
  background: var(--dark-3);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.about-teaser-text .section-label { color: var(--teal-light); }
.about-teaser-text .section-title { color: var(--white); }
.about-teaser-text p { color: rgba(255,255,255,0.58); margin-bottom: 16px; font-size: 16px; line-height: 1.78; }

.about-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
}
.about-stat {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.about-stat:last-child { border-right: none; }
.about-stat h3 {
  font-size: 34px;
  color: var(--teal-light);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}
.about-stat p { font-size: 11px; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.08em; margin: 0; line-height: 1.4; }

@media (max-width: 820px) { .about-teaser-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ============================================================
   TRAINER CARDS (homepage grid)
   ============================================================ */
.trainers-section { background: var(--surface); }
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.trainer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.trainer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.trainer-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.trainer-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.trainer-card:hover .trainer-card-img-wrap img { transform: scale(1.04); }

/* Belt badge overlaid on image */
.trainer-card-belt-overlay {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 2;
}

.trainer-card-placeholder {
  width: 100%; height: 300px; background: var(--dark-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--teal);
}
.trainer-card-body {
  padding: 18px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.trainer-card-body h3 { font-size: 17px; font-weight: 800; color: #111; margin-bottom: 2px; letter-spacing: -0.02em; }
.trainer-role { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.trainer-belt {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--teal);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  background: var(--teal);
  overflow: hidden;
}
/* Subtle halftone-style circles */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 50px solid rgba(0,0,0,0.06);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--white);
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 820px) { .about-intro-grid { grid-template-columns: 1fr; gap: 44px; } }
.about-intro-img img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius-xl);
}

.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  transition: transform var(--ease), box-shadow var(--ease);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card-icon { font-size: 26px; margin-bottom: 14px; }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.program-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.program-icon { font-size: 28px; margin-bottom: 14px; }
.program-card-bar { height: 3px; background: var(--teal); border-radius: 2px; margin-bottom: 18px; width: 32px; }
.program-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.program-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Location dark strip */
.location-strip { background: var(--dark-2); }
.location-strip .section-title { color: var(--white); }

/* ============================================================
   TRAINERS PAGE (full profile cards)
   ============================================================ */
.trainer-full-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 360px 1fr;
  border: 1px solid var(--border);
}
.trainer-full-card.reverse { direction: rtl; }
.trainer-full-card.reverse > * { direction: ltr; }
.trainer-full-card-img { position: relative; overflow: hidden; }
.trainer-full-card-img img {
  width: 100%; height: 100%; min-height: 420px;
  object-fit: cover; object-position: top; display: block;
}
.trainer-full-card-img-placeholder {
  width: 100%; min-height: 420px; background: var(--dark-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--teal);
}
.trainer-full-body {
  padding: 52px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.trainer-full-body h2 { font-size: 36px; font-weight: 900; margin-bottom: 4px; color: #111; }
.trainer-full-body .trainer-role {
  font-size: 12px; color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 600; margin-bottom: 28px;
}
.trainer-full-body p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.trainer-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 24px 0;
}
.trainer-stat {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--border);
}
.trainer-stat h4 { font-size: 18px; color: var(--teal); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 2px; }
.trainer-stat p { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin: 0; }

@media (max-width: 820px) {
  .trainer-full-card { grid-template-columns: 1fr; direction: ltr !important; }
  .trainer-full-card-img img, .trainer-full-card-img-placeholder { min-height: 300px; }
  .trainer-full-body { padding: 32px 28px; }
}

/* ============================================================
   KIDS BJJ
   ============================================================ */
.kids-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 820px) { .kids-intro-grid { grid-template-columns: 1fr; gap: 44px; } }
.kids-intro-img img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-xl); }

.kids-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.kids-feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease), box-shadow var(--ease);
}
.kids-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kids-feature-icon { font-size: 30px; margin-bottom: 14px; }
.kids-feature h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.kids-feature p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.kids-schedule-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.kids-schedule-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}
.kids-schedule-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.kids-schedule-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kids-schedule-card:hover::before { transform: scaleX(1); }
.kids-schedule-card .day { font-weight: 900; font-size: 20px; color: var(--teal); margin-bottom: 6px; letter-spacing: -0.02em; }
.kids-schedule-card .time { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 4px; }
.kids-schedule-card .duration { font-size: 13px; color: var(--muted); }

.instructor-spotlight { background: var(--dark-2); }
.instructor-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; align-items: center; }
@media (max-width: 820px) { .instructor-grid { grid-template-columns: 1fr; gap: 36px; } }
.instructor-img { border-radius: var(--radius-lg); overflow: hidden; }
.instructor-img img { width: 100%; object-fit: cover; object-position: top; border-radius: var(--radius-lg); }
.instructor-text .section-title { color: var(--white); }
.instructor-text p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.8; margin-bottom: 14px; }

/* FAQ */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--teal); }
.faq-item summary {
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: #111;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}
.faq-item[open] summary { color: var(--teal); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }

.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--teal-pale);
  border: 1px solid rgba(46,125,130,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; font-weight: 700; }
.contact-info-item p, .contact-info-item a { font-size: 15px; color: #111; font-weight: 500; }
.contact-info-item a:hover { color: var(--teal); }

.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form .form-group { margin-bottom: 15px; }
.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: #222;
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46,125,130,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .contact-form .form-row { grid-template-columns: 1fr; } }

.map-embed {
  margin-top: 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.map-embed iframe { display: block; width: 100%; }

/* ============================================================
   SOCIAL & FOOTER
   ============================================================ */
.social-links { display: flex; gap: 8px; margin-top: 18px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.social-link:hover { background: var(--teal); color: var(--white); border-color: var(--teal); transform: translateY(-2px); }

.site-footer { background: var(--black); color: var(--muted); padding: 68px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.3); margin-top: 14px; max-width: 280px; line-height: 1.75; }
.footer-logo-text { font-weight: 900; font-size: 20px; color: var(--white); letter-spacing: -0.02em; }
.footer-logo-text span { color: var(--teal-light); }
.footer-col h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.32); font-size: 14px; transition: color var(--ease); }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 11px; font-size: 14px; color: rgba(255,255,255,0.32); line-height: 1.55; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.32); transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--teal-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.2);
  flex-wrap: wrap; gap: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
  :root { --section-py: 60px; }
  .container { padding: 0 20px; }
  .hero { min-height: 520px; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn { justify-content: center; }
  .about-stat-row { grid-template-columns: 1fr; }
  .trainer-stats { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ============================================================
   WHITE RIBBON FOOTER BADGE
   ============================================================ */
.footer-white-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding: 11px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease);
}
.footer-white-ribbon:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); }
.footer-white-ribbon-text { display: flex; flex-direction: column; line-height: 1.3; }
.footer-white-ribbon-text strong { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; }
.footer-white-ribbon-text span { font-size: 10px; color: rgba(255,255,255,0.38); letter-spacing: 0.02em; }

.footer-ukbjja {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
  padding: 11px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease);
}
.footer-ukbjja:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); }
.footer-ukbjja-text { display: flex; flex-direction: column; line-height: 1.3; }
.footer-ukbjja-text strong { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; }
.footer-ukbjja-text span { font-size: 10px; color: rgba(255,255,255,0.38); letter-spacing: 0.02em; }

/* ============================================================
   SAFEGUARDING PAGE
   ============================================================ */
.safeguarding-contact-card {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 640px) { .safeguarding-contact-card { grid-template-columns: 1fr; padding: 28px 24px; margin-bottom: 36px; } }
.safeguarding-contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-light); margin-bottom: 8px; }
.safeguarding-contact-name { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.safeguarding-contact-email {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; color: rgba(255,255,255,0.8);
  text-decoration: none; transition: color var(--ease);
}
.safeguarding-contact-email:hover { color: white; }
.safeguarding-contact-note { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 10px; }
.safeguarding-download-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--teal-dark);
  font-size: 14px; font-weight: 700;
  padding: 14px 22px; border-radius: var(--radius);
  text-decoration: none; white-space: nowrap;
  transition: box-shadow var(--ease), transform var(--ease);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.safeguarding-download-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.policy-intro-card {
  background: var(--teal-pale);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 48px;
  font-size: 15px; color: var(--body-text); line-height: 1.75;
}

.policy-grid { display: flex; flex-direction: column; gap: 20px; margin-bottom: 64px; }
.policy-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 36px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease);
}
.policy-card:hover { box-shadow: var(--shadow-md); }
@media (max-width: 600px) { .policy-card { padding: 22px 20px; } }
.policy-card-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.policy-number {
  flex-shrink: 0; width: 34px; height: 34px;
  background: var(--teal); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; margin-top: 1px;
}
.policy-card-title { font-size: 17px; font-weight: 700; color: var(--black); line-height: 1.3; }
.policy-card p { font-size: 15px; color: var(--body-text); line-height: 1.75; margin-bottom: 10px; }
.policy-card p:last-child { margin-bottom: 0; }
.policy-card ul { padding-left: 18px; margin: 8px 0 10px; }
.policy-card ul li { font-size: 15px; color: var(--body-text); line-height: 1.7; margin-bottom: 5px; }
.policy-card ul li strong { color: var(--black); }
.policy-card ol { padding-left: 18px; margin: 8px 0 10px; }
.policy-card ol li { font-size: 15px; color: var(--body-text); line-height: 1.7; margin-bottom: 5px; }
.policy-sub-list { margin-top: 6px !important; margin-bottom: 6px !important; padding-left: 20px !important; }
.policy-sub-list li { font-size: 14px !important; color: var(--muted) !important; }

.policy-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--border);
}
.policy-meta-item { font-size: 13px; color: var(--muted); }
.policy-meta-item strong { color: var(--body-text); display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }

.white-ribbon-section {
  background: var(--dark-1);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}
@media (max-width: 680px) { .white-ribbon-section { grid-template-columns: 1fr; padding: 32px 24px; } }
.white-ribbon-section h2 { color: white; font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.white-ribbon-section p { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.75; }
.white-ribbon-logo-card {
  background: white; border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center; min-width: 140px;
}
.white-ribbon-logo-card strong { font-size: 13px; font-weight: 800; color: var(--black); letter-spacing: -0.01em; }
.white-ribbon-logo-card span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

.safeguarding-bottom-cta {
  background: var(--teal-pale); border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 20px;
}
@media (max-width: 600px) { .safeguarding-bottom-cta { padding: 28px 24px; } }
.safeguarding-bottom-cta h3 { font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.safeguarding-bottom-cta p { font-size: 14px; color: var(--muted); }

/* ========== SPONSORS PAGE ========== */
.sponsor-full-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}
.sponsor-full-card.reverse { grid-template-columns: 1fr 320px; }
.sponsor-full-card.reverse .sponsor-logo-panel { order: 2; }
.sponsor-full-card.reverse .sponsor-full-body { order: 1; }
@media (max-width: 860px) {
  .sponsor-full-card,
  .sponsor-full-card.reverse { grid-template-columns: 1fr; }
  .sponsor-full-card.reverse .sponsor-logo-panel,
  .sponsor-full-card.reverse .sponsor-full-body { order: unset; }
}
.sponsor-logo-panel {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.sponsor-logo-panel img { max-width: 100%; max-height: 160px; object-fit: contain; }
.sponsor-logo-fallback { font-size: 18px; font-weight: 700; color: var(--muted); text-align: center; }
.sponsor-full-body h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--black); margin-bottom: 0; }
.sponsor-full-body p { color: var(--muted); line-height: 1.8; font-size: 16px; }
.sponsor-btn { display: inline-flex; align-items: center; margin-top: 28px; }
.sponsor-cta-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) { .sponsor-cta-box { padding: 28px 24px; } }

/* Sponsor logo strip (homepage) */
.sponsor-strip { background: var(--surface); padding: 48px 0; }
.sponsor-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sponsor-strip-logo {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 140px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.sponsor-strip-logo:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sponsor-strip-logo img { max-height: 48px; max-width: 140px; object-fit: contain; }
@media (max-width: 600px) { .sponsor-strip-inner { gap: 20px; } .sponsor-strip-logo { min-width: 110px; padding: 14px 20px; } }
