/* ===========================
   CUSTOM FONTS
   =========================== */

@font-face {
  font-family: 'Nirakolu';
  src: url('nirakolu/Nirakolu.otf') format('opentype'),
       url('nirakolu/Nirakolu.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===========================
   RESET & BASE STYLES
   =========================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.8;
    color: #e0e0e0;
    background-color: #0f0f0f;
    letter-spacing: 0.3px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    line-height: 1.1;
}

h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    line-height: 1.15;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

p {
    margin-bottom: 1.2rem;
    line-height: 1.85;
    color: #c0c0c0;
}

a {
    color: #ff6b5b;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 600;
}

a:hover {
    color: #ff8a78;
    letter-spacing: 0.5px;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

header {
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.98), rgba(15, 15, 15, 0.85));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 91, 0.15);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding-top: env(safe-area-inset-top);
    transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}

/* Transparent state — applied when header is over the homepage hero */
header.nav-hero {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}

.navbar {
    padding: 1.4rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

/* Left nav links */
.nav-menu {
    justify-content: flex-start;
}

/* Right utility links (Login + Accessibility) */
.nav-utils {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff6b5b;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #c0c0c0;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b5b;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff6b5b;
    animation: slideInWidth 0.4s ease;
}

@keyframes slideInWidth {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        gap: 0.8rem;
        padding: 0 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin-top: 0;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background: #0f0f0f;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.1s ease 0.2s both;
    max-width: 750px;
    will-change: transform;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    letter-spacing: 0.5px;
}

/* ── Tricorn editorial block ── */
.hero-editorial {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

/* Small spaced label with decorative lines either side — like "NEW STYLES" */
.hero-label,
.hero-sublabel {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.6rem, 1.2vw, 0.78rem);
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.hero-label::before, .hero-label::after,
.hero-sublabel::before, .hero-sublabel::after {
    content: '';
    display: block;
    width: clamp(30px, 5vw, 60px);
    height: 1px;
    background: rgba(255,255,255,0.4);
}

/* Large editorial title — Tricorn-style serif weight */
.hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow:
        0 2px 0 rgba(255,255,255,0.15),
        0 4px 20px rgba(0,0,0,0.5),
        0 16px 48px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
    .hero {
        margin-top: 0;
        padding: 4rem 1.5rem;
        min-height: 100vh;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-overlay {
        background: rgba(15, 15, 15, 0.6);
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 0;
        padding: 2.5rem 1rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-overlay {
        background: rgba(15, 15, 15, 0.65);
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

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

    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }

    .cta-button {
        align-self: center;
    }
}

/* ===========================
   PAGE HERO
   =========================== */

.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 8rem 2rem;
    text-align: center;
    margin-top: 105px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 107, 91, 0.2);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 91, 0.08) 0%, rgba(255, 107, 91, 0) 70%);
    pointer-events: none;
}

.page-hero h1 {
    margin-bottom: 0;
    position: relative;
    z-index: 2; /* above .page-hero-bg (0) and ::after overlay (1) */
    animation: fadeInUp 0.8s ease 0.2s both;
    will-change: transform;
}

.page-hero--image {
    /* background-attachment: fixed removed — breaks iOS entirely and causes
       scroll jank on desktop. Background is now a JS-injected child element
       driven by translateY, which works reliably across all browsers. */
    background-image: none !important;
}

.page-hero--image::before {
    display: none;
}

/* Dark overlay — sits above the bg layer, below the heading */
.page-hero--image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.48);
    z-index: 1;
}

/* Injected by initParallax() — the actual background image layer.
   Taller than its parent (150%) and centered so translateY has room
   to move without revealing gaps at the edges. */
.page-hero-bg {
    position: absolute;
    top: -25%;
    left: 0;
    width: 100%;
    height: 150%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

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

/* ===========================
   CTA BUTTONS
   =========================== */

.cta-button,
.cta-button-secondary {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    background-color: #ff6b5b;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 107, 91, 0.3);
}

.cta-button:hover {
    background-color: #ff8a78;
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(255, 107, 91, 0.5);
    letter-spacing: 1.5px;
}

.cta-button-secondary {
    background-color: transparent;
    color: #ff6b5b;
    border: 2px solid #ff6b5b;
}

.cta-button-secondary:hover {
    background-color: #ff6b5b;
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 107, 91, 0.3);
    transform: translateY(-4px);
}

/* ===========================
   SPECIAL OFFER SECTION
   =========================== */

.special-offer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 6rem 2rem;
    margin: 0;
    border-bottom: 1px solid rgba(255, 107, 91, 0.2);
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 91, 0.12) 0%, rgba(255, 107, 91, 0) 70%);
    pointer-events: none;
}

.offer-card {
    background: rgba(255, 107, 91, 0.08);
    padding: 3rem;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    border: 1px solid rgba(255, 107, 91, 0.25);
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.offer-card h2 {
    margin-bottom: 1.5rem;
}

.offer-highlight {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ff6b5b;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-card p {
    margin-bottom: 2rem;
    color: #b0b0b0;
}

@media (max-width: 768px) {
    .special-offer {
        padding: 4rem 1.5rem;
    }

    .offer-card {
        padding: 2.5rem;
    }

    .offer-highlight {
        font-size: 2rem;
    }
}

/* ===========================
   BENEFITS SECTION
   =========================== */

.benefits {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: rgba(255, 107, 91, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    border-left: none;
    border-top: 3px solid #ff6b5b;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease calc(0.1s * var(--index, 1)) both;
}

.benefit-card:hover {
    background: rgba(255, 107, 91, 0.12);
    transform: translateY(-8px);
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: #ff6b5b;
}

.benefit-card p {
    margin-bottom: 0;
    color: #b0b0b0;
}

/* ===========================
   CONTENT SECTIONS
   =========================== */

.content-section {
    margin: 0;
    padding: 6rem 2rem;
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.content-section h2 {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.content-section p {
    font-size: 1.05rem;
    color: #b0b0b0;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ===========================
   CLASSES SECTION
   =========================== */

.classes-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: #0f0f0f;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.class-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 107, 91, 0.25);
    border-radius: 0;
    padding: 2.5rem;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease calc(0.1s * var(--index, 1)) both;
}

.class-card:hover {
    background: rgba(255, 107, 91, 0.12);
    border-color: rgba(255, 107, 91, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 107, 91, 0.2);
}

.class-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.class-header h3 {
    margin-bottom: 0;
    flex: 1;
}

.difficulty-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty-badge.beginner {
    background-color: rgba(100, 200, 100, 0.2);
    color: #90ff90;
    border: 1px solid rgba(100, 200, 100, 0.4);
}

.difficulty-badge.intermediate {
    background-color: rgba(255, 180, 0, 0.2);
    color: #ffd966;
    border: 1px solid rgba(255, 180, 0, 0.4);
}

.difficulty-badge.advanced {
    background-color: rgba(255, 107, 91, 0.2);
    color: #ff8a78;
    border: 1px solid rgba(255, 107, 91, 0.4);
}

.difficulty-reader {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.filled {
    background-color: #ff6b5b;
    box-shadow: 0 0 8px rgba(255, 107, 91, 0.5);
}

.dot.empty {
    background-color: rgba(255, 255, 255, 0.15);
}

.class-card p {
    color: #b0b0b0;
    margin-bottom: 1.8rem;
}

.class-meta {
    border-top: 1px solid rgba(255, 107, 91, 0.2);
    padding-top: 1.5rem;
}

.class-meta p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #808080;
}

/* ===========================
   INSTRUCTORS SECTION
   =========================== */

.instructors-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.instructor-card {
    text-align: center;
    animation: fadeInUp 0.8s ease calc(0.1s * var(--index, 1)) both;
}

.instructor-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 91, 0.2);
    transition: all 0.4s ease;
}

.instructor-card:hover img {
    border-color: rgba(255, 107, 91, 0.5);
    box-shadow: 0 12px 32px rgba(255, 107, 91, 0.15);
}

.instructor-card h3 {
    margin-bottom: 0.8rem;
}

.instructor-title {
    color: #ff6b5b;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.instructor-card p:last-child {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===========================
   DIFFERENCE GRID
   =========================== */

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.difference-card {
    background: rgba(255, 107, 91, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    border-top: 3px solid #ff6b5b;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease calc(0.1s * var(--index, 1)) both;
}

.difference-card:hover {
    background: rgba(255, 107, 91, 0.12);
    transform: translateY(-8px);
}

.difference-card h3 {
    margin-bottom: 1rem;
    color: #ff6b5b;
}

.difference-card p {
    color: #b0b0b0;
    margin-bottom: 0;
}

/* ===========================
   PARTY FEATURES
   =========================== */

.party-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 107, 91, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    border-left: none;
    border-top: 3px solid #ff6b5b;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease calc(0.1s * var(--index, 1)) both;
}

.feature-item:hover {
    background: rgba(255, 107, 91, 0.12);
    transform: translateY(-8px);
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #ff6b5b;
}

.feature-item p {
    color: #b0b0b0;
    margin-bottom: 0;
}

/* ===========================
   CONTACT PAGE
   =========================== */
   .booking-section {
  max-width: 640px;
  margin: 0 auto;
}

.field {
  margin: 14px 0;
}

.field label {
  display: block;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 10px;
}

.field-error {
  min-height: 18px;
  font-size: 0.9rem;
  margin-top: 6px;
}

.form-success {
  min-height: 20px;
  margin: 10px 0;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: #0f0f0f;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ===========================
   CONTACT FORM
   =========================== */

.contact-form-section h2 {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 107, 91, 0.3);
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b5b;
    background: rgba(255, 107, 91, 0.08);
    box-shadow: 0 0 0 4px rgba(255, 107, 91, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 1rem;
}

/* ===========================
   CONTACT INFO
   =========================== */

.contact-info-section h2 {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.info-block {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease calc(0.2s + 0.1s * var(--index, 1)) both;
}

.info-block h3 {
    color: #ff6b5b;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.info-block p {
    color: #b0b0b0;
    margin-bottom: 0;
    line-height: 1.8;
}

.info-block a {
    color: #ff6b5b;
    font-weight: 700;
}

.info-block a:hover {
    color: #ff8a78;
    text-decoration: underline;
}

/* ===========================
   TIPS GRID
   =========================== */

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tip-card {
    background: rgba(255, 107, 91, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    text-align: center;
    border: 1px solid rgba(255, 107, 91, 0.2);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease calc(0.1s * var(--index, 1)) both;
}

.tip-card:hover {
    background: rgba(255, 107, 91, 0.12);
    border-color: rgba(255, 107, 91, 0.5);
    transform: translateY(-8px);
}

.tip-card h3 {
    margin-bottom: 1rem;
    color: #ff6b5b;
}

.tip-card p {
    color: #b0b0b0;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===========================
   FOOTER
   =========================== */

footer {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #fff;
    margin-top: 0;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 107, 91, 0.15);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section h4 {
    color: #ff6b5b;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #909090;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.social-links {
    list-style: none;
}

.social-links li {
    margin-bottom: 0.8rem;
}

.social-links a {
    color: #909090;
    transition: all 0.4s ease;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.social-links a:hover {
    color: #ff6b5b;
    letter-spacing: 0.8px;
}

.footer-bottom {
    text-align: center;
    color: #707070;
    font-size: 0.9rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* ===========================
   UTILITIES & RESPONSIVE
   =========================== */

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

/* ===========================
   SCROLL REVEAL
   Intersection Observer adds .scroll-visible when an element
   enters the viewport. .scroll-hidden is the "before" state.
   =========================== */

.scroll-hidden {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    animation: none !important; /* suppress load-time fadeInUp on cards */
}

.scroll-hidden.from-left  { transform: translateX(-48px); }
.scroll-hidden.from-right { transform: translateX(48px); }

.scroll-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Stagger delays for grid children */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

/* Instantly show everything when animations are paused */
.a11y-pause-anim .scroll-hidden {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-hidden {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 768px) {
    header {
        padding: max(1rem, env(safe-area-inset-top)) 0;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .contact-form-section,
    .contact-info-section {
        padding: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .hero {
        margin-top: 0;
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .page-hero {
        padding: 5rem 1.5rem;
    }

    .content-section,
    .special-offer,
    .benefits,
    .classes-section,
    .instructors-section,
    .contact-container {
        padding: 4rem 1.5rem;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1rem;
    }

    .cta-button,
    .cta-button-secondary {
        padding: 0.95rem 1.8rem;
        font-size: 0.9rem;
    }

    .hero {
        margin-top: 0;
        padding: 2rem 1rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .page-hero {
        padding: 3rem 1rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
        gap: 0.4rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .benefits-grid,
    .classes-grid,
    .instructors-grid,
    .difference-grid,
    .party-features,
    .tips-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .content-section,
    .special-offer,
    .benefits,
    .classes-section,
    .instructors-section,
    .contact-container {
        padding: 3rem 1rem;
    }

    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .contact-wrapper {
        gap: 2rem;
    }
}
/* ---------- Images (Responsive) ---------- */
.hero-media {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen hero */
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  margin: 24px auto;
  border-radius: 16px;
}
/* Step 6 polish: booking form UX */
.field-error {
  color: #b00020;
  font-size: 0.9rem;
  margin-top: 6px;
  min-height: 18px;
}

.input-error {
  border: 2px solid #b00020 !important;
  outline: none;
}

.form-success {
  min-height: 20px;
  margin: 10px 0;
  padding: 10px;
}

.success-visible {
  border: 2px solid #1b7f3a;
  background: rgba(27, 127, 58, 0.08);
}

.btn-disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ===========================
   LEAD GENERATION FORM
   =========================== */

/* Two-column row: name + email side by side on desktop */
.lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    text-align: left;
}

.lead-field {
    display: flex;
    flex-direction: column;
}

.lead-field label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.6rem;
}

.lead-field input {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 107, 91, 0.3);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lead-field input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.lead-field input:focus {
    outline: none;
    border-color: #ff6b5b;
    box-shadow: 0 0 0 4px rgba(255, 107, 91, 0.15);
}

/* Stack to single column on mobile */
@media (max-width: 600px) {
    .lead-form-row {
        grid-template-columns: 1fr;
    }
}

/* Claimed / success state */
.lead-claimed {
    animation: fadeInUp 0.6s ease both;
}

.lead-claimed-intro {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 1.4rem;
}

/* The promo code block */
.promo-code {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 6px;
    color: #ff6b5b;
    border: 2px dashed rgba(255, 107, 91, 0.6);
    padding: 1rem 2.5rem;
    margin-bottom: 1.4rem;
    text-transform: uppercase;
    background: rgba(255, 107, 91, 0.06);
    cursor: default;
    user-select: all;  /* lets visitor triple-click to copy it */
}

.promo-note {
    font-size: 0.9rem;
    color: #909090;
    margin-bottom: 2rem;
}

/* ===========================
   ACCESSIBILITY NAV DROPDOWN
   =========================== */

/* The <li> that holds the toggle + panel */
#a11y-nav-item {
  position: relative;
}

/* Toggle button — styled to match the other nav links */
#a11y-toggle {
  background: none;
  border: none;
  color: #c0c0c0;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 0;
  transition: color 0.4s ease;
}

#a11y-toggle:hover,
#a11y-toggle[aria-expanded="true"] {
  color: #ff6b5b;
}

#a11y-toggle:focus-visible {
  outline: 2px solid #ff6b5b;
  outline-offset: 3px;
}

/* Dropdown panel */
#a11y-panel {
  position: absolute;
  top: calc(100% + 1.4rem);
  right: 0;
  width: 300px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 107, 91, 0.3);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  z-index: 1001;
}

/* Panel header */
#a11y-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 107, 91, 0.2);
}

#a11y-panel-header span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#a11y-close {
  background: none;
  border: none;
  color: #909090;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 0.2rem;
  line-height: 1;
  transition: color 0.2s;
  font-family: inherit;
}

#a11y-close:hover,
#a11y-close:focus-visible {
  color: #ff6b5b;
  outline: 2px solid #ff6b5b;
  outline-offset: 2px;
}

/* Tile grid — 2 columns, 1px gap = divider lines */
#a11y-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  padding: 1px;
}

/* Individual tiles */
.a11y-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.1rem 0.5rem;
  background: #1a1a1a;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}

.a11y-tile:hover,
.a11y-tile:focus-visible {
  background: rgba(255, 107, 91, 0.1);
  border-color: rgba(255, 107, 91, 0.35);
  outline: none;
}

.a11y-tile--on {
  border-color: #ff6b5b;
  background: rgba(255, 107, 91, 0.14);
}

.a11y-tile-icon {
  display: block;
  width: 30px;
  height: 30px;
  color: #909090;
}

.a11y-tile--on .a11y-tile-icon {
  color: #ff6b5b;
}

.a11y-tile-icon svg {
  width: 100%;
  height: 100%;
}

.a11y-tile-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #909090;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
  line-height: 1.3;
}

.a11y-tile--on .a11y-tile-label {
  color: #ff6b5b;
}

/* Reset All — spans both columns at the bottom of the grid */
#a11y-reset {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 0.5rem;
  background: #141414;
  border: 2px solid transparent;
  border-top: 1px solid rgba(255, 107, 91, 0.15);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
}

#a11y-reset:hover,
#a11y-reset:focus-visible {
  background: rgba(255, 107, 91, 0.1);
  border-color: rgba(255, 107, 91, 0.35);
  outline: none;
}

/* Custom cursor ring */
#a11y-cursor {
  display: none;
  position: fixed;
  width: 44px;
  height: 44px;
  border: 3px solid #ff6b5b;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

.a11y-big-cursor * {
  cursor: none !important;
}

/* Tooltip overlay */
#a11y-tooltip {
  display: none;
  position: fixed;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 107, 91, 0.5);
  padding: 0.4rem 0.7rem;
  font-size: 0.78rem;
  font-family: inherit;
  max-width: 220px;
  z-index: 99998;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

/* Small-screen: panel extends left so it doesn't overflow viewport */
@media (max-width: 500px) {
  #a11y-panel {
    right: auto;
    left: 0;
    width: calc(100vw - 4rem);
  }
}

/* ===========================
   A11Y MODE OVERRIDES
   =========================== */

/* — Contrast + — */
.a11y-contrast body {
  background-color: #000 !important;
}
.a11y-contrast header {
  background: #000 !important;
  border-bottom: 2px solid #ff6b5b !important;
}
.a11y-contrast p,
.a11y-contrast li {
  color: #fff !important;
}
.a11y-contrast .benefit-card,
.a11y-contrast .class-card,
.a11y-contrast .tip-card,
.a11y-contrast .feature-item,
.a11y-contrast .difference-card,
.a11y-contrast .offer-card {
  background: #111 !important;
  border-color: #ff6b5b !important;
}
.a11y-contrast .hero-overlay {
  background: rgba(0, 0, 0, 0.72) !important;
}
.a11y-contrast footer {
  background: #000 !important;
  border-top: 2px solid #ff6b5b !important;
}
.a11y-contrast .footer-section p,
.a11y-contrast .social-links a {
  color: #fff !important;
}

/* — Highlight Links — */
.a11y-highlight-links a {
  text-decoration: underline !important;
  outline: 2px solid rgba(255, 107, 91, 0.6) !important;
  outline-offset: 2px !important;
  background: rgba(255, 107, 91, 0.08) !important;
  padding: 0 3px !important;
}

/* — Bigger Text — */
.a11y-bigger-text {
  font-size: 120% !important;
}

/* — Text Spacing — */
.a11y-text-spacing body {
  letter-spacing: 0.1em !important;
  word-spacing: 0.14em !important;
}

/* — Pause Animations — */
.a11y-pause-anim *,
.a11y-pause-anim *::before,
.a11y-pause-anim *::after {
  animation: none !important;
  animation-play-state: paused !important;
  transition: none !important;
}
.a11y-pause-anim video {
  display: none !important;
}

/* — Dyslexia Friendly — */
.a11y-dyslexia,
.a11y-dyslexia body,
.a11y-dyslexia input,
.a11y-dyslexia textarea,
.a11y-dyslexia button {
  font-family: Arial, Helvetica, sans-serif !important;
  letter-spacing: 0.06em !important;
  line-height: 1.95 !important;
  word-spacing: 0.1em !important;
}

/* — Line Height — */
.a11y-line-height p,
.a11y-line-height li,
.a11y-line-height label {
  line-height: 2.5 !important;
}

/* ===========================
   AUTH PAGE
   =========================== */

.auth-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 1.5rem 6rem;
  min-height: 60vh;
}

.auth-card {
  background: #fff;
  border: 1px solid rgba(196, 115, 106, 0.18);
  border-radius: 4px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 8px 32px rgba(42, 24, 24, 0.08);
}

/* Tab switcher */
.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(196, 115, 106, 0.2);
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7a5550;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.auth-tab.active {
  color: #c4736a;
  border-bottom-color: #c4736a;
}

/* Auth forms */
.auth-form h2 {
  font-size: 1.4rem;
  color: #2a1818;
  margin-bottom: 1.5rem;
}

/* Logged-in panel */
.auth-logged-in {
  text-align: center;
  padding: 1rem 0;
}

.auth-welcome h2 {
  font-size: 1.4rem;
  color: #2a1818;
  margin-bottom: 0.5rem;
}

.auth-email {
  color: #c4736a;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.auth-subtext {
  color: #7a5550;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.auth-promo-status {
  margin: 1.25rem 0;
  padding: 1rem;
  border-radius: 4px;
  background: rgba(196, 115, 106, 0.06);
}

.promo-claimed-badge {
  color: #2a7a4a;
  font-weight: 600;
}

.promo-unclaimed {
  color: #7a5550;
}

.promo-unclaimed a {
  color: #c4736a;
  font-weight: 600;
}

/* — Text Align (force left on centred elements) — */
.a11y-text-align h1,
.a11y-text-align h2,
.a11y-text-align h3,
.a11y-text-align p {
  text-align: left !important;
}

/* ===========================
   STUDIO AI CHAT WIDGET
   =========================== */

.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

/* Toggle button — icon-only pill */
.chat-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #ff6b5b;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 107, 91, 0.45);
}

.chat-toggle:hover {
  background: #e85d4a;
  transform: translateY(-2px);
}

.chat-toggle svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Hide the text label — icon only */
.chat-toggle-label {
  display: none;
}

/* Panel */
.chat-panel {
  display: none;
  width: 340px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 107, 91, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  flex-direction: column;
  overflow: hidden;
}

.chat-panel:not([hidden]) {
  display: flex;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 107, 91, 0.12);
  border-bottom: 1px solid rgba(255, 107, 91, 0.2);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff6b5b;
}

.chat-close {
  background: none;
  border: none;
  color: #a0a0a0;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.chat-close:hover {
  color: #ff6b5b;
}

/* Message log */
.chat-messages {
  flex: 1;
  min-height: 200px;
  max-height: 300px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 107, 91, 0.3) transparent;
}

.chat-message {
  max-width: 85%;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e0e0e0;
  word-break: break-word;
}

.chat-message--user {
  align-self: flex-end;
  background: rgba(255, 107, 91, 0.18);
  border: 1px solid rgba(255, 107, 91, 0.3);
}

.chat-message--assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Blinking cursor while streaming */
.chat-message--streaming::after {
  content: '|';
  animation: chat-blink 0.7s step-end infinite;
  color: #ff6b5b;
  margin-left: 1px;
}

@keyframes chat-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.chat-message--error {
  color: #ff8a78;
  font-style: italic;
}

/* Quick suggestion chips */
.chat-suggestions {
  display: flex;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-suggestion {
  background: transparent;
  border: 1px solid rgba(255, 107, 91, 0.35);
  color: #ff6b5b;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.chat-suggestion:hover {
  background: rgba(255, 107, 91, 0.15);
  color: #fff;
}

/* Input row */
.chat-form {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  color: #e0e0e0;
  font-family: inherit;
  font-size: 0.9rem;
}

.chat-form input::placeholder {
  color: #606060;
}

.chat-send {
  background: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  color: #ff6b5b;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.chat-send:hover {
  background: rgba(255, 107, 91, 0.12);
}

.chat-powered-by {
  text-align: center;
  font-size: 0.72rem;
  color: #505050;
  padding: 0.4rem;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Mobile */
@media (max-width: 480px) {
  .chat-widget {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    align-items: stretch;
  }

  .chat-panel {
    width: 100%;
  }

  .chat-toggle {
    justify-content: center;
  }
}

/* ===========================
   CURTAIN ANIMATION
   =========================== */

#curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  pointer-events: none;
}

.curtain-video {
  display: none; /* seek source only — never shown directly */
}

.curtain-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Centered branding shown on the closed curtain */
.curtain-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  will-change: opacity;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  padding: 0 1rem;
  width: 100%;
}

/* 3D bubbly headline — creamy white with stacked depth shadows */
.curtain-headline {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(3.2rem, 9.5vw, 8.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.05;
  color: #ffffff;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);

  /* Deep solid shadow stack for 3D lift + warm ambient glow */
  text-shadow:
    0  1px 0 rgba(255,255,255,0.6),
    0  2px 0 #c9b8a8,
    0  3px 0 #b5a090,
    0  4px 0 #a08878,
    0  5px 0 #8c7062,
    0  6px 0 #785850,
    0  7px 0 #644040,
    0  8px 4px rgba(80, 40, 20, 0.6),
    0 16px 20px rgba(40, 20, 10, 0.4),
    0 28px 40px rgba(20, 10, 0, 0.25);
}

.curtain-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-top: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

/* Scroll hint */
.curtain-hint {
  display: none;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  will-change: opacity;
  animation: curtain-bob 2.2s ease-in-out infinite;
}

.curtain-hint svg {
  width: 18px;
  height: 18px;
}

@keyframes curtain-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ===========================
   LANDING PAGE — LIGHT THEME
   =========================== */

body.landing {
  background-color: #faf6f4;
  color: #2a1818;
  font-family: 'Jost', 'ui-sans-serif', system-ui, -apple-system, sans-serif;
  font-weight: 300;
}

/* Typography */
body.landing h1,
body.landing h2,
body.landing h3,
body.landing h4 {
  color: #2a1818;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

body.landing p {
  color: #7a5550;
  font-weight: 300;
}

body.landing a {
  color: #c4736a;
}

body.landing a:hover {
  color: #a85f57;
}

/* Buttons are <a> tags — override the link color rule so text stays white */
body.landing a.cta-button,
body.landing a.cta-button:hover {
  color: #fff;
}

body.landing a.cta-button-secondary {
  color: #c4736a;
}

body.landing a.cta-button-secondary:hover {
  color: #fff;
}

/* Header */
body.landing header {
  background: rgba(250, 246, 244, 0.92);
  border-bottom-color: rgba(196, 115, 106, 0.15);
}

body.landing header.nav-hero {
  background: transparent;
  border-bottom-color: transparent;
}

body.landing .logo {
  color: #c4736a;
}

body.landing .nav-link {
  color: #5a3835;
}

body.landing .nav-link:hover,
body.landing .nav-link.active {
  color: #c4736a;
}

body.landing .nav-link.active::after {
  background-color: #c4736a;
}

/* Hero — video sits underneath, overlay is lighter/warmer */
body.landing .hero {
  background: #faf6f4;
}

body.landing .hero-overlay {
  background: rgba(42, 24, 24, 0.42);
}

/* Hero text stays white since it's over video */
body.landing .hero-content h1 {
  color: #fff;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.0;
}

body.landing .hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  max-width: 600px;
}

/* CTA buttons */
body.landing .cta-button {
  background-color: #c4736a;
  box-shadow: 0 8px 24px rgba(196, 115, 106, 0.35);
}

body.landing .cta-button:hover {
  background-color: #a85f57;
  box-shadow: 0 14px 36px rgba(196, 115, 106, 0.5);
}

body.landing .cta-button-secondary {
  color: #c4736a;
  border-color: #c4736a;
}

body.landing .cta-button-secondary:hover {
  background-color: #c4736a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(196, 115, 106, 0.3);
}

/* Special offer section */
body.landing .special-offer {
  background: linear-gradient(135deg, #f5ece9 0%, #ede3e0 100%);
}

body.landing .special-offer::before {
  background: radial-gradient(circle, rgba(196, 115, 106, 0.1) 0%, transparent 70%);
}

body.landing .offer-card {
  background: #fff;
  border: 1px solid rgba(196, 115, 106, 0.18);
  box-shadow: 0 4px 32px rgba(196, 115, 106, 0.08);
}

body.landing .offer-card h2 {
  color: #2a1818;
}

body.landing .offer-highlight {
  color: #c4736a;
}

body.landing .offer-card p {
  color: #7a5550;
}

body.landing .promo-code {
  color: #c4736a;
  border-color: #c4736a;
}

/* Benefits section */
body.landing .benefits {
  background: #faf6f4;
  border-bottom-color: rgba(196, 115, 106, 0.1);
}

body.landing h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
}

body.landing h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
}

body.landing .benefits h2 {
  color: #2a1818;
}

body.landing .benefit-card {
  background: #fff;
  border-top-color: #c4736a;
  border-left-color: rgba(196, 115, 106, 0.15);
  box-shadow: 0 2px 16px rgba(196, 115, 106, 0.06);
}

body.landing .benefit-card:hover {
  background: #fff8f7;
  box-shadow: 0 8px 32px rgba(196, 115, 106, 0.14);
}

body.landing .benefit-card h3 {
  color: #c4736a;
}

body.landing .benefit-card p {
  color: #7a5550;
}

/* Footer on landing */
body.landing footer {
  background: #2a1818;
  border-top: 1px solid rgba(196, 115, 106, 0.25);
}

body.landing footer h4,
body.landing footer p,
body.landing footer a {
  color: #d4b4b0;
}

body.landing footer a:hover {
  color: #e8c8c4;
}

body.landing .footer-bottom p {
  color: #7a5550;
}

/* Form inputs on landing */
body.landing input,
body.landing textarea {
  background: #fff;
  border-color: rgba(196, 115, 106, 0.3);
  color: #2a1818;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

body.landing input::placeholder,
body.landing textarea::placeholder {
  color: #b09090;
}

body.landing input:focus,
body.landing textarea:focus {
  border-color: #c4736a;
  box-shadow: 0 0 0 3px rgba(196, 115, 106, 0.12);
}

body.landing label {
  color: #5a3835;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

/* Chat widget on landing */
body.landing .chat-toggle {
  background: #c4736a;
  box-shadow: 0 4px 16px rgba(196, 115, 106, 0.45);
}

body.landing .chat-toggle:hover {
  background: #a85f57;
}

body.landing .chat-panel {
  background: #fff;
  border-color: rgba(196, 115, 106, 0.2);
}

body.landing .chat-header {
  background: rgba(196, 115, 106, 0.08);
  border-bottom-color: rgba(196, 115, 106, 0.15);
}

body.landing .chat-message--user {
  background: rgba(196, 115, 106, 0.12);
  border-color: rgba(196, 115, 106, 0.25);
  color: #2a1818;
}

body.landing .chat-message--assistant {
  background: #f5ece9;
  border-color: rgba(196, 115, 106, 0.1);
  color: #2a1818;
}

body.landing .chat-form {
  border-top-color: rgba(196, 115, 106, 0.1);
}

body.landing .chat-form input {
  color: #2a1818;
}

body.landing .chat-form input::placeholder {
  color: #b09090;
}

body.landing .chat-send {
  color: #c4736a;
  border-left-color: rgba(196, 115, 106, 0.1);
}

body.landing .chat-suggestion {
  border-color: rgba(196, 115, 106, 0.35);
  color: #c4736a;
}

body.landing .chat-suggestion:hover {
  background: rgba(196, 115, 106, 0.1);
  color: #2a1818;
}

body.landing .chat-powered-by {
  color: #b09090;
}

/* Field errors on landing */
body.landing .field-error {
  color: #a85f57;
}

/* ===========================
   INNER PAGES — LIGHT THEME
   (about, classes, parties, contact)
   =========================== */

/* Page hero banners */
body.landing .page-hero {
  background: linear-gradient(135deg, #f5ece9 0%, #ede3e0 100%);
  border-bottom-color: rgba(196, 115, 106, 0.15);
}

body.landing .page-hero::before {
  background: radial-gradient(circle, rgba(196, 115, 106, 0.1) 0%, transparent 70%);
}

body.landing .page-hero h1 {
  color: #2a1818;
}

/* Content sections */
body.landing .content-section {
  background: #faf6f4;
}

body.landing .content-section h2,
body.landing .content-section h3 {
  color: #2a1818;
}

body.landing .content-section p {
  color: #7a5550;
}

/* Class cards */
body.landing .class-card {
  background: #fff;
  border-color: rgba(196, 115, 106, 0.2);
  box-shadow: 0 2px 16px rgba(196, 115, 106, 0.06);
}

body.landing .class-card:hover {
  background: #fff8f7;
  box-shadow: 0 8px 32px rgba(196, 115, 106, 0.14);
}

body.landing .class-card h3 {
  color: #2a1818;
}

body.landing .class-card p {
  color: #7a5550;
}

body.landing .difficulty-badge {
  background: rgba(196, 115, 106, 0.12);
  color: #c4736a;
}

/* Classes section background */
body.landing .classes-section {
  background: #faf6f4;
}

body.landing .classes-section h2 {
  color: #2a1818;
}

/* Instructors */
body.landing .instructors-section {
  background: #f5ece9;
}

body.landing .instructors-section h2 {
  color: #2a1818;
}

body.landing .instructor-card h3 {
  color: #2a1818;
}

body.landing .instructor-card p {
  color: #7a5550;
}

/* Difference / feature cards */
body.landing .difference-card,
body.landing .feature-item,
body.landing .tip-card {
  background: #fff;
  border-top-color: #c4736a;
  box-shadow: 0 2px 16px rgba(196, 115, 106, 0.06);
}

body.landing .difference-card:hover,
body.landing .feature-item:hover,
body.landing .tip-card:hover {
  background: #fff8f7;
  box-shadow: 0 8px 32px rgba(196, 115, 106, 0.14);
}

body.landing .difference-card h3,
body.landing .feature-item h3,
body.landing .tip-card h3 {
  color: #c4736a;
}

body.landing .difference-card p,
body.landing .feature-item p,
body.landing .tip-card p {
  color: #7a5550;
}

/* Section intros */
body.landing .section-intro {
  color: #7a5550;
}

/* Contact page */
body.landing .contact-container {
  background: #faf6f4;
}

body.landing .contact-form-section h2,
body.landing .contact-info-section h2 {
  color: #2a1818;
}

body.landing .contact-form-section p,
body.landing .contact-info-section p {
  color: #7a5550;
}

body.landing .info-block h3 {
  color: #c4736a;
}

body.landing .contact-form {
  background: #fff;
  border: 1px solid rgba(196, 115, 106, 0.15);
  padding: 2.5rem;
}

/* Parties page */
body.landing .party-features {
  background: #f5ece9;
}

/* Success message */
body.landing .success-visible {
  color: #5a8a5a;
  background: rgba(90, 138, 90, 0.08);
  border-color: rgba(90, 138, 90, 0.25);
}
/* ===========================
   BOOKING MODAL
   =========================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  line-height: 1;
  text-transform: none;
  font-style: normal;
}

.modal-close:hover { color: #333; }

.modal-card h2 {
  margin: 0 0 1.5rem;
  font-size: 1.3rem;
}

.modal-card .form-group {
  margin-bottom: 1.1rem;
}

.modal-card label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.modal-card input,
.modal-card select,
.modal-card textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.modal-card textarea { resize: vertical; }

/* ===========================
   BOOKING CARDS (My Bookings)
   =========================== */
.booking-card {
  border: 1px solid #e8d5d1;
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  background: #fff;
}

.booking-card--cancelled {
  opacity: 0.6;
  background: #f9f9f9;
}

.booking-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.booking-card-header strong {
  font-size: 1rem;
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-upcoming  { background: #e6f4ea; color: #2e7d32; }
.status-cancelled { background: #f0f0f0; color: #888; }

.booking-notes {
  font-size: 0.88rem;
  color: #777;
  margin: 0.3rem 0 0.8rem;
  font-style: italic;
}

.booking-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.booking-card .cta-button-secondary,
.booking-card .cta-button {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
}

.edit-form {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0e8e6;
}

.edit-notes-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  box-sizing: border-box;
  resize: vertical;
  margin-bottom: 0.5rem;
}

.edit-form-actions {
  display: flex;
  gap: 0.5rem;
}
