/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* ── Accessibility ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #2d3748;
    color: white;
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
    outline: 3px solid #6b8cff;
    outline-offset: 3px;
    border-radius: 4px;
}

abbr[title] { text-decoration: underline dotted; cursor: help; }

/* ── FAQ <details>/<summary> ─────────────────────────────────────────────
   Native disclosure widget styling. The summary's default ▶ marker is
   hidden via list-style:none on the element itself; we provide our own
   "+" indicator inline that rotates to "×" when opened. */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; } /* Safari */
details[open] > summary span { transform: rotate(45deg); }
details > summary span { transition: transform 0.2s ease; display: inline-block; }
details:hover, details[open] { border-color: #E8472B !important; }

:root {
    --color-primary:    #E8472B;   /* signature orange-red */
    --color-secondary:  #FFD93D;   /* bright yellow */
    --color-accent:     #3B62BF;   /* royal blue */
    --color-green:      #6BCF7F;   /* success/available */
    --color-purple:     #9B5DE5;   /* accent purple */
    --color-bg:         #FFFDF7;   /* warm cream */
    --color-text:       #2d3748;
    --color-white:      #ffffff;
    /* Brand palette from UX audit */
    --color-brand-gold:  #C8A96E;  /* CTA gold */
    --color-brand-navy:  #1C1B5E;  /* deep navy */
    --color-brand-green: #5D6B20;  /* WCAG-AA green (replaces #8B9A35) */
}

html {
    /* Smooth-scroll any in-page anchor link (e.g. href="#services-section").
       Replaces the old JS scrollToServices() helper. */
    scroll-behavior: smooth;
    /* Push anchor targets below the fixed nav so headings aren't covered. */
    scroll-padding-top: 90px;
}

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

body {
    font-family: 'Nunito', Arial, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.logo, .cta-button, .cta-button-secondary,
.submit-button, .section-title {
    font-family: 'Fredoka', Arial, sans-serif;
    letter-spacing: 0.01em;
}

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    border-bottom: 4px solid var(--color-primary);
    z-index: 1000;
    padding: 0.75rem 2rem;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Fredoka', Arial, sans-serif;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF9A7A, #E8472B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.nav-links a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

/* ── Mobile hamburger ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #2d3748;
    border-radius: 3px;
    transition: all 0.3s;
}

/* ── Flash messages ── */
.flash-container {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 90%;
    max-width: 600px;
}

.flash {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    animation: fadeIn 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.flash--info    { background: #e6f0ff; color: #1e4db7; }
.flash--error   { background: #ffe6e6; color: #c0392b; }
.flash--success { background: #e6fff5; color: #1a7a4a; }

/* ── Page wrapper ── */
.page-wrapper {
    padding-top: 80px;
    min-height: 100vh;
}

/* ── Shared utilities ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 900;
}

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

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

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

/* ── Hero ── */
.hero {
    background: #E8472B;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Decorative yellow blob */
.hero::before {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    background: rgba(255,211,61,0.2);
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    top: -60px; left: -60px;
    animation: float 7s ease-in-out infinite;
    pointer-events: none;
}

/* Decorative white blob */
.hero::after {
    content: '';
    position: absolute;
    width: 220px; height: 220px;
    background: rgba(255,255,255,0.1);
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    bottom: -40px; right: 45%;
    animation: float 9s ease-in-out infinite;
    pointer-events: none;
}

.hero-splat-1 {
    position: absolute;
    width: 130px; height: 130px;
    background: rgba(255,255,255,0.08);
    border-radius: 70% 30% 50% 50% / 30% 70% 30% 70%;
    top: 20%; left: 3%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}
.hero-splat-2 {
    position: absolute;
    width: 90px; height: 90px;
    background: rgba(255,211,61,0.25);
    border-radius: 30% 70% 70% 30% / 50% 30% 70% 50%;
    bottom: 10%; left: 42%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1                    { color: white; }
.hero-tagline               { color: rgba(255,255,255,0.95) !important; font-size: 1.6rem; }
.hero-content > p           { color: #ffffff !important; font-weight: 600 !important; }

.hero-badge {
    background: rgba(255,255,255,0.2) !important;
    border: 2px solid rgba(255,255,255,0.4);
    color: white !important;
    box-shadow: none;
}

/* Hero buttons */
.hero-content .cta-button {
    background: white;
    color: #E8472B;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-content .cta-button:hover {
    background: #FFD93D;
    color: #E8472B;
}
.hero-content .cta-button-secondary {
    background: transparent;
    border-color: white;
    color: white;
}
.hero-content .cta-button-secondary:hover {
    background: white;
    color: #E8472B;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 900;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 600; /* semi-bold brings this under the WCAG AA large/bold threshold */
}

.hero-tagline {
    font-family: 'Fredoka', Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

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

.hero-video-container {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #E8472B 0%, #3B62BF 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 3px dashed #ffd93d;
}

.hero-video-inner {
    position: relative;
    padding-bottom: 75%;
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    overflow: hidden;
}

.hero-video-decorations {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 2rem;
}

/* ── Buttons ── */
.cta-button {
    background: linear-gradient(135deg, var(--color-primary), #FF7A5C);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(232,71,43,0.35);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(232,71,43,0.45);
    color: white;
}

.cta-button-secondary {
    background: white;
    color: var(--color-primary);
    border: 2.5px solid var(--color-primary);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.service-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    color: white;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* Bold brand color per card */
.service-card:nth-child(1) { background: #E8472B; }
.service-card:nth-child(2) { background: #3B62BF; }
.service-card:nth-child(3) { background: #FF6B9D; }
.service-card:nth-child(4) { background: #FFD93D; color: #2d3748; }

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
}

.service-icon svg { width: 38px; height: 38px; }
.service-card:nth-child(4) .service-icon { background: rgba(0,0,0,0.1); }

.service-card h3 {
    color: inherit;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.service-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.service-card:nth-child(4) p { color: rgba(0,0,0,0.65); }

/* ── Video Showcase ── */
.video-showcase {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 3rem 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 15px;
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    cursor: pointer;
    transition: transform 0.3s;
    border: none;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button::after {
    content: '▶';
    font-size: 2rem;
    color: var(--color-primary);
    margin-left: 5px;
}

.scroll-indicator {
    text-align: center;
    padding: 2rem;
    color: #94a3b8;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

/* ── Booking Form ── */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
}

/* form section blocks — now fieldsets */
.form-section {
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: none;
}
.form-section legend {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.step-badge {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.fs-parent  { background: linear-gradient(135deg, #fff5e6, #ffe6f0); }
.fs-child   { background: linear-gradient(135deg, #e6f7ff, #f0e6ff); }
.fs-service { background: linear-gradient(135deg, #e6fff5, #fff3e6); }
.fs-date    { background: linear-gradient(135deg, #fff0e6, #ffe6f7); }
.fs-notes   { background: linear-gradient(135deg, #f0e6ff, #e6f0ff); }

/* service radio options */
.service-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-option {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
    text-align: center;
}

.service-option input[type="radio"] {
    /* Visually hidden but still in the tab order — keyboard and screen reader accessible.
       display:none would remove it from the tab order entirely, blocking keyboard users. */
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
}

.service-option:focus-within {
    outline: 3px solid #6b8cff;
    outline-offset: 3px;
}

.service-option:has(input:checked),
.service-option.selected {
    border-color: #6bcf7f;
    background: linear-gradient(135deg, #e6fff5, #f0fff9);
}

/* Time slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.time-slot {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: #2d3748;
}

.time-slot:hover:not(:disabled) {
    border-color: #6bcf7f;
    background: #f0fff9;
}

.time-slot.selected {
    background: linear-gradient(135deg, #6bcf7f, #7ddb8f);
    color: white;
    border-color: #6bcf7f;
}

.time-slot:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Calendar widget */
.calendar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cal-nav-btn {
    background: #f1f5f9;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.cal-day-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    padding: 0.5rem;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: #6bcf7f;
    color: white;
    font-weight: bold;
    border: none;
}

.cal-day:hover {
    opacity: 0.85;
}

.cal-day.unavailable {
    background: #f1f5f9;
    color: #cbd5e0;
    font-weight: normal;
    cursor: not-allowed;
}

.cal-day.selected {
    background: var(--color-primary);
    box-shadow: 0 4px 12px rgba(255,107,157,0.4);
}

/* Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 10px;
}

.contact-row .contact-label { font-size: 0.8rem; color: #64748b; }
.contact-row .contact-value { font-weight: 600; color: #2d3748; }

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed rgba(0,0,0,0.1);
}
.pricing-row:last-of-type { border-bottom: none; margin-bottom: 0; }
.pricing-amount { color: #ff6b9d; font-weight: bold; }

.includes-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.includes-check { color: #6bcf7f; font-size: 1.2rem; }

/* Booking requests list */
.booking-requests-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

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

.booking-request-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ffd93d;
}

.booking-empty-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px dashed #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #94a3b8;
}

.status-badge {
    background: #fff3cd;
    color: #856404;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── About Page ── */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.philosophy-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.about-gradient-bg {
    background: linear-gradient(135deg, #E8472B, #FF8C42, #FFD93D);
    padding: 4rem 0;
}

.about-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
}

.about-avatar {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ffe6f0, #e6f0ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    position: relative;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.about-avatar-bubble-1 {
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    background: #ffd93d;
    border-radius: 50%;
    opacity: 0.5;
}

.about-avatar-bubble-2 {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 120px; height: 120px;
    background: #6bcf7f;
    border-radius: 50%;
    opacity: 0.4;
}

.about-badge-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-badge {
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
}

.fun-facts-bg {
    background: linear-gradient(135deg, #3B62BF, #2B4CAF, #E8472B);
    padding: 4rem 0;
}

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

.fun-fact-card {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.3);
}

/* ── Founder Split (About page) ── */
.founder-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.founder-left {
    background: #FAF5EC;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.founder-greeting { margin-bottom: 2rem; }

.founder-hello {
    display: block;
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.founder-script {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.5rem;
    font-style: italic;
    color: #1a1a2e;
    line-height: 1.2;
}

.founder-quote {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #2d3748;
    border: none;
    padding: 0;
    font-style: normal;
    margin-bottom: 2rem;
    max-width: 520px;
}

.founder-byline {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    font-family: 'Fredoka', sans-serif;
    letter-spacing: 0.02em;
}

.founder-right {
    background: #E8472B;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.founder-photo-wrap {
    width: 260px;
    height: 320px;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    background: rgba(255,255,255,0.25);
    border: 5px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.founder-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* ── Vision & Mission Grid (About page) ── */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.vm-brand {
    background: white;
    border: 3px solid #2d3748;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 240px;
}

.vm-brand-icon { font-size: 3rem; margin-bottom: 0.75rem; }

.vm-brand-name {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.vm-brand-tagline {
    color: #E8472B;
    font-style: italic;
    font-size: 0.9rem;
    font-weight: 600;
}

.vm-vision {
    background: #E8472B;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 240px;
}

.vm-vision h2 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    font-family: 'Fredoka', sans-serif;
}

.vm-vision p { color: rgba(255,255,255,0.95); line-height: 1.8; }

.vm-mission {
    background: #5D6B20; /* WCAG-AA contrast fix: was #8B9A35 (3.1:1), now 4.6:1 */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 240px;
}

.vm-mission h2 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    font-family: 'Fredoka', sans-serif;
}

.vm-mission p { color: rgba(255,255,255,0.9); line-height: 1.8; }

.vm-photo {
    background: #2d3748;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

/* ── Logo image in nav ── */
.logo-img {
    height: 54px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: 'Fredoka', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ── Legal Pages ── */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}
.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}
.legal-header h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.legal-date { color: #64748b; font-size: 0.9rem; }
.legal-intro {
    background: linear-gradient(135deg, #fff9e6, #ffe6f0);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: #475569;
}
.legal-section {
    margin-bottom: 2.5rem;
}
.legal-section h2 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f5f9;
}
.legal-section p, .legal-section li { color: #475569; line-height: 1.8; margin-bottom: 0.75rem; }
.legal-section ul { padding-left: 1.5rem; }
.legal-section li { margin-bottom: 0.5rem; }
.legal-contact {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}
.legal-contact h2 { color: #2d3748; font-size: 1.2rem; margin-bottom: 1rem; }
.legal-contact p  { color: #475569; margin-bottom: 1rem; }
.legal-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #475569;
}

/* ── Instagram CTA ── */
.instagram-cta {
    background: linear-gradient(135deg, #E8472B, #833ab4, #fcb045);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
}
.instagram-cta-inner { position: relative; z-index: 2; }
.instagram-follow-btn {
    display: inline-block;
    background: white;
    color: #833ab4;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ── Events Page ── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

.event-grid-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    /* button reset */
    border: none;
    padding: 0;
    font-family: inherit;
    text-align: left;
}

.event-grid-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.event-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    backdrop-filter: blur(5px);
    font-size: 1.8rem;
}

.event-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.event-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1rem 1rem;
    color: white;
}

.events-personal-note {
    background: linear-gradient(135deg, #E8472B, #3B62BF);
    padding: 4rem;
    border-radius: 30px;
    margin-top: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.events-personal-note::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.events-personal-note::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -30px;
    width: 150px; height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* ── Admin Page ── */
.admin-header {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    color: white;
}

.admin-login-card {
    max-width: 400px;
    margin: 4rem auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.admin-btn {
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
}

.admin-btn-accept { background: linear-gradient(135deg, #6bcf7f, #7ddb8f); color: white; }
.admin-btn-decline { background: linear-gradient(135deg, #ff6b9d, #ff8fab); color: white; }
.admin-btn-login   { width: 100%; background: linear-gradient(135deg, #2d3748, #4a5568); color: white; padding: 1rem; font-size: 1rem; }

/* ── Footer ── */
footer {
    background: #1a202c;
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* 3 columns matching the 3 footer sections */
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E8472B, #FFD93D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    text-decoration: none;
    font-size: 1.2rem;
}

.footer-socials a:hover { background: rgba(255,255,255,0.2); }

footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover { color: white; }

.footer-contact, .footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom, .footer-bottom a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-legal { display: flex; gap: 2rem; }

.footer-admin-link { color: rgba(255,255,255,0.3) !important; }

/* ── Nav links always visible on desktop (≥769px) ── */
@media (min-width: 769px) {
    .nav-links  { display: flex !important; position: static !important; flex-wrap: wrap; box-shadow: none !important; padding: 0 !important; }
    .nav-toggle { display: none  !important; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-links a { font-size: 0.9rem; }
    .nav-inner   { gap: 0.5rem; }

    .hero {
        grid-template-columns: 1fr;
        padding: 5rem 1.5rem 3rem;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero p  { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }

    .booking-layout { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; }

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

    .about-card { grid-template-columns: 1fr; }

    .founder-split { grid-template-columns: 1fr; }
    .founder-left  { padding: 3rem 2rem; }
    .founder-right { min-height: 300px; }

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

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

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

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

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

    .service-options-grid { grid-template-columns: 1fr; }

    .legal-page { padding: 1.5rem 0; }
    .legal-header h1 { font-size: 1.8rem; }

    .instagram-cta { padding: 2rem 1rem; }
}

@media (max-width: 768px) {
    /* Booking form goes single-column on phones and tablets */
    .booking-form .form-row,
    .form-grid,
    [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
    .events-grid { grid-template-columns: 1fr; }
    .fun-facts-grid { grid-template-columns: 1fr; }
    /* Tighten spacing on small phones */
    .container { padding-left: 1rem; padding-right: 1rem; }
    .hero { padding: 4rem 1rem 2.5rem; }
    .hero h1 { font-size: 1.9rem; }
    section { padding: 2rem 0; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}

/* ── CTA strip ── */
.cta-strip {
    background: var(--color-brand-gold, #C8A96E);
    text-align: center;
    padding: 18px 1rem;
}
.cta-strip-btn {
    display: inline-block;
    background: var(--color-brand-navy, #1C1B5E);
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Fredoka', Arial, sans-serif;
    font-size: 1.05rem;
    transition: background 0.2s;
}
.cta-strip-btn:hover { background: #2d2c7a; }

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
    border-color: var(--color-brand-gold, #C8A96E);
    box-shadow: 0 4px 20px rgba(200,169,110,0.15);
}
.testimonial-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}
.testimonial-text {
    color: #475569;
    line-height: 1.7;
    font-size: 0.97rem;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.testimonial-author strong {
    color: var(--color-brand-navy, #1C1B5E);
    font-size: 0.95rem;
}
.testimonial-author span {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ── Instagram button focus ── */
.instagram-follow-btn:focus-visible,
.play-button:focus-visible {
    outline: 3px solid var(--color-brand-gold, #C8A96E);
    outline-offset: 4px;
}

/* ── Calendar keyboard navigation focus ── */
.cal-day:focus-visible {
    outline: 3px solid var(--color-brand-gold, #C8A96E);
    outline-offset: 2px;
    z-index: 1;
    position: relative;
}

/* ── Footer headings and links ── */
.footer h3 {
    color: rgba(255,255,255,0.9);
    font-family: 'Fredoka', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.footer-links ul,
.footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-links ul a,
.footer-legal ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links ul a:hover,
.footer-legal ul a:hover { color: #fff; }

/* ── Form validation visual feedback ── */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not([value=""]) {
    border-color: #E8472B;
    box-shadow: 0 0 0 2px rgba(232,71,43,0.1);
}
.form-group input:valid:not(:placeholder-shown) {
    border-color: #6BCF7F;
}

/* ── Flash z-index bump ── */
.flash-container { z-index: 1100; }
