/* ═══════════════════════════════════════════════════════════
   THREE BROTHER TAEKWONDO — STYLES
   Palette: Volcanic Black + Crimson Red + Gold
   Fonts: Bebas Neue (display) + Plus Jakarta Sans (body)
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --black:       #0D0D0D;
  --black-2:     #1A1A1A;
  --black-3:     #242424;
  --red:         #DC2626;
  --red-dark:    #991B1B;
  --red-light:   #EF4444;
  --gold:        #D4A017;
  --gold-light:  #F0C040;
  --white:       #FAFAFA;
  --white-dim:   #E8E4DF;
  --grey:        #6B7280;
  --grey-light:  #9CA3AF;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;

  --shadow-red:  0 8px 32px rgba(220, 38, 38, 0.25);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.5);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ── Utility ── */
.accent { color: var(--red); }
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--red);
}
.section-label.light { color: var(--gold); }
.section-label.light::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-light);
  max-width: 520px;
  line-height: 1.7;
}
.section-desc.light { color: rgba(255,255,255,0.65); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  width: 100%;
  justify-content: center;
}
.btn-outline-light:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-full { width: 100%; justify-content: center; }

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

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  font-size: 1.8rem;
  color: var(--red);
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(220,38,38,0.5));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--white);
}
.logo-text small {
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.15em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.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;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Animated geometric pattern background */
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(220, 38, 38, 0.03) 40px,
      rgba(220, 38, 38, 0.03) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(220, 38, 38, 0.03) 40px,
      rgba(220, 38, 38, 0.03) 41px
    );
  animation: patternShift 20s linear infinite;
}

@keyframes patternShift {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 80px 80px, -80px 80px; }
}

/* Red gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(220,38,38,0.12) 0%, transparent 70%),
    linear-gradient(135deg, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  max-width: 700px;
  margin-left: max(2rem, calc((100vw - 1200px) / 2));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.3);
  color: var(--red-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation-delay: 0.1s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  animation-delay: 0.2s;
}

.title-line {
  display: block;
}
.title-line.accent {
  color: var(--red);
  text-shadow: 0 0 40px rgba(220,38,38,0.4);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation-delay: 0.3s;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation-delay: 0.4s;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation-delay: 0.5s;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.5;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* Decorative silhouette */
.hero-silhouette {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: min(300px, 30vw);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip {
  background: var(--red);
  padding: 2rem 0;
  position: relative;
  z-index: 3;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
  text-align: center;
  animation-delay: 0.1s;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
  padding: 7rem 0 9rem;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Image side */
.about-visual {
  position: relative;
  animation-delay: 0.1s;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image-frame:hover img {
  transform: scale(1.04);
}

.image-accent-border {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(220,38,38,0.3);
  border-radius: var(--radius-md);
  pointer-events: none;
}
.image-accent-border::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-md);
}

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-red);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}
.badge-icon { font-size: 1.5rem; }

/* Content side */
.about-content {
  animation-delay: 0.25s;
}

.about-text {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.value-item:hover {
  background: rgba(220,38,38,0.08);
  border-color: rgba(220,38,38,0.2);
}

.value-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.value-item p {
  font-size: 0.82rem;
  color: var(--grey-light);
  line-height: 1.5;
}

/* Diagonal divider */
.section-diagonal {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--black);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ═══════════════════════════════════════════
   SCHEDULE
═══════════════════════════════════════════ */
.schedule {
  padding: 7rem 0;
  background: var(--black);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-label {
  justify-content: center;
}
.section-header .section-label::before { display: none; }
.section-header .section-desc {
  margin: 0 auto;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.schedule-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.schedule-card:hover {
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
}
.schedule-card:hover::before {
  transform: scaleX(1);
}

.schedule-card.morning { animation-delay: 0.1s; }
.schedule-card.evening { animation-delay: 0.3s; }

.schedule-card-header {
  margin-bottom: 1.5rem;
}
.session-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.session-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.schedule-time {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.time-start, .time-end {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.time-ampm {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
}
.time-sep {
  font-size: 1.5rem;
  color: var(--grey);
  margin: 0 0.25rem;
}

.schedule-duration {
  margin-bottom: 1.5rem;
}
.duration-badge {
  display: inline-block;
  background: rgba(220,38,38,0.15);
  color: var(--red-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(220,38,38,0.25);
}

.schedule-features {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.schedule-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  padding-left: 0.25rem;
}

/* Divider between cards */
.schedule-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation-delay: 0.2s;
}
.divider-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}
.divider-or {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}

/* Weekly table */
.weekly-table {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  animation-delay: 0.4s;
}

.weekly-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
}

.day-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.day-cell.active {
  background: rgba(220,38,38,0.12);
  border: 1px solid rgba(220,38,38,0.25);
}
.day-cell.active:hover {
  background: rgba(220,38,38,0.22);
}
.day-cell.rest {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.day-cell span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}
.day-cell.rest span { color: var(--grey); }
.day-cell small {
  font-size: 0.6rem;
  color: var(--grey);
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  padding: 7rem 0;
  background: var(--black-2);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* Info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation-delay: 0.1s;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(220,38,38,0.25);
  background: rgba(220,38,38,0.05);
}

.contact-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220,38,38,0.12);
  border-radius: var(--radius-sm);
}

.contact-card-content h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-card-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.contact-card-content a {
  color: var(--red-light);
  transition: var(--transition);
}
.contact-card-content a:hover { color: var(--white); }
.contact-card-content small {
  font-size: 0.75rem;
  color: var(--grey);
}

/* Form */
.contact-form-wrap {
  animation-delay: 0.25s;
}

.contact-form {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(220,38,38,0.05);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.form-group select option {
  background: var(--black-3);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-sm);
  color: #4ade80;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand .logo-icon {
  font-size: 2rem;
  color: var(--red);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--red); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
}
.footer-contact span {
  font-size: 0.82rem;
  color: var(--grey-light);
}
.footer-contact a {
  color: var(--red-light);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual {
    max-width: 480px;
    margin: 0 auto;
  }
  .about-badge-float {
    right: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-contact { text-align: left; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem;
    border-left: 1px solid rgba(220,38,38,0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; }
  .nav-toggle { display: flex; z-index: 1000; }

  /* Hero */
  .hero-content {
    padding: 7rem 1.5rem 4rem;
    margin-left: 0;
    max-width: 100%;
  }
  .hero-silhouette { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Stats */
  .stats-container { gap: 0; }
  .stat-item { padding: 0.5rem 1.5rem; }
  .stat-divider { display: none; }

  /* Schedule */
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .schedule-divider {
    flex-direction: row;
    justify-content: center;
  }
  .divider-line {
    width: 60px;
    height: 1px;
  }

  /* Days grid */
  .days-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Footer */
  .footer-links { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .section-container { padding: 0 1.25rem; }

  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }

  .stat-item { padding: 0.5rem 1rem; }
  .stat-number { font-size: 2rem; }

  .about { padding: 5rem 0 7rem; }
  .schedule { padding: 5rem 0; }
  .contact { padding: 5rem 0; }

  .schedule-card { padding: 1.75rem 1.25rem; }
  .contact-form { padding: 1.75rem 1.25rem; }

  .days-grid { grid-template-columns: repeat(4, 1fr); }

  .footer-container { padding: 0 1.25rem 2rem; }
  .footer-links { gap: 1rem; }
}