/* ===== SELF-HOSTED FONTS (latin subset) ===== */
@font-face { font-family: 'Instrument Serif'; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/is-normal-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; font-display: swap; src: url(/fonts/is-italic-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300 600; font-display: swap; src: url(/fonts/outfit-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

/* ===== CSS VARIABLES ===== */
:root {
  --charcoal: #1E1E1E;
  --charcoal-light: #2A2522;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --ivory: #F5F0E8;
  --gold: #D4A853;
  --gold-dark: #B8943E;
  --gold-light: #E0BC6A;
  --gold-text: #8B6914;
  --sage: #A8B99C;
  --sage-dark: #8FA383;
  --sage-text: #5E7A4F;
  --dichroic-blue: #1E47A0;
  --dichroic-blue-light: #2E5BBF;
  --text-dark: #2A2522;
  --text-mid: #5A524A;
  --warm-grey: #B8B0A4;
  --warm-grey-light: #D4CEC4;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;

  --content-max: 1200px;
  --section-pad: clamp(60px, 8vw, 120px);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 50px;
  width: auto;
  filter: invert(1) brightness(0.95);
  transition: opacity 0.3s ease;
}

.nav-brand img:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.nav-active { color: var(--gold); }
.nav-links a.nav-active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px; height: 2px;
  background: var(--warm-grey);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 30, 0.98);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivory);
  transition: color 0.3s ease;
}

.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a.nav-active { color: var(--gold); }

@media (max-width: 767px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/four-seasons-v4.webp') center center / cover no-repeat;
  filter: brightness(0.45) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(30, 30, 30, 0.2) 0%,
    rgba(30, 30, 30, 0.35) 40%,
    rgba(30, 30, 30, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 2rem;
  opacity: 0.01;
  transform: translateY(40px);
  animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
  margin: 0 auto;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.nav-entrance {
  opacity: 0;
  animation: navFadeIn 0.8s ease 1.2s forwards;
}

@keyframes navFadeIn {
  to { opacity: 1; }
}

/* Sub-pages don't use hero entrance animation */
.nav-visible {
  opacity: 1;
}

/* ===== WAVY SVG TRANSITION ===== */
.wave-light-to-dark {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
}

/* ===== SECTION HEADERS ===== */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
}

.section-heading-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--text-mid);
  margin-top: 4px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 12px;
}

.gold-rule {
  width: 50px; height: 1px;
  background: var(--gold);
  border: none;
  margin: 28px 0;
}

/* ===== PAGE HEADER (sub-pages without full hero) ===== */
.page-header {
  padding-top: calc(80px + var(--section-pad));
  padding-bottom: 0;
  text-align: center;
  background: var(--cream);
}

.page-header .gold-rule {
  margin: 24px auto;
}

/* ===== PAGE INTRO (AI-extractable opening passage) ===== */
.page-intro {
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  text-align: center;
}

/* ===== SHOP SECTION (ZIG-ZAG) ===== */
.shop {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.shop-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.zigzag-row:last-child { margin-bottom: 0; }

.zigzag-row.reverse .zigzag-image { order: 2; }
.zigzag-row.reverse .zigzag-text { order: 1; }

.zigzag-image {
  position: relative;
  overflow: hidden;
}

.zigzag-image img {
  width: 100%;
  object-fit: contain;
  max-height: 480px;
  transition: transform 0.6s ease;
}

.zigzag-image::after {
  content: '';
  position: absolute;
  top: 10%; bottom: 10%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.zigzag-row:not(.reverse) .zigzag-image::after { right: -16px; }
.zigzag-row.reverse .zigzag-image::after { left: -16px; }

.zigzag-text {
  padding: clamp(16px, 2vw, 32px) 0;
}

.piece-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.piece-price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.piece-desc {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}

/* Button with wipe-fill hover */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  color: var(--gold-text);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: var(--gold);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn:hover { color: var(--charcoal); }
.btn:hover::before { width: 100%; }

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

.btn-dark:hover { color: var(--charcoal); }

/* Slide-in animations for zig-zag */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible,
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-delay { transition-delay: 0.15s; }

/* ===== CLASSES SECTION ===== */
.classes {
  background: var(--cream);
  padding: 0 0 var(--section-pad);
}

.classes-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.class-item {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: 1px solid var(--cream-dark);
  position: relative;
  padding-left: clamp(16px, 2vw, 28px);
  transition: padding-left 0.3s ease;
}

.class-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
  border-radius: 2px;
}

.class-item:last-child {
  border-bottom: 1px solid var(--cream-dark);
}

.class-name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.class-meta {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--sage-text);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.class-meta .price {
  color: var(--gold-text);
  font-weight: 500;
}

.class-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 560px;
}

.btn-sm {
  padding: 10px 28px;
  font-size: 0.78rem;
}

/* ===== THIN SECTION DIVIDER ===== */
.section-divider {
  max-width: 200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* ===== SHOWS SECTION ===== */
.shows {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.shows-header {
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.show-list {
  max-width: 680px;
  margin: 0 auto;
  list-style: none;
}

.show-item {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 2vw, 24px);
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
  flex-wrap: wrap;
}

.show-item:first-child { border-top: 1px solid var(--cream-dark); }

.show-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--text-dark);
  flex: 1 1 200px;
}

.show-date {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--sage-text);
  font-weight: 400;
  flex-shrink: 0;
}

.show-location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
  flex-shrink: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--cream);
  padding: 0 0 var(--section-pad);
}

.about-header {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.about-text {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  text-align: center;
}

.about-text p + p {
  margin-top: 1em;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: var(--cream);
  padding: 0 0 var(--section-pad);
}

.faq-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.faq-item {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: 1px solid var(--cream-dark);
  position: relative;
  padding-left: clamp(16px, 2vw, 28px);
  transition: padding-left 0.3s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
  border-radius: 2px;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.faq-answer {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 560px;
}

/* ===== HOME TEASER CARDS ===== */
.home-teasers {
  background: var(--cream);
  padding: 0 0 var(--section-pad);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  max-width: 900px;
  margin: 0 auto;
}

.teaser-card {
  text-align: center;
  padding: clamp(32px, 4vw, 48px) clamp(20px, 2vw, 32px);
  border: 1px solid var(--cream-dark);
  transition: border-color 0.3s ease;
}

.teaser-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.teaser-card p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.teaser-card .btn-sm {
  text-decoration: none;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--cream);
  padding: 0 0 var(--section-pad);
}

.contact-info {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-info .contact-method {
  margin-bottom: 28px;
}

.contact-info .contact-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 8px;
}

.contact-info a {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

.contact-info .contact-note {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  font-style: italic;
  margin-top: 4px;
}

.contact-info .contact-address {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
}

.contact-next-steps {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--cream-dark);
}

.contact-next-steps p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 8px;
}

.contact-next-steps a {
  color: var(--gold-text);
  font-weight: 400;
  transition: color 0.3s ease;
}

.contact-next-steps a:hover {
  color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px);
  text-align: center;
}

.footer-logo {
  width: clamp(160px, 20vw, 240px);
  margin: 0 auto 32px;
  filter: invert(1) brightness(0.9) sepia(0.1);
  opacity: 0.8;
}

.footer-contact {
  margin-bottom: 28px;
}

.footer-contact a,
.footer-contact p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--warm-grey);
  line-height: 2;
  transition: color 0.3s ease;
}

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

.footer-phone-note {
  font-size: 0.78rem;
  color: var(--warm-grey);
  opacity: 0.75;
  font-style: italic;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--warm-grey);
  opacity: 0.75;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-accent {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.footer-accent span {
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .zigzag-row {
    grid-template-columns: 55fr 45fr;
  }
  .zigzag-row.reverse {
    grid-template-columns: 45fr 55fr;
  }
}

@media (max-width: 767px) {
  .zigzag-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: clamp(40px, 5vw, 60px);
  }

  .zigzag-row.reverse .zigzag-image { order: 0; }
  .zigzag-row.reverse .zigzag-text { order: 0; }

  .zigzag-image::after { display: none; }
  .zigzag-image img { max-height: 360px; }

  .piece-desc { max-width: 100%; }

  .zigzag-text {
    padding: 0 0 8px;
    text-align: center;
  }

  .piece-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .zigzag-text .btn {
    display: inline-block;
  }

  .zigzag-row.mobile-text-first .zigzag-text { order: -1; }

  .show-item {
    flex-direction: column;
    gap: 4px;
  }

  .show-name { flex: auto; }

  .hero {
    min-height: 80svh;
  }

  .hero-logo { width: 60vw; max-width: 240px; }

  .slide-left,
  .slide-right {
    transform: translateY(30px) translateX(0);
  }

  .slide-left.visible,
  .slide-right.visible {
    transform: translateY(0) translateX(0);
  }

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

@media (max-width: 374px) {
  .btn { padding: 12px 24px; font-size: 0.78rem; }
}

/* ===== HOVER GATING (touch devices) ===== */
@media (hover: hover) and (pointer: fine) {
  .zigzag-image:hover img { transform: scale(1.03); }
  .class-item:hover::before { height: 60%; }
  .class-item:hover { padding-left: clamp(24px, 3vw, 36px); }
  .faq-item:hover::before { height: 60%; }
  .faq-item:hover { padding-left: clamp(24px, 3vw, 36px); }
  .teaser-card:hover { border-color: var(--gold); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  html { scroll-behavior: auto; }
}
