*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --brown-deep: #1E1510;
  --brown-dark: #2C2117;
  --brown-mid: #6B4D30;
  --brown-warm: #8B6840;
  --gold: #D4A84B;
  --gold-light: #E8C86A;
  --gold-pale: #F0DCA0;
  --sand: #E8DDD0;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --green: #7BC67B;
  --green-dark: #5AA55A;
  --text-dark: #1A1510;
  --text-body: #4A3F34;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--brown-deep);
  color: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  padding-left: max(2rem, env(safe-area-inset-left));
  padding-right: max(2rem, env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(30, 21, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 168, 75, 0.1);
  transition: all 0.4s ease;
}

nav.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(30, 21, 16, 0.95);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo svg { width: 36px; height: 36px; }

.nav-logo span {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--sand);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--sand);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--brown-deep) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--sand);
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107, 77, 48, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 80%, rgba(212, 168, 75, 0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 800px;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-crown {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.2s forwards;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--sand);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--brown-deep);
  padding: 1rem 2.4rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.8s forwards;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 75, 0.3);
}

.hero-cta svg { width: 18px; height: 18px; }

.hero-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.5;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 1s forwards;
}

/* ===================== SECTION SHARED ===================== */
section { padding: 5rem 2rem; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--sand);
  opacity: 0.75;
  max-width: 560px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===================== FREE SESSION ===================== */
.free-session {
  background: var(--brown-dark);
  border-top: 1px solid rgba(212, 168, 75, 0.1);
  border-bottom: 1px solid rgba(212, 168, 75, 0.1);
}

.free-session-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.free-session-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.free-session-text h2 em { color: var(--gold); font-style: italic; }

.free-session-text p {
  color: var(--sand);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.free-session-card {
  background: linear-gradient(135deg, rgba(107, 77, 48, 0.4), rgba(44, 33, 23, 0.6));
  border: 1px solid rgba(212, 168, 75, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.free-session-card .icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(212, 168, 75, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.free-session-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.free-session-card p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.free-session-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.free-session-card ul li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--sand);
  opacity: 0.85;
}

.free-session-card ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--brown-deep);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 168, 75, 0.25);
}

/* ===================== DISCIPLINES ===================== */
.disciplines { background: var(--brown-deep); }

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.discipline-card {
  background: linear-gradient(160deg, rgba(107, 77, 48, 0.25), rgba(30, 21, 16, 0.8));
  border: 1px solid rgba(212, 168, 75, 0.12);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.discipline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.discipline-card:hover::before { transform: scaleX(1); }

.discipline-card:hover {
  border-color: rgba(212, 168, 75, 0.3);
  transform: translateY(-4px);
}

.discipline-icon {
  margin-bottom: 1rem;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discipline-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.discipline-card p {
  font-size: 0.85rem;
  opacity: 0.65;
  line-height: 1.5;
}

.discipline-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  background: rgba(212, 168, 75, 0.12);
  color: var(--gold);
}

/* ===================== SCHEDULE ===================== */
.schedule {
  background: var(--brown-dark);
  border-top: 1px solid rgba(212, 168, 75, 0.1);
}

.schedule-header {
  margin-bottom: 2.5rem;
}

.timetable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
}

.timetable thead th {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--cream);
  padding: 0.8rem 0.5rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.timetable thead th.today-col {
  color: var(--gold);
}

.timetable thead th:first-child {
  width: 70px;
  text-align: right;
  padding-right: 1rem;
}

.timetable tbody td {
  vertical-align: top;
  padding: 0;
  height: 72px;
}

.timetable tbody td:first-child {
  text-align: right;
  padding-right: 1rem;
  padding-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sand);
  opacity: 0.6;
  font-variant-numeric: tabular-nums;
  vertical-align: top;
}

.tt-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 64px;
  border-radius: 10px;
  padding: 0.6rem 0.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
  position: relative;
}

.tt-block:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 2;
}

.tt-block .tt-name {
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.tt-block .tt-level {
  font-size: 0.65rem;
  opacity: 0.7;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.tt-block.kickboxing {
  background: rgba(212, 168, 75, 0.18);
  border: 1px solid rgba(212, 168, 75, 0.3);
  color: var(--gold-light);
}

.tt-block.jiujitsu {
  background: rgba(123, 198, 123, 0.15);
  border: 1px solid rgba(123, 198, 123, 0.28);
  color: #9ADE9A;
}

.tt-block.wrestling {
  background: rgba(100, 160, 220, 0.15);
  border: 1px solid rgba(100, 160, 220, 0.28);
  color: #8AC0E8;
}

.tt-block.mma {
  background: rgba(220, 120, 100, 0.15);
  border: 1px solid rgba(220, 120, 100, 0.28);
  color: #E89888;
}

.tt-block.comp {
  background: rgba(180, 130, 200, 0.15);
  border: 1px solid rgba(180, 130, 200, 0.28);
  color: #C8A8D8;
}

.tt-empty {
  height: 100%;
  min-height: 64px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.05);
}

.tt-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tt-legend-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--sand);
  opacity: 0.7;
}

.tt-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.tt-legend-dot.kickboxing { background: rgba(212, 168, 75, 0.5); }
.tt-legend-dot.jiujitsu { background: rgba(123, 198, 123, 0.5); }
.tt-legend-dot.wrestling { background: rgba(100, 160, 220, 0.5); }
.tt-legend-dot.mma { background: rgba(220, 120, 100, 0.5); }
.tt-legend-dot.comp { background: rgba(180, 130, 200, 0.5); }

.schedule-note {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(212, 168, 75, 0.08);
  border-radius: 10px;
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  justify-content: center;
}

/* Mobile timetable */
.timetable-mobile {
  display: none;
}

.ttm-day {
  margin-bottom: 0.75rem;
}

.ttm-day-label {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
  padding-left: 0.25rem;
}

.ttm-day-label.today { color: var(--gold); }

.ttm-classes {
  display: flex;
  gap: 0.5rem;
}

.ttm-block {
  flex: 1;
  border-radius: 10px;
  padding: 0.75rem 0.6rem;
  text-align: center;
}

.ttm-block .tt-time {
  font-size: 0.72rem;
  opacity: 0.65;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.ttm-block .tt-name {
  font-weight: 600;
  font-size: 0.82rem;
  line-height: 1.2;
}

.ttm-block .tt-level {
  font-size: 0.62rem;
  opacity: 0.6;
  margin-top: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ttm-block.kickboxing { background: rgba(212,168,75,0.18); border: 1px solid rgba(212,168,75,0.3); color: var(--gold-light); }
.ttm-block.jiujitsu { background: rgba(123,198,123,0.15); border: 1px solid rgba(123,198,123,0.28); color: #9ADE9A; }
.ttm-block.wrestling { background: rgba(100,160,220,0.15); border: 1px solid rgba(100,160,220,0.28); color: #8AC0E8; }
.ttm-block.mma { background: rgba(220,120,100,0.15); border: 1px solid rgba(220,120,100,0.28); color: #E89888; }
.ttm-block.comp { background: rgba(180,130,200,0.15); border: 1px solid rgba(180,130,200,0.28); color: #C8A8D8; }

@media (max-width: 700px) {
  .timetable-desktop { display: none; }
  .timetable-mobile { display: block; }
}

/* ===================== PRICING ===================== */
.pricing { background: var(--brown-mid); position: relative; }

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(212, 168, 75, 0.08), transparent);
}

.pricing .container { position: relative; }

.pricing-header { text-align: center; margin-bottom: 3rem; }

.pricing-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  color: var(--text-dark);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.price-card.featured {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--gold);
  z-index: 2;
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.2rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-badge.popular {
  background: var(--gold);
  color: var(--brown-deep);
}

.price-badge.flexible {
  background: var(--sand);
  color: var(--brown-mid);
}

.price-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  margin-bottom: 0.25rem;
  color: var(--brown-deep);
  margin-top: 0.5rem;
}

.price-commitment {
  font-size: 0.82rem;
  color: var(--text-body);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.price-amount .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-body);
}

.price-amount .value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1;
}

.price-amount .period {
  font-size: 0.9rem;
  color: var(--text-body);
  opacity: 0.6;
}

.price-savings {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  background: rgba(123, 198, 123, 0.12);
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
}

.price-features {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.2rem;
}

.price-features li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.price-features li .check {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.price-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
}

.price-btn.primary {
  background: var(--gold);
  color: var(--brown-deep);
}

.price-btn.primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.price-btn.outline {
  background: transparent;
  color: var(--brown-mid);
  border: 2px solid rgba(107, 77, 48, 0.25);
}

.price-btn.outline:hover {
  border-color: var(--brown-mid);
  background: rgba(107, 77, 48, 0.05);
}

.pricing-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  opacity: 0.8;
  color: var(--cream);
}

/* ===================== LOCATION ===================== */
.location { background: var(--brown-deep); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-info h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.location-address {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.location-address a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dashed rgba(212, 168, 75, 0.4);
}

.location-address a:hover { border-bottom-color: var(--gold); }

.location-details p {
  font-size: 0.92rem;
  opacity: 0.7;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.location-hours {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: rgba(107, 77, 48, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 75, 0.1);
}

.location-hours h4 {
  font-family: 'DM Serif Display', serif;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.location-hours p {
  font-size: 0.85rem;
  opacity: 0.65;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 75, 0.15);
  aspect-ratio: 1;
  max-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--brown-mid), #8B6840);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 168, 75, 0.15), transparent 60%);
}

.cta-banner .container { position: relative; }

.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--sand);
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-banner .btn-gold {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--brown-deep);
  border-top: 1px solid rgba(212, 168, 75, 0.1);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand svg { width: 30px; height: 30px; }

.footer-brand span {
  font-family: 'DM Serif Display', serif;
  color: var(--sand);
  font-size: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: var(--sand);
  opacity: 0.5;
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.3s;
}

.footer-links a:hover { opacity: 1; }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 75, 0.08);
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 168, 75, 0.06);
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.35;
}

/* ===================== MOBILE ===================== */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-card.featured {
    transform: none;
    order: -1;
  }
  .price-card.featured:hover { transform: translateY(-4px); }
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
  .free-session-inner { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 21, 16, 0.97);
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(212, 168, 75, 0.1);
  }
  .hamburger { display: flex; }

  section { padding: 3.5rem 1.2rem; }
}

@media (max-width: 520px) {
  .disciplines-grid { grid-template-columns: 1fr; }
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}