/* ── Tokens ─────────────────────────────────────────── */
:root {
    --red: #e8334a;
    --yellow: #f9c846;
    --teal: #2bbfa4;
    --navy: #1a2240;
    --cream: #fdf8f0;
    --white: #ffffff;
    --shadow: 4px 4px 0 var(--navy);
    --radius: 14px;
    --font-h: "Boogaloo", cursive;
    --font-b: "Nunito", sans-serif;
}

/* ── Reset & Base ───────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-b);
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Polka-dot background utility ───────────────────── */
.polka {
    background-image: radial-gradient(var(--yellow) 2px, transparent 2px);
    background-size: 28px 28px;
}

/* ── Nav ────────────────────────────────────────────── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    border-bottom: 3px solid var(--yellow);
}

nav .nav-logo + .nav-links {
    margin-left: 1.5rem;
    margin-right: auto;
}

.nav-logo {
    font-family: var(--font-h);
    font-size: 1.6rem;
    color: var(--yellow);
    letter-spacing: 0.02em;
    text-decoration: none;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-call {
    border: 2px solid var(--yellow);
    border-radius: 8px;
    background: var(--yellow);
    color: var(--navy);
    font-family: var(--font-h);
    font-size: 1rem;
    padding: 0.45rem 0.8rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 2px 2px 0 var(--white);
}

.nav-call:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 var(--white);
}

.home-side-nav {
    position: fixed;
    top: 50%;
    right: 0.75rem;
    z-index: 90;
    display: grid;
    gap: 0.55rem;
    transform: translateY(-50%);
}

.home-side-nav a {
    display: block;
    min-width: 124px;
    border: 2px solid var(--navy);
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
    font-family: var(--font-h);
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    padding: 0.65rem 0.75rem;
    box-shadow: 3px 3px 0 var(--navy);
}

.home-side-nav a:hover,
.home-side-nav a:focus-visible {
    background: var(--yellow);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--navy);
    outline: none;
}

/* ── Sections shared ────────────────────────────────── */
section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-h);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

h2 {
    font-family: var(--font-h);
    font-size: 3rem;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.divider {
    width: 60px;
    height: 5px;
    border-radius: 99px;
    background: var(--red);
    margin-bottom: 2rem;
}

/* ── Hero ───────────────────────────────────────────── */
#hero {
    max-width: 100%;
    padding: 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-polka {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(249, 200, 70, 0.18) 2px,
        transparent 2px
    );
    background-size: 30px 30px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text .eyebrow {
    font-family: var(--font-h);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-family: var(--font-h);
    font-size: 4.8rem;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.hero-text h1 span {
    color: var(--yellow);
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 1.35rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.btn {
    display: inline-block;
    font-family: var(--font-h);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    border: 3px solid var(--navy);
    box-shadow: var(--shadow);
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--navy);
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--navy);
}

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
}

.hero-call-note {
    margin-top: 1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 800;
}

/* ── Hero Photo ─────────────────────────────────────── */
.hero-photo {
    width: 100%;
    aspect-ratio: 4/5;
    max-width: 380px;
    justify-self: center;
    border-radius: var(--radius);
    border: 4px solid var(--yellow);
    box-shadow: 8px 8px 0 var(--yellow);
    background: #2b3358;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 5rem;
    gap: 0.5rem;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-photo span {
    font-family: var(--font-h);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

/* ── Services ───────────────────────────────────────── */
.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.card {
    border: 3px solid var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--white);
    padding: 1.35rem;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}

.card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--navy);
}

.card-icon {
    width: 3.1rem;
    height: 3.1rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    border: 3px solid var(--navy);
    border-radius: 999px;
    background: var(--yellow);
    font-size: 1.55rem;
}

.card h3 {
    font-family: var(--font-h);
    font-size: 1.65rem;
    line-height: 1.1;
    margin-bottom: 0.7rem;
}

.card p {
    color: rgba(26, 34, 64, 0.76);
    line-height: 1.65;
}

/* ── Scheduling / Availability ─────────────────────── */
#scheduling {
    padding: 5rem 2rem;
    border-top: 2px dashed rgba(26, 34, 64, 0.12);
    border-bottom: 2px dashed rgba(26, 34, 64, 0.12);
    background: rgba(255, 255, 255, 0.45);
}

#scheduling .inner {
    max-width: 1100px;
    margin: 0 auto;
}

#scheduling .inner > p:not(.section-label) {
    max-width: 780px;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.calendar-wrap {
    border: 3px solid var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--white);
    overflow: hidden;
}

.calendar-wrap iframe {
    width: 100%;
    min-height: 560px;
    border: 0;
    display: block;
    background: var(--white);
}

.calendar-note {
    margin-top: 1rem;
    max-width: 720px;
    color: rgba(26, 34, 64, 0.72);
    font-size: 0.95rem;
    line-height: 1.55;
}

.availability-footer {
    margin-top: 1.25rem;
}

.availability-footer p {
    max-width: 680px;
    color: rgba(26, 34, 64, 0.72);
    line-height: 1.6;
}

.availability-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.9rem;
    margin-top: 1rem;
}

.availability-actions .btn {
    margin: 0;
}

/* ── Booking / Contact ─────────────────────────────── */
.booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
    align-items: start;
}

.booking-info {
    font-size: 1rem;
    line-height: 1.7;
}

.booking-info > p {
    font-size: 1.08rem;
    margin-bottom: 1.4rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.contact-detail .icon {
    width: 1.35rem;
    flex: 0 0 1.35rem;
    line-height: 1.5;
}

.contact-detail .icon svg {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
}

.contact-detail .icon img {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
}

.contact-detail .facebook-icon {
    color: #1877f2;
    padding-top: 0.12rem;
}

.contact-detail .yelp-icon {
    padding-top: 0.12rem;
}

.contact-detail a {
    color: var(--navy);
    font-weight: 700;
    text-decoration-color: var(--teal);
    text-underline-offset: 0.18em;
}

.party-checklist-title {
    margin-top: 1.8rem;
    font-family: var(--font-h);
    font-size: 1.35rem;
    line-height: 1.1;
}

.booking-calendar-note {
    margin-top: 0.4rem;
    color: rgba(26, 34, 64, 0.68);
    line-height: 1.55;
}

.party-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.75rem;
}

.party-checklist span {
    border: 2px solid rgba(26, 34, 64, 0.18);
    border-radius: 8px;
    background: rgba(249, 200, 70, 0.22);
    padding: 0.65rem 0.75rem;
    font-weight: 700;
}

.booking-form {
    display: grid;
    gap: 1.1rem;
    padding: 1.5rem;
    border: 3px solid var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    min-height: 46px;
    border: 2px solid rgba(26, 34, 64, 0.35);
    border-radius: 8px;
    background: #fffdf9;
    color: var(--navy);
    font: inherit;
    padding: 0.7rem 0.8rem;
}

.booking-form .visually-hidden {
    position: absolute;
    width: 1px;
    min-height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: 3px solid rgba(43, 191, 164, 0.28);
    border-color: var(--teal);
}

.date-picker {
    position: relative;
}

.date-picker-trigger {
    width: 100%;
    min-height: 46px;
    border: 2px solid rgba(26, 34, 64, 0.35);
    border-radius: 8px;
    background: #fffdf9;
    color: var(--navy);
    font: inherit;
    padding: 0.7rem 0.8rem;
    text-align: left;
    cursor: pointer;
}

.date-picker-trigger:focus {
    outline: 3px solid rgba(43, 191, 164, 0.28);
    border-color: var(--teal);
}

.date-picker-panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    z-index: 20;
    width: min(100vw - 2rem, 340px);
    padding: 0.85rem;
    border: 3px solid var(--navy);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.date-picker-header,
.date-picker-weekdays,
.date-picker-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}

.date-picker-header {
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    margin-bottom: 0.7rem;
}

.date-picker-month {
    font-weight: 800;
    text-align: center;
}

.date-picker-nav,
.date-picker-day {
    border: 2px solid rgba(26, 34, 64, 0.22);
    border-radius: 8px;
    background: #fffdf9;
    color: var(--navy);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.date-picker-nav {
    min-height: 36px;
}

.date-picker-weekdays {
    margin-bottom: 0.35rem;
    color: rgba(26, 34, 64, 0.58);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.date-picker-day {
    aspect-ratio: 1;
    min-width: 0;
    padding: 0;
}

.date-picker-day:hover:not(:disabled),
.date-picker-nav:hover {
    border-color: var(--teal);
    background: rgba(43, 191, 164, 0.12);
}

.date-picker-day.is-selected {
    border-color: var(--navy);
    background: var(--yellow);
    box-shadow: 2px 2px 0 var(--navy);
}

.date-picker-day.is-booked {
    background: #e7e2d8;
    color: rgba(26, 34, 64, 0.38);
    cursor: not-allowed;
    text-decoration: line-through;
}

.date-picker-day.is-pending-availability {
    border-style: dashed;
}

.date-picker-day:disabled {
    background: #f2eee6;
    color: rgba(26, 34, 64, 0.42);
    cursor: not-allowed;
}

.date-picker-day.is-outside {
    visibility: hidden;
}

.date-picker-status,
.field-message {
    margin: 0.45rem 0 0;
    color: rgba(26, 34, 64, 0.68);
    font-size: 0.86rem;
}

.field-message.is-error {
    color: #9e2b25;
    font-weight: 800;
}

.booking-form textarea {
    min-height: 130px;
    resize: vertical;
}

.form-submit {
    justify-self: start;
    font-family: var(--font-h);
    font-size: 1.1rem;
    padding: 0.8rem 1.3rem;
    border: 3px solid var(--navy);
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--yellow);
    color: var(--navy);
    cursor: pointer;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}

.form-submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--navy);
}

.form-note {
    color: rgba(26, 34, 64, 0.62);
    font-size: 0.92rem;
}

/* ── Testimonials ───────────────────────────────────── */
#testimonials {
    padding: 5rem 2rem;
    background: var(--navy);
    color: var(--white);
}

#testimonials .inner {
    max-width: 1100px;
    margin: 0 auto;
}

#testimonials h2 {
    color: var(--white);
}

#testimonials .divider {
    background: var(--yellow);
}

.review-summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 3px solid var(--yellow);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.review-score {
    font-family: var(--font-h);
    font-size: 3.4rem;
    line-height: 0.9;
    color: var(--yellow);
}

.review-source {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.review-summary > p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

.review-link {
    justify-self: end;
}

.review-carousel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
}

.review-pan {
    width: 3rem;
    height: 3rem;
    border: 3px solid var(--yellow);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    font-family: var(--font-h);
    font-size: 2rem;
    line-height: 1;
    display: grid;
    place-items: center;
    box-shadow: 3px 3px 0 var(--yellow);
}

.review-pan:hover,
.review-pan:focus-visible {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--yellow);
    outline: none;
}

.review-pan:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: 3px 3px 0 var(--yellow);
}

.review-strip {
    display: grid;
    grid-auto-columns: minmax(260px, 360px);
    grid-auto-flow: column;
    gap: 1rem;
    overflow-x: hidden;
    overscroll-behavior-inline: contain;
    padding: 0.25rem 0.15rem 1rem;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 2rem,
        #000 calc(100% - 2rem),
        transparent
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 2rem,
        #000 calc(100% - 2rem),
        transparent
    );
}

.review-strip::-webkit-scrollbar {
    display: none;
}

.review-card {
    height: 320px;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 0.65rem;
    scroll-snap-align: start;
    border: 3px solid var(--yellow);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.15rem;
    box-shadow: 4px 4px 0 rgba(249, 200, 70, 0.9);
}

.stars {
    color: var(--yellow);
    letter-spacing: 0.08em;
}

.review-card h3 {
    font-family: var(--font-h);
    font-size: 1.45rem;
    line-height: 1.05;
}

.review-card p {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 0.35rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.62;
    scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.14);
}

.review-card cite {
    display: block;
    color: var(--teal);
    font-style: normal;
    font-weight: 800;
}

.customer-carousel {
    position: relative;
    margin-top: 2rem;
    overflow: hidden;
    padding: 0.35rem 0 0.6rem;
}

.customer-carousel::before,
.customer-carousel::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 4rem;
    content: "";
    pointer-events: none;
}

.customer-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy), rgba(26, 34, 64, 0));
}

.customer-carousel::after {
    right: 0;
    background: linear-gradient(270deg, var(--navy), rgba(26, 34, 64, 0));
}

.customer-track {
    display: flex;
    width: max-content;
    animation: customer-scroll 46s linear infinite;
}

.customer-carousel:hover .customer-track,
.customer-carousel:focus-within .customer-track {
    animation-play-state: paused;
}

.customer-carousel.is-resuming .customer-track {
    animation-play-state: running;
}

.customer-set {
    display: flex;
    flex: 0 0 auto;
    gap: 1rem;
    padding-right: 1rem;
}

.customer-thumb {
    width: clamp(150px, 18vw, 210px);
    aspect-ratio: 4 / 5;
    border: 3px solid var(--yellow);
    border-radius: var(--radius);
    box-shadow: 3px 3px 0 rgba(249, 200, 70, 0.9);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}

.customer-thumb:hover,
.customer-thumb:focus-visible {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 rgba(249, 200, 70, 0.9);
}

.customer-thumb:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 4px;
}

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

@keyframes customer-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Gallery ────────────────────────────────────────── */
#gallery {
    border-top: 2px dashed rgba(26, 34, 64, 0.12);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: #dde0ec;
    border: 3px solid var(--navy);
    border-radius: var(--radius);
    box-shadow: 3px 3px 0 var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #8890b0;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
    overflow: hidden;
}

.gallery-item:hover {
    transform: rotate(-1deg) scale(1.03);
    box-shadow: 5px 5px 0 var(--navy);
}

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

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: minmax(44px, 1fr) auto minmax(44px, 1fr);
    place-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(10, 14, 30, 0.88);
}

.lightbox-frame {
    width: min(82vw, 760px);
    height: min(72vh, 620px);
    margin: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0.8rem;
}

.lightbox-frame img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    border: 4px solid var(--yellow);
    border-radius: var(--radius);
    box-shadow: 8px 8px 0 var(--yellow);
    background: var(--navy);
}

.lightbox-frame figcaption {
    color: var(--white);
    text-align: center;
    font-weight: 700;
}

.lightbox-close,
.lightbox-nav {
    width: 3rem;
    height: 3rem;
    border: 3px solid var(--yellow);
    border-radius: 999px;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    font-family: var(--font-h);
    font-size: 2rem;
    line-height: 1;
    display: grid;
    place-items: center;
    box-shadow: 3px 3px 0 var(--yellow);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--yellow);
    outline: none;
}

body.lightbox-open {
    overflow: hidden;
}

/* ── Footer ─────────────────────────────────────────── */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2.5rem 2rem;
    font-size: 0.9rem;
}

footer .footer-logo {
    font-family: var(--font-h);
    font-size: 1.8rem;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

footer a {
    color: var(--teal);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ── About page ─────────────────────────────────────── */
.about-page {
    background: var(--cream);
}

.about-hero {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    min-height: calc(100vh - 74px);
    padding: clamp(2rem, 5vw, 5rem);
    background: var(--navy);
    color: var(--white);
}

.about-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero h1 {
    max-width: 720px;
    font-family: var(--font-h);
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.95;
    color: var(--yellow);
    margin-bottom: 1.25rem;
}

.about-hero p:not(.section-label) {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.15rem;
    line-height: 1.7;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

.about-outline {
    color: var(--white);
    border-color: var(--white);
}

.about-hero-media {
    display: grid;
    gap: 0.85rem;
    align-content: center;
}

.about-hero-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 4px solid var(--yellow);
    border-radius: 8px;
    background: #0b1025;
    box-shadow: 8px 8px 0 var(--yellow);
    object-fit: cover;
}

.about-video-caption {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    text-align: center;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 2rem;
    align-items: start;
}

.about-story p {
    color: rgba(26, 34, 64, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-highlight {
    border: 3px solid var(--navy);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.about-highlight h3 {
    font-family: var(--font-h);
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.about-highlight ul {
    display: grid;
    gap: 0.7rem;
    padding-left: 1.2rem;
    color: rgba(26, 34, 64, 0.78);
    line-height: 1.5;
}

.about-band {
    max-width: none;
    background: var(--yellow);
    color: var(--navy);
    text-align: center;
}

.about-band p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(26, 34, 64, 0.82);
    font-size: 1.12rem;
    line-height: 1.7;
}

.about-gallery {
    border-top: 2px dashed rgba(26, 34, 64, 0.12);
}

.about-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-photo-grid img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 3px solid var(--navy);
    border-radius: 8px;
    box-shadow: 3px 3px 0 var(--navy);
}

.about-next {
    max-width: none;
    background: var(--teal);
}

.about-link-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 1100px;
}

.about-link-grid a {
    display: block;
    min-height: 88px;
    border: 3px solid var(--navy);
    border-radius: 8px;
    background: var(--white);
    color: var(--navy);
    font-family: var(--font-h);
    font-size: 1.45rem;
    line-height: 1.05;
    text-decoration: none;
    padding: 1rem;
    box-shadow: 3px 3px 0 var(--navy);
}

.about-link-grid a:hover,
.about-link-grid a:focus-visible {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--navy);
    outline: none;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 920px) {
    nav {
        flex-wrap: wrap;
        gap: 0.65rem 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .nav-call {
        margin-left: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-text {
        max-width: 620px;
    }

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

    .review-summary {
        grid-template-columns: 1fr;
    }

    .review-link {
        justify-self: start;
    }

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

    .home-side-nav {
        right: 0.5rem;
    }

    .home-side-nav a {
        min-width: 108px;
        font-size: 0.95rem;
        padding: 0.6rem 0.55rem;
    }

    .about-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-hero-media {
        order: -1;
    }

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

    .about-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.65rem;
        padding: 0.75rem 1rem;
    }

    .nav-links {
        order: initial;
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        display: block;
        white-space: nowrap;
        padding: 0.35rem 0.55rem;
    }

    .nav-call {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .home-side-nav {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0;
        transform: none;
        border-top: 3px solid var(--navy);
        background: var(--white);
    }

    .home-side-nav a {
        min-width: 0;
        border-width: 0 1px 0 0;
        border-radius: 0;
        box-shadow: none;
        font-family: var(--font-b);
        font-size: 0.76rem;
        font-weight: 800;
        line-height: 1.1;
        padding: 0.7rem 0.25rem;
    }

    .home-side-nav a:hover,
    .home-side-nav a:focus-visible {
        transform: none;
        box-shadow: none;
    }

    section,
    #scheduling,
    #testimonials,
    .about-story,
    .about-gallery,
    .about-next,
    .about-band {
        padding: 3.5rem 1rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    #hero {
        min-height: auto;
    }

    .hero-inner {
        padding: 3rem 1rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .btn-outline {
        margin-top: 0;
    }

    .hero-photo {
        max-width: 260px;
    }

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

    .review-carousel {
        grid-template-columns: 2.5rem minmax(0, 1fr) 2.5rem;
        gap: 0.45rem;
    }

    .review-pan {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.7rem;
    }

    .review-strip {
        grid-auto-columns: minmax(220px, 100%);
        margin-right: 0;
        padding-right: 0;
    }

    .customer-carousel {
        margin-right: -1rem;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .customer-carousel::before,
    .customer-carousel::after,
    .customer-duplicates {
        display: none;
    }

    .customer-track {
        animation: none;
    }

    .customer-thumb {
        width: 150px;
    }

    .gallery-lightbox {
        grid-template-columns: 3rem minmax(0, 1fr) 3rem;
        gap: 0.5rem;
        padding: 4rem 1rem 1.5rem;
    }

    .lightbox-frame {
        width: 100%;
        height: min(64vh, 520px);
    }

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

    .party-checklist {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 1rem;
    }

    .calendar-wrap iframe {
        min-height: 430px;
    }

    .home-page footer {
        padding-bottom: 5rem;
    }

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

    .about-hero h1 {
        font-size: 3.2rem;
    }

    .about-actions {
        justify-content: center;
    }

    .about-photo-grid,
    .about-link-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .hero-text h1 {
        font-size: 2.7rem;
    }

    .hero-text .eyebrow,
    .section-label {
        font-size: 0.78rem;
    }

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

@media (prefers-reduced-motion: reduce) {
    .customer-carousel {
        overflow-x: auto;
    }

    .customer-track {
        animation: none;
    }

    .customer-duplicates {
        display: none;
    }
}
