/*
Theme Name: Partisan Kampsport
Theme URI: https://partisankampsport.se
Author: AIS Agent
Description: Ett modernt, mörkt tema för kampsportsföreningar.
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: partisan
*/

:root {
  --color-dark: #050505;
  --color-dark-alt: #0a0a0a;
  --color-copper: #991B1B;
  --color-orange: #B82727;
  --color-gold: #D4A843;
  --color-cream: #F0EDE8;
  --color-white: #FFFFFF;
  --color-off-white: rgba(255, 255, 255, 0.85);
  --color-off-white-old: rgba(255, 250, 245, 0.85);
  --color-red: #991B1B;
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --max-width: 1200px;
  --section-padding: 120px 24px;
  --transition-smooth: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

::selection {
  background: var(--color-red);
  color: var(--color-white);
}

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

a {
  color: var(--color-red);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

a:hover {
  color: var(--color-orange);
}

/* ===================== */
/* NOISE OVERLAY         */
/* ===================== */

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none !important;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ===================== */
/* GRID BACKGROUND       */
/* ===================== */

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153, 27, 27, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 27, 27, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* ===================== */
/* BUTTONS               */
/* ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn--primary:hover {
  background: transparent;
  color: var(--color-red);
  box-shadow: 0 0 30px rgba(153, 27, 27, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn--secondary:hover {
  background: var(--color-red);
  color: var(--color-white);
}

.btn--red {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn--red:hover {
  background: transparent;
  color: var(--color-red);
  box-shadow: 0 0 30px rgba(153, 27, 27, 0.3);
}

/* ===================== */
/* SITE HEADER           */
/* ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-smooth);
}

.site-header--scrolled {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  padding: 12px 24px;
  border-bottom: 1px solid rgba(153, 27, 27, 0.15);
}

.site-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--color-white);
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo img {
  height: 48px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-off-white);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-smooth);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width var(--transition-smooth);
}

.site-nav a:hover {
  color: var(--color-white);
}

.site-nav a:hover::after {
  width: 100%;
}

/* ===================== */
/* HERO                  */
/* ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(153, 27, 27, 0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(153, 27, 27, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.hero__lightning {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  z-index: 1;
  pointer-events: none;
}

.hero__lightning-svg {
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.hero__lightning-path {
  stroke: #991B1B;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw-lightning 4s ease-in-out infinite;
}

@keyframes draw-lightning {
  0% { stroke-dashoffset: 2000; opacity: 0; }
  20% { stroke-dashoffset: 0; opacity: 0.5; }
  30% { stroke-dashoffset: 0; opacity: 0.5; }
  50% { stroke-dashoffset: 2000; opacity: 0; }
  100% { stroke-dashoffset: 2000; opacity: 0; }
}

.hero__circle {
  position: absolute;
  border: 1px solid rgba(153, 27, 27, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero__circle--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero__circle--2 {
  width: 250px;
  height: 250px;
  bottom: 50px;
  left: -60px;
  border-color: rgba(153, 27, 27, 0.1);
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero__badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-red);
  display: inline-block;
  padding: 0;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.8s 0.2s ease forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.95;
  color: var(--color-white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  opacity: 0;
  animation: fade-up 0.8s 0.4s ease forwards;
}

.hero__title-accent {
  display: block;
  background: linear-gradient(135deg, #B82727 0%, #991B1B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-off-white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 0.8s 0.6s ease forwards;
}

.hero__tagline {
  font-size: 1.1rem;
  color: rgba(255, 250, 245, 0.6);
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up 0.8s 0.8s ease forwards;
}

.hero__cta {
  opacity: 0;
  animation: fade-up 0.8s 1.0s ease forwards;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 250, 245, 0.3);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce-scroll 2s ease-in-out infinite;
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero slider image style */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide--active {
  opacity: 0.6;
}

.hero__slide-img {
  filter: saturate(0.7) brightness(0.8);
  transition: transform 8s ease-in-out;
}

.hero__slide-img--zoom {
  animation: kenburns 20s infinite alternate ease-in-out;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* ===================== */
/* SECTION COMMON        */
/* ===================== */

.section {
  position: relative;
  padding: var(--section-padding);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section__label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-red);
}

.section__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-off-white);
  max-width: 640px;
}

.animate-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in--delay-1 { transition-delay: 0.1s; }
.animate-in--delay-2 { transition-delay: 0.2s; }
.animate-in--delay-3 { transition-delay: 0.3s; }
.animate-in--delay-4 { transition-delay: 0.4s; }
.animate-in--delay-5 { transition-delay: 0.5s; }

/* ===================== */
/* DISCIPLINES CARDS     */
/* ===================== */

.disciplines {
  background: var(--color-dark-alt);
}

.disciplines__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.discipline-card {
  background: rgba(255, 250, 245, 0.02);
  border: 1px solid rgba(255, 250, 245, 0.06);
  padding: 40px 32px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.discipline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--color-red);
  transition: height var(--transition-smooth);
}

.discipline-card:hover::before {
  height: 100%;
}

.discipline-card:hover {
  border-color: rgba(153, 27, 27, 0.2);
  background: rgba(153, 27, 27, 0.03);
  transform: translateY(-4px);
}

.discipline-card__icon {
  font-size: 2.2rem;
  margin-bottom: 24px;
  display: block;
}

.discipline-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.discipline-card__text {
  font-size: 0.9rem;
  color: rgba(255, 250, 245, 0.6);
  line-height: 1.7;
}

/* ===================== */
/* DISCIPLINE IMAGE CARD */
/* ===================== */

.disc-img-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.disc-img-card__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.7);
  transition: all 0.7s var(--transition-smooth);
}

.disc-img-card:hover .disc-img-card__bg {
  transform: scale(1.1);
  filter: saturate(1) brightness(1);
}

.disc-img-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 10, 8, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.disc-img-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 6px;
}

.disc-img-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================== */
/* SCHEDULE              */
/* ===================== */

.schedule {
  position: relative;
  overflow: hidden;
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 64px;
}

.schedule-day {
  background: rgba(255, 250, 245, 0.02);
  border: 1px solid rgba(255, 250, 245, 0.06);
  padding: 24px;
  transition: all var(--transition-smooth);
}

.schedule-day:hover {
  border-color: rgba(153, 27, 27, 0.2);
  background: rgba(153, 27, 27, 0.03);
}

.schedule-day__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(153, 27, 27, 0.2);
}

.schedule-day__class {
  margin-bottom: 16px;
}

.schedule-day__time {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-red);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.schedule-day__name-class {
  font-size: 0.85rem;
  color: var(--color-off-white);
}

/* ===================== */
/* PRICING               */
/* ===================== */

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 64px;
}

.pricing-card {
  background: rgba(255, 250, 245, 0.02);
  border: 1px solid rgba(255, 250, 245, 0.06);
  padding: 40px 32px;
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(153, 27, 27, 0.2);
  background: rgba(153, 27, 27, 0.03);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: rgba(153, 27, 27, 0.3);
  background: rgba(153, 27, 27, 0.04);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-card--featured:hover {
  border-color: var(--color-red);
  background: rgba(153, 27, 27, 0.08);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 20px;
  white-space: nowrap;
}

.pricing-card__label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 8px;
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.pricing-card__note {
  font-size: 0.8rem;
  color: rgba(255, 250, 245, 0.4);
  margin-bottom: 32px;
}

.pricing-card__items {
  flex: 1;
  margin-bottom: 32px;
}

.pricing-card__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 250, 245, 0.06);
}

.pricing-card__item-label {
  font-size: 0.85rem;
  color: var(--color-off-white);
}

.pricing-card__item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-red);
}

.pricing-card__item-period {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255, 250, 245, 0.3);
  margin-left: 4px;
}

/* ===================== */
/* ABOUT / STATS         */
/* ===================== */

.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(153, 27, 27, 0.08);
  border-radius: 50%;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.stat {
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(255, 250, 245, 0.06);
}

.stat__number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.6rem;
  background: linear-gradient(135deg, var(--color-red), #D4A843);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.8rem;
  color: rgba(255, 250, 245, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===================== */
/* CONTACT               */
/* ===================== */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
}

.contact__info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.contact__info-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 4px;
}

.contact__info-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 4px;
}

.contact__info-value {
  font-size: 1rem;
  color: var(--color-off-white);
}

.contact__info-value a {
  color: var(--color-off-white);
}

.contact__info-value a:hover {
  color: var(--color-red);
}

.contact__social {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.contact__social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 245, 0.1);
  color: rgba(255, 250, 245, 0.4);
  transition: all var(--transition-smooth);
}

.contact__social-link:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(153, 27, 27, 0.05);
}

.contact__map {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 245, 0.06);
}

.contact__map iframe {
  filter: grayscale(1) invert(0.9) hue-rotate(180deg);
  opacity: 0.6;
  transition: opacity var(--transition-smooth);
}

.contact__map iframe:hover {
  opacity: 1;
}

/* ===================== */
/* FOOTER                */
/* ===================== */

.site-footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255, 250, 245, 0.05);
  padding: 48px 24px;
  text-align: center;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer__logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--color-white);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.site-footer__text {
  font-size: 0.85rem;
  color: rgba(255, 250, 245, 0.3);
}

.site-footer__divider {
  width: 40px;
  height: 1px;
  background: var(--color-red);
  margin: 16px auto;
}

/* ===================== */
/* FAMILY BANNER         */
/* ===================== */

.family-banner {
  background: linear-gradient(135deg, rgba(153, 27, 27, 0.1), rgba(5, 5, 5, 0.9));
  border: 1px solid rgba(153, 27, 27, 0.2);
  padding: 48px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.family-banner__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.family-banner__text {
  color: var(--color-off-white);
  font-size: 0.95rem;
}

.family-banner__price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: var(--color-red);
  line-height: 1;
}

.family-banner__price small {
  font-size: 0.9rem;
  color: rgba(255, 250, 245, 0.4);
  font-family: var(--font-body);
}

/* ===================== */
/* HAMBURGER / MOBILE    */
/* ===================== */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 12px;
  z-index: 101;
  position: relative;
  touch-action: manipulation;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu--open {
  transform: translateX(0);
}

.hidden-menu {
  transform: translateX(100%);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
}

.mobile-menu__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-menu__close {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu__links a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-off-white);
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition-smooth);
}

.mobile-menu__links a:hover {
  color: var(--color-red);
}

.mobile-menu__cta {
  margin-top: auto;
}

.mobile-menu__cta button {
  width: 100%;
  padding: 20px;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.mobile-menu__cta button:hover {
  background: var(--color-white);
}

/* ===================== */
/* INSTRUCTORS           */
/* ===================== */

.instructors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 64px;
  margin-top: 64px;
}

.instructor-card {
  text-align: center;
}

.instructor-card__image {
  aspect-ratio: 1;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color var(--transition-smooth);
}

.instructor-card:hover .instructor-card__image {
  border-color: var(--color-red);
}

.instructor-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: all 0.7s var(--transition-smooth);
  transform: scale(1.05);
}

.instructor-card:hover .instructor-card__image img {
  filter: grayscale(0);
  transform: scale(1);
}

.instructor-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 4px;
}

.instructor-card__role {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 16px;
}

.instructor-card__bio {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ===================== */
/* HIDDEN MENU (from header.php inline) */
/* ===================== */

.hidden-menu {
  transform: translateX(100%);
}

body.menu-open {
  overflow: hidden;
}

/* ===================== */
/* RESPONSIVE            */
/* ===================== */

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    touch-action: manipulation;
  }

  .hero__title {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .hero__circle--1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }

  .hero__circle--2 {
    width: 140px;
    height: 140px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
    border-color: var(--color-red);
    box-shadow: 0 0 24px rgba(153, 27, 27, 0.15);
  }

  .schedule__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 80px 20px;
  }

  .family-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .site-logo img {
    height: 36px;
  }

  .contact__map {
    min-height: 250px;
  }
}

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

@media (max-width: 480px) {
  .hero__badge {
    font-size: 0.6rem;
  }

  .hero__tagline {
    font-size: 0.95rem;
  }

  .discipline-card__icon {
    font-size: 1.8rem;
  }

  .stat__number {
    font-size: 2rem;
  }
}
