/* ═══════════════════════════════════════
   Sunshine Dance School — Global Styles
   ═══════════════════════════════════════ */

:root {
  --gold: #F5A623;
  --gold-light: #FFD166;
  --gold-dark: #C47D0E;
  --sun-orange: #FF8C38;
  --sky: #FFF8EE;
  --deep: #1A1208;
  --warm-white: #FFFDF7;
  --muted: #7A6A50;
  --accent-teal: #3AAFA9;
  --shadow-gold: rgba(245,166,35,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--deep);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(255,253,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,166,35,0.15);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-img { height: 50px; width: auto; }

.login-logo-img { height: 80px; width: auto; }
.login-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 0.5rem;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; color: var(--muted); transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); font-weight: 600; }

.btn-portal {
  background: var(--gold);
  color: var(--deep) !important;
  padding: 9px 22px; border-radius: 30px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.btn-portal:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--deep); margin: 5px 0;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── SHARED SECTION STYLES ─── */
section { padding: 90px 6vw; }

.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  color: var(--deep); line-height: 1.15; margin-bottom: 1rem;
}
.section-sub {
  color: var(--muted); font-size: 1rem; line-height: 1.7;
  max-width: 540px; margin-bottom: 3rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold); color: var(--deep);
  padding: 14px 32px; border-radius: 40px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.03em;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s; display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--shadow-gold); }

.btn-outline {
  background: transparent; color: var(--deep);
  padding: 14px 32px; border-radius: 40px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; border: 2px solid var(--deep);
  transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #FFF8EE 0%, #FFF0D0 50%, #FFE4B3 100%);
  display: grid; place-items: center;
  padding: 100px 6vw 60px;
  position: relative; overflow: hidden;
}

.hero-sun {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: min(600px, 70vw); height: min(600px, 70vw);
  opacity: 0.25;
  animation: sunSpin 60s linear infinite;
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-tag {
  display: inline-block; background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.0;
  color: var(--deep); margin-bottom: 1.5rem;
}
.hero-h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.1rem; color: var(--muted); font-weight: 300; line-height: 1.7;
  margin-bottom: 2.5rem; max-width: 500px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 3rem; margin-top: 3.5rem; flex-wrap: wrap; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }

/* ─── ABOUT ─── */
.about-section { background: var(--deep); color: var(--warm-white); }
.about-section .section-h2 { color: var(--warm-white); }
.about-section .section-sub { color: rgba(255,255,255,0.6); }
.about-section .section-tag { color: var(--gold-light); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-visual { position: relative; }

.about-photo {
  width: 100%; border-radius: 20px;
  object-fit: cover; box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-sun-bg {
  width: 100%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  display: grid; place-items: center; border-radius: 50%;
}
.about-sun-bg svg, .about-sun-bg img { width: 70%; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 16px; padding: 1.2rem;
}
.value-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--gold-light); margin-bottom: 0.3rem; }
.value-card p { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ─── CLASSES ─── */
.classes-section { background: var(--sky); }

.classes-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.tab {
  background: transparent; border: 1.5px solid rgba(0,0,0,0.12);
  color: var(--muted); padding: 8px 20px; border-radius: 30px;
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.tab.active, .tab:hover { background: var(--gold); color: var(--deep); border-color: var(--gold); }

.classes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.class-card {
  background: white; border-radius: 20px; padding: 1.8rem;
  border: 1px solid rgba(245,166,35,0.15);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.class-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold);
}
.class-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow-gold); }
.class-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.4rem; }
.class-card .class-age { font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.class-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.class-time { font-size: 0.78rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }

/* ─── SCHEDULE ─── */
.schedule-section { background: white; }

.schedule-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.schedule-table th {
  background: var(--deep); color: var(--gold-light);
  padding: 12px 16px; text-align: left;
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.schedule-table td { padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,0.06); }
.schedule-table tr:hover td { background: var(--sky); }
.schedule-table .badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 600;
}
.badge-comp { background: rgba(245,166,35,0.15); color: var(--gold-dark); }
.badge-non { background: rgba(58,175,169,0.12); color: var(--accent-teal); }

/* ─── TUITION ─── */
.tuition-section { background: var(--sky); }

.tuition-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

.price-card {
  background: white; border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(245,166,35,0.15); text-align: center;
  transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow-gold); }
.price-card.featured { background: var(--deep); color: white; border-color: var(--gold); }
.price-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.4rem; }
.price-card .price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); margin: 0.8rem 0; }
.price-card .price span { font-size: 1rem; font-weight: 400; }
.price-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.price-card.featured p { color: rgba(255,255,255,0.6); }
.price-card.featured h3 { color: var(--gold-light); }

/* ─── CONTACT ─── */
.contact-section { background: var(--deep); color: white; }
.contact-section .section-h2 { color: white; }
.contact-section .section-sub { color: rgba(255,255,255,0.6); }
.contact-section .section-tag { color: var(--gold-light); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.4rem; }
.contact-item p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6; }
.contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; }
.contact-item a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  color: white; padding: 12px 16px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s; resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--gold); }
.contact-form select { color: rgba(255,255,255,0.7); }
.contact-form select option { color: var(--deep); background: white; }

/* ─── PORTAL ─── */
.portal-login {
  min-height: 100vh; background: var(--sky); padding-top: 110px;
  display: grid; place-items: center;
}
.login-card {
  background: white; border-radius: 24px; padding: 3rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  width: min(440px, 90vw);
  border-top: 4px solid var(--gold);
}
.login-card h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 0.4rem; }
.login-card > p { color: var(--muted); font-size: 0.85rem; margin-bottom: 2rem; }
.login-field { margin-bottom: 1.2rem; }
.login-field label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.4rem; }
.login-field input {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s;
}
.login-field input:focus { outline: none; border-color: var(--gold); }
.btn-login-full {
  width: 100%; background: var(--gold); color: var(--deep);
  padding: 14px; border-radius: 40px; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.2s; margin-top: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}
.btn-login-full:hover { background: var(--gold-dark); }
.login-footer { text-align: center; margin-top: 1.5rem; font-size: 0.82rem; color: var(--muted); }
.login-footer a { color: var(--gold); text-decoration: none; font-weight: 600; }

.login-error {
  background: rgba(220,50,50,0.08); border: 1px solid rgba(220,50,50,0.2);
  color: #c03030; padding: 10px 14px; border-radius: 10px;
  font-size: 0.82rem; margin-bottom: 1rem; display: none;
}

.login-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem;
}
.login-logo img { width: 44px; height: 44px; }
.login-logo-text {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--deep);
}
.login-logo-text span {
  font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 400;
  color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; display: block;
}

/* Portal Dashboard */
.portal-wrap { min-height: 100vh; background: var(--sky); padding-top: 110px; }

.portal-header {
  background: var(--deep); color: white;
  padding: 40px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.portal-header h1 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold-light); }
.portal-header p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 4px; }

.portal-user { display: flex; align-items: center; gap: 10px; }
.portal-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center;
  font-weight: 700; color: var(--deep); font-size: 1rem;
}
.portal-name { color: white; font-size: 0.9rem; font-weight: 500; }
.portal-email { color: rgba(255,255,255,0.45); font-size: 0.75rem; }

.btn-signout {
  background: rgba(255,255,255,0.1); border: none; color: white;
  padding: 8px 16px; border-radius: 20px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; margin-left: 1rem; font-size: 0.8rem;
  transition: background 0.2s;
}
.btn-signout:hover { background: rgba(255,255,255,0.2); }

.portal-body { padding: 40px 6vw; }

.portal-tabs { display: flex; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.ptab {
  background: white; border: 1.5px solid rgba(0,0,0,0.1);
  padding: 10px 24px; border-radius: 30px; font-size: 0.85rem;
  font-weight: 500; cursor: pointer; transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.ptab.active { background: var(--gold); color: var(--deep); border-color: var(--gold); font-weight: 600; }

.portal-section { display: none; }
.portal-section.active { display: block; }

.portal-section-title {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1.5rem;
}

/* Dancers */
.dancers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

.dancer-card {
  background: white; border-radius: 20px; padding: 1.8rem;
  border: 1px solid rgba(245,166,35,0.15); box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.dancer-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.dancer-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--sun-orange));
  display: grid; place-items: center; font-size: 1.4rem;
}
.dancer-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.dancer-age { font-size: 0.75rem; color: var(--muted); }
.dancer-classes h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 0.6rem; }
.dancer-class-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--sky); border: 1px solid rgba(245,166,35,0.2);
  padding: 5px 12px; border-radius: 20px; font-size: 0.78rem;
  color: var(--deep); margin: 0 4px 4px 0;
}
.dancer-class-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.dancer-card-footer {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.dancer-card-footer span:first-child { font-size: 0.75rem; color: var(--muted); }

/* Invoices */
.invoices-list { display: flex; flex-direction: column; gap: 1rem; }

.invoice-row {
  background: white; border-radius: 16px; padding: 1.4rem 1.8rem;
  border: 1px solid rgba(245,166,35,0.12);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.invoice-row:hover { border-color: var(--gold); }

.invoice-info { flex: 1; }
.invoice-num { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.invoice-desc { font-weight: 600; font-size: 0.95rem; margin: 3px 0; }
.invoice-due { font-size: 0.78rem; color: var(--muted); }

.invoice-amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--deep); }

.invoice-actions { display: flex; gap: 0.6rem; align-items: center; }

.status-pill { padding: 4px 12px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }
.status-paid { background: rgba(58,175,169,0.12); color: #2e9490; }
.status-due { background: rgba(245,166,35,0.15); color: var(--gold-dark); }
.status-overdue { background: rgba(220,50,50,0.1); color: #c03030; }

.btn-pay {
  background: var(--gold); color: var(--deep);
  padding: 9px 22px; border-radius: 30px;
  font-size: 0.82rem; font-weight: 700; border: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-pay:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* QB Banner */
.qb-banner {
  background: linear-gradient(135deg, #2CA01C 0%, #1A7D0F 100%);
  color: white; border-radius: 16px; padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem;
  flex-wrap: wrap;
}
.qb-banner svg { width: 36px; height: 36px; flex-shrink: 0; }
.qb-banner h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.qb-banner p { font-size: 0.78rem; opacity: 0.8; }

/* Messages */
.message-card {
  background: white; border-radius: 16px; padding: 1.4rem;
  border: 1px solid rgba(245,166,35,0.15);
}
.message-header {
  display: flex; justify-content: space-between; margin-bottom: 0.5rem;
}
.message-title { font-weight: 600; font-size: 0.9rem; }
.message-date { font-size: 0.75rem; color: var(--muted); }
.message-body { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* Empty state */
.empty-state {
  text-align: center; padding: 3rem; color: var(--muted);
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--deep); margin-bottom: 0.5rem; }
.empty-state p { font-size: 0.85rem; max-width: 400px; margin: 0 auto; }

/* Loading spinner */
.loading {
  display: flex; justify-content: center; padding: 3rem;
}
.spinner {
  width: 36px; height: 36px; border: 3px solid rgba(245,166,35,0.2);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ─── FOOTER ─── */
footer {
  background: var(--deep); color: rgba(255,255,255,0.5);
  padding: 3rem 6vw; text-align: center;
  font-size: 0.82rem; line-height: 1.8;
}
footer .footer-logo { margin-bottom: 1rem; }
.footer-logo-img { height: 60px; width: auto; filter: brightness(1.1);
}
footer a { color: var(--gold); text-decoration: none; }
footer .social-links { margin: 1rem 0; display: flex; justify-content: center; gap: 1.2rem; }
footer .social-links a {
  color: rgba(255,255,255,0.5); font-size: 1.2rem; transition: color 0.2s;
}
footer .social-links a:hover { color: var(--gold); }

/* ─── ANNIVERSARY BANNER ─── */
.anniversary-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% 100%;
  animation: bannerShimmer 6s ease infinite;
  text-align: center;
  padding: 8px 6vw;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0.06em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
}

nav {
  top: 33px !important;
}

/* ─── ANNIVERSARY BADGE ─── */
.anniversary-badge {
  position: absolute;
  top: 110px;
  right: 6vw;
  z-index: 3;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--sun-orange));
  box-shadow: 0 8px 32px rgba(245,166,35,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: badgeFloat 3s ease-in-out infinite, goldenGlow 2s ease-in-out infinite alternate;
}
.anniversary-badge .badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--deep);
  line-height: 1;
}
.anniversary-badge .badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--deep);
  opacity: 0.8;
}
.anniversary-badge .badge-years {
  font-size: 0.55rem;
  font-weight: 500;
  color: var(--deep);
  opacity: 0.65;
  margin-top: 2px;
}

/* ─── ANIMATIONS ─── */
@keyframes sunSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes bannerShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes goldenGlow {
  from { box-shadow: 0 8px 32px rgba(245,166,35,0.35); }
  to { box-shadow: 0 8px 40px rgba(245,166,35,0.55), 0 0 20px rgba(245,166,35,0.2); }
}

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

.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content > *:nth-child(3) { animation-delay: 0.35s; }
.hero-content > *:nth-child(4) { animation-delay: 0.45s; }
.hero-content > *:nth-child(5) { animation-delay: 0.55s; }

/* ─── HOME HIGHLIGHTS ─── */
.home-classes-preview {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
  margin-top: 2rem;
}

.home-cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--sun-orange) 100%);
  border-radius: 24px; padding: 3rem;
  text-align: center; color: var(--deep);
}
.home-cta-banner h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.home-cta-banner p { max-width: 500px; margin: 0 auto 2rem; font-size: 0.95rem; opacity: 0.85; }
.home-cta-banner .btn-primary { background: var(--deep); color: white; }
.home-cta-banner .btn-primary:hover { background: #2A1F0A; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { margin-top: 2rem; }
  .invoice-row { flex-direction: column; align-items: flex-start; }

  .nav-hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,253,247,0.98); backdrop-filter: blur(12px);
    padding: 1.5rem 6vw; gap: 1rem;
    border-bottom: 1px solid rgba(245,166,35,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }

  .hero-stats { gap: 1.5rem; }
  .about-values { grid-template-columns: 1fr; }
  .portal-header { text-align: center; justify-content: center; }
  .portal-user { flex-wrap: wrap; justify-content: center; }

  .anniversary-badge { width: 90px; height: 90px; top: 100px; right: 4vw; }
  .anniversary-badge .badge-number { font-size: 1.6rem; }
  .anniversary-badge .badge-text { font-size: 0.5rem; }
  .anniversary-badge .badge-years { font-size: 0.45rem; }
}

@media (max-width: 480px) {
  section { padding: 60px 5vw; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; }
  .schedule-table th, .schedule-table td { padding: 10px 8px; font-size: 0.78rem; }
  .price-cards { grid-template-columns: 1fr; }
  .footer-logo-img { height: 45px; }
  footer { padding: 2.5rem 5vw; }

  .anniversary-badge { width: 75px; height: 75px; top: 95px; }
  .anniversary-badge .badge-number { font-size: 1.3rem; }
  .anniversary-badge .badge-text { font-size: 0.45rem; }
  .anniversary-badge .badge-years { display: none; }
  .anniversary-banner { font-size: 0.68rem; padding: 6px 4vw; }
}
