/* ============================================================
   Dancescapes Performing Arts LLC — Main Stylesheet
   Brand: Black #0a0a0a · Gold #c9a84c · Off-White #f5f0eb
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; width: 100%; }

:root {
  --black: #0a0a0a;
  --gold: #c9a84c;
  --gold-light: #e8d5a0;
  --off-white: #f5f0eb;
  --warm-gray: #8a8278;
  --text-dark: #1a1814;
}

body {
  font-family: Georgia, serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
}

/* ── NAVIGATION ── */
nav {
  background: var(--black);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  height: 72px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo-text { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; line-height: 1.3; }
.nav-logo-text span { display: block; font-size: 9px; color: var(--gold); font-family: Arial, sans-serif; letter-spacing: .2em; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  padding: 8px 12px;
  border-radius: 2px;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-register {
  background: var(--gold);
  color: var(--black) !important;
  font-weight: bold;
  padding: 9px 18px !important;
}
.nav-register:hover { background: var(--gold-light) !important; }
.nav-portal {
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold) !important;
  padding: 9px 18px !important;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  background: var(--black);
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.hero-content {
  width: 50%;
  padding: 80px 48px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  min-height: 88vh;
}

/* Instagram daily photo panel — contained box with black margins */
.hero-photo {
  position: absolute;
  top: 24px;
  right: 24px;
  bottom: 24px;
  width: calc(50% - 48px);
  overflow: hidden;
  background: #111;
  border-radius: 6px;
}
.hero-photo img.hero-photo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  transition: opacity .6s ease;
  z-index: 1;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
}
.hero-photo-placeholder img {
  height: 120px;
  opacity: 0.06;
  filter: brightness(10);
}
.hero-photo-ig-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.75);
  font-size: 10px;
  font-family: Arial, sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all .2s;
  z-index: 3;
}
.hero-photo-ig-badge:hover {
  background: rgba(0,0,0,0.8);
  color: #fff;
  border-color: rgba(201,168,76,0.4);
}
.hero-photo-ig-badge svg { color: var(--gold); flex-shrink: 0; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
  font-weight: 300;
  color: #fff;
  margin-bottom: 14px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-motto {
  font-style: italic;
  font-size: 21px;
  color: rgba(255,255,255,0.32);
  margin-bottom: 26px;
  letter-spacing: .02em;
}
.hero p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.48);
  max-width: 440px;
  margin-bottom: 36px;
  font-family: Arial, sans-serif;
}
.hero-btns { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 14px 30px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-weight: bold;
  border-radius: 2px;
  display: inline-block;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
  padding: 14px 24px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  border-radius: 2px;
  display: inline-block;
  transition: all .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.stat-num { font-size: 34px; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-top: 5px;
  font-family: Arial, sans-serif;
}

/* ── STRIP ── */
.strip { background: var(--gold); padding: 13px 40px; text-align: center; }
.strip span {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--black);
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin: 0 12px;
}

/* ── MOTTO BAND ── */
.motto-band {
  background: #111;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.motto-band-logo {
  height: 90px;
  width: auto;
  opacity: .08;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.motto-band h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-style: italic;
  color: #fff;
  font-weight: 300;
  position: relative;
  z-index: 2;
}
.motto-band h2 em { color: var(--gold); font-style: normal; }
.motto-divider { width: 50px; height: 1px; background: var(--gold); margin: 14px auto; opacity: .5; }
.motto-band p {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 2;
}

/* ── ABOUT ── */
.about-wrap { padding: 88px 40px; background: var(--off-white); }
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}
.about-inner h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-inner p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--warm-gray);
  font-family: Arial, sans-serif;
  margin-bottom: 16px;
}
.about-sig { font-style: italic; font-size: 20px; margin-top: 24px; }
.about-sig span {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-family: Arial, sans-serif;
  margin-top: 4px;
}
.about-img-box {
  background: var(--black);
  border-radius: 4px;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  opacity: 1;
  filter: none;
}
.about-badge { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(201,168,76,0.9); padding: 14px 20px; }
.about-badge p { font-size: 12px; color: var(--black); font-weight: bold; font-family: Arial, sans-serif; }
.about-badge span { font-size: 11px; color: rgba(0,0,0,0.5); font-family: Arial, sans-serif; }

/* ── PAGE HERO (shared) ── */
.page-hero {
  background: var(--black);
  padding: 80px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 280px;
  opacity: .04;
  pointer-events: none;
}
.page-hero .lbl {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p.sub {
  font-size: 15px;
  color: rgba(255,255,255,0.42);
  font-family: Arial, sans-serif;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* ── CLASSES ── */
.classes-section { background: var(--black); padding: 88px 40px; }
.section-hd { text-align: center; margin-bottom: 48px; }
.section-hd .lbl {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
}
.section-hd h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 300; color: #fff; }
.section-hd.dark-text h2 { color: var(--text-dark); }

/* Style filter tabs */
.style-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.style-tab {
  padding: 10px 20px;
  border: 2px solid #1a1814;
  border-radius: 20px;
  color: #1a1814 !important;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  text-decoration: none !important;
  transition: all .2s;
  display: inline-block;
}
.style-tab.active,
.style-tab:hover {
  background: #c9a84c;
  color: #0a0a0a !important;
  border-color: #c9a84c;
  font-weight: bold;
}

/* Jackrabbit embed area */
.jr-embed-box {
  background: #fff;
  border: 1px solid #e8e0d5;
  border-radius: 4px;
  padding: 0;
  max-width: 1050px;
  margin: 0 auto;
  min-height: 300px;
  overflow: hidden;
}
.jr-embed-box iframe,
.jr-embed-box script + * {
  width: 100%;
}

/* Age cards */
.age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1050px;
  margin: 0 auto 48px;
}
.age-card {
  background: #111;
  padding: 36px 30px;
  border-top: 2px solid var(--gold);
}
.age-tag {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}
.age-card h3 { font-size: 24px; font-weight: 300; color: #fff; margin-bottom: 6px; }
.age-range {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: .1em;
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}
.age-card p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.42); margin-bottom: 22px; font-family: Arial, sans-serif; }
.age-card a { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); text-decoration: none; font-family: Arial, sans-serif; }

/* ── STYLES GRID ── */
.styles-section { padding: 88px 40px; background: var(--off-white); }
.styles-inner { max-width: 1100px; margin: 0 auto; }
.styles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.style-item {
  background: var(--black);
  padding: 28px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .2s;
  text-decoration: none;
  display: block;
}
.style-item:hover { transform: translateY(-3px); }
.style-item h4 { font-size: 20px; font-weight: 300; color: #fff; margin-bottom: 6px; }
.style-item p { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.38); font-family: Arial, sans-serif; }
.style-item.gold { background: var(--gold); }
.style-item.gold h4 { color: var(--black); }
.style-item.gold p { color: rgba(0,0,0,0.55); }

/* ── TESTIMONIALS ── */
.testi-section { background: #ede8e0; padding: 88px 40px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1050px;
  margin: 48px auto 0;
}
.testi-card {
  background: #fff;
  padding: 32px;
  border-radius: 4px;
  position: relative;
}
.testi-card::before {
  content: '"';
  font-size: 72px;
  color: var(--gold);
  line-height: .8;
  position: absolute;
  top: 14px;
  left: 20px;
  opacity: .28;
}
.testi-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--warm-gray);
  font-family: Arial, sans-serif;
  padding-top: 26px;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-card strong { font-size: 12px; color: var(--text-dark); font-family: Arial, sans-serif; }
.testi-card span { font-size: 11px; color: var(--warm-gray); font-family: Arial, sans-serif; display: block; margin-top: 3px; }

/* ── REGISTER PAGE ── */
.register-body { padding: 64px 40px; max-width: 900px; margin: 0 auto; }
.reg-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.reg-step {
  background: var(--black);
  padding: 28px;
  border-radius: 4px;
  text-align: center;
  border-top: 2px solid var(--gold);
}
.reg-step-num { font-size: 32px; font-weight: 300; color: var(--gold); margin-bottom: 10px; }
.reg-step h4 { font-size: 16px; font-weight: 300; color: #fff; margin-bottom: 8px; }
.reg-step p { font-size: 13px; color: rgba(255,255,255,0.4); font-family: Arial, sans-serif; line-height: 1.7; }

/* ── EVENTS PAGE ── */
.events-body { padding: 64px 40px; max-width: 1050px; margin: 0 auto; }

/* ── CONTACT PAGE ── */
.contact-body {
  padding: 64px 40px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3 { font-size: 24px; font-weight: 300; margin-bottom: 20px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail .icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-detail p { font-size: 14px; color: var(--warm-gray); font-family: Arial, sans-serif; line-height: 1.7; }
.contact-detail strong { display: block; color: var(--text-dark); font-size: 13px; margin-bottom: 2px; }
.contact-form h3 { font-size: 24px; font-weight: 300; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-family: Arial, sans-serif;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  background: #fff;
  color: var(--text-dark);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { height: 100px; resize: vertical; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--black);
  padding: 88px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 380px;
  opacity: .03;
  pointer-events: none;
}
.cta-banner .lbl {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner .motto {
  font-style: italic;
  font-size: 19px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  font-family: Arial, sans-serif;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ── FOOTER ── */
footer {
  background: #050505;
  padding: 52px 40px 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand img { height: 54px; margin-bottom: 12px; display: block; }
.footer-brand-name {
  font-size: 14px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}
.footer-brand-name span {
  display: block;
  font-size: 9px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  letter-spacing: .18em;
  margin-top: 3px;
}
.footer-motto { font-style: italic; font-size: 13px; color: rgba(255,255,255,0.22); margin: 10px 0 8px; }
.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.2);
  font-family: Arial, sans-serif;
  max-width: 220px;
}
footer h4 {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: Arial, sans-serif;
}
footer a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.33);
  text-decoration: none;
  margin-bottom: 9px;
  font-family: Arial, sans-serif;
  transition: color .2s;
}
footer a:hover { color: #fff; }
.footer-portal { color: var(--gold) !important; margin-top: 6px; }
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 10px; color: rgba(255,255,255,0.16); font-family: Arial, sans-serif; }

/* ── CLASSES PAGE ── */
.classes-page-body { padding: 64px 40px; max-width: 1100px; margin: 0 auto; }
.filter-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-family: Arial, sans-serif;
  margin-bottom: 16px;
  text-align: center;
}

/* Jackrabbit live embed container */
#jr-classlist-container {
  background: #fff;
  border: 1px solid #e8e0d5;
  border-radius: 4px;
  padding: 20px;
  max-width: 1050px;
  margin: 0 auto;
  min-height: 300px;
}

/* ── PORTAL BOX ── */
.portal-box {
  margin-top: 40px;
  padding: 32px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e8e0d5;
}
.portal-box h3 { font-size: 20px; font-weight: 300; margin-bottom: 12px; }
.portal-box p { font-size: 14px; color: var(--warm-gray); font-family: Arial, sans-serif; margin-bottom: 20px; line-height: 1.7; }

/* ── ABOUT PAGE EXTRA ── */
.about-values { padding: 64px 40px; background: var(--black); }
.about-values-inner { max-width: 1050px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 40px; }
.value-card {
  background: #111;
  padding: 36px 28px;
  border-top: 2px solid var(--gold);
}
.value-card h4 { font-size: 20px; font-weight: 300; color: #fff; margin-bottom: 10px; }
.value-card p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.42); font-family: Arial, sans-serif; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--black); padding: 16px 20px; gap: 4px; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-hamburger { display: flex; }

  .hero { min-height: auto; }
  .hero-content { width: 100%; min-height: auto; padding: 60px 24px; }
  .hero-photo { position: relative; width: 100%; height: 60vw; top: auto; right: auto; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-img-box { min-height: 260px; aspect-ratio: auto; }
  .age-grid { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-body { grid-template-columns: 1fr; }
  .reg-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr 1fr; padding: 40px 20px 20px; }
  .footer-brand { grid-column: 1/-1; }
  .styles-section { padding: 60px 24px; }
  .testi-section { padding: 60px 24px; }
  .cta-banner { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 36px; }
  .strip { padding: 13px 20px; }
  .strip span { margin: 0 6px; }
  .styles-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .classes-page-body { padding: 40px 20px; }
  .register-body { padding: 40px 20px; }
  .events-body { padding: 40px 20px; }
  .contact-body { padding: 40px 20px; }
  .about-wrap { padding: 60px 20px; }
  .classes-section { padding: 60px 20px; }
  .page-hero { padding: 60px 20px 40px; }
}
