/* ============================================
   HYPR Mentoring and Coaching — Stylesheet
   ============================================ */

:root {
  --navy: #0f2a4a;
  --navy-dark: #081a2e;
  --navy-light: #1e4270;
  --gold: #c6a35d;
  --gold-light: #e2c98a;
  --gold-deep: #a5813c;
  --cream: #f8f6f1;
  --white: #ffffff;
  --text: #26303d;
  --text-light: #5c6773;
  --border: #e4e1d8;
  --shadow: 0 10px 30px rgba(15, 42, 74, 0.08);
  --shadow-md: 0 2px 8px rgba(15, 42, 74, 0.06), 0 14px 32px rgba(15, 42, 74, 0.10);
  --shadow-lg: 0 6px 16px rgba(15, 42, 74, 0.10), 0 24px 48px rgba(15, 42, 74, 0.18), 0 0 0 1px rgba(198, 163, 93, 0.12);
  --shadow-gold: 0 10px 26px rgba(198, 163, 93, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 10px;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--navy) var(--cream); scrollbar-width: thin; }

::selection { background: var(--gold); color: var(--navy-dark); }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--navy), var(--navy-light));
  border-radius: 10px;
  border: 3px solid var(--cream);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  background-image: radial-gradient(rgba(15, 42, 74, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background glow, fixed to viewport corners */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}
body::before {
  width: 480px; height: 480px;
  top: -180px; left: -180px;
  background: rgba(198, 163, 93, 0.16);
}
body::after {
  width: 560px; height: 560px;
  bottom: -220px; right: -220px;
  background: rgba(15, 42, 74, 0.12);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

p { margin: 0 0 1em; color: var(--text-light); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75em;
}

.section {
  padding: 88px 0;
}
.section-tight { padding: 56px 0; }
.section-alt { background: var(--white); position: relative; }
.section-alt::before {
  content: "";
  position: absolute;
  top: 26px; right: 26px;
  width: 110px; height: 110px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 18c19 0 32 14 32 32s-14 32-32 32-26-10-26-24 10-20 20-20 16 7 16 15' stroke='%230f2a4a' stroke-width='6' fill='none' stroke-linecap='round' opacity='0.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
.section-alt::after {
  content: "";
  position: absolute;
  bottom: 18px; left: 18px;
  width: 80px; height: 64px;
  background-image:
    radial-gradient(circle 6px at 10px 12px, rgba(15, 42, 74, 0.38), transparent 72%),
    radial-gradient(circle 5px at 38px 6px, rgba(15, 42, 74, 0.3), transparent 72%),
    radial-gradient(circle 7px at 22px 42px, rgba(15, 42, 74, 0.26), transparent 72%),
    radial-gradient(circle 4px at 55px 24px, rgba(15, 42, 74, 0.34), transparent 72%),
    radial-gradient(circle 4px at 50px 42px, rgba(15, 42, 74, 0.3), transparent 72%);
  z-index: 0;
  pointer-events: none;
}
.section-alt > .container { position: relative; z-index: 1; }
.section-navy {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}
.section-navy::before {
  content: "";
  position: absolute;
  top: -120px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 163, 93, 0.14), transparent 70%);
}
.section-navy::after {
  content: "";
  position: absolute;
  bottom: -140px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.75); }
.section-navy > .container { position: relative; z-index: 1; }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { margin: 0; }
.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s var(--ease);
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 14px 32px rgba(198,163,93,0.45); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(198,163,93,0.08); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(15,42,74,0.25); }
.btn-block { width: 100%; justify-content: center; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(15,42,74,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand { display: flex; flex-direction: column; line-height: 1.1; transition: opacity 0.25s ease; }
.brand:hover { opacity: 0.82; }
.brand-mark {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--navy), var(--navy-light) 60%, var(--navy));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
}
.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--navy); font-weight: 700; }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--navy-light); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  background-color: var(--navy-dark);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(198, 163, 93, 0.20), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(30, 66, 112, 0.65), transparent 48%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C240,60 480,0 720,20 C960,40 1200,10 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center, center, center, bottom center;
  background-size: cover, cover, cover, 100% 46px;
  color: var(--white);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: var(--white);
  font-size: 2.9rem;
  margin-bottom: 0.4em;
}
.hero h1 span {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 1.6em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  height: 360px;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(198,163,93,0.35);
}
.orbit-1 { width: 320px; height: 320px; top: 20px; left: 40px; animation: spin 40s linear infinite; }
.orbit-2 { width: 220px; height: 220px; top: 70px; left: 90px; animation: spin 30s linear infinite reverse; }
.orbit-dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  top: -7px; left: 50%;
  box-shadow: 0 0 0 6px rgba(198,163,93,0.15);
  animation: pulseGlow 3s ease-in-out infinite;
}
.hero-badge {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 14px 18px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  animation: float 5s ease-in-out infinite;
  font-size: 0.85rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.hero-badge:hover { border-color: rgba(198,163,93,0.5); background: rgba(255,255,255,0.1); }
.hero-badge strong { display: block; color: var(--gold); font-size: 1.3rem; font-family: var(--font-head); }
.badge-1 { top: 10px; right: 20px; animation-delay: 0.2s; }
.badge-2 { bottom: 20px; left: 10px; animation-delay: 1.2s; }
.badge-3 { bottom: 90px; right: 60px; animation-delay: 2s; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 6px rgba(198,163,93,0.15); }
  50% { box-shadow: 0 0 0 11px rgba(198,163,93,0.28); }
}

/* ===== Stats ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px 0;
  text-align: center;
}
.stats-grid > div { position: relative; }
.stats-grid > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%; right: -10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  transform: translate(50%, -50%);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.3rem;
  color: var(--navy);
  font-weight: 700;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Cards / Grids ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }

.icon-badge {
  position: relative;
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.icon-badge::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(198, 163, 93, 0.45);
  border-radius: 16px;
}
.card:hover .icon-badge { transform: rotate(-6deg) scale(1.06); }

.service-price {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  margin: 6px 0 4px;
}
.service-price span { color: var(--gold); }

.info-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fbf4e3;
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 40px;
  font-size: 0.95rem;
  color: var(--text);
}
.info-banner strong { color: var(--navy); }

.service-card h3 { margin-bottom: 0.3em; font-size: 1.2rem; }
.service-meta {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card .btn { margin-top: 10px; }

/* ===== Why HYPR ===== */
.value-item { display: flex; gap: 18px; align-items: flex-start; }
.value-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
}
.value-item h4 { margin-bottom: 0.3em; font-size: 1.05rem; }
.value-item p { margin-bottom: 0; font-size: 0.94rem; }

/* ===== Testimonial Slider ===== */
.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  min-height: 200px;
}
.testimonial-slider::before {
  content: "\201C";
  position: absolute;
  top: -54px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 9rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.testimonial-slider .testimonial-slide { position: relative; z-index: 1; }
.testimonial-slide {
  display: none;
  text-align: center;
  animation: fadeIn 0.6s ease;
}
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: translateY(0);} }
.testimonial-quote {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 0.85rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.1rem; }

.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.slider-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slider-dot.active { background: var(--gold); transform: scale(1.2); }

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  border-radius: 20px;
  padding: 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 163, 93, 0.22), transparent 70%);
}
.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -90px; left: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 1.6em; }

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Page Hero (interior pages) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  background-color: var(--navy-dark);
  background-image: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C240,60 480,0 720,20 C960,40 1200,10 1440,30 L1440,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: center, bottom center;
  background-size: cover, 100% 40px;
  color: var(--white);
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  top: -140px; right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,163,93,0.18), transparent 70%);
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  bottom: -110px; left: -70px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.14);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0.3em; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 560px; margin: 0 auto; }

/* ===== Coaches ===== */
.coach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.coach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.coach-photo {
  width: 96px; height: 96px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--navy), var(--navy-light));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  border: 3px solid var(--gold-light);
}
.coach-card h3 { margin-bottom: 0.15em; font-size: 1.15rem; }
.coach-sport {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.coach-bio-toggle {
  text-align: left;
  margin-top: 10px;
}
.coach-bio-toggle summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.coach-bio-toggle summary::-webkit-details-marker { display: none; }
.coach-bio-toggle summary::after { content: "\25BE"; transition: transform 0.2s ease; }
.coach-bio-toggle[open] summary::after { transform: rotate(180deg); }
.coach-bio-toggle p {
  font-size: 0.88rem;
  margin-top: 10px;
  text-align: left;
}
.placeholder-note {
  font-size: 0.78rem;
  color: var(--gold);
  text-align: center;
  margin-top: -8px;
}

/* ===== About / Mission ===== */
.acronym-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.acronym-item {
  text-align: center;
  padding: 24px 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.acronym-letter {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 700;
}
.acronym-word { font-weight: 700; color: var(--navy); margin: 4px 0; }
.acronym-item p { font-size: 0.85rem; margin: 0; }

.mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.mission-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.mission-visual blockquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

/* ===== Forms ===== */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,163,93,0.18);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--text-light); margin-top: -10px; }

.star-rating {
  display: flex;
  gap: 6px;
  font-size: 1.6rem;
  color: var(--border);
}
.star-rating button {
  background: none; border: none; cursor: pointer;
  color: inherit;
  padding: 0;
  transition: color 0.15s ease, transform 0.15s ease;
}
.star-rating button.selected,
.star-rating button:hover,
.star-rating button:hover ~ button {
  color: var(--gold);
}
.star-rating[data-rating] button { color: var(--border); }

.form-success {
  display: none;
  background: #eef6ee;
  border: 1px solid #b9dbb9;
  color: #285c28;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}
.form-success.visible { display: block; }

/* ===== Reviews list ===== */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-md);
}
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-author { font-weight: 700; color: var(--navy); }
.review-sport { font-size: 0.78rem; color: var(--text-light); }
.review-card p { margin-bottom: 0; font-size: 0.95rem; }

/* ===== Contact info list ===== */
.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item h4 { margin-bottom: 2px; font-size: 1rem; }
.contact-info-item p { margin-bottom: 0; font-size: 0.92rem; }

/* ===== Footer ===== */
.site-footer {
  position: relative;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-mark {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--white);
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 8px; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-links a, .footer-contact p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  padding: 20px 0;
  color: rgba(255,255,255,0.45);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 220px; }
  .grid-3, .grid-2, .grid-4, .acronym-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-block { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .hero h1 { font-size: 2.1rem; }
  .grid-3, .grid-2, .grid-4, .acronym-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 24px; }
}
