/* ===== GLOBAL SCROLL BEHAVIOR ===== */
html, body {
    overflow-x: hidden; /* Prevent horizontal scroll — hidden (not clip) to preserve sticky positioning */
}
html {
    scroll-padding-top: 192px; /* Account for lang bar + fixed header + sticky venue picker when scrolling to anchors */
    scroll-behavior: smooth;
}

/* ===== CSS VARIABLES (Troy's Official Brand Guide) ===== */
:root {
    /* Official WMLD Brand Colors */
    --umbra: #1c1c1c;           /* Charcoal - logos, headlines, body copy */
    --albra: #f9f3e6;           /* Cream - primary background */
    --aether: #01aac5;          /* Blue - secondary accents, supporting elements */
    --ignis: #ff5545;           /* Red - CTAs ONLY, used sparingly */

    /* Derived / utility colors */
    --white: #FFFFFF;
    --dark-bg: #1c1c1c;        /* Same as Umbra */
    --light-bg: #f9f3e6;       /* Same as Albra */
    --text-dark: #1c1c1c;      /* Umbra for body copy */
    --text-light: #5a5a5a;     /* Lighter charcoal for secondary text */
    --border-light: #e0d8c8;   /* Warm border matching Albra */

    /* Legacy aliases (so existing classes still work) */
    --fiesta-red: #ff5545;     /* Now maps to Ignis */
    --sunset-gold: #F4A261;    /* Keep for backward compat, use sparingly */
    --deep-navy: #1c1c1c;      /* Now maps to Umbra */
    --warm-sand: #f9f3e6;      /* Now maps to Albra */
    --tropical-teal: #01aac5;  /* Now maps to Aether */

    /* Official Brand Fonts */
    --montserrat: 'Manrope', sans-serif;    /* Heading substitute for Vinyl */
    --open-sans: 'IBM Plex Sans', sans-serif; /* Body substitute for Mortison */

    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

body {
    font-family: var(--open-sans);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--albra);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--montserrat);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--fiesta-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--tropical-teal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--ignis);
    color: var(--white);
}

.btn-primary:hover {
    background: #e04535;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 85, 69, 0.3);
}

.btn-secondary {
    background: var(--umbra);
    color: var(--white);
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--aether);
    color: var(--aether);
    background: transparent;
}

.btn-outline:hover {
    background: var(--aether);
    color: var(--white);
}

.btn-gold {
    background: var(--ignis);
    color: var(--white);
}

.btn-gold:hover {
    background: #e8954a;
    transform: translateY(-2px);
}

.btn-teal {
    background: var(--tropical-teal);
    color: var(--white);
}

.btn-teal:hover {
    background: #1e7b6a;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

/* ===== HEADER & NAV ===== */
/* Language bar above header */
.lang-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--umbra);
    text-align: center;
    padding: 8px 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}
.lang-bar a {
    color: rgba(249,243,230,0.95);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.lang-bar a:hover {
    color: var(--aether);
}
.lang-bar .lang-arrow {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s;
}
.lang-bar a:hover .lang-arrow {
    transform: translateX(3px);
}

#header {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(249, 243, 230, 0.97);   /* Albra with slight transparency */
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-slow);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#header .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-width: 1400px;
    padding-left: 2rem;
    padding-right: 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

nav .logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fiesta-red);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--fiesta-red);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--ignis);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition);
    margin-left: auto;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #b50320;
    transform: translateY(-2px);
}

/* Old toggle hidden - replaced by lang-bar */
.lang-toggle {
    display: none !important;
}

.mobile-lang-item {
    display: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 24px;
    height: 21px;
    position: relative;
}

.mobile-toggle span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.mobile-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    margin-top: 112px;
    min-height: calc(100vh - 112px);
    background: var(--umbra);
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 18, 15, 0.55);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(1, 170, 197, 0.15);    /* Aether tint */
    border: 1px solid rgba(1, 170, 197, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--aether);
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--albra);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero .seo-line {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-countdown {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(1, 170, 197, 0.3);
    border-radius: 12px;
    padding: 1.25rem 2rem 1rem;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.countdown-label {
    font-family: var(--montserrat);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ignis);
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 2.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-value {
    font-size: 2.75rem;
    color: var(--white);
    font-weight: 900;
    line-height: 1;
}

.countdown-label-small {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--open-sans);
    margin-top: 0.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero event details — enriched by main-patch.js */
.hero-event-details {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.35rem;
    margin-bottom: 0.15rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.hero-detail-sep {
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0.4rem;
}
.hero-detail-style {
    font-weight: 700;
    color: var(--ignis);
}
.hero-detail-instructor {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
a.hero-detail-instructor {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.2s ease, border-color 0.2s ease;
}
a.hero-detail-instructor:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.hero-detail-time {
    font-weight: 600;
}
.hero-detail-price {
    font-weight: 700;
    color: var(--aether);
}
.hero-detail-address {
    font-weight: 400;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-detail-address:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .hero-event-details {
        font-size: 0.85rem;
    }
}

.hero-social-proof {
    font-size: 1.1rem;
    margin: 2rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-ctas .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-white {
    background: var(--white);
    color: var(--fiesta-red);
}

.btn-white:hover {
    background: var(--warm-sand);
    color: var(--deep-navy);
}

/* ===== PAGE HERO ===== */
.page-hero {
    margin-top: 112px;
    min-height: 320px;
    background: linear-gradient(135deg, var(--fiesta-red) 0%, var(--deep-navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: url('../images/starburst-cream.svg') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    animation: floatStar 12s ease-in-out infinite;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: url('../images/starburst-cream.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    animation: floatStar 15s ease-in-out infinite reverse;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
    color: var(--white);
}

/* ===== SECTION SPACING ===== */
section {
    padding: 3.5rem 0;
}

section.bg-light {
    background: var(--light-bg);
}

section.bg-dark {
    background: var(--deep-navy);
    color: var(--white);
}

section.bg-dark h2,
section.bg-dark h3,
section.bg-dark h4 {
    color: var(--white);
}

section.bg-dark p {
    color: rgba(255, 255, 255, 0.85);
}

/* ===== STARBURST BACKDROP (dense tiled pattern — like a photo backdrop) ===== */
.starburst-backdrop {
    position: relative;
    overflow: hidden;
    background-color: var(--umbra);
    color: var(--albra);
}

/* Pattern layer via pseudo-element so we can control opacity independently */
.starburst-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/starburst-teal-tile.svg');
    background-repeat: repeat;
    background-size: 600px 500px;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
}

.starburst-backdrop h2,
.starburst-backdrop h3,
.starburst-backdrop h4 {
    color: var(--albra);
}

.starburst-backdrop p {
    color: rgba(249, 243, 230, 0.85);
}

.starburst-backdrop .container {
    position: relative;
    z-index: 1;
}

/* Aether (teal) variant — big floating logo stars like the hero */
.starburst-backdrop-aether {
    position: relative;
    overflow: hidden;
    background-color: var(--aether);
    color: white;
}

.starburst-backdrop-aether::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -8%;
    width: 450px;
    height: 450px;
    background: url('../images/starburst-cream.svg') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    animation: floatStar 12s ease-in-out infinite;
}

.starburst-backdrop-aether::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 350px;
    height: 350px;
    background: url('../images/starburst-cream.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
    animation: floatStar 15s ease-in-out infinite reverse;
}

.starburst-backdrop-aether .container {
    position: relative;
    z-index: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-star {
    color: var(--sunset-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 700;
    color: var(--fiesta-red);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== PHOTO GALLERY ===== */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.3) 0%, rgba(42, 157, 143, 0.2) 100%);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--deep-navy);
    color: var(--white);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-family: var(--montserrat);
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--aether);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--montserrat);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* ===== HOW IT WORKS ===== */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.step-card {
    position: relative;
}

.step-number {
    font-family: var(--montserrat);
    font-size: 3rem;
    font-weight: 900;
    color: var(--ignis);
    margin-bottom: 1rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Horizontal connector arrows between steps */
.step-card::after {
    content: '→';
    position: absolute;
    top: 2.5rem;
    right: -1.75rem;
    font-size: 1.5rem;
    color: var(--aether);
    font-weight: 700;
}

.step-card:last-child::after {
    display: none;
}

/* ===== EVENT CARDS ===== */
.event-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.event-card:hover {
    border-color: var(--fiesta-red);
    box-shadow: 0 12px 30px rgba(217, 4, 41, 0.15);
    transform: translateY(-8px);
}

.event-card-header {
    background: linear-gradient(135deg, var(--fiesta-red) 0%, var(--deep-navy) 100%);
    background-size: cover;
    background-position: center top;
    color: var(--white);
    padding: 2rem;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.event-card-header.has-poster {
    background-size: cover;
    background-position: center top;
}

.event-card-header.has-poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.85) 75%, rgba(0,0,0,0.95) 100%);
    border-radius: inherit;
}

.event-card-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.event-venue {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.event-days {
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.95;
}

.event-card-body {
    padding: 2rem;
}

.event-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-detail {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.event-detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: var(--montserrat);
}

.event-detail-value {
    font-family: var(--montserrat);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fiesta-red);
}

.event-badge {
    display: inline-block;
    background: var(--warm-sand);
    color: var(--deep-navy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
    border-bottom: 1px solid var(--border-light);
    padding: 2rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: var(--montserrat);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--fiesta-red);
}

.faq-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--fiesta-red);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 1.5rem;
    color: var(--text-light);
    padding: 1rem 0;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

/* ===== CONFIDENCE CARDS ===== */
.confidence-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.confidence-card:hover {
    border-color: var(--tropical-teal);
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.15);
}

.confidence-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.confidence-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.confidence-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== EMAIL FORM ===== */
.email-form {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--open-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.email-form input:focus {
    outline: none;
    border-color: var(--fiesta-red);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.1);
}

.email-form .btn {
    flex-shrink: 0;
}

/* ===== VENUE CARDS ===== */
.venue-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.venue-card:hover {
    border-color: var(--fiesta-red);
    box-shadow: 0 12px 30px rgba(217, 4, 41, 0.15);
    transform: translateY(-8px);
}

.venue-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--fiesta-red);
}

.venue-info {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.venue-badge {
    display: inline-block;
    background: var(--warm-sand);
    color: var(--deep-navy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== VENUE DETAIL ===== */
.venue-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white, #fff);
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(28, 28, 28, 0.06);
    border: 1px solid var(--border-light, rgba(28, 28, 28, 0.08));
}

.venue-section:last-child {
    margin-bottom: 0;
}

.venue-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
}

.venue-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--fiesta-red);
}

.venue-quick-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quick-fact {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
}

.quick-fact-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: var(--montserrat);
}

.quick-fact-value {
    font-family: var(--montserrat);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-navy);
}

.venue-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.venue-map iframe {
    display: block;
    width: 100%;
}

.venue-map a {
    display: block;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 600;
}

.venue-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-left: 4px solid var(--fiesta-red);
    border-radius: 8px;
}

.feature-item h4 {
    color: var(--text-dark);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background: var(--deep-navy);
    color: var(--white);
    padding: 1.5rem;
    text-align: left;
    font-family: var(--montserrat);
    font-weight: 700;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--light-bg);
}

.comparison-table .venue-name {
    font-weight: 700;
    color: var(--fiesta-red);
}

/* ===== VENUE PICKER ===== */
.venue-picker-section {
    position: relative;
    z-index: 10;
    background: var(--bg-light, #f5f0e8);
    padding: 0.75rem 0;
    margin-bottom: 0;
}

.venue-picker {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.venue-picker-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--montserrat);
    font-weight: 600;
}

.venue-picker-btn:hover {
    border-color: var(--fiesta-red);
    color: var(--fiesta-red);
}

.venue-picker-btn.active {
    background: var(--fiesta-red);
    color: var(--white);
    border-color: var(--fiesta-red);
}

/* ===== INSTRUCTOR CARDS ===== */
.instructor-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    padding: 2rem 1.5rem;
    text-align: center;
}

.instructor-card:hover {
    border-color: var(--aether);
    box-shadow: 0 12px 30px rgba(1, 170, 197, 0.12);
    transform: translateY(-6px);
}

.instructor-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    border-radius: 50% 50% 50% 45% / 50% 45% 50% 50%;
    background: #e8e4dc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--umbra);
    font-size: 3rem;
    font-weight: 300;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.instructor-info {
    padding: 1.5rem;
}

.instructor-card h3 {
    margin-bottom: 0.25rem;
    color: var(--fiesta-red);
}

.instructor-specialty {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.instructor-bio {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.instructor-cta {
    display: inline-block;
    color: var(--fiesta-red);
    font-weight: 600;
    cursor: pointer;
}

.instructor-cta:hover {
    text-decoration: underline;
}

/* ===== STYLE FILTER ===== */
.style-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.style-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--montserrat);
    font-weight: 600;
    font-size: 0.95rem;
}

.style-filter-btn:hover {
    border-color: var(--tropical-teal);
}

.style-filter-btn.active {
    background: var(--tropical-teal);
    color: var(--white);
    border-color: var(--tropical-teal);
}

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.product-card:hover {
    border-color: var(--sunset-gold);
    box-shadow: 0 12px 30px rgba(244, 162, 97, 0.15);
    transform: translateY(-8px);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--warm-sand) 0%, var(--sunset-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
    font-size: 3rem;
    font-weight: 300;
}

.product-info {
    padding: 1.5rem;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-price {
    font-family: var(--montserrat);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fiesta-red);
    margin-bottom: 1rem;
}

.product-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--tropical-teal);
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* ===== VALUE CARDS ===== */
.value-card {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--fiesta-red);
}

.value-card p {
    color: var(--text-light);
}

/* ===== BRING A FRIEND BANNER ===== */
.bring-friend-banner {
    background: linear-gradient(135deg, var(--fiesta-red) 0%, var(--tropical-teal) 100%);
    color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin: 2rem 0;
}

.bring-friend-banner h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.bring-friend-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* ===== WHATS NEXT ===== */
.whats-next {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 0;
}

.whats-next h3 {
    margin-bottom: 1.5rem;
}

.whats-next-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.whats-next-link {
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-light);
    background: var(--white);
}

.whats-next-link:hover {
    border-color: var(--ignis);
    transform: translateY(-4px);
    cursor: pointer;
}

.whats-next-link a {
    display: block;
    padding: 1.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* ===== STYLED CONTACT FORM ===== */
.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form .form-group label {
    display: block;
    font-family: var(--manrope, 'Manrope', sans-serif);
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--umbra);
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0d9ca;
    border-radius: 10px;
    font-family: var(--ibm-plex, 'IBM Plex Sans', sans-serif);
    font-size: 1rem;
    color: var(--umbra);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
    outline: none;
    border-color: var(--aether);
    box-shadow: 0 0 0 3px rgba(1, 170, 197, 0.15);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231c1c1c' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-form-group label {
    display: block;
    font-family: var(--montserrat);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--open-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--fiesta-red);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.1);
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item strong {
    display: block;
    color: var(--fiesta-red);
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--text-light);
}

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--fiesta-red) 0%, var(--deep-navy) 100%);
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== STICKY MOBILE CTA (base - enhanced in mobile section) ===== */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    z-index: 500;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255,255,255,0.08);
    align-items: center;
    justify-content: space-between;
}

.sticky-mobile-cta.show {
    display: flex;
    animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.sticky-mobile-cta a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    width: 100%;
    padding: 0.85rem 1.5rem;
    min-height: 48px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.3px;
}

.sticky-mobile-cta span {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* ===== EXIT POPUP ===== */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.exit-popup.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.exit-popup-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideInScale 0.3s ease-out;
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--light-bg);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

.exit-popup-close:hover {
    background: var(--fiesta-red);
    color: var(--white);
}

.exit-popup-content h2 {
    margin-bottom: 1rem;
}

.exit-popup-content p {
    margin-bottom: 2rem;
}

.exit-popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
    background: var(--deep-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--fiesta-red);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    /* Show hamburger on tablets */
    .nav-cta {
        display: none;
    }

    .lang-toggle {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-grid .step-card::after {
        display: none;
    }

    .venue-detail-header {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 160px; /* Mobile: lang bar (~32px) + header (~70px) + venue picker (~50px) + buffer */
    }

    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Nav hamburger now triggers at 1024px — see tablet breakpoint above */

    /* Hide redundant benefits section on mobile */
    .benefits-section {
        display: none !important;
    }

    /* Show only top 3 venue cards on mobile */
    .mobile-hide-venue {
        display: none !important;
    }

    /* Show "See all venues" link on mobile */
    .mobile-see-all-venues {
        display: block !important;
    }

    .hero {
        margin-top: 102px;
        min-height: calc(100vh - 102px);
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-countdown {
        padding: 1.5rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 1.75rem;
    }

    .countdown-value {
        font-size: 1.75rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .grid-5,
    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input,
    .email-form .btn {
        width: 100%;
    }

    .venue-features {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .footer-grid .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-col a {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

    .footer-col h4 {
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
    }

    .whats-next-links {
        grid-template-columns: 1fr;
    }

    .venue-picker {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .venue-picker-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Photo strip - 2 columns on mobile instead of 4 */
    .photo-gallery,
    [style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Visual strip photos - shorter on mobile */
    [style*="height: 300px"][style*="overflow: hidden"] {
        height: 200px !important;
    }

    /* Team photos - 2 columns on mobile for clean rows */
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Maps grid - 1 column on mobile instead of 3 */
    [style*="grid-template-columns: repeat(3, 1fr)"][style*="gap: 1rem"] {
        grid-template-columns: 1fr !important;
    }

    /* First Night checklist - 1 column on mobile instead of 2 */
    [style*="grid-template-columns: repeat(2, 1fr)"][style*="gap: 1rem"] {
        grid-template-columns: 1fr !important;
    }

    /* Practical details row - stack vertically on mobile */
    [style*="display: flex"][style*="gap: 2rem"][style*="justify-content: center"] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }

    /* Decision engine cards - 1 column on mobile */
    .grid-3[style*="max-width: 900px"] {
        grid-template-columns: 1fr !important;
    }

    /* Instructor cards - 1 column on mobile */
    .instructor-card {
        padding: 1.5rem 1rem;
    }

    /* Venue detail header - stack on mobile */
    .venue-detail-header {
        flex-direction: column;
    }

    /* Style filter buttons - smaller on mobile */
    .style-filters {
        gap: 0.5rem !important;
    }

    .style-filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Sponsor carousel text - smaller on mobile */
    #sponsor-track span,
    #sponsor-track a {
        font-size: 1rem !important;
    }

    /* Hero starburst pattern - hide some on mobile to reduce clutter */
    .hero img[style*="width:600px"],
    .hero img[style*="width:500px"],
    .page-hero img[style*="width:500px"],
    .page-hero img[style*="width:350px"] {
        display: none;
    }

    /* Countdown - ensure it fits on mobile */
    .countdown-timer {
        gap: 1.5rem !important;
    }

    .countdown-value {
        font-size: 2rem !important;
    }

    .countdown-item {
        min-width: 50px !important;
    }

    /* Contact services grid - 2 columns on mobile */
    .grid-3[style*="gap: 1.25rem"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ===== MOBILE APP-LIKE ENHANCEMENTS ===== */

/* Safe area insets for notched phones (iPhone X+, etc.) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .sticky-mobile-cta {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
    footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Touch feedback - tap active states for all interactive elements */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .venue-picker-btn,
    .style-filter-btn,
    .feature-card,
    .event-card,
    .faq-question,
    .nav-links li a,
    .whats-next-link a,
    .instructor-card {
        -webkit-tap-highlight-color: transparent;
    }

    .btn:active {
        transform: scale(0.97) !important;
        opacity: 0.9;
    }

    .venue-picker-btn:active,
    .style-filter-btn:active {
        transform: scale(0.95);
    }

    .feature-card:active,
    .event-card:active {
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }

    .faq-question:active {
        background: rgba(0,0,0,0.03);
    }
}

/* ===== MOBILE NAV OVERLAY (full-screen, app-like) ===== */
@media (max-width: 1024px) {
    /* Auto-hiding header support */
    #header {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.6s ease, box-shadow 0.3s ease;
    }

    #header.header-hidden {
        transform: translateY(-100%);
    }

    /* Full-screen nav overlay */
    .nav-links {
        display: none !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #1c1c1c;
        gap: 0;
        border-bottom: none;
        z-index: 9999;
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        padding: 0;
        border-bottom: none;
    }

    .nav-links .mobile-lang-item {
        display: list-item !important;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(249,243,230,0.15);
    }

    .nav-links li a {
        display: block;
        font-size: 1.5rem !important;
        color: var(--albra) !important;
        font-weight: 700 !important;
        padding: 1rem 2rem;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .nav-links li a:hover,
    .nav-links li a:active {
        color: var(--aether) !important;
    }

    /* Make hamburger icon white when menu is open */
    .mobile-toggle.active span {
        background: var(--albra);
    }

    .mobile-toggle {
        z-index: 10000;
        position: relative;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-toggle span {
        left: 10px;
        top: auto;
    }

    .mobile-toggle span:nth-child(1) { top: 11.5px; }
    .mobile-toggle span:nth-child(2) { top: 20.5px; }
    .mobile-toggle span:nth-child(3) { top: 29.5px; }

    .mobile-toggle.active span:nth-child(1) { top: 20.5px; }
    .mobile-toggle.active span:nth-child(3) { top: 20.5px; }

    /* Ensure all touch targets are minimum 44px */
    .btn,
    button,
    a.btn,
    .faq-question,
    .whats-next-link a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .faq-question {
        display: flex;
        min-height: 52px;
    }

    /* Horizontal scrolling venue picker (pill bar) */
    .venue-picker-section {
        padding: 0.75rem 0;
    }

    .venue-picker-section .container {
        padding: 0;
    }

    .venue-picker {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 0.5rem;
        padding: 0 1rem;
        justify-content: flex-start;
    }

    .venue-picker::-webkit-scrollbar {
        display: none;
    }

    .venue-picker-btn {
        padding: 0.6rem 1.15rem;
        font-size: 0.82rem;
        white-space: nowrap;
        flex-shrink: 0;
        scroll-snap-align: start;
        min-height: 44px;
        border-radius: 50px;
    }

    /* Improved sticky bottom CTA */
    .sticky-mobile-cta {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(28, 28, 28, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        color: var(--white);
        padding: 0.9rem 1.25rem;
        padding-bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
        text-align: center;
        z-index: 500;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(255,255,255,0.1);
        align-items: center;
        justify-content: center;
    }

    .sticky-mobile-cta.show {
        display: flex;
        animation: slideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sticky-mobile-cta a.btn {
        border-radius: 50px;
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    /* Better section padding on mobile */
    section {
        padding: 3rem 0;
    }

    .page-hero {
        padding: 2.5rem 0;
    }

    /* Smoother card transitions */
    .event-card,
    .feature-card,
    .instructor-card {
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
    }

    /* Full-width buttons on mobile for easier tap */
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem !important;
        font-size: 1.05rem !important;
        border-radius: 50px;
    }

    /* Better form inputs on mobile */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        border-radius: 12px;
    }

    /* Rounded buttons everywhere for app feel */
    .btn-primary,
    .btn-secondary,
    .btn-gold,
    .btn-white {
        border-radius: 50px;
    }

    /* Better contact info items - card style */
    .contact-info-item {
        padding: 1rem;
        background: var(--albra);
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }

    /* Footer compact on mobile */
    footer {
        padding: 2rem 0 4rem;
    }

    .footer-col {
        margin-bottom: 0.5rem;
    }

    /* Better FAQ on mobile */
    .faq-question {
        padding: 1.15rem 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1.15rem;
    }

    /* Quick facts grid horizontal scroll */
    .venue-quick-facts {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .quick-fact {
        flex-shrink: 0;
        min-width: 80px;
    }

    /* Map iframes on mobile: taller for visibility, disable touch so page scrolls through them.
       Users can tap "Open in Google Maps" link below each map instead. */
    .venue-map iframe {
        height: 220px !important;
        pointer-events: none;
    }

    /* Style filter horizontal scroll */
    .style-filters {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 1rem;
    }

    .style-filters::-webkit-scrollbar {
        display: none;
    }

    .style-filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 44px;
    }
}

/* ===== EMAIL SIGNUP MOBILE FIX ===== */
@media (max-width: 520px) {
    .email-signup-row {
        flex-direction: column !important;
    }
    .email-signup-row .btn {
        width: 100%;
    }
}

/* ===== EXTRA SMALL SCREENS (phones under 480px) ===== */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .subtitle {
        font-size: 0.95rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
    }

    .page-hero {
        min-height: 250px;
    }

    /* Team photos - 2 columns on tiny screens */
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Contact services - 1 column on tiny screens */
    .grid-3[style*="gap: 1.25rem"] {
        grid-template-columns: 1fr !important;
    }

    /* Stats bar - 2x2 grid */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .venue-section {
        padding: 1.25rem;
        margin-bottom: 2rem;
        border-radius: 12px;
    }

    /* Venue comparison table - scrollable */
    .comparison-table {
        display: block;
        overflow-x: auto;
        font-size: 0.8rem;
    }

    /* Sponsor text even smaller */
    #sponsor-track span,
    #sponsor-track a {
        font-size: 0.85rem !important;
    }

    /* Nav links slightly smaller on tiny phones */
    .nav-links li a {
        font-size: 1.3rem !important;
        padding: 0.85rem 2rem;
    }

    /* Container tighter padding */
    .container {
        padding: 0 1rem;
    }
}

/* ===== VISUALLY HIDDEN (SR-only utility) ===== */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ===== SKIP-TO-CONTENT LINK (Accessibility) ===== */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--ignis);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
    color: white;
}

/* ===== FOCUS-VISIBLE STYLES (Accessibility) ===== */
*:focus-visible {
    outline: 3px solid var(--aether);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid var(--aether);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(1, 170, 197, 0.2);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none;
    border-color: var(--aether);
    box-shadow: 0 0 0 3px rgba(1, 170, 197, 0.2);
}

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

    .hero-video {
        display: none;
    }

    .hero {
        background: var(--umbra) url('../images/hero-poster.jpg') center/cover no-repeat;
    }

    .page-hero::before,
    .page-hero::after,
    .starburst-backdrop-aether::before,
    .starburst-backdrop-aether::after {
        animation: none !important;
    }

    #sponsor-track {
        animation: none !important;
    }
}

/* ===== FORM SUCCESS STATE ===== */
.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success h3 {
    color: var(--aether);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-light);
}

/* ===== FORM SUBMITTING STATE ===== */
.btn.submitting {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.btn.submitting::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
