﻿/* =========================================================================
   L Dance Studio — Full Homepage (PHP-rendered)
   Mirrors the Next.js Tailwind design 1:1. Same colors, fonts, spacing,
   animations. Pure CSS, no framework.
   ========================================================================= */

/* ---- Design tokens (mirrors tailwind.config.js + globals.css) ---- */
:root {
    --pink:    #FF1493;     /* dance.pink */
    --green:   #00FF7F;     /* dance.green */
    --gray:    #C0C0C0;     /* dance.gray */
    --yellow:  #FFD700;     /* dance.yellow */
    --orange:  #FF8C00;     /* dance.orange */
    --red:     #FF0000;     /* dance.red */

    --ink:     #050505;     /* ink DEFAULT */
    --ink-900: #080808;
    --ink-800: #0e0e0e;
    --ink-700: #161616;
    --ink-600: #1d1d1d;
    --ink-500: #262626;

    --tw-w2:   0.18em;      /* tracking-wider2 */
    --tw-w3:   0.32em;      /* tracking-widest2 */

    --ff-display: 'Bebas Neue', Impact, 'Arial Black', sans-serif;
    --ff-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --ff-sans:    'Be Vietnam Pro', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ff-mono:    ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.dance-dark, body { background: var(--ink); color: #f5f5f5; }
body {
    font-family: var(--ff-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---- type primitives ---- */
.font-display { font-family: var(--ff-display); }
.font-serif   { font-family: var(--ff-serif); }
.font-mono    { font-family: var(--ff-mono); }
.uppercase    { text-transform: uppercase; }
.italic       { font-style: italic; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: var(--pink);
    font-weight: 500;
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px; height: 1px;
    background: var(--pink);
}

.display-title {
    font-family: var(--ff-display);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.01em;
    font-weight: 400;
    margin: 0;
}

.serif-italic {
    font-family: var(--ff-serif);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

/* ---- buttons ---- */
.btn-dance {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px;
    background: var(--pink);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tw-w2);
    font-size: 13px;
    border: 1px solid var(--pink);
    transition: all .3s ease;
}
.btn-dance:hover { background: transparent; color: var(--pink); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tw-w2);
    font-size: 13px;
    border: 1px solid rgba(255,255,255,.4);
    transition: all .3s ease;
}
.btn-ghost:hover { border-color: #fff; background: #fff; color: #000; }

/* ---- film grain ---- */
.bg-grain {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.text-shadow-glow-pink { text-shadow: 0 0 30px rgba(255, 20, 147, 0.45); }
.text-stroke { -webkit-text-stroke: 1.5px currentColor; color: transparent; }

/* ---- section primitives ---- */
.section-dark {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section-padding {
    padding: 80px 20px;
}
@media (min-width: 640px)  { .section-padding { padding: 80px 32px; } }
@media (min-width: 1024px) { .section-padding { padding: 128px 64px; } }

.section-deco-num {
    pointer-events: none;
    user-select: none;
    position: absolute;
    top: 40px;
    font-family: var(--ff-display);
    color: rgba(255,255,255,.04);
    font-size: 16rem;
    line-height: 1;
}
.section-deco-num.right { right: 16px; }
.section-deco-num.left  { left: 16px; }
@media (min-width: 1024px) {
    .section-deco-num { font-size: 24rem; }
    .section-deco-num.right { right: 48px; }
    .section-deco-num.left  { left: 48px; }
}

.section-inner { position: relative; max-width: 80rem; margin: 0 auto; }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    background: transparent;
    transition: background .5s ease, backdrop-filter .5s ease, border-color .5s ease, box-shadow .5s ease;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: rgba(255,255,255,.1);
    box-shadow: 0 2px 30px rgba(0,0,0,.6);
}
.header-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 20px;
    height: 64px;
}
@media (min-width: 640px)  { .header-row { padding: 0 32px; } }
@media (min-width: 1024px) { .header-row { padding: 0 48px; height: 80px; } }

.brand-mark {
    display: inline-flex; align-items: baseline; gap: 4px;
    transition: transform .3s ease;
}
.brand-mark .b-l {
    font-family: var(--ff-display);
    font-size: 30px;
    color: var(--pink);
    line-height: 1;
    transition: transform .3s ease;
}
.brand-mark:hover .b-l { transform: rotate(-3deg); }
.brand-mark .b-text {
    font-family: var(--ff-display);
    font-size: 20px;
    letter-spacing: var(--tw-w3);
    color: #fff;
    line-height: 1;
}
@media (min-width: 1024px) {
    .brand-mark .b-l { font-size: 36px; }
    .brand-mark .b-text { font-size: 24px; }
}

.nav-desktop { display: none; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.7);
    transition: color .3s ease;
}
.nav-desktop a:hover { color: var(--pink); }

.header-right { display: none; align-items: center; gap: 20px; }
@media (min-width: 1024px) { .header-right { display: flex; } }
.header-right .divider { width: 1px; height: 20px; background: rgba(255,255,255,.2); }

.lang-switch {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--ff-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.7);
}
.lang-switch a { padding: 4px 6px; transition: color .3s; }
.lang-switch a.active { color: var(--pink); }
.lang-switch a:not(.active):hover { color: #fff; }

.header-cta {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    transition: all .3s ease;
}
.header-cta:hover { background: #fff; color: #000; }

.menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    margin-right: -8px;
    background: transparent; border: 0;
    color: #fff;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 26px; height: 26px; }

/* mobile menu panel */
.mobile-panel {
    position: fixed; top: 64px; left: 0; right: 0;
    z-index: 40;
    background: #000;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 32px 24px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .5s ease, transform .5s ease;
}
.mobile-panel.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (min-width: 1024px) { .mobile-panel { display: none; } }
.mobile-panel nav { display: flex; flex-direction: column; }
.mobile-panel nav a {
    font-family: var(--ff-display);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w2);
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    display: flex; align-items: baseline; gap: 12px;
    transition: color .3s ease;
}
.mobile-panel nav a:hover { color: var(--pink); }
.mobile-panel nav a .num {
    font-family: var(--ff-sans);
    font-size: 12px;
    color: rgba(255,20,147,.6);
    letter-spacing: var(--tw-w3);
}
.mobile-panel-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px; margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    width: 100%;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
}
.hero-fallback {
    position: absolute; inset: 0;
    transition: opacity 1200ms ease;
}
.hero-fallback.hidden { opacity: 0; }
.hero-fallback-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-700) 50%, #000 100%);
}
.hero-fallback-blob1 {
    position: absolute;
    top: -8rem; right: -8rem;
    width: 680px; height: 680px;
    border-radius: 50%;
    background: rgba(255,20,147,.25);
    filter: blur(140px);
    animation: pulseSlow 4s ease-in-out infinite;
}
.hero-fallback-blob2 {
    position: absolute;
    bottom: -10rem; left: -8rem;
    width: 620px; height: 620px;
    border-radius: 50%;
    background: rgba(0,255,127,.15);
    filter: blur(160px);
    animation: pulseSlow 4s ease-in-out infinite;
}
@keyframes pulseSlow {
    0%,100% { opacity: .85; }
    50%     { opacity: 1; }
}

/* hero media (mp4 / yt / fb) */
.hero-media {
    position: absolute; inset: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1500ms ease;
}
.hero-media.ready { opacity: 1; }
.hero-media video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: heroKenburns 18s ease-in-out infinite alternate;
}
@keyframes heroKenburns {
    0%   { transform: scale(1.04) translate3d(0,0,0); }
    100% { transform: scale(1.14) translate3d(-1.2%, -1.5%, 0); }
}
.hero-media .yt-frame, .hero-media .fb-frame {
    position: absolute;
    top: 50%; left: 50%;
    border: 0;
    background: #000;
    pointer-events: none;
}
.hero-media .yt-frame {
    width: max(100vw, 177.78vh);
    height: max(56.25vw, 100vh);
    transform: translate(-50%, -50%) scale(1.35);
}
.hero-media .fb-frame {
    width: max(100vw, 56.25vh);
    height: max(177.78vw, 100vh);
    transform: translate(-50%, -50%) scale(1.35);
}
@media (min-width: 1024px) {
    .hero-media .yt-frame { transform: translate(-50%,-50%) scale(1.25); }
    .hero-media .fb-frame { transform: translate(-50%,-50%) scale(1.5); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-media video { animation: none; transform: scale(1.04); }
}
/* hero overlays */
.hero-overlay-1 {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.3) 50%, rgba(0,0,0,.85));
    pointer-events: none;
}
.hero-overlay-2 {
    position: absolute; inset: 0;
    background: radial-gradient(120% 80% at 50% 35%, transparent 0%, transparent 45%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}
.hero-rim {
    position: absolute;
    right: -10rem; top: 33%;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: rgba(255,20,147,.15);
    filter: blur(160px);
    mix-blend-mode: screen;
    pointer-events: none;
}
.hero-grain {
    position: absolute; inset: 0;
    mix-blend-mode: overlay;
    opacity: .55;
    pointer-events: none;
}
.hero-scanline {
    position: absolute; inset: 0;
    opacity: .06;
    background-image: linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
    background-size: 120px 100%;
    pointer-events: none;
}

/* hero top broadcast bar */
/* Padding-top must clear the fixed header (64px mobile / 80px lg) by a
   comfortable margin so the centered eyebrow lines up with LIVE FROM SAIGON
   well below the nav row, not overlapping it. */
.hero-top {
    position: absolute; left: 0; right: 0; top: 0;
    z-index: 20;
    padding: 132px 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}
@media (min-width: 640px)  { .hero-top { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1024px) { .hero-top { padding: 156px 48px 0; } }
.hero-top-left, .hero-top-right {
    display: flex; align-items: center; gap: 24px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.6);
}
.hero-top-right { font-family: var(--ff-mono); display: none; }
@media (min-width: 768px) { .hero-top-right { display: flex; } }
.hero-top .live-dot {
    position: relative; display: inline-block;
    width: 8px; height: 8px;
}
.hero-top .live-dot::before, .hero-top .live-dot::after {
    content: ''; position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--pink);
}
.hero-top .live-dot::before { animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite; opacity: .75; }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

/* hero rotated side label */
.hero-side {
    display: none;
    position: absolute; left: 16px; top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}
@media (min-width: 1024px) { .hero-side { display: block; } }
.hero-side span {
    display: block;
    transform: rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.45);
}

/* hero main */
.hero-main {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex; align-items: flex-end;
    padding: 0 20px 96px;
}
@media (min-width: 640px)  { .hero-main { padding: 0 32px 96px; } }
@media (min-width: 1024px) { .hero-main { padding: 0 48px 112px; } }
.hero-content { width: 100%; max-width: 80rem; margin: 0 auto; }

.hero-eyebrow {
    margin-bottom: 24px;
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.8);
}
.hero-eyebrow .bar { display: inline-block; width: 40px; height: 1px; background: var(--pink); }
.hero-eyebrow .slash { color: var(--pink); }
.hero-eyebrow em { font-family: var(--ff-serif); font-style: italic; color: rgba(255,255,255,.55); text-transform: none; letter-spacing: normal; }
@media (min-width: 1024px) { .hero-eyebrow { margin-bottom: 32px; } }

/* Eyebrow placed inside hero-top broadcast bar (aligned with LIVE FROM SAIGON) */
.hero-eyebrow.hero-top-center {
    display: inline-flex;
    margin-bottom: 0;
    flex: 0 1 auto;
    white-space: nowrap;
}

.hero-headline {
    font-family: var(--ff-display);
    line-height: 0.86;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    /* Reduced from 56/72/96/120 to ~65% of those sizes — dramatic but not
       overwhelming, leaves room for subtitle and CTAs in the hero. */
    font-size: 38px;
    margin: 0;
}
@media (min-width: 640px)  { .hero-headline { font-size: 50px; } }
@media (min-width: 1024px) { .hero-headline { font-size: 64px; } }
@media (min-width: 1280px) { .hero-headline { font-size: 80px; } }

.hero-subtitle {
    margin-top: 24px;
    max-width: 42rem;
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 24px;
    color: rgba(255,255,255,.85);
    line-height: 1.25;
}
.hero-subtitle .em { color: var(--pink); margin-right: 8px; }
@media (min-width: 640px)  { .hero-subtitle { font-size: 30px; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 36px; margin-top: 32px; } }

.hero-bottom {
    margin-top: 40px;
    display: grid; gap: 32px;
    grid-template-columns: 1fr;
    align-items: end;
}
@media (min-width: 1024px) {
    .hero-bottom { margin-top: 56px; grid-template-columns: 5fr 2fr 5fr; gap: 48px; }
}
.hero-desc {
    color: rgba(255,255,255,.65);
    font-size: 16px;
    line-height: 1.6;
    max-width: 36rem;
}
@media (min-width: 1024px) { .hero-desc { font-size: 18px; } }
.hero-cta-row {
    display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
}
@media (min-width: 1024px) {
    .hero-cta-row { grid-column: 3 / 4; }
}

/* hero scroll indicator */
.hero-scroll {
    position: absolute;
    left: 50%; bottom: 20px;
    transform: translateX(-50%);
    z-index: 20;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.55);
}
.hero-scroll svg {
    width: 22px; height: 22px;
    color: var(--pink);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); opacity: .4; }
    50%     { transform: translateY(10px); opacity: 1; }
}

/* hero bottom blend to next section */
.hero-blend {
    pointer-events: none;
    position: absolute; inset-inline: 0; bottom: 0;
    z-index: 10;
    height: 160px;
    background: linear-gradient(to bottom, transparent, rgba(5,5,5,.8) 60%, var(--ink));
}

/* =============================================================
   ABOUT
   ============================================================= */
.about-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-grid { grid-template-columns: repeat(12, minmax(0,1fr)); gap: 64px; }
}
.about-text { grid-column: span 12 / span 12; }
@media (min-width: 1024px) { .about-text { grid-column: span 6 / span 6; } }
.about-visual { grid-column: span 12 / span 12; position: relative; }
@media (min-width: 1024px) { .about-visual { grid-column: span 6 / span 6; } }

.section-eyebrow-row {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px;
}
.section-eyebrow-row .num {
    font-family: var(--ff-display);
    color: var(--pink);
    font-size: 24px;
    line-height: 1;
}

.section-h {
    font-family: var(--ff-display);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.9;
    color: #fff;
    font-size: 48px;
    margin: 0 0 32px;
    font-weight: 400;
}
@media (min-width: 640px)  { .section-h { font-size: 60px; } }
@media (min-width: 1024px) { .section-h { font-size: 72px; } }
.section-h em.serif {
    font-family: var(--ff-serif);
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    color: var(--pink);
    font-weight: 500;
}
.section-h em.serif.green { color: var(--green); }

.about-body {
    color: rgba(255,255,255,.7);
    font-size: 18px;
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 0 24px;
}
.about-quote {
    color: rgba(255,255,255,.5);
    font-size: 16px;
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 0 40px;
    font-family: var(--ff-serif);
    font-style: italic;
}

.stats-row {
    display: flex; flex-wrap: wrap; gap: 16px;
    margin-bottom: 40px;
}
.stat {
    border-left: 2px solid var(--pink);
    padding: 4px 0 4px 16px;
}
.stat.green { border-left-color: var(--green); }
.stat .n {
    font-family: var(--ff-display);
    color: #fff;
    font-size: 30px;
    line-height: 1;
}
.stat .l {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.5);
    margin-top: 4px;
}

.link-arrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: 4px;
    transition: color .3s, border-color .3s;
}
.link-arrow:hover { color: var(--pink); border-bottom-color: var(--pink); }
.link-arrow .arr {
    transition: transform .3s ease;
}
.link-arrow:hover .arr { transform: translateX(4px); }

.about-photo-wrap {
    position: relative;
    width: 100%; max-width: 28rem;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
}
@media (min-width: 1024px) { .about-photo-wrap { max-width: none; margin-left: auto; } }
.about-photo-wrap .frame-pink {
    display: none;
    position: absolute; top: -16px; left: -16px;
    width: 100%; height: 100%;
    border: 2px solid var(--pink);
}
.about-photo-wrap .block-green {
    display: none;
    position: absolute; bottom: -16px; right: -16px;
    width: 96px; height: 96px;
    background: var(--green);
}
@media (min-width: 640px) {
    .about-photo-wrap .frame-pink, .about-photo-wrap .block-green { display: block; }
}
.about-photo {
    position: relative;
    width: 100%; height: 100%;
    overflow: hidden;
    background: var(--ink-700);
}
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-photo .photo-mask {
    position: absolute; inset: 0;
    background: linear-gradient(to top right, rgba(5,5,5,.7), transparent 50%, transparent);
}
.about-photo .photo-tag {
    position: absolute; left: 24px; right: 24px; bottom: 24px;
    display: flex; align-items: end; justify-content: space-between;
}
.about-photo .photo-tag .lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.6);
    margin-bottom: 4px;
}
.about-photo .photo-tag .est {
    font-family: var(--ff-display);
    color: #fff;
    font-size: 24px;
    letter-spacing: var(--tw-w3);
}
.about-photo .photo-tag .num {
    font-family: var(--ff-serif);
    font-style: italic;
    color: rgba(255,255,255,.8);
    font-size: 18px;
}

/* ═════════════════════ CLASSES SECTION ═════════════════════ */
.classes-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .classes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .classes-grid { grid-template-columns: repeat(3, 1fr); } }

.section-head { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
@media (min-width: 1024px) { .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; margin-bottom: 80px; } }
.section-head .head-num { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-head .head-num .num { font-family: var(--ff-display); color: var(--pink); font-size: 24px; }
.section-head .display-title { font-size: 48px; }
@media (min-width: 640px) { .section-head .display-title { font-size: 60px; } }
@media (min-width: 1024px) { .section-head .display-title { font-size: 72px; } }

.section-head .view-all { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: var(--tw-w3); font-size: 12px; transition: color .2s ease; align-self: flex-start; text-decoration: none; }
@media (min-width: 1024px) { .section-head .view-all { align-self: flex-end; } }
.section-head .view-all:hover { color: var(--pink); }
.section-head .view-all svg { transition: transform .2s ease; }
.section-head .view-all:hover svg { transform: translateX(4px); }

.class-card { position: relative; display: block; background: var(--ink-800); border: 1px solid rgba(255,255,255,.05); overflow: hidden; transition: border-color .5s ease; color: inherit; text-decoration: none; }
.class-card:hover { border-color: rgba(255,255,255,.2); }
.class-card .top-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; transition: height .5s ease; }
.class-card:hover .top-bar { height: 8px; }
.class-card .body { padding: 24px; padding-top: 40px; min-height: 320px; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .class-card .body { padding: 32px; padding-top: 40px; } }
.class-card .row1 { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.class-card .row1 .idx { font-family: var(--ff-mono); font-size: 11px; text-transform: uppercase; letter-spacing: var(--tw-w3); }
.class-card .row1 .arr { color: rgba(255,255,255,.3); transition: all .3s ease; }
.class-card:hover .row1 .arr { color: #fff; transform: translateX(4px); }
.class-card h3 { font-family: var(--ff-display); font-size: 36px; line-height: .9; color: #fff; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 16px; transition: text-shadow .3s ease; }
@media (min-width: 1024px) { .class-card h3 { font-size: 48px; } }
.class-card:hover h3 { text-shadow: 0 0 16px rgba(255,20,147,.5), 0 0 32px rgba(255,20,147,.3); }
.class-card .desc { font-family: var(--ff-serif); font-style: italic; color: rgba(255,255,255,.5); font-size: 16px; margin-bottom: auto; }
.class-card .meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.class-card .meta .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); color: rgba(255,255,255,.4); margin-bottom: 4px; }
.class-card .meta .val { color: #fff; font-size: 14px; font-weight: 500; }
.class-card .hover-bg { position: absolute; inset: 0; opacity: 0; transition: opacity .5s ease; pointer-events: none; }
.class-card:hover .hover-bg { opacity: .04; }

/* ═════════════════════ WALLET SECTION ═════════════════════ */
.wallet-stripes { position: absolute; top: 0; left: 0; right: 0; height: 3px; display: flex; z-index: 1; }
.wallet-stripes span { flex: 1; }
.wallet-stripes .s1 { background: var(--pink); }
.wallet-stripes .s2 { background: var(--green); }
.wallet-stripes .s3 { background: var(--yellow); }
.wallet-stripes .s4 { background: var(--orange); }

.wallet-head { display: flex; flex-direction: column; gap: 24px; margin-bottom: 64px; }
@media (min-width: 1024px) { .wallet-head { flex-direction: row; align-items: flex-end; justify-content: space-between; margin-bottom: 96px; } }
.wallet-head .lead { max-width: 36rem; }
.wallet-head .lead .sub { margin-top: 24px; color: rgba(255,255,255,.6); font-size: 18px; line-height: 1.6; font-family: var(--ff-serif); font-style: italic; }

.wallet-steps { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); margin-bottom: 64px; }
@media (min-width: 768px) { .wallet-steps { grid-template-columns: repeat(3, 1fr); } }
.wallet-step { position: relative; background: var(--ink-800); padding: 32px; min-height: 260px; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .wallet-step { padding: 40px; } }
.wallet-step.highlight { overflow: hidden; }
.wallet-step .glow { pointer-events: none; position: absolute; bottom: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; filter: blur(60px); opacity: .2; }
.wallet-step .top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; }
.wallet-step .top .num { font-family: var(--ff-mono); font-size: 11px; text-transform: uppercase; letter-spacing: var(--tw-w3); }
.wallet-step h3 { font-family: var(--ff-display); font-size: 30px; text-transform: uppercase; letter-spacing: -0.02em; color: #fff; margin-bottom: 12px; line-height: .95; }
@media (min-width: 1024px) { .wallet-step h3 { font-size: 36px; } }
.wallet-step .desc { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.6; font-family: var(--ff-serif); font-style: italic; max-width: 20rem; }
.wallet-step .underline { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; opacity: .4; }

.pass-mockup { position: relative; flex-shrink: 0; align-self: flex-start; max-width: 24rem; width: 100%; }
@media (min-width: 1024px) { .pass-mockup { align-self: flex-end; } }
.pass-mockup .blur-bg { position: absolute; inset: 0; transform: translate(-8px, 8px); background: rgba(255,20,147,.3); filter: blur(40px); }
.pass-card { position: relative; background: linear-gradient(135deg, var(--ink-700), var(--ink-800), #000); border: 1px solid rgba(255,255,255,.1); padding: 24px; box-shadow: 0 25px 50px -12px rgba(0,0,0,.5); }
.pass-card .topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.pass-card .topbar .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); color: rgba(255,255,255,.5); }
.pass-card .topbar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulseSlow 2s ease-in-out infinite; }
.pass-card .logo { font-family: var(--ff-display); font-size: 48px; color: #fff; line-height: 1; margin-bottom: 4px; }
.pass-card .logo .dot { color: var(--pink); }
.pass-card .since { font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); color: rgba(255,255,255,.4); margin-bottom: 32px; }
.pass-card .fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px; }
.pass-card .fields .lbl { font-size: 9px; text-transform: uppercase; letter-spacing: var(--tw-w3); color: rgba(255,255,255,.4); }
.pass-card .fields .val { font-family: var(--ff-display); font-size: 18px; color: #fff; margin-top: 4px; }
.pass-card .fields .val.green { color: var(--green); }
.pass-card .barcode-wrap { border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
.pass-card .barcode { display: flex; gap: 2px; align-items: flex-end; height: 40px; margin-bottom: 8px; }
.pass-card .barcode span { width: 2px; background: rgba(255,255,255,.8); }
.pass-card .barcode-id { font-family: var(--ff-mono); font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: 0.1em; }
.pass-mockup .visual-note { text-align: center; font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); color: rgba(255,255,255,.3); margin-top: 12px; font-family: var(--ff-serif); font-style: italic; }

.wallet-cta-row { display: flex; flex-direction: column; gap: 32px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 48px; }
@media (min-width: 1024px) { .wallet-cta-row { flex-direction: row; align-items: center; justify-content: space-between; } }
.wallet-cta-row .badges-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); color: rgba(255,255,255,.4); margin-bottom: 12px; }
.wallet-cta-row .badges { display: flex; flex-wrap: wrap; gap: 16px; }

.wallet-badge { display: inline-flex; align-items: center; gap: 12px; padding: 16px 24px; min-width: 240px; transition: all .3s ease; text-decoration: none; }
.wallet-badge.apple { background: #000; border: 1px solid rgba(255,255,255,.2); color: #fff; }
.wallet-badge.apple:hover { border-color: #fff; }
.wallet-badge.google { background: #fff; color: #000; border: 1px solid #fff; }
.wallet-badge.google:hover { background: transparent; color: #fff; }
.wallet-badge svg { font-size: 28px; }
.wallet-badge .lbl-stack { display: flex; flex-direction: column; line-height: 1.1; }
.wallet-badge .lbl-stack .small { font-size: 9px; text-transform: uppercase; letter-spacing: var(--tw-w3); opacity: .6; }
.wallet-badge .lbl-stack .big { font-family: var(--ff-display); font-size: 20px; letter-spacing: 0.05em; }

/* ═════════════════════ INSTRUCTORS SECTION ═════════════════════ */
.instr-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .instr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .instr-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.instr-card { display: block; }
.instr-photo-box { position: relative; aspect-ratio: 3 / 4; width: 100%; background: var(--ink-700); overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.instr-photo-box img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .7s ease; }
.instr-card:hover .instr-photo-box img { filter: grayscale(0); }
.instr-placeholder { position: absolute; inset: 0; overflow: hidden; }
.instr-placeholder .lines { position: absolute; inset: 0; opacity: .08; }
.instr-placeholder .corner-init { position: absolute; top: -12px; left: -8px; font-family: var(--ff-display); line-height: .8; font-size: 160px; letter-spacing: -0.04em; user-select: none; pointer-events: none; opacity: .18; }
.instr-placeholder .center-init { position: absolute; inset: 0; display: grid; place-items: center; }
.instr-placeholder .center-init span { font-family: var(--ff-display); font-size: 96px; line-height: 1; filter: drop-shadow(0 8px 24px rgba(0,0,0,.6)); }
.instr-placeholder .grad { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, transparent 50%, rgba(0,0,0,.55)); }
.instr-photo-box .bot { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; display: flex; align-items: flex-end; justify-content: space-between; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); }
.instr-photo-box .bot .idx { font-family: var(--ff-mono); font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); color: rgba(255,255,255,.7); }
.instr-photo-box .bot .acc-bar { display: block; width: 32px; height: 2px; }
.instr-card-body { padding-top: 20px; }
.instr-card-body h3 { font-family: var(--ff-display); font-size: 24px; text-transform: uppercase; letter-spacing: -0.02em; color: #fff; line-height: 1; }
@media (min-width: 1024px) { .instr-card-body h3 { font-size: 30px; } }
.instr-card-body .specs-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); color: rgba(255,255,255,.4); margin-top: 12px; margin-bottom: 6px; }
.instr-card-body .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.instr-card-body .chip { font-size: 11px; text-transform: uppercase; letter-spacing: var(--tw-w2); padding: 4px 8px; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.7); }

/* ═════════════════════ SOCIAL FEED SECTION ═════════════════════ */
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media (min-width: 640px) { .social-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .social-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.social-tile { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--ink-700); border: 1px solid rgba(255,255,255,.05); display: block; text-decoration: none; }
.social-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: all .7s ease; }
.social-tile:hover img { filter: grayscale(0); transform: scale(1.05); }
.social-tile .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), transparent 50%); opacity: 0; transition: opacity .3s ease; padding: 12px; display: flex; align-items: flex-end; justify-content: space-between; }
.social-tile:hover .overlay { opacity: 1; }
.social-tile .overlay .src { font-family: var(--ff-mono); font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); color: var(--pink); }
.social-tile .overlay svg { color: #fff; }

/* ═════════════════════ EVENTS SECTION ═════════════════════ */
.events-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.event-card { position: relative; background: var(--ink-800); border: 1px solid rgba(255,255,255,.1); overflow: hidden; transition: border-color .3s ease; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.event-card:hover { border-color: var(--pink); }
.event-card .img-wrap { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink-700); }
.event-card .img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.event-card:hover .img-wrap img { transform: scale(1.05); }
.event-card .img-wrap .grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), transparent 60%); }
.event-card .badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: var(--pink); color: #fff; font-family: var(--ff-mono); font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); }
.event-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
@media (min-width: 1024px) { .event-card .body { padding: 32px; } }
.event-card .meta-row { display: flex; flex-wrap: wrap; gap: 16px; font-size: 11px; text-transform: uppercase; letter-spacing: var(--tw-w2); color: rgba(255,255,255,.5); margin-bottom: 12px; }
.event-card .meta-row .item { display: inline-flex; align-items: center; gap: 6px; }
.event-card h3 { font-family: var(--ff-display); font-size: 28px; text-transform: uppercase; letter-spacing: -0.01em; color: #fff; line-height: 1; margin-bottom: 12px; }
@media (min-width: 1024px) { .event-card h3 { font-size: 36px; } }
.event-card .desc { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.event-card .price-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
.event-card .price-row .price { font-family: var(--ff-display); font-size: 24px; color: var(--pink); }
.event-card .price-row .more { color: rgba(255,255,255,.6); font-size: 11px; text-transform: uppercase; letter-spacing: var(--tw-w3); }

/* ═════════════════════ CONTACT SECTION ═════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 48px; } }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-block { border-left: 2px solid var(--pink); padding-left: 20px; }
.contact-block.green { border-left-color: var(--green); }
.contact-block.yellow { border-left-color: var(--yellow); }
.contact-block .lbl { font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); color: rgba(255,255,255,.5); margin-bottom: 8px; }
.contact-block .val { font-family: var(--ff-display); font-size: 22px; color: #fff; line-height: 1.2; text-decoration: none; display: block; }
.contact-block a.val:hover { color: var(--pink); }
.contact-block .sub { margin-top: 6px; color: rgba(255,255,255,.6); font-size: 14px; font-family: var(--ff-serif); font-style: italic; }

.contact-map { position: relative; width: 100%; aspect-ratio: 4 / 3; background: var(--ink-700); border: 1px solid rgba(255,255,255,.1); overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(100%) invert(.92) contrast(1.1); }

.contact-socials { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.contact-socials a { width: 44px; height: 44px; display: grid; place-items: center; background: var(--ink-700); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.7); transition: all .2s ease; text-decoration: none; }
.contact-socials a:hover { background: var(--pink); color: #fff; border-color: var(--pink); }

/* ═════════════════════ FOOTER ═════════════════════ */
.footer-wrap { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,.06); color: #fff; overflow: hidden; }

/* Marquee */
.footer-marquee { border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; padding: 8px 0; }
.footer-marquee .track {
    display: inline-flex; flex-wrap: nowrap; align-items: center; gap: 24px;
    white-space: nowrap;
    animation: marquee 60s linear infinite;
    font-family: var(--ff-sans);
    font-size: 9px;
    line-height: 1;
    color: rgba(255,255,255,.3);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    will-change: transform;
}
.footer-marquee .track .group { display: inline-flex; align-items: center; gap: 24px; flex-shrink: 0; padding-right: 24px; }
.footer-marquee .track .word { color: rgba(255,255,255,.3); }
.footer-marquee .track .star { color: rgba(255,255,255,.2); font-size: 6px; line-height: 1; }
@media (min-width: 1024px) { .footer-marquee .track { font-size: 10px; gap: 28px; } .footer-marquee .track .star { font-size: 7px; } }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Main footer grid */
.footer-main { max-width: 88rem; margin: 0 auto; padding: 56px 24px 48px; }
@media (min-width: 1024px) { .footer-main { padding: 72px 48px 56px; } }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr; gap: 64px; } }

/* Brand column */
/* Logo uses Cormorant Garamond (serif) to match the original Footer.tsx
   reference — pink "L" with italic-leaning "dance" wordmark. */
.footer-brand .logo {
    font-family: var(--ff-serif);
    font-size: 56px; line-height: 1; letter-spacing: -0.01em;
    display: inline-flex; align-items: baseline; gap: 8px;
    margin-bottom: 18px;
}
.footer-brand .logo .big { color: var(--pink); font-size: 64px; font-weight: 500; }
.footer-brand .logo .sm  { color: #fff; font-size: 30px; font-style: italic; font-weight: 500; letter-spacing: 0; }
.footer-brand .tagline {
    color: rgba(255,255,255,.55);
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 15px;
    line-height: 1.55;
    max-width: 22rem;
    margin: 0 0 24px;
}
.footer-brand .socials { display: flex; gap: 8px; }
.footer-brand .socials a {
    width: 36px; height: 36px;
    display: inline-grid; place-items: center;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.footer-brand .socials a:hover { color: #fff; border-color: var(--pink); background: rgba(255,20,147,.12); }

/* Generic column */
.footer-col h4 {
    font-family: var(--ff-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.85);
    margin: 0 0 24px;
    display: flex; align-items: center; gap: 10px;
}
.footer-col h4 .dash { color: var(--pink); font-weight: 400; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a {
    color: rgba(255,255,255,.85);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w2);
    text-decoration: none;
    transition: color .2s ease;
}
.footer-col ul li a:hover { color: var(--pink); }

/* Hours column */
.footer-hours .hours-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 6px 0;
    color: rgba(255,255,255,.85);
    font-size: 13px;
    letter-spacing: 0.02em;
}
.footer-hours .hours-row .day { color: rgba(255,255,255,.85); }
.footer-hours .hours-row .time { color: rgba(255,255,255,.85); font-variant-numeric: tabular-nums; }
.footer-hours .hours-note {
    margin: 18px 0 0;
    color: rgba(255,255,255,.45);
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 14px;
    line-height: 1.5;
}

/* Contact column */
.footer-contact .c-block { margin-bottom: 18px; }
.footer-contact .c-block:last-child { margin-bottom: 0; }
.footer-contact .c-block .lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.45);
    margin-bottom: 6px;
}
.footer-contact .c-block .val {
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    display: block;
    word-break: break-word;
}
a.val:hover { color: var(--pink); }

/* Bottom bar */
.footer-bot {
    border-top: 1px solid rgba(255,255,255,.08);
    max-width: 88rem; margin: 0 auto;
    padding: 22px 24px;
    display: flex; flex-direction: column; gap: 12px;
    align-items: center; justify-content: space-between;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: var(--tw-w3);
    color: rgba(255,255,255,.45);
}
@media (min-width: 768px) { .footer-bot { flex-direction: row; padding: 22px 48px; } }
.footer-bot .copyright { text-align: center; }
@media (min-width: 768px) { .footer-bot .copyright { text-align: left; } }
.footer-bot .lang-toggle { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-mono); }
.footer-bot .lang-toggle a {
    padding: 4px 10px;
    color: rgba(255,255,255,.55);
    border: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
    text-decoration: none;
}
.footer-bot .lang-toggle a.active {
    color: #fff;
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.04);
}
.footer-bot .lang-toggle a:not(.active):hover { color: #fff; }
.footer-bot .lang-toggle .sep { color: rgba(255,255,255,.25); }

/* ═════════════════════ EVENT POPUP ═════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.popup-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.85); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; padding: 20px; overflow-y: auto; }
.popup-overlay.open { display: flex; }
.popup-overlay.open .popup-card { animation: fadeUp .3s ease; }
.popup-card { position: relative; background: var(--ink-800); border: 1px solid rgba(255,255,255,.1); max-width: 56rem; width: 100%; max-height: calc(100vh - 40px); overflow-y: auto; overflow-x: hidden; display: grid; grid-template-columns: 1fr; border-radius: 4px; }
@media (min-width: 768px) { .popup-card { grid-template-columns: 1fr 1fr; } }
.popup-card .ticks { position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px; pointer-events: none; border: 1px solid rgba(255,20,147,.3); }
.popup-card .img-wrap { position: relative; aspect-ratio: 1/1; background: var(--ink-700); overflow: hidden; }
.popup-card .img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.popup-card .body { padding: 32px 28px; display: flex; flex-direction: column; min-width: 0; }
@media (min-width: 1024px) { .popup-card .body { padding: 48px 44px; } }
.popup-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; display: grid; place-items: center; background: rgba(0,0,0,.85); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #fff; cursor: pointer; transition: all .2s ease; z-index: 10; padding: 0; }
.popup-close:hover { background: var(--pink); border-color: var(--pink); transform: rotate(90deg); }
.popup-card .badge { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; padding: 6px 12px; background: var(--pink); color: #fff; font-family: var(--ff-mono); font-size: 10px; text-transform: uppercase; letter-spacing: var(--tw-w3); margin-bottom: 16px; }
.popup-card h3 { font-family: var(--ff-display); font-size: 32px; text-transform: uppercase; letter-spacing: -0.01em; color: #fff; line-height: 1; margin-bottom: 16px; word-wrap: break-word; overflow-wrap: break-word; }
@media (min-width: 1024px) { .popup-card h3 { font-size: 40px; } }
.popup-card .desc { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.6; margin-bottom: 24px; word-wrap: break-word; overflow-wrap: break-word; }
.popup-card .meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; color: rgba(255,255,255,.6); font-size: 13px; text-transform: uppercase; letter-spacing: var(--tw-w2); }
.popup-card .meta .item { display: inline-flex; align-items: center; gap: 8px; word-break: break-word; }
.popup-card .actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 12px; }
.popup-card .actions .btn-dance,
.popup-card .actions .btn-ghost { padding: 14px 20px; font-size: 12px; }
@media (max-width: 480px) {
    .popup-overlay { padding: 12px; }
    .popup-card .body { padding: 24px 20px; }
    .popup-card h3 { font-size: 26px; }
    .popup-card .actions .btn-dance,
    .popup-card .actions .btn-ghost { width: 100%; justify-content: center; padding: 12px 16px; }
}
/* Hide the second "CLOSE" text button on the popup since the X icon already exists */
.popup-card .actions .popup-close { position: static; width: auto; height: auto; border-radius: 0; background: transparent; }

/* ═════════════════════ ANIMATIONS ═════════════════════ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.in { opacity: 1; transform: translateY(0); }

/* ═════════════════════ UTILITIES ═════════════════════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.no-scroll { overflow: hidden; }

/* ═════════════════════ RESPONSIVE TWEAKS ═════════════════════ */
@media (max-width: 640px) {
    .hero-headline { font-size: 32px !important; }
    .display-title { font-size: 40px !important; }
    .section-padding { padding-top: 60px; padding-bottom: 60px; }
}

/* ═════════════════════ VIETNAMESE LOCALE OVERRIDES ═════════════════════ */
/* Vietnamese diacritics render poorly with Bebas Neue (uppercase-only font)
   and with forced uppercase + wide letter-spacing. Use Be Vietnam Pro for
   content that may contain Vietnamese characters. */
:lang(vi) .contact-block .val,
:lang(vi) .footer-contact .c-block .val {
    font-family: var(--ff-sans);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}
:lang(vi) .hero-headline {
    font-family: var(--ff-sans);
    font-weight: 700;
    letter-spacing: -0.01em;
}
:lang(vi) .section-h,
:lang(vi) .display-title {
    font-family: var(--ff-sans);
    font-weight: 700;
    letter-spacing: -0.01em;
}
:lang(vi) .class-card h3,
:lang(vi) .instr-card-body h3,
:lang(vi) .event-card h3,
:lang(vi) .wallet-step h3,
:lang(vi) .popup-card h3 {
    font-family: var(--ff-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}
:lang(vi) .eyebrow,
:lang(vi) .nav-desktop a,
:lang(vi) .footer-col ul li a,
:lang(vi) .mobile-panel nav a {
    letter-spacing: 0.1em;
}
:lang(vi) .about-body,
:lang(vi) .hero-desc,
:lang(vi) .about-quote,
:lang(vi) .wallet-step .desc,
:lang(vi) .event-card .desc,
:lang(vi) .popup-card .desc {
    font-family: var(--ff-sans);
    text-transform: none;
    letter-spacing: 0;
}
:lang(vi) .footer-hours .hours-row,
:lang(vi) .footer-hours .hours-note {
    font-family: var(--ff-sans);
    letter-spacing: 0;
}
