/* ==========================================================================
   SSC DANCE SCHOOL — Style Guide & Design System (Urban Street)
   ==========================================================================
   TYPOGRAPHY
   - Display: Bebas Neue (headings, hero — bold, condensed, urban)
   - Body: Montserrat (UI, paragraphs, nav)

   COLORS
   - White:       #FFFFFF
   - Black:       #0F0F0F
   - Accent:     #D8DED8 (subtle monochrome highlight)
   - Dark Grey:   #1E1E1E
   - Mid Grey:    #7A7A7A
   - Light Grey:  #F4F4F4

   TONE: High contrast, sharp edges, minimal shadows, full-bleed imagery
   ========================================================================== */

:root {
  --color-white: #FFFFFF;
  --color-black: #0F0F0F;
  --color-accent-light: #FFFFFF;
  --color-accent-green: #D8DED8;
  --color-accent-light-dark: #D8D8D8;
  --color-accent-green-dark: #AEB8AE;
  /* Legacy aliases */
  --color-gold: var(--color-accent-light);
  --color-gold-light: #F2F2F2;
  --color-gold-dark: var(--color-accent-light-dark);
  --color-dark-grey: #1E1E1E;
  --color-mid-grey: #7A7A7A;
  --color-light-grey: #F4F4F4;
  --color-border: rgba(255, 255, 255, 0.15);

  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;

  --shadow-sm: 4px 4px 0 var(--color-black);
  --shadow-md: 6px 6px 0 var(--color-black);
  --shadow-lg: 8px 8px 0 var(--color-black);

  --header-height: 96px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --container-narrow: 900px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-sm);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2rem, var(--container-narrow));
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  color: var(--color-black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.lead {
  font-size: 1.125rem;
  color: var(--color-mid-grey);
  max-width: 65ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: var(--space-sm);
}

.text-gold {
  color: var(--color-gold);
}

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

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header--center {
  text-align: center;
}

.section-header--center .lead {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--color-accent-light-dark);
  border-color: var(--color-accent-light-dark);
  color: var(--color-white);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--color-black);
}

.btn--secondary {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-gold);
}

.btn--secondary:hover {
  background: var(--color-accent-light);
  color: var(--color-white);
  border-color: var(--color-accent-light);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--color-black);
}

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

.btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: none;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--color-black);
}

.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-sm);
}

.card__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.card__body {
  padding: var(--space-md);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.card__meta {
  font-size: 0.8125rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--color-mid-grey);
}

.card--pricing {
  text-align: center;
  padding: var(--space-lg);
  position: relative;
}

.card--pricing.featured {
  border: 2px solid var(--color-gold);
  transform: scale(1.03);
}

.card--pricing.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.card--pricing .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-black);
  margin: var(--space-sm) 0;
}

.card--pricing .price span {
  font-size: 1rem;
  color: var(--color-mid-grey);
}

.card--pricing ul {
  text-align: left;
  margin: var(--space-md) 0;
}

.card--pricing li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-light-grey);
  font-size: 0.9375rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.card--pricing li::before {
  content: "✦";
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Image placeholders */
.img-placeholder {
  position: relative;
  background: linear-gradient(135deg, var(--color-dark-grey) 0%, var(--color-black) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(201, 169, 98, 0.08) 50%, transparent 60%);
  animation: shimmer 3s infinite;
}

.img-placeholder__label {
  position: relative;
  z-index: 1;
  color: var(--color-gold-light);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-sm);
  opacity: 0.7;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .nav__link {
  color: var(--color-dark-grey);
}

.header.scrolled .logo__text {
  color: var(--color-black);
}

/* Inner pages: solid header + dark nav text at all scroll positions */
body:not(.page-home) .header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

body:not(.page-home) .header .nav__link {
  color: var(--color-dark-grey);
}

body:not(.page-home) .header .nav__link:hover,
body:not(.page-home) .header .nav__link.active {
  color: var(--color-black);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  max-width: calc(100% - 3.25rem);
}

.logo__img {
  height: 84px;
  width: auto;
  max-width: min(280px, 100%);
  object-fit: contain;
}

.footer__brand .logo__img {
  height: 54px;
  max-width: 200px;
}

.logo__icon {
  display: none;
}

.logo__text {
  display: none;
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
}

.nav__link.active {
  color: var(--color-gold);
}

.header.scrolled .nav__link.active {
  color: var(--color-gold);
}

.header__cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
  :root {
    --header-height: 116px;
  }

  .logo {
    max-width: none;
  }

  .logo__img {
    height: 104px;
    max-width: 380px;
  }

  .nav {
    display: block;
  }

  .header__cta {
    display: block;
  }

  .nav-toggle {
    display: none;
  }
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__list {
  text-align: center;
}

.mobile-nav__link {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  transition: color var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--color-gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
  background: var(--color-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.59) 0%,
    rgba(10, 10, 10, 0.29) 50%,
    rgba(10, 10, 10, 0.49) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-2xl);
  max-width: 750px;
}

.hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

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

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
  max-width: 550px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

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

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-xl);
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.7);
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb span {
  color: var(--color-gold);
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.85);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section--dark .lead,
.section--dark .section-header .lead {
  color: rgba(255, 255, 255, 0.85);
}

.section--grey {
  background: var(--color-light-grey);
}

.section--gold-accent {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-grey) 100%);
  color: var(--color-white);
}

/* Grid layouts */
.grid {
  display: grid;
  gap: var(--space-md);
}

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

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

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

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* Split section */
.split {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 992px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.split__image img,
.split__image .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Features / Why choose us */
.feature {
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition);
}

.feature__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all var(--transition);
}

.feature:hover .feature__icon {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.feature__title {
  margin-bottom: var(--space-xs);
}

.feature__text {
  font-size: 0.9375rem;
  color: var(--color-mid-grey);
}

.section--dark .feature__text {
  color: rgba(255, 255, 255, 0.65);
}

/* Dance styles */
.style-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.style-card img,
.style-card .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.style-card:hover img,
.style-card:hover .img-placeholder {
  transform: scale(1.08);
}

.style-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  color: var(--color-white);
}

.style-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.style-card__link {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Testimonials */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: var(--space-md);
}

.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  color: var(--color-dark-grey);
}

.section--dark .testimonial__quote {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--color-gold);
}

.testimonial__stars {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  letter-spacing: 0.15em;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

/* News */
.news-card .card__date {
  font-size: 0.8125rem;
  color: var(--color-mid-grey);
  margin-bottom: var(--space-xs);
}

.news-card .card__category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

/* Instagram */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.instagram-item img,
.instagram-item .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.instagram-item:hover img,
.instagram-item:hover .img-placeholder {
  transform: scale(1.1);
}

.instagram-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--color-black);
}

.instagram-item:hover .instagram-item__overlay {
  opacity: 1;
}

/* CTA Banner */
.cta-banner {
  padding: var(--space-2xl) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--color-black), var(--color-dark-grey));
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
  max-width: 550px;
  margin-inline: auto;
}

.geo-banner {
  padding: var(--space-md) 0;
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.geo-banner p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 52rem;
  margin-inline: auto;
}

/* Schedule table */
.schedule-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.schedule-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: var(--color-white);
}

.schedule-table th,
.schedule-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  border: 1px solid var(--color-light-grey);
  font-size: 0.875rem;
}

.schedule-table th {
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.schedule-table td:first-child {
  background: var(--color-light-grey);
  font-weight: 600;
  text-align: left;
  color: var(--color-black);
}

.schedule-table .class-cell {
  background: rgba(201, 169, 98, 0.08);
  cursor: default;
  transition: background var(--transition);
}

.schedule-table .class-cell:hover {
  background: rgba(201, 169, 98, 0.2);
}

.schedule-table .class-name {
  font-weight: 600;
  color: var(--color-black);
  display: block;
}

.schedule-table .class-level {
  font-size: 0.75rem;
  color: var(--color-gold);
}

/* Mobile schedule cards */
.schedule-mobile {
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .schedule-mobile {
    display: none;
  }
}

.schedule-day-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--color-gold);
}

.schedule-day-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

.schedule-day-card__item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-light-grey);
  font-size: 0.875rem;
}

.schedule-day-card__item:last-child {
  border-bottom: none;
}

@media (max-width: 767px) {
  .schedule-wrapper {
    display: none;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item img,
.gallery-item .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img,
.gallery-item:hover .img-placeholder {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--color-gold);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.gallery-tab {
  padding: 0.625rem 1.5rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.gallery-tab.active,
.gallery-tab:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

.video-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-black);
  cursor: pointer;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--color-black);
}

.video-item__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), opacity var(--transition);
  z-index: 1;
}

.video-item:hover .video-item__play {
  background: rgba(10, 10, 10, 0.4);
}

.video-item.is-playing .video-item__play {
  opacity: 0;
  pointer-events: none;
}

.video-item__play svg {
  width: 64px;
  height: 64px;
  color: var(--color-gold);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox--video {
  background: rgba(10, 10, 10, 0.78);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__content img {
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__video {
  display: block;
  max-height: 85vh;
  max-width: min(90vw, calc(85vh * 9 / 16));
  width: auto;
  height: auto;
  object-fit: contain;
  background: #000;
}

.lightbox__video[hidden],
.lightbox__img[hidden] {
  display: none;
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.lightbox__close:hover {
  color: var(--color-gold);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox__nav:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.lightbox__prev {
  left: var(--space-md);
}

.lightbox__next {
  right: var(--space-md);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
  color: var(--color-dark-grey);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(10, 10, 10, 0.15);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
  accent-color: var(--color-gold);
}

.form-success {
  display: none;
  padding: var(--space-md);
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: var(--space-md);
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  padding: var(--space-md);
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.55);
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: var(--space-md);
  color: #ffb4b4;
}

.form-error.show {
  display: block;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==========================================================================
   Dark monochrome direction
   ========================================================================== */
body {
  color: var(--color-white);
  background: var(--color-black);
}

a:hover,
:focus-visible {
  color: var(--color-white);
}

h1,
h2,
h3,
h4,
.card__title,
.feature__title,
.style-card__title {
  color: var(--color-white);
}

p,
.lead,
.card__text,
.feature__text,
.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.78);
}

.section,
.section--grey,
.page-hero {
  background: var(--color-black);
}

.card,
.feature,
.value-item,
.schedule-day-card,
.class-info-box,
.form-input,
.form-textarea,
.form-select,
.pricing-table,
.schedule-table,
.styles-table,
.schedule-list,
.pricing-box {
  background: #111111;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.18);
}

.card,
.schedule-wrapper,
.pricing-table-wrap,
.styles-table-wrap,
.teacher-card__photo,
.split__image {
  box-shadow: none;
}

.card__body,
.schedule-table td,
.pricing-table td,
.styles-table td,
.schedule-day-card__item,
.class-section,
.faq-item {
  border-color: rgba(255, 255, 255, 0.14);
}

.schedule-table th,
.pricing-table th,
.styles-table th {
  background: var(--color-white);
  color: var(--color-black);
}

.schedule-table td:first-child,
.schedule-table .class-cell,
.pricing-table td:last-child {
  background: #181818;
  color: var(--color-white);
}

.schedule-table .class-name,
.pricing-table td:last-child,
.styles-table td:first-child {
  color: var(--color-white);
}

.btn--primary,
.btn--secondary,
.filter-btn.active,
.filter-btn:hover,
.gallery-tab.active,
.gallery-tab:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-black);
}

.btn--primary:hover,
.btn--secondary:hover {
  background: #D8D8D8;
  border-color: #D8D8D8;
  color: var(--color-black);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--color-black);
}

.btn--ghost,
.filter-btn,
.gallery-tab {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.eyebrow,
.text-gold,
.feature__icon,
.stat__number,
.card__date,
.card__category,
.class-badge,
.teacher-card__tag,
.location-detail__label,
.footer__title {
  color: var(--color-white);
}

.feature:hover .feature__icon {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.teacher-card__photo {
  border-color: var(--color-white);
  background: #111111;
}

.teacher-card__tag,
.class-badge {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.header.scrolled,
body:not(.page-home) .header {
  background: rgba(15, 15, 15, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.header.scrolled .nav__link,
body:not(.page-home) .header .nav__link,
body:not(.page-home) .header .nav__link:hover,
body:not(.page-home) .header .nav__link.active {
  color: var(--color-white);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__grid--simple {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer__grid--simple {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.social-links {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 300px;
  background: var(--color-light-grey);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ */
.faq-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-light-grey);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--color-black);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-gold);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-md);
}

.faq-answer p {
  color: var(--color-mid-grey);
  font-size: 0.9375rem;
}

/* Teachers */
.teacher-card {
  text-align: center;
}

.teacher-card__photo {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 0;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--color-accent-light);
  background: #141414;
  box-shadow: 4px 4px 0 var(--color-accent-green);
}

.teacher-card__photo img,
.teacher-card__photo .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.teacher-card__photo::after {
  display: none;
}

.teacher-card__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.teacher-card__photo--placeholder::after {
  display: none;
}

.teacher-placeholder-initial {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-accent-light);
  opacity: 0.45;
  line-height: 1;
  letter-spacing: 0.05em;
}

.teacher-card__role {
  font-size: 0.8125rem;
  color: var(--color-accent-green);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.teacher-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 0.35rem 0.5rem;
  width: 100%;
  max-width: 320px;
  margin: 0 auto var(--space-xs);
}

.teacher-card__tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  border: 1px solid rgba(77, 184, 150, 0.45);
  background: rgba(77, 184, 150, 0.12);
}

/* Values */
.value-item {
  padding: var(--space-lg);
  border-left: 3px solid var(--color-gold);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.value-item h3 {
  margin-bottom: var(--space-xs);
}

/* Legal content */
.legal-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.legal-content p,
.legal-content li {
  margin-bottom: var(--space-sm);
  color: var(--color-mid-grey);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

/* Newsletter */
.newsletter {
  background: var(--color-black);
  padding: var(--space-xl) 0;
}

.newsletter__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .newsletter__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.newsletter h3 {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
  max-width: 450px;
}

@media (min-width: 480px) {
  .newsletter__form {
    flex-direction: row;
  }
}

.newsletter__form .form-input {
  flex: 1;
}

/* Footer */
.footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer__brand .logo__text {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer__links li {
  margin-bottom: var(--space-xs);
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
  color: var(--color-gold);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  background: var(--color-gold);
  color: var(--color-black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-gold-dark);
  transform: translateY(-3px);
}

/* Animations on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stats counter section */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  text-align: center;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Class detail sections */
.class-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-light-grey);
}

.class-section:last-child {
  border-bottom: none;
}

.class-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.class-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 98, 0.15);
  color: var(--color-gold-dark);
}

.class-details {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .class-details {
    grid-template-columns: 2fr 1fr;
  }
}

.class-benefits li {
  padding: var(--space-xs) 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
}

.class-benefits li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.class-info-box {
  background: var(--color-light-grey);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.class-info-box dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: var(--space-sm);
}

.class-info-box dt:first-child {
  margin-top: 0;
}

.class-info-box dd {
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: var(--space-xs);
}

/* Blog filters */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
}

.blog-card.hidden {
  display: none;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-md);
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.cookie-banner p {
  font-size: 0.875rem;
  flex: 1;
}

.cookie-banner a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ── Urban additions ── */

.hero__title em {
  font-style: normal;
  color: var(--color-accent-light);
}

.hero__overlay {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.69) 0%, rgba(15, 15, 15, 0.34) 60%, rgba(15, 15, 15, 0.59) 100%);
}

.hero__scroll-line {
  background: linear-gradient(to bottom, var(--color-accent-light), transparent);
}

.value-item {
  border-left: 4px solid var(--color-accent-light);
  box-shadow: none;
  border: 2px solid var(--color-black);
  border-left: 4px solid var(--color-accent-light);
}

.stat__number {
  color: var(--color-accent-light);
}

.schedule-day-card {
  border-left: 4px solid var(--color-accent-light);
  border: 2px solid var(--color-black);
  border-left: 4px solid var(--color-accent-green);
  box-shadow: none;
}

.schedule-table .class-cell {
  background: rgba(255, 255, 255, 0.08);
}

.schedule-table .class-cell:hover {
  background: rgba(255, 255, 255, 0.16);
}

.schedule-table .class-level {
  color: var(--color-accent-green-dark);
}

/* Pricing table */
.pricing-table-wrap {
  overflow-x: auto;
  border: 2px solid var(--color-black);
}

.pricing-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--color-white);
}

.pricing-table th,
.pricing-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border: 1px solid var(--color-black);
  font-size: 0.9375rem;
}

.pricing-table th {
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-table td:last-child {
  font-weight: 700;
  color: var(--color-accent-light);
  white-space: nowrap;
}

.pricing-note {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-black);
  color: var(--color-white);
  border: 3px solid var(--color-accent-light);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}

.pricing-note strong {
  color: var(--color-accent-green);
}

/* Location / map section */
.location-section {
  background: var(--color-light-grey);
}

.location-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr 1.4fr;
  }
}

.location-info h2 {
  margin-bottom: var(--space-md);
}

.location-detail {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.location-detail__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--color-black);
  color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-accent-light);
}

.location-detail__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 0.2rem;
}

.location-detail p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Style list table on classes page */
.styles-table-wrap {
  overflow-x: auto;
  border: 2px solid var(--color-black);
  margin-bottom: var(--space-xl);
}

.styles-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.styles-table th,
.styles-table td {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-black);
  font-size: 0.875rem;
  vertical-align: top;
}

.styles-table th {
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.styles-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.06);
}

.class-badge {
  background: var(--color-black);
  color: var(--color-accent-green);
  border-radius: 0;
}

/* Accent preview swatches (dev reference) */
.accent-preview {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.accent-swatch {
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-black);
}

/* Final monochrome overrides: keep this block last. */
body,
.section,
.section--grey,
.location-section,
.page-hero {
  background: var(--color-black);
  color: var(--color-white);
}

.card,
.feature,
.value-item,
.schedule-day-card,
.class-info-box,
.form-input,
.form-textarea,
.form-select,
.pricing-table,
.schedule-table,
.styles-table,
.schedule-list,
.pricing-box {
  background: #111111;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-table-wrap,
.schedule-wrapper,
.styles-table-wrap,
.schedule-list-wrap {
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-table th,
.schedule-table th,
.styles-table th {
  background: var(--color-white);
  color: var(--color-black);
}

.pricing-table td,
.schedule-table td,
.styles-table td,
.schedule-day-card__item,
.class-section {
  border-color: rgba(255, 255, 255, 0.14);
}

.pricing-table td:last-child,
.schedule-table td:first-child,
.schedule-table .class-cell,
.schedule-table .class-name,
.styles-table td:first-child {
  background: #181818;
  color: var(--color-white);
}

.styles-table tbody tr:hover,
.schedule-table .class-cell:hover {
  background: #202020;
}

.pricing-note {
  background: #111111;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.28);
}

.class-badge,
.teacher-card__tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.28);
}

.location-detail__icon {
  background: #111111;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.28);
}

.accent-swatch {
  border-color: var(--color-white);
}

/* ── Schedule list table (Planning & Tarifs) ── */
.schedule-list-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.schedule-list {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #111111;
}

.schedule-list th,
.schedule-list td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: var(--color-white);
}

.schedule-list th {
  background: #0a0a0a;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
}

.schedule-list tbody tr:last-child td {
  border-bottom: none;
}

.schedule-row--eveil {
  background: rgba(120, 95, 115, 0.72);
  border-left: 3px solid rgba(160, 130, 155, 1);
}

.schedule-row--enfants {
  background: rgba(70, 115, 115, 0.72);
  border-left: 3px solid rgba(95, 145, 145, 1);
}

.schedule-row--ados {
  background: rgba(115, 110, 75, 0.72);
  border-left: 3px solid rgba(145, 140, 100, 1);
}

.schedule-row--adultes {
  background: rgba(85, 75, 105, 0.72);
  border-left: 3px solid rgba(115, 100, 135, 1);
}

.schedule-row--ados-adultes {
  background: rgba(75, 95, 115, 0.72);
  border-left: 3px solid rgba(100, 125, 145, 1);
}

.age-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.age-badge--eveil {
  background: rgba(160, 130, 155, 0.72);
  color: #ece0e8;
}

.age-badge--enfants {
  background: rgba(95, 145, 145, 0.72);
  color: #d0e8e8;
}

.age-badge--ados {
  background: rgba(145, 140, 100, 0.72);
  color: #e8e4c8;
}

.age-badge--adultes {
  background: rgba(115, 100, 135, 0.72);
  color: #ddd4e8;
}

.age-badge--ados-adultes {
  background: rgba(100, 125, 145, 0.72);
  color: #d0dce8;
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs) var(--space-sm);
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.28);
}

.schedule-legend__label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-right: var(--space-xs);
}

.schedule-legend__item {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

.schedule-legend__item--eveil {
  background: rgba(160, 130, 155, 0.72);
  color: #ece0e8;
}

.schedule-legend__item--enfants {
  background: rgba(95, 145, 145, 0.72);
  color: #d0e8e8;
}

.schedule-legend__item--ados {
  background: rgba(145, 140, 100, 0.72);
  color: #e8e4c8;
}

.schedule-legend__item--adultes {
  background: rgba(115, 100, 135, 0.72);
  color: #ddd4e8;
}

.schedule-legend__item--ados-adultes {
  background: rgba(100, 125, 145, 0.72);
  color: #d0dce8;
}

.schedule-disclaimer {
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
}

.schedule-day-card__item.schedule-row--eveil,
.schedule-day-card__item.schedule-row--enfants,
.schedule-day-card__item.schedule-row--ados,
.schedule-day-card__item.schedule-row--adultes,
.schedule-day-card__item.schedule-row--ados-adultes {
  padding-left: var(--space-sm);
  margin-bottom: 2px;
  border-radius: var(--radius-sm);
  border-bottom: none;
}

@media (max-width: 767px) {
  .schedule-list-wrap {
    display: none;
  }
}

@media (min-width: 768px) {
  .schedule-mobile {
    display: none;
  }
}

/* ── Schedule day-column layout ── */
.section--schedule-bg {
  position: relative;
  overflow: hidden;
}

.section--schedule-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.72) 50%, rgba(0, 0, 0, 0.82) 100%),
    url("../assets/images/Fond%20planning.jpg") center center / cover no-repeat;
  z-index: 0;
}

.section--schedule-bg > .container {
  position: relative;
  z-index: 1;
}

.schedule-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

.schedule-column__title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
}

.schedule-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.schedule-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left-width: 3px;
}

.schedule-card__time {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.35rem;
}

.schedule-card__class {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.schedule-card__teacher {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.schedule-card .age-badge {
  margin-top: 0.15rem;
}

@media (min-width: 1024px) {
  .pricing-boxes.grid--2 {
    grid-template-columns: repeat(6, 1fr);
  }

  .pricing-boxes .pricing-box:nth-child(1) { grid-column: 1 / 3; }
  .pricing-boxes .pricing-box:nth-child(2) { grid-column: 3 / 5; }
  .pricing-boxes .pricing-box:nth-child(3) { grid-column: 5 / 7; }
  .pricing-boxes .pricing-box:nth-child(4) { grid-column: 2 / 4; }
  .pricing-boxes .pricing-box:nth-child(5) { grid-column: 4 / 6; }
}

@media (min-width: 768px) {
  .teachers-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .teachers-grid .teacher-card:nth-child(1) { grid-column: 1 / 3; }
  .teachers-grid .teacher-card:nth-child(2) { grid-column: 3 / 5; }
  .teachers-grid .teacher-card:nth-child(3) { grid-column: 5 / 7; }
  .teachers-grid .teacher-card:nth-child(4) { grid-column: 2 / 4; }
  .teachers-grid .teacher-card:nth-child(5) { grid-column: 4 / 6; }
}

/* ── Testimonials background ── */
.section--testimonials-bg {
  position: relative;
  overflow: hidden;
}

.section--testimonials-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.60) 50%, rgba(0, 0, 0, 0.72) 100%),
    url("../assets/images/fond-avis.jpg") center center / cover no-repeat;
  z-index: 0;
}

.section--testimonials-bg > .container {
  position: relative;
  z-index: 1;
}

.pricing-box--single .pricing-box__rates {
  margin-top: var(--space-sm);
}

/* ── Pricing boxes (Cotisations annuelles) ── */
.pricing-boxes {
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.pricing-box {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.pricing-box__title {
  font-size: 1rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.pricing-box__rates {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pricing-box__rate {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
}

.pricing-box__rate dt {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  white-space: nowrap;
}

.pricing-box__rate dd {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--color-white);
  text-align: right;
  margin: 0;
}

.pricing-box__rate dd span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.pricing-box__na {
  font-size: 1.25rem !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

.pricing-box__note {
  display: block;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-top: 0.15rem;
  line-height: 1.4;
}

.pricing-payment-terms {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--color-white);
  text-align: center;
}

.pricing-payment-terms strong {
  color: var(--color-white);
}

.pricing-family-discount {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--color-white);
  text-align: center;
}

.pricing-note + .pricing-payment-terms {
  margin-top: var(--space-md);
}

.qs-regulatory-notice {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

.qs-regulatory-notice p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-white);
  margin: 0;
}

.schedule-download-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.schedule-download-actions__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.schedule-download-actions__deposit {
  margin-top: 0.25rem;
}

/* ── Inscription page hero banner photo ── */
.page-hero--photo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 28vw, 320px);
  padding: calc(var(--header-height) + 1.25rem) 0 1.5rem;
  background: transparent;
}

.page-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  z-index: 0;
}

.page-hero--photo .page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.52) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
}

.page-hero--photo .page-hero__content {
  position: relative;
  z-index: 2;
}

/* ── Inscription page steps ── */
.inscription-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.inscription-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  display: grid;
  gap: 1rem 1.25rem;
  margin: 0;
}

@media (min-width: 768px) {
  .inscription-steps {
    gap: 3.75rem;
  }

  .inscription-step {
    grid-template-columns: 3rem 1fr;
    align-items: start;
    padding: 2.75rem 2.25rem;
  }
}

.inscription-step__number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--color-gold);
}

.inscription-step__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--color-white);
}

.inscription-step__body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.inscription-step__action {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  padding-top: 0.25rem;
}

.inscription-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.inscription-note a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.inscription-note a:hover {
  color: var(--color-white);
}

.news-card__media {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  text-align: left;
}

.news-card__media:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.news-card__media .card__image {
  width: 100%;
  transition: opacity var(--transition), transform var(--transition);
}

.news-card__media:hover .card__image,
.news-card__media:focus-visible .card__image {
  opacity: 0.92;
  transform: scale(1.01);
}

.news-card__media {
  position: relative;
}

.news-card__gallery-badge {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  background: rgba(10, 10, 10, 0.75);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.news-card__pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  min-height: 220px;
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}

.news-card__pdf:hover,
.news-card__pdf:focus-visible {
  background: linear-gradient(145deg, #252525 0%, #3a3a3a 100%);
  transform: scale(1.01);
}

.news-card__pdf:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.news-card__pdf-icon {
  display: flex;
  color: var(--color-gold);
}

.news-card__pdf-label {
  font-size: 1.0625rem;
  font-weight: 600;
}

.news-card__pdf-meta {
  font-size: 0.8125rem;
  opacity: 0.75;
}

.news-card__videos {
  display: grid;
  gap: 0.75rem;
  margin-top: var(--space-md);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 220px;
}

.news-card__video-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: #111;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 9 / 16;
}

.news-card__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.news-card__video-thumb:hover img,
.news-card__video-thumb:focus-visible img {
  opacity: 1;
  transform: scale(1.03);
}

.news-card__video-thumb:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.news-card__video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.35);
  color: var(--color-white);
  pointer-events: none;
  transition: background var(--transition);
}

.news-card__video-thumb:hover .news-card__video-play,
.news-card__video-thumb:focus-visible .news-card__video-play {
  background: rgba(10, 10, 10, 0.5);
}

.news-card__video-play svg {
  width: 2.5rem;
  height: 2.5rem;
}

.news-card__highlight {
  margin: 0.75rem 0;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 0.9375rem;
}

.trial-slot-info {
  margin: 0.5rem 0 var(--space-md);
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
}

.form-label {
  color: var(--color-white);
}

/* ── Health questionnaire (QS-SPORT) ── */
.qs-form {
  margin-top: var(--space-lg);
}

.qs-source-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--space-sm);
}

.qs-identity {
  margin: var(--space-lg) 0;
}

.qs-section {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: #111111;
}

.qs-section__title {
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.75);
}

.qs-question {
  border: none;
  margin: 0 0 var(--space-md);
  padding: 0 0 var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.qs-question:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.qs-question__text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.qs-question__answers {
  display: flex;
  gap: var(--space-md);
}

.qs-answer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  cursor: pointer;
}

.qs-parent-notice,
.qs-disclaimer,
.qs-legal-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-top: var(--space-md);
}
