/* ===== CSS VARIABLES ===== */
:root {
  --bg: hsl(39, 32%, 97%);
  --fg: hsl(316, 30%, 15%);
  --card: hsl(39, 30%, 95%);
  --primary: hsl(316, 41%, 30%);
  --primary-fg: hsl(39, 32%, 97%);
  --secondary: hsl(340, 35%, 93%);
  --muted: hsl(39, 20%, 93%);
  --muted-fg: hsl(316, 18%, 38%);
  --accent: hsl(38, 65%, 54%);
  --accent-fg: #fff;
  --border: hsl(340, 15%, 88%);
  --radius: 0.75rem;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', Helvetica, Arial, sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY HELPERS ===== */
.serif { font-family: 'Playfair Display', Georgia, serif; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.italic { font-style: italic; }
.leading-relaxed { line-height: 1.75; }
.tracking-wide { letter-spacing: 0.025em; }
.text-center { text-align: center; }

/* ===== COLOR HELPERS ===== */
.color-primary { color: var(--primary); }
.color-accent { color: var(--accent); }
.color-muted { color: var(--muted-fg); }
.bg-light { background: var(--bg); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 639px) { .container { padding: 0 1.25rem; } }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative-z { position: relative; z-index: 10; }
.section { padding: 5rem 0; position: relative; overflow: hidden; }
.section-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.hidden { display: none !important; }
.inline-flex { display: inline-flex; }
.w-full { width: 100%; }

/* ===== TWO-COL GRID ===== */
.two-col-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .two-col-grid { grid-template-columns: 1fr 1fr; } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 2rem; border-radius: 9999px; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.2s; cursor: pointer; gap: 0.5rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--primary-fg); border: 2px solid var(--primary); }
.btn-primary:hover { background: hsl(316, 41%, 24%); }
.btn-accent { background: var(--accent); color: var(--accent-fg); border: 2px solid var(--accent); }
.btn-accent:hover { background: hsl(38, 65%, 46%); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--secondary); }
.btn-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.btn-pulse:hover { animation: none; }
.mt-auto { margin-top: auto; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 60; background: var(--primary); color: var(--primary-fg); text-align: center; padding: 0.5rem 1rem; font-size: 0.875rem; letter-spacing: 0.025em; transition: opacity 0.5s, transform 0.5s; }
.announcement-bar.hidden-bar { opacity: 0; transform: translateY(-100%); pointer-events: none; }
.mx-dot { margin: 0 0.5rem; color: var(--accent); }
@media (max-width: 640px) { .hide-sm { display: none; } }

/* ===== HEADER ===== */
.main-header { position: fixed; left: 0; right: 0; z-index: 50; transition: all 0.5s; top: 36px; padding: 1rem 0; background: transparent; }
.main-header.scrolled { top: 0; background: rgba(250, 247, 242, 0.95); backdrop-filter: blur(12px); box-shadow: 0 1px 3px rgba(0,0,0,0.08); padding: 0.5rem 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { height: 2.5rem; width: auto; }
.logo-link { display: flex; align-items: center; }
.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-link { font-size: 0.875rem; font-weight: 700; color: hsl(316, 41%, 30%, 0.8); padding: 0.5rem 1rem; border-radius: 9999px; transition: all 0.2s; letter-spacing: 0.025em; }
.nav-link:hover { color: var(--primary); background: hsl(316, 41%, 30%, 0.1); }
.reserve-btn { display: none; }
@media (min-width: 1024px) { .reserve-btn { display: inline-flex; } }
.mobile-menu-btn { display: flex; color: var(--primary); padding: 0.25rem; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* ===== MOBILE DRAWER ===== */
.mobile-overlay { display: none; position: fixed; inset: 0; z-index: 70; background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s; }
.mobile-overlay.open { display: block; opacity: 1; }
.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 71; width: 80%; max-width: 360px; background: var(--bg); box-shadow: -4px 0 24px rgba(0,0,0,0.15); transform: translateX(100%); transition: transform 0.3s ease-out; display: flex; flex-direction: column; }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
.mobile-close-btn { color: var(--primary); }
.mobile-nav { flex: 1; padding: 2rem 1.5rem; overflow-y: auto; }
.mobile-nav-link { display: block; font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 500; color: hsl(316, 41%, 30%, 0.8); padding: 1rem 0.5rem; border-bottom: 1px solid hsl(340, 15%, 88%, 0.4); letter-spacing: 0.025em; transition: color 0.2s; }
.mobile-nav-link:hover { color: var(--primary); }
.mobile-drawer-footer { padding: 1.5rem; padding-bottom: 2rem; }
.mobile-footer-date { text-align: center; font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.75rem; font-style: italic; font-family: 'Playfair Display', serif; }

/* ===== HERO ===== */
.hero-section { min-height: 95vh; display: flex; align-items: center; padding-top: 6rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; padding: 3rem 0; position: relative; z-index: 10; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-text { display: flex; flex-direction: column; gap: 2rem; }
@media (max-width: 639px) { .hero-text { gap: 1.25rem; padding: 0 1rem; } }
.hero-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 5vw, 4rem); font-weight: 700; color: var(--primary); line-height: 1.1; letter-spacing: -0.02em; }
@media (max-width: 639px) { .hero-title { font-size: 1.875rem; } }
.hero-hours { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; color: var(--accent); font-weight: 600; }
@media (min-width: 768px) { .hero-hours { font-size: 2.25rem; } }
.hero-location { font-size: 1.25rem; font-weight: 700; color: var(--primary); letter-spacing: 0.05em; }
.hero-tagline { font-size: clamp(1rem, 2.5vw, 1.5rem); color: var(--muted-fg); font-style: italic; font-weight: 500; max-width: 32rem; }
.hero-date { font-size: 1rem; font-weight: 700; color: var(--primary); }
.hero-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.wa-label { font-size: 0.65rem; color: var(--muted-fg); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; display: block; }
.wa-number { display: block; color: var(--primary); font-size: 1.125rem; font-weight: 700; }
.wa-number:hover { text-decoration: underline; }
.hero-image-col { display: flex; justify-content: center; }
.hero-image-wrapper { position: relative; width: 100%; max-width: 26rem; }
.blob-bg-1 { position: absolute; top: -2.5rem; right: -2.5rem; width: 14rem; height: 14rem; border-radius: 50%; background: hsl(340, 35%, 93%, 0.5); filter: blur(40px); z-index: 0; }
.blob-bg-2 { position: absolute; bottom: -2rem; left: -2rem; width: 11rem; height: 11rem; border-radius: 50%; background: hsl(38, 65%, 54%, 0.15); filter: blur(28px); z-index: 0; }
.blob-bg-3 { position: absolute; top: 33%; right: -3rem; width: 7rem; height: 7rem; border-radius: 50%; background: hsl(316, 41%, 30%, 0.1); filter: blur(20px); z-index: 0; }
.hero-arch { position: relative; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); cursor: pointer; border-radius: 50% 50% 4% 4% / 40% 40% 4% 4%; z-index: 1; }
.hero-arch:hover .hero-play-overlay { background: hsl(316, 41%, 30%, 0.1); }
.hero-arch:hover .play-btn-circle { transform: scale(1.1); }
.hero-img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 3/4; }
.hero-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: hsl(316, 41%, 30%, 0.05); transition: background 0.3s; }
.play-btn-circle { width: 5rem; height: 5rem; border-radius: 50%; background: rgba(250, 247, 242, 0.8); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: transform 0.3s; }
.dot-pattern { background-image: radial-gradient(hsl(316, 41%, 30%, 0.1) 1px, transparent 1px); background-size: 20px 20px; }
.hero-dot { position: absolute; bottom: -1.5rem; left: -1.5rem; width: 7rem; height: 7rem; border-radius: 50%; opacity: 0.4; display: none; }
@media (min-width: 1024px) { .hero-dot { display: block; } }

/* ===== VIDEO MODAL ===== */
.video-modal { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0); pointer-events: none; transition: background 0.35s ease; }
.video-modal.open { background: rgba(0,0,0,0.92); pointer-events: all; }
.video-modal-close { position: absolute; top: 1rem; right: 1rem; z-index: 51; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: background 0.2s; opacity: 0; transform: scale(0.8); transition: opacity 0.3s, transform 0.3s; }
.video-modal.open .video-modal-close { opacity: 1; transform: scale(1); }
.video-modal-close:hover { background: rgba(255,255,255,0.35); }
.video-container { width: 100%; max-width: 22rem; aspect-ratio: 9/16; opacity: 0; transform: scale(0.9) translateY(20px); transition: opacity 0.35s, transform 0.35s; }
.video-modal.open .video-container { opacity: 1; transform: scale(1) translateY(0); }
.hero-video { width: 100%; height: 100%; border-radius: 0.75rem; object-fit: cover; }

/* ===== SCROLL REVEAL ===== */
.scroll-reveal { opacity: 0; transform: translateY(2rem); transition: opacity 0.7s ease-out, transform 0.7s ease-out; transition-delay: var(--delay, 0ms); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== LOGO WATERMARK ===== */
.logo-watermark { height: 4rem; width: auto; margin: 0 auto; opacity: 0.3; }

/* ===== INTEGRATED APPROACH ===== */
.integrated-section { background: var(--bg); }
.integrated-header { max-width: 44rem; margin: 0 auto 2.5rem; }
@media (min-width: 768px) { .integrated-header { margin: 0 auto 4rem; } }
.integrated-subtitle { color: var(--muted-fg); font-size: 0.9375rem; line-height: 1.7; max-width: 38rem; margin: 1rem auto 0; }
@media (min-width: 768px) { .integrated-subtitle { font-size: 1.0625rem; line-height: 1.75; margin-top: 1.25rem; } }
.integrated-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; max-width: 68rem; margin: 0 auto; }
@media (min-width: 1024px) { .integrated-grid { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; } }
.integrated-card { position: relative; background: rgba(250, 247, 242, 0.7); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem 1.25rem; transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); overflow: hidden; }
@media (min-width: 768px) { .integrated-card { padding: 2.25rem 2rem; } }
.integrated-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), hsl(38, 65%, 70%)); opacity: 0; transition: opacity 0.35s; }
.integrated-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(107, 45, 91, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04); border-color: hsl(38, 65%, 54%, 0.3); }
.integrated-card:hover::before { opacity: 1; }
.integrated-img { width: 3.25rem; height: 3.25rem; border-radius: 50%; overflow: hidden; flex-shrink: 0; margin-bottom: 0.875rem; padding: 2px; background: linear-gradient(135deg, var(--accent), hsl(38, 65%, 70%), var(--accent)); transition: transform 0.35s, box-shadow 0.35s; }
@media (min-width: 768px) { .integrated-img { width: 4.5rem; height: 4.5rem; margin-bottom: 1.25rem; padding: 2.5px; } }
.integrated-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.integrated-card:hover .integrated-img { transform: scale(1.06); box-shadow: 0 4px 16px rgba(107, 45, 91, 0.12); }
.integrated-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.375rem; }
@media (min-width: 768px) { .integrated-card-title { font-size: 1.25rem; margin-bottom: 0.625rem; } }
.integrated-card-text { color: var(--muted-fg); font-size: 0.8125rem; line-height: 1.6; }
@media (min-width: 768px) { .integrated-card-text { font-size: 0.9375rem; line-height: 1.7; } }
.integrated-footer { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border); text-align: center; }
.integrated-footer-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.375rem; font-weight: 600; color: var(--primary); margin-bottom: 1.25rem; }

/* ===== PILLARS ===== */
.pillars-section { }
.pillars-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem 4rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
.pillar-item { display: flex; gap: 1.25rem; align-items: flex-start; }
@media (min-width: 768px) { .pillar-item { gap: 2rem; } }
.pillar-img-wrapper { width: 6rem; height: 6rem; flex-shrink: 0; border-radius: 50%; padding: 3px; background: linear-gradient(135deg, hsl(38,65%,54%), hsl(38,65%,70%), hsl(38,65%,54%)); }
@media (min-width: 768px) { .pillar-img-wrapper { width: 9rem; height: 9rem; } }
.pillar-img-inner { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; background: var(--secondary); }
.pillar-img-inner img { width: 100%; height: 100%; object-fit: cover; }
.pillar-text { padding-top: 0.5rem; }
.pillar-subtitle { font-size: 0.75rem; font-weight: 500; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.25rem; }
.pillar-text h3 { font-size: clamp(1.125rem, 2.5vw, 1.7rem); margin-bottom: 0.75rem; }
.divider-line { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.line { height: 1px; background: hsl(316, 41%, 30%, 0.2); width: 8rem; }
.line.short { width: 6rem; }
.infinity-icon { width: 2rem; height: 2rem; color: hsl(316, 41%, 30%, 0.3); }
.line-divider-img { max-width: 20rem; width: 100%; opacity: 0.3; margin: 0 auto; }

/* ===== ARCH IMAGES ===== */
.arch-img-wrapper { position: relative; display: flex; justify-content: center; }
.arch-img-frame { position: relative; width: 18rem; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); border-radius: 50% 50% 4% 4% / 40% 40% 4% 4%; z-index: 1; }
@media (min-width: 768px) { .arch-img-frame { width: 22rem; } }
@media (min-width: 1024px) { .arch-img-frame { width: 26rem; } }
.arch-img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 3/4; }
.blob-organic-bg { position: absolute; inset: -1.5rem; background: hsl(340, 35%, 93%, 0.5); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; z-index: 0; }

/* ===== TEXT BODY ===== */
.text-body p { color: var(--muted-fg); font-size: 1rem; line-height: 1.75; }
.accent-line { width: 4rem; height: 2px; background: var(--accent); margin-top: 1rem; }

/* ===== INSTAGRAM REELS CAROUSEL ===== */
.reels-section { background: var(--primary); padding: 4rem 0; }
.reels-carousel { position: relative; max-width: 72rem; margin: 0 auto; padding: 0 3.5rem; }
.reels-viewport { overflow: hidden; border-radius: 1rem; }
.reels-track { display: flex; gap: 1.25rem; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reel-card { flex: 0 0 calc((100% - 3 * 1.25rem) / 4); position: relative; border-radius: 0.875rem; overflow: hidden; aspect-ratio: 9/16; background: hsl(316, 41%, 20%); cursor: pointer; transition: transform 0.35s, box-shadow 0.35s; }
@media (max-width: 1023px) { .reel-card { flex: 0 0 calc((100% - 2 * 1.25rem) / 3); } }
@media (max-width: 639px) { .reel-card { flex: 0 0 calc((100% - 1 * 1.25rem) / 2); } .reels-carousel { padding: 0 2.75rem; } }
.reel-card:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }
.reel-card video { width: 100%; height: 100%; object-fit: cover; }
.reel-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.1); transition: background 0.3s, opacity 0.3s; z-index: 1; }
.reel-card:hover .reel-play { background: rgba(0, 0, 0, 0.03); }
.reel-card.playing .reel-play { opacity: 0; pointer-events: none; }
.reel-play-circle { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.3s; }
.reel-card:hover .reel-play-circle { transform: scale(1.1); background: rgba(255, 255, 255, 0.3); }
.reel-ig-badge { position: absolute; top: 0.5rem; left: 0.5rem; z-index: 2; width: 1.375rem; height: 1.375rem; border-radius: 0.3rem; background: rgba(0, 0, 0, 0.25); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; }
.reel-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 30%; background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent); z-index: 0; pointer-events: none; }
.reels-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(250, 247, 242, 0.1); backdrop-filter: blur(4px); border: 1px solid rgba(250, 247, 242, 0.15); color: var(--primary-fg); display: flex; align-items: center; justify-content: center; transition: background 0.2s, opacity 0.3s; z-index: 5; }
.reels-arrow:hover { background: rgba(250, 247, 242, 0.2); }
.reels-arrow.left { left: 0; }
.reels-arrow.right { right: 0; }
.reels-arrow:disabled { opacity: 0.25; cursor: default; }
.reels-arrow:disabled:hover { background: rgba(250, 247, 242, 0.1); }

/* ===== CURRICULUM TABS ===== */
.tabs-list { display: flex; background: rgba(250, 247, 242, 0.8); backdrop-filter: blur(8px); border-radius: 9999px; padding: 0.375rem; margin-bottom: 2rem; }
.tab-btn { flex: 1; border-radius: 9999px; padding: 0.75rem; font-size: 0.875rem; font-weight: 600; transition: all 0.2s; color: var(--primary); font-family: 'Lato', sans-serif; }
.tab-btn.active { background: var(--primary); color: var(--primary-fg); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.curriculum-card { background: rgba(250, 247, 242, 0.8); backdrop-filter: blur(8px); border-radius: 1rem; overflow: hidden; display: grid; }
@media (min-width: 768px) { .curriculum-card { grid-template-columns: 1fr 1fr; } }
.curriculum-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.curriculum-info { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.curriculum-week-label { font-size: 0.75rem; font-weight: 500; color: var(--accent); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; }
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 0.125rem; }

/* ===== SESSION TIMING ===== */
.label-tag { font-size: 0.75rem; font-weight: 500; color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase; }
.sessions-list { display: flex; flex-direction: column; }
.session-row { display: flex; align-items: center; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.session-row.no-border { border-bottom: none; }
.session-time { font-family: monospace; font-size: 0.875rem; color: var(--accent); width: 8rem; flex-shrink: 0; }
.session-label { font-family: 'Playfair Display', serif; font-size: 1.125rem; color: var(--primary); font-weight: 500; }

/* ===== BULLET LIST ===== */
.bullet-list { display: flex; flex-direction: column; gap: 1rem; }
.bullet-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--muted-fg); line-height: 1.75; }
.bullet-list li::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 0.5rem; }
.who-card { position: relative; background: rgba(250, 247, 242, 0.8); backdrop-filter: blur(8px); border-radius: 1rem; padding: 2rem; }

/* ===== TEACHER ===== */
.teacher-img-wrapper { position: relative; }
.teacher-img-frame { position: relative; border-radius: 2rem; overflow: hidden; aspect-ratio: 4/5; background: var(--secondary); z-index: 1; }
.teacher-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.teacher-dot { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 6rem; height: 6rem; border-radius: 50%; opacity: 0.3; display: none; }
@media (min-width: 1024px) { .teacher-dot { display: block; } }

/* ===== WHATS INCLUDED ===== */
.whats-included-list { display: flex; flex-direction: column; gap: 0.5rem; }
.included-btn { text-align: left; border-radius: 0.75rem; padding: 1rem 1.5rem; transition: all 0.3s; background: rgba(250, 247, 242, 0.8); backdrop-filter: blur(8px); font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; color: var(--accent); overflow: hidden; }
.included-btn.active { background: var(--primary); color: var(--primary-fg); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.included-btn.active .included-btn-title { color: var(--accent); }
.included-btn-desc { font-size: 1rem; font-family: 'Lato', sans-serif; font-weight: 400; color: rgba(250, 247, 242, 0.8); margin-top: 0.75rem; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.3s, opacity 0.3s, margin 0.3s; }
.included-btn.active .included-btn-desc { max-height: 8rem; opacity: 1; }
.included-img-frame { border-radius: 1rem; overflow: hidden; aspect-ratio: 1; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.included-img-frame img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s; }

/* ===== JOURNEY OUTCOMES ===== */
.outcomes-carousel-wrapper { position: relative; max-width: 72rem; margin: 0 auto; }
.outcomes-carousel { display: flex; overflow-x: auto; gap: 1.5rem; scrollbar-width: none; scroll-behavior: smooth; }
.outcomes-carousel::-webkit-scrollbar { display: none; }
.outcome-card { flex: 0 0 85%; min-width: 0; background: rgba(250, 247, 242, 0.7); backdrop-filter: blur(8px); border-radius: 1rem; padding: 2rem; border: 1px solid hsl(340, 15%, 88%, 0.3); transition: box-shadow 0.2s; }
@media (min-width: 640px) { .outcome-card { flex: 0 0 45%; } }
@media (min-width: 1024px) { .outcome-card { flex: 0 0 30%; } }
.outcome-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.outcome-num { font-family: 'Playfair Display', serif; font-size: 1.875rem; font-weight: 700; color: var(--accent); }
.carousel-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel-btn { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: background 0.2s; color: var(--primary); }
.carousel-btn:hover { background: var(--secondary); }
.certs-box { background: rgba(250, 247, 242, 0.6); border-radius: 1rem; padding: 2rem; max-width: 42rem; margin: 0 auto; text-align: center; }

/* ===== SOCIAL PROOF ===== */
.social-proof-section { background: var(--primary); }
.social-proof-section .label-tag { color: var(--accent); }
.accent-label { color: var(--accent); }
.blob-glow { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; }
.blob-glow.top-left { top: 0; left: 0; width: 18rem; height: 18rem; background: hsl(38, 65%, 54%, 0.1); }
.blob-glow.bottom-right { bottom: 0; right: 0; width: 24rem; height: 24rem; background: hsl(38, 65%, 54%, 0.05); }
.blob-glow.top-right { top: 0; right: 0; width: 24rem; height: 24rem; background: hsl(38, 65%, 54%, 0.1); }
.blob-glow.bottom-left { bottom: 0; left: 0; width: 18rem; height: 18rem; background: hsl(38, 65%, 54%, 0.05); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 56rem; margin: 0 auto 3.5rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { text-align: center; padding: 1.5rem 1rem; border-radius: 1rem; background: rgba(250, 247, 242, 0.05); border: 1px solid rgba(250, 247, 242, 0.1); }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.75rem; color: rgba(250, 247, 242, 0.6); margin-top: 0.5rem; font-weight: 500; letter-spacing: 0.05em; }

/* ===== TRAINING GRID ===== */
.training-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 768px) { .training-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .training-grid { grid-template-columns: repeat(4, 1fr); } }
.training-img-wrapper { position: relative; overflow: hidden; border-radius: 0.75rem; aspect-ratio: 4/3; }
.training-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.training-img-wrapper:hover img { transform: scale(1.05); }
.training-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(316, 41%, 30%, 0.7), hsl(316, 41%, 30%, 0.1), transparent); opacity: 0; transition: opacity 0.5s; display: flex; align-items: flex-end; }
.training-img-wrapper:hover .training-overlay { opacity: 1; }
.training-overlay span { color: white; font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 500; padding: 1rem; letter-spacing: 0.025em; }

/* ===== HIMACHAL SLIDER ===== */
.himachal-slider { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.25); max-width: 64rem; margin: 0 auto; }
.slider-track { position: relative; aspect-ratio: 16/9; }
@media (min-width: 768px) { .slider-track { aspect-ratio: 21/9; } }
.slider-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s; }
.slider-img.active { opacity: 1; }
.slider-gradient { position: absolute; inset: 0; background: linear-gradient(to top, hsl(316, 41%, 30%, 0.9), hsl(316, 41%, 30%, 0.2), transparent); }
.slider-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 2.5rem; }
.slider-location { display: flex; align-items: center; gap: 0.5rem; color: var(--accent); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.slider-title { font-family: 'Playfair Display', serif; font-size: clamp(1.25rem, 3vw, 1.875rem); font-weight: 700; color: hsl(39, 32%, 97%); }
.slider-text { color: rgba(250, 247, 242, 0.8); font-size: clamp(0.875rem, 1.5vw, 1rem); max-width: 36rem; line-height: 1.6; margin-top: 0.5rem; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(107, 45, 91, 0.4); backdrop-filter: blur(4px); color: hsl(39, 32%, 97%); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.slider-btn:hover { background: rgba(107, 45, 91, 0.6); }
.slider-btn.left { left: 0.75rem; }
.slider-btn.right { right: 0.75rem; }
.slider-dots { position: absolute; bottom: 0.75rem; right: 1.5rem; display: flex; gap: 0.5rem; }
@media (min-width: 768px) { .slider-dots { right: 2.5rem; } }
.slider-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: rgba(250, 247, 242, 0.4); transition: all 0.3s; }
.slider-dot.active { background: var(--accent); width: 1.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.video-card {}
.video-wrapper { position: relative; border-radius: 1rem; overflow: hidden; background: var(--card); aspect-ratio: 9/16; }
.testimonial-video { width: 100%; height: 100%; object-fit: cover; }
.play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.1); transition: background 0.2s; }
.play-overlay:hover { background: rgba(0,0,0,0.2); }
.play-circle { width: 4rem; height: 4rem; border-radius: 50%; background: rgba(255,255,255,0.4); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; }
.video-name { margin-top: 0.75rem; text-align: center; font-family: 'Playfair Display', serif; color: var(--primary); font-weight: 500; }

/* ===== VENUE ===== */
.venue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1024px) { .venue-grid { grid-template-columns: repeat(4, 1fr); } }
.venue-img-wrapper { border-radius: 1rem; overflow: hidden; aspect-ratio: 1; }
.venue-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.venue-img-wrapper:hover img { transform: scale(1.05); }

/* ===== PRICING ===== */
.offer-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: hsl(316, 41%, 30%, 0.1); border: 1px solid hsl(38, 65%, 54%, 0.3); border-radius: 9999px; padding: 0.625rem 1.25rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 64rem; margin: 0 auto 3rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { background: var(--card); border-radius: 1rem; padding: 2rem; display: flex; flex-direction: column; }
.pricing-card.highlighted { background: var(--primary); color: var(--primary-fg); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
@media (min-width: 768px) { .pricing-card.highlighted { transform: scale(1.05); } }
.pricing-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.25rem; }
.most-popular { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 0.75rem; }
.most-popular span { font-size: 0.75rem; color: var(--accent); font-weight: 500; }
.pricing-price { margin-top: 0.25rem; }
.price-original { font-size: 1.125rem; text-decoration: line-through; color: var(--muted-fg); }
.pricing-card.highlighted .price-original { color: rgba(250, 247, 242, 0.5); }
.price-discounted { font-size: 1.875rem; font-weight: 700; }
.pricing-duration { font-size: 0.875rem; margin-top: 0.25rem; margin-bottom: 0.25rem; color: var(--muted-fg); }
.pricing-card.highlighted .pricing-duration { color: rgba(250, 247, 242, 0.7); }
.pricing-subtitle { font-size: 0.875rem; font-weight: 500; color: hsl(316, 41%, 30%, 0.7); margin-bottom: 1.5rem; }
.pricing-card.highlighted .pricing-subtitle { color: rgba(250, 247, 242, 0.8); }
.pricing-features-label { font-size: 0.75rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-card.highlighted .pricing-features-label { color: rgba(250, 247, 242, 0.9); }
.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 1rem; }
.pricing-features li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 0.125rem; }
.pricing-card.highlighted .pricing-features li { color: rgba(250, 247, 242, 0.9); }
.pricing-extras { max-width: 64rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.pricing-box { background: rgba(250, 247, 242, 0.8); backdrop-filter: blur(8px); border-radius: 1rem; padding: 2rem; }
.pricing-offers { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .pricing-offers { grid-template-columns: 1fr 1fr; } }
.offer-box { background: hsl(38, 65%, 54%, 0.1); border-radius: 1rem; padding: 1.5rem; text-align: center; }

/* ===== FAQ ===== */
.faq-section { background: linear-gradient(to bottom, hsl(340, 35%, 93%, 0.4), var(--bg), hsl(340, 35%, 93%, 0.3)); }
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item { background: rgba(250, 247, 242, 0.8); backdrop-filter: blur(8px); border-radius: 0.75rem; overflow: hidden; }
.accordion-trigger { width: 100%; text-align: left; padding: 1.25rem 1.5rem; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; color: var(--primary); display: flex; align-items: center; justify-content: space-between; transition: background 0.2s; }
.accordion-trigger:hover { background: hsl(340, 35%, 93%, 0.5); }
.accordion-trigger::after { content: '+'; font-size: 1.25rem; font-family: 'Lato', sans-serif; font-weight: 300; color: var(--muted-fg); flex-shrink: 0; transition: transform 0.3s; }
.accordion-item.open .accordion-trigger::after { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-content p { padding: 0 1.5rem 1.25rem; color: var(--muted-fg); font-size: 1rem; line-height: 1.75; }

/* ===== CTA ROW ===== */
.cta-btn-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ===== FOOTER ===== */
.footer { background: hsl(316, 41%, 28%); color: rgba(250, 247, 242, 0.7); padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-logo { height: 3rem; width: auto; margin-bottom: 1rem; filter: brightness(200%); }
.footer-heading { color: rgba(250, 247, 242, 1); }
.footer-contact p { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: rgba(250, 247, 242, 1); }
.footer-bottom { border-top: 1px solid rgba(250, 247, 242, 0.1); padding-top: 2rem; text-align: center; font-size: 0.75rem; }

/* ===== FLOATING WHATSAPP ===== */
.floating-wa { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); animation: bounce-wa 2s infinite; transition: transform 0.2s, box-shadow 0.2s; }
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.25); animation: none; }
@keyframes bounce-wa { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ===== FLOATING QUOTE ===== */
.floating-quote { position: fixed; bottom: 6rem; left: 1.5rem; z-index: 50; max-width: 18rem; width: 100%; background: var(--card); border: 1px solid hsl(340, 15%, 88%, 0.6); border-radius: 1rem; box-shadow: 0 8px 32px rgba(0,0,0,0.12); padding: 1rem; opacity: 0; transform: translateY(20px); transition: opacity 0.5s, transform 0.5s; pointer-events: none; }
.floating-quote.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-quote.dismissed { display: none; }
.fq-close { position: absolute; top: 0.5rem; right: 0.5rem; color: var(--muted-fg); padding: 0.25rem; border-radius: 50%; transition: background 0.2s; }
.fq-close:hover { background: var(--muted); }
.fq-inner { display: flex; align-items: flex-start; gap: 0.75rem; padding-right: 1.5rem; }
.fq-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid hsl(38, 65%, 54%, 0.3); }
.fq-quote-icon { margin-bottom: 0.25rem; display: block; }
.fq-text { font-size: 0.875rem; color: var(--fg); font-style: italic; line-height: 1.6; }
.fq-author { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.375rem; font-weight: 500; }
.fq-footer { margin-top: 0.75rem; padding-top: 0.625rem; border-top: 1px solid hsl(340, 15%, 88%, 0.4); display: flex; align-items: center; gap: 0.375rem; }
.fq-dot { position: relative; width: 0.5rem; height: 0.5rem; flex-shrink: 0; }
.fq-dot-ping { position: absolute; inset: 0; border-radius: 50%; background: hsl(38, 65%, 54%, 0.75); animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }
.fq-dot-inner { position: relative; border-radius: 50%; background: var(--accent); width: 100%; height: 100%; display: block; }
.fq-spots { font-size: 0.75rem; font-weight: 700; color: var(--accent); }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }
.fq-fade { transition: opacity 0.3s; }
.fq-fade.fading { opacity: 0; }

/* ===== REGISTER MODAL ===== */
.modal-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; padding: 1rem; pointer-events: none; transition: background 0.3s; }
.modal-overlay.open { background: rgba(0,0,0,0.5); pointer-events: all; }
.register-modal { background: var(--card); border-radius: 1.25rem; width: 100%; max-width: 72rem; max-height: 90vh; overflow-y: auto; opacity: 0; transform: scale(0.95); transition: opacity 0.3s, transform 0.3s; }
.modal-overlay.open .register-modal { opacity: 1; transform: scale(1); }
.register-modal-grid { display: grid; grid-template-columns: 1fr; min-height: 600px; }
@media (min-width: 1024px) { .register-modal-grid { grid-template-columns: 1fr 1fr; } }
.modal-form-side { padding: 2rem 2.5rem; position: relative; }
.modal-close-btn { position: absolute; top: 1rem; right: 1rem; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; color: var(--muted-fg); }
.modal-close-btn:hover { background: var(--muted); }
.form-group { margin-bottom: 1rem; }
.form-input { width: 100%; height: 3rem; padding: 0 1rem; border: 1px solid hsl(340, 15%, 88%, 0.5); border-radius: 0.5rem; background: var(--bg); font-family: 'Lato', sans-serif; font-size: 1rem; color: var(--fg); outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--primary); }
.form-textarea { height: 5rem; padding: 0.75rem 1rem; resize: none; }
select.form-input { cursor: pointer; }
.form-error { font-size: 0.75rem; color: hsl(0, 84%, 60%); margin-top: 0.25rem; display: block; }
.form-success { text-align: center; padding: 1rem; background: hsl(120, 40%, 95%); border-radius: 0.5rem; color: hsl(120, 40%, 30%); font-weight: 600; margin-top: 1rem; }
.form-error-box { text-align: center; padding: 1rem; background: hsl(0, 84%, 95%); border-radius: 0.5rem; color: hsl(0, 84%, 40%); margin-top: 1rem; }
.modal-calendly-side { background: hsl(316, 41%, 30%, 0.05); border-left: 1px solid hsl(340, 15%, 88%, 0.3); padding: 2rem 2.5rem; display: flex; flex-direction: column; }
.calendly-iframe { width: 100%; flex: 1; min-height: 500px; border: none; border-radius: 0.5rem; }
/* ===== CM VIDEO TRIGGER HOVER ===== */
.cm-video-trigger { cursor: pointer; }
.cm-video-trigger:hover .hero-play-overlay { background: hsl(316, 41%, 30%, 0.1); }
.cm-video-trigger:hover .play-btn-circle { transform: scale(1.1); }
/* ===== MOBILE SUB NAV ===== */
.mobile-sub-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  overflow-x: auto;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
  gap: 0.25rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mobile-sub-nav::-webkit-scrollbar { display: none; }
.mobile-sub-nav.visible {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1023px) {
  .mobile-sub-nav { display: flex; }
  .main-header.scrolled ~ .mobile-sub-nav.visible,
  .mobile-sub-nav.visible { top: 52px; }
}
@media (min-width: 1024px) {
  .mobile-sub-nav { display: none !important; }
}
.sub-nav-link {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted-fg);
  border-radius: 9999px;
  border: 1px solid var(--border);
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.sub-nav-link:hover,
.sub-nav-link.active {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
/* ===== MUSIC TOGGLE ===== */
.music-toggle {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
/* ===== WHATS INCLUDED MOBILE FIX ===== */
.included-btn-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}
.included-btn-desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted-fg);
  margin-top: 0.25rem;
  line-height: 1.5;
}
.included-btn.active .included-btn-title {
  color: var(--primary-fg);
}
.included-btn.active .included-btn-desc {
  color: rgba(250, 247, 242, 0.8);
}

@media (max-width: 1023px) {
  .whats-included-list + div {
    margin-top: 2rem;
  }
  .included-img-frame img {
    border-radius: 0.75rem;
  }
}