/* ================================================
   GOLDEN GRIT WRESTLING CLUB — STYLES
   Gold: #FFB800 · Black: #0A0A0A · Dark: #111111
   Fonts: Syne (headings) · Inter (body)
   ================================================ */

/* ---- VARIABLES ---- */
:root {
  --gold:       #FFB800;
  --gold-light: #FFD060;
  --gold-dim:   rgba(255, 184, 0, 0.12);
  --black:      #0A0A0A;
  --d1:         #111111;
  --d2:         #181818;
  --d3:         #222222;
  --d4:         #2C2C2C;
  --gray:       #777777;
  --gray-lt:    #AAAAAA;
  --gray-llr:   #CCCCCC;
  --white:      #FFFFFF;
  --f-head:     'Syne', sans-serif;
  --f-body:     'Inter', sans-serif;
  --ease:       0.3s ease;
  --r:          8px;
  --r-lg:       16px;
  --r-xl:       24px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 7rem 0; }
.section.alt { background: var(--d1); }

/* ---- SHARED SECTION LABELS ---- */
.section-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.label-line { height: 1px; width: 36px; background: var(--gold); opacity: 0.5; }
.section-label {
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.section-heading {
  font-family: var(--f-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 3rem;
}
.section-sub {
  text-align: center;
  color: var(--gray-lt);
  font-size: 1.05rem;
  margin-top: -2.25rem;
  margin-bottom: 3rem;
}
.gold-em { font-style: italic; color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--r);
  font-family: var(--f-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,184,0,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full  { width: 100%; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.95rem; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   NAVBAR
   ====================================== */
/* Fixed header wraps navbar + marquee together */
.fixed-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}
.fixed-header.scrolled {
  background: rgba(10,10,10,0.96);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar {
  padding: 1.25rem 0;
  transition: padding var(--ease);
}
.navbar.scrolled {
  padding: 0.7rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 0.65rem; }
.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-name {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-sub {
  font-family: var(--f-head);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-link {
  padding: 0.45rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-lt);
  text-transform: uppercase;
  transition: color var(--ease);
  border-radius: var(--r);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  font-family: var(--f-head);
  padding: 0.45rem 1.1rem;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,184,0,0.3);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ======================================
   HERO
   ====================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding-bottom: 5rem; /* keep centered content above scroll hint */
  text-align: center;
}

/* Radial gold glow behind logo */
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(255,184,0,0.08) 0%, transparent 65%);
  animation: heroPulse 5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroPulse {
  from { opacity: 0.5; transform: scale(0.96); }
  to   { opacity: 1;   transform: scale(1.06); }
}

/* Subtle grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,184,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,184,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Diagonal accent lines */
.hero-diagonal-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-diagonal-lines::before,
.hero-diagonal-lines::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,184,0,0.15), transparent);
  transform-origin: left center;
}
.hero-diagonal-lines::before {
  top: 30%;
  transform: rotate(-8deg) translateX(-25%);
}
.hero-diagonal-lines::after {
  top: 65%;
  transform: rotate(-8deg) translateX(-10%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 9rem 2rem 4rem;
}

/* Logo rings */
.hero-logo-wrap {
  position: relative;
  width: 324px;
  height: 324px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 311px;
  height: 311px;
  object-fit: contain;
  animation:
    logoEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both,
    logoGlow     4s ease-in-out 1.4s infinite alternate;
}
@keyframes logoEntrance {
  from { opacity: 0; transform: scale(0.5); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes logoGlow {
  from { filter: drop-shadow(0 0 20px rgba(255,184,0,0.3)); }
  to   { filter: drop-shadow(0 0 60px rgba(255,184,0,0.7)); }
}

/* Hero text */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: heroTextIn 1s ease 0.6s both;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--f-head);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 800;
  margin-top: -0.5rem;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
}
.ht-white { color: var(--white); }
.ht-gold  { color: var(--gold); }
.ht-sub   {
  font-family: var(--f-head);
  font-size: clamp(0.85rem, 1.8vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.hero-tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-lt);
  margin-top: 0.25rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: -0.25rem;
  animation: heroTextIn 1s ease 0.9s both;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s ease 1.6s both;
}
.hero-scroll-hint span {
  font-family: var(--f-head);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gray);
}
.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ======================================
   MARQUEE BANNER
   ====================================== */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 0.765rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
}
.msep { color: rgba(0,0,0,0.3) !important; font-size: 0.5rem !important; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ======================================
   ABOUT SECTION
   ====================================== */
.about-section { background: var(--d1); }

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: start;
}
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.about-copy p { color: var(--gray-lt); line-height: 1.85; }
.about-lead {
  font-size: 1.18rem !important;
  color: var(--gray-llr) !important;
  font-weight: 500;
}

/* Pillars */
.pillars { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.75rem; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.1rem 1.25rem;
  background: var(--d2);
  border-radius: var(--r);
  border-left: 3px solid var(--gold);
  transition: transform var(--ease);
}
.pillar:hover { transform: translateX(5px); }
.pillar-num {
  font-family: var(--f-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  min-width: 38px;
}
.pillar h4 {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.pillar p { font-size: 0.88rem; color: var(--gray-lt); line-height: 1.5; }

/* About visual */
.about-visual { position: relative; }
.about-card {
  background: var(--d2);
  border-radius: var(--r-lg);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(255,184,0,0.12);
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease);
}
.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(255,184,0,0.06) 0%, transparent 65%);
}
.about-card:hover { border-color: rgba(255,184,0,0.28); }
.about-card-logo {
  width: 240px;
  height: 240px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 24px rgba(255,184,0,0.3));
}
.about-card-footer {
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gray);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
}
.gold-dot { color: var(--gold); font-size: 0.5rem; }

.about-gold-corner {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: var(--r);
  z-index: -1;
  opacity: 0.7;
}

/* ======================================
   COACH SECTION
   ====================================== */
.coach-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.coach-bg-word {
  position: absolute;
  top: 50%;
  right: -3%;
  transform: translateY(-50%);
  font-family: var(--f-head);
  font-size: 20vw;
  font-weight: 800;
  color: rgba(255,184,0,0.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.05em;
}

.coach-card {
  background: var(--d2);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,184,0,0.1);
  position: relative;
}
.coach-img-side {
  background: var(--d3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  gap: 0;
  padding: 2rem 1.5rem 0;
}
.coach-photo {
  width: 260px;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r);
  flex-shrink: 0;
  border: 1px solid rgba(255,184,0,0.2);
  align-self: stretch;
}
.coach-img-label {
  font-family: var(--f-head);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  background: rgba(10,10,10,0.75);
  width: 100%;
  text-align: center;
  padding: 0.6rem 0;
  backdrop-filter: blur(4px);
}

.coach-info {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.coach-mid {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.coach-mid-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.coach-name-wrap {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.coach-name {
  font-family: var(--f-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
}
.coach-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.coach-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-llr);
  padding: 0.9rem 1.2rem;
  border-left: 2px solid var(--gold);
  background: rgba(255,184,0,0.04);
  border-radius: 0 var(--r) var(--r) 0;
}
.coach-bio {
  font-size: 0.94rem;
  color: var(--gray-lt);
  line-height: 1.85;
}

/* Credentials */
.creds { display: flex; flex-direction: column; gap: 0.85rem; }
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.75rem 1rem;
  background: var(--d3);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.04);
}
.cred-icon { font-size: 1.1rem; line-height: 1; }
.cred-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--white); }
.cred-item span   { font-size: 0.78rem; color: var(--gray); }

/* ======================================
   PROGRAMS SECTION
   ====================================== */
.programs-section { background: var(--d1); }

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.prog-card {
  background: var(--d2);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.prog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,184,0,0.25);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.prog-featured {
  border-color: rgba(255,184,0,0.35);
  background: linear-gradient(150deg, var(--d2) 0%, rgba(255,184,0,0.06) 100%);
}
.prog-featured:hover {
  border-color: rgba(255,184,0,0.6);
  box-shadow: 0 24px 48px rgba(255,184,0,0.12);
}

.prog-badge {
  position: absolute;
  top: -11px;
  left: 2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--f-head);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.22rem 0.72rem;
  border-radius: 20px;
}
.prog-num {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  opacity: 0.55;
}
.prog-icon { color: var(--gold); }
.prog-name {
  font-family: var(--f-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}
.prog-price { display: flex; align-items: baseline; gap: 0.2rem; }
.price-big {
  font-family: var(--f-head);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.price-per { font-size: 1rem; color: var(--gray-lt); font-weight: 500; }
.prog-desc { font-size: 0.92rem; color: var(--gray-lt); line-height: 1.75; }

.prog-list { display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.prog-list li {
  font-size: 0.88rem;
  color: var(--gray-lt);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.prog-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--d3);
  padding: 1.1rem 1.4rem;
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.05);
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--gray-lt);
}
.pn-icon {
  font-size: 1rem;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.8rem;
}
.pricing-note strong { color: var(--white); }
.pricing-note a { color: var(--gold); text-decoration: underline; }

/* ======================================
   SCHEDULE SECTION
   ====================================== */
.schedule-section { background: var(--black); }

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.85rem;
}
.sched-card {
  background: var(--d2);
  border-radius: var(--r);
  padding: 1.2rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--ease), border-color var(--ease);
}
.sched-card:hover { transform: translateY(-3px); }

.sched-on {
  border-color: rgba(255,184,0,0.3);
  background: linear-gradient(180deg, var(--d2), rgba(255,184,0,0.05));
}
.sched-openmat {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--d2), rgba(255,184,0,0.1));
}
.sched-day {
  font-family: var(--f-head);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.sched-off .sched-day { color: var(--gray); }
.sched-session { display: flex; flex-direction: column; gap: 0.2rem; }
.sched-name  { font-size: 0.75rem; font-weight: 600; color: var(--white); }
.sched-time  { font-family: var(--f-head); font-size: 1rem; font-weight: 800; color: var(--gold); }
.sched-rest  { font-size: 0.75rem; color: var(--gray); font-style: italic; }

.sched-notes {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--gray-lt);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sched-notes a { color: var(--gold); }
.sched-opening { font-size: 1rem; color: var(--white); font-weight: 500; }
.sched-opening strong { color: var(--gold); }

/* ======================================
   LOCATION SECTION
   ====================================== */
.location-section { background: var(--d1); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 2rem; }

.address-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--d2);
  border-radius: var(--r);
  border: 1px solid rgba(255,184,0,0.18);
}
.addr-icon { font-size: 1.4rem; }
.addr-text strong {
  display: block;
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.addr-text p { font-size: 0.9rem; color: var(--gray-lt); line-height: 1.7; }

.contact-blocks { display: flex; flex-direction: column; gap: 0.85rem; }
.contact-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--d2);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color var(--ease);
}
.contact-block:hover { border-color: rgba(255,184,0,0.3); }
.cb-icon { font-size: 1.15rem; }
.cb-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.cb-value { display: block; font-size: 0.9rem; color: var(--white); }

.location-map iframe {
  border-radius: var(--r-lg);
  width: 100%;
  height: 420px;
  filter: grayscale(80%) brightness(0.7) contrast(1.2);
  border: 1px solid rgba(255,255,255,0.08);
  transition: filter var(--ease);
}
.location-map:hover iframe { filter: grayscale(50%) brightness(0.85) contrast(1.1); }

/* ======================================
   JOIN CTA SECTION
   ====================================== */
.join-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding: 9rem 0;
  text-align: center;
}
.join-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,0,0.09) 0%, transparent 65%);
  pointer-events: none;
  animation: heroPulse 4s ease-in-out infinite alternate;
}
.join-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
}
.join-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(255,184,0,0.45));
}
.join-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.join-heading {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
}
.join-sub { font-size: 1.05rem; color: var(--gray-lt); margin-top: -0.75rem; }

.join-pricing-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--d2);
  padding: 1.4rem 2.5rem;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,184,0,0.2);
}
.jp-item { text-align: center; }
.jp-amount {
  display: block;
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.jp-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-lt);
  text-transform: uppercase;
  margin-top: 0.2rem;
}
.jp-plus { font-family: var(--f-head); font-size: 1.5rem; color: var(--gray); }
.join-fine { font-size: 0.78rem; color: var(--gray); letter-spacing: 0.05em; }

/* ======================================
   CONTACT SECTION
   ====================================== */
.contact-section { background: var(--d1); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 2rem; }
.contact-intro { color: var(--gray-lt); line-height: 1.8; font-size: 1rem; }

.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.clink {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--gray-lt);
  line-height: 1.5;
  transition: color var(--ease);
}
.clink:hover { color: var(--white); }
.clink > span:first-child { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* Form */
.contact-form {
  background: var(--d2);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--gray-lt);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--d3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.94rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  width: 100%;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,184,0,0.1);
}
.form-group textarea { resize: vertical; }
.form-note {
  font-size: 0.74rem;
  color: var(--gray);
  text-align: center;
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: var(--d1);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4.5rem 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,184,0,0.2));
}
.footer-tagline {
  font-family: var(--f-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col h4 {
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.footer-col a, .footer-col p {
  font-size: 0.88rem;
  color: var(--gray-lt);
  line-height: 1.6;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
}


/* ======================================
   MERCH SECTION
   ====================================== */
.merch-section { background: var(--black); }
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.merch-card {
  background: var(--d2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.merch-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,184,0,0.28);
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}
.merch-card-soon {
  background: linear-gradient(180deg, var(--d2), rgba(255,255,255,0.02));
  border-style: dashed;
}

.merch-image-wrap {
  background: linear-gradient(180deg, #303030 0%, #242424 100%);
  border-radius: calc(var(--r-lg) - 4px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.merch-image-wrap--white {
  background: linear-gradient(180deg, #303030 0%, #242424 100%);
  border: 1px solid rgba(255,255,255,0.05);
}
.merch-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.merch-image--white {
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.12));
}

.merch-card-top { display: flex; flex-direction: column; gap: 0.65rem; }
.merch-eyebrow {
  font-family: var(--f-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.merch-title {
  font-family: var(--f-head);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.05;
}
.merch-price {
  font-family: var(--f-head);
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.merch-copy { color: var(--gray-lt); line-height: 1.75; font-size: 0.93rem; }
.merch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.merch-meta span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gray-lt);
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--d3);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
}
.merch-size-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}
.merch-size-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.merch-size-link, .merch-size-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: var(--r);
  font-family: var(--f-head);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.merch-size-link {
  border: 1px solid rgba(255,184,0,0.24);
  background: var(--d3);
  color: var(--white);
  transition: all var(--ease);
}
.merch-size-link:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.merch-size-pill {
  border: 1px dashed rgba(255,255,255,0.12);
  color: var(--gray);
  background: rgba(255,255,255,0.02);
}
.merch-size-pill--soon { opacity: 0.9; }
.merch-note { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 1100px) {
  .coach-photo { width: 160px; height: 130px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
}

@media (max-width: 900px) {
  .coach-info { padding: 2rem; }
  .coach-mid { flex-direction: column; }
  .coach-photo { width: 100%; height: 220px; }
  .programs-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .merch-grid { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .schedule-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(10,10,10,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    z-index: 999;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.2rem; padding: 0.6rem 1.5rem; }
  .hamburger { display: flex; }

  .hero-actions { flex-direction: column; align-items: center; width: 100%; max-width: 280px; }
  .hero-actions .btn { width: 100%; }

  .join-pricing-row { flex-direction: column; gap: 1rem; }
  .merch-size-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .merch-size-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .schedule-grid { grid-template-columns: repeat(3, 1fr); }

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

@media (max-width: 560px) {
  .section { padding: 5rem 0; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-logo { width: 300px; height: 300px; }
  .hero-logo-wrap { width: 320px; height: 320px; }
  .section-heading { text-align: left; }
  .section-label-row { justify-content: flex-start; }
  .section-sub { text-align: left; }
  .contact-form { padding: 1.75rem; }
  .merch-card { padding: 1.4rem; }
  .merch-size-grid, .merch-size-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
