/* ==============================================
   絢爛 | Marinera Norteña — stylesheet
   ============================================== */

/* --- Custom Properties --- */
:root {
  --burgundy:    #6B1A2A;
  --burgundy-dk: #4A1020;
  --gold:        #C9933A;
  --gold-lt:     #E8C06A;
  --cream:       #FAF6EF;
  --cream-dk:    #F0E8DC;
  --terracotta:  #B85C38;
  --charcoal:    #2A2220;
  --charcoal-lt: #3D3330;
  --text-dark:   #1C1410;
  --text-mid:    #5A4A42;
  --text-light:  #FAF6EF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Noto Sans JP', sans-serif;
  --max-w: 1100px;
  --radius: 12px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================================
   Navigation
   ============================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(42, 34, 32, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
}
.nav__logo:hover { opacity: 0.8; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================================
   Hero
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
}

/* Animated wave skirts */
.hero__waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.wave {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}

.wave--1 {
  width: 900px; height: 900px;
  bottom: -300px; right: -200px;
  background: radial-gradient(circle, var(--burgundy) 0%, transparent 70%);
  animation: wavePulse 8s ease-in-out infinite;
}
.wave--2 {
  width: 600px; height: 600px;
  bottom: -150px; right: -50px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation: wavePulse 6s ease-in-out infinite 1.5s;
  opacity: 0.06;
}
.wave--3 {
  width: 1100px; height: 400px;
  bottom: 0; left: -200px;
  background: radial-gradient(ellipse, var(--terracotta) 0%, transparent 70%);
  animation: wavePulse 10s ease-in-out infinite 3s;
  opacity: 0.05;
}

@keyframes wavePulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.08) rotate(3deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 700px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 0.2em;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

/* Gold ornament line under subtitle */
.hero__subtitle::before {
  content: '';
  display: block;
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 1rem;
}

.hero__desc {
  font-size: 1rem;
  color: rgba(250,246,239,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.5s;
}
.hero__scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(250,246,239,0.4);
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==============================================
   Buttons
   ============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,147,58,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,246,239,0.4);
}
.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(250,246,239,0.08);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,147,58,0.4);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,246,239,0.5);
}
.btn--outline-light:hover {
  background: rgba(250,246,239,0.1);
  border-color: var(--cream);
}

.btn--large { padding: 18px 36px; font-size: 1rem; }

.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ==============================================
   Sections shared
   ============================================== */
.section {
  position: relative;
  padding: 96px 0;
}

.section--cream { background: var(--cream); }
.section--dark   { background: var(--charcoal); }
.section--burgundy { background: var(--burgundy); }

/* Diagonal dividers */
.section__divider-top,
.section__divider-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}
.section__divider-top  { top: -1px; }
.section__divider-bottom { bottom: -1px; }

.section__divider-top::before,
.section__divider-bottom::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 100%;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.section__divider-top--dark::before  { background: var(--charcoal); }
.section__divider-bottom--dark::before {
  background: var(--charcoal);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  bottom: 0;
}
.section__divider-top--burgundy::before { background: var(--burgundy); }
.section__divider-bottom--burgundy::before { background: var(--burgundy); }
.section__divider-bottom--footer::before { background: var(--charcoal); }

.section__header { margin-bottom: 56px; }
.section__header--mt { margin-top: 64px; }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.eyebrow--gold { color: var(--gold); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}
.section__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 2px;
  background: var(--gold);
}
.section__title--light {
  color: var(--cream);
}
.section__title--light::after { background: var(--gold); }

.lead {
  font-size: 1.12rem;
  line-height: 1.85;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

/* ==============================================
   About
   ============================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.about__text p {
  color: var(--text-mid);
  font-size: 0.97rem;
}

.ornament__circle {
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotateSlow 20s linear infinite;
  flex-shrink: 0;
}
.ornament__circle::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(201,147,58,0.3);
}

.ornament__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rotateSlow 20s linear infinite reverse;
}

.ornament__kanji {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ==============================================
   Instructor
   ============================================== */
.instructor__card {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  background: rgba(250,246,239,0.05);
  border: 1px solid rgba(201,147,58,0.2);
  border-radius: var(--radius);
  padding: 48px;
}

.instructor__avatar {
  flex-shrink: 0;
}
.instructor__avatar-placeholder {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(201,147,58,0.15);
  border: 2px solid rgba(201,147,58,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.instructor__avatar-placeholder svg { width: 80%; height: 80%; }

.instructor__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.instructor__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.instructor__bio p {
  color: rgba(250,246,239,0.75);
  font-size: 0.95rem;
}

.instructor__sns { margin-top: 24px; }

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.sns-btn--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.sns-btn--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,29,29,0.35);
}
.sns-btn__icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ==============================================
   Marinera / Feature cards
   ============================================== */
.marinera__intro { margin-bottom: 48px; }

.marinera__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 0;
}

.feature-card {
  background: var(--cream-dk);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(107,26,42,0.12);
}
.feature-card__icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.feature-card p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

/* Peru dance */
.peru-dance__content p {
  font-size: 0.97rem;
  color: var(--text-mid);
  max-width: 760px;
}

/* ==============================================
   World Championship
   ============================================== */
.world__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.world__text p { font-size: 0.97rem; }

.highlight-badge {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dk));
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 40px 48px;
  text-align: center;
  min-width: 240px;
}
.highlight-badge__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.highlight-badge__city {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.highlight-badge__month {
  font-size: 0.9rem;
  color: rgba(250,246,239,0.7);
}

/* ==============================================
   Events & Awards
   ============================================== */
.events-awards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.timeline__placeholder {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--cream-dk);
  border-radius: var(--radius);
}
.timeline__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}
.timeline__placeholder p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: 0;
}

/* ==============================================
   Recruit
   ============================================== */
.recruit__content { max-width: 760px; margin: 0 auto; text-align: center; }
.recruit__content .lead { color: var(--cream); margin-bottom: 2rem; }

.recruit__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 3rem;
  text-align: left;
}

.recruit__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(250,246,239,0.1);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--cream);
}
.recruit__feature-icon { font-size: 1.1rem; }

/* Practice info */
.practice-info {
  background: rgba(250,246,239,0.08);
  border: 1px solid rgba(201,147,58,0.3);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 32px;
  text-align: left;
}
.practice-info__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.practice-info__placeholder {
  font-size: 0.9rem;
  color: rgba(250,246,239,0.65);
  margin: 0;
}

/* Pricing */
.pricing {
  margin-bottom: 3rem;
  text-align: left;
}
.pricing__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}
.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pricing__card {
  background: rgba(250,246,239,0.08);
  border: 1px solid rgba(201,147,58,0.2);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.pricing__card--featured {
  border-color: var(--gold);
  background: rgba(201,147,58,0.1);
}
.pricing__card-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing__card-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.pricing__card-desc {
  font-size: 0.85rem;
  color: rgba(250,246,239,0.65);
}

.recruit__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================================
   Contact
   ============================================== */
.contact__content { max-width: 640px; margin: 0 auto; }
.contact__intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.contact__methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.contact-card--forms {
  background: var(--cream-dk);
  border-color: transparent;
}
.contact-card--forms:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.contact-card--instagram {
  background: linear-gradient(135deg, rgba(131,58,180,0.1), rgba(253,29,29,0.1));
  border-color: rgba(131,58,180,0.2);
}
.contact-card--instagram:hover {
  border-color: #fd1d1d;
  transform: translateX(4px);
}

.contact-card__icon { font-size: 1.8rem; }
.contact-card__info { flex: 1; }
.contact-card__label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-card__sub {
  font-size: 0.85rem;
  color: var(--text-mid);
}
.contact-card__arrow {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.6;
  transition: transform var(--transition);
}
.contact-card:hover .contact-card__arrow { transform: translateX(4px); opacity: 1; }

/* ==============================================
   Footer
   ============================================== */
.footer {
  background: var(--charcoal);
  padding: 48px 0 24px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.footer__tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(250,246,239,0.4);
  margin: 4px 0 0;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.85rem;
  color: rgba(250,246,239,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__sns { display: flex; gap: 12px; }
.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250,246,239,0.08);
  color: rgba(250,246,239,0.6);
  transition: all var(--transition);
}
.footer__sns-link:hover {
  background: rgba(201,147,58,0.2);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(250,246,239,0.08);
  padding-top: 20px;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(250,246,239,0.3);
  margin: 0;
}

/* ==============================================
   Scroll reveal
   ============================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  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; }

/* ==============================================
   Responsive
   ============================================== */
@media (max-width: 900px) {
  .about__grid,
  .world__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ornament__circle { width: 140px; height: 140px; }
  .ornament__kanji { font-size: 2.5rem; }
  .events-awards__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .instructor__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 32px;
  }
  .pricing__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42,34,32,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.2rem; }
  .nav__hamburger { display: flex; z-index: 101; position: relative; }

  .section { padding: 72px 0; }
  .hero__cta { flex-direction: column; align-items: center; }
  .recruit__cta { flex-direction: column; align-items: center; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer__links { gap: 16px; }
  .about__ornament { display: none; }
  .world__content { grid-template-columns: 1fr; }
  .highlight-badge { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .recruit__features { grid-template-columns: 1fr; }
  .marinera__features { grid-template-columns: 1fr; }
  .pricing__cards { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
