:root {
    /* Social & Bright Palette */
    --color-bg-main: #101820;
    /* Deep Teal/Blue-Grey Base */
    --color-bg-card: #18232e;
    /* Lighter teal for dark cards */
    --color-bg-alt: #F06572;
    /* Warm Coral for sections */

    --color-text-primary: #FFF9F0;
    /* Off-white/Cream */
    --color-text-dark: #101820;
    /* Dark for light backgrounds */
    --color-text-muted: #d1d5db;
    /* Soft grey */

    --color-coral: #FF477E;
    /* Vibrant Brand Pink/Coral */
    --color-gold: #F5C564;
    /* Soft Friendly Gold */
    --color-teal: #1F5C4A;
    /* Emerald/Teal Accent */
    --color-lime: #C9F658;
    /* Bright fresh accent for selective headings */
    --green-lime: #C9F658;
    --blue-electric: #7DB7FF;

    /* Variable Mapping */
    --bg-body: var(--color-bg-main);
    --bg-alt: var(--color-bg-alt);
    --bg-mint: var(--color-bg-main);

    --text-main: var(--color-text-primary);

    /* Accents */
    --pink-hot: var(--color-coral);
    --orange-pop: var(--color-gold);
    --yellow-sun: var(--color-gold);

    /* Styles */
    --border-thick: 2px solid var(--color-gold);
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-lift: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
    --shadow-hard: 0 18px 36px -10px rgba(0, 0, 0, 0.36);

    /* Layout */
    --max-width: 1300px;
    --header-height: 90px;
    --radius-pill: 50px;
    --radius-card: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Sora', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-lightbox-open {
    overflow: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    margin: 0 0 1rem;
    line-height: 1.1;
    color: white;
    /* Default to white for dark theme */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    /* Global contrast lift */
}

h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.85;
    color: white;
    text-shadow: 2px 2px 0px var(--color-coral);
    transform: rotate(0deg);
    margin: 0;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    transform: rotate(0deg);
    color: white;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Utility Classes */
.container {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.8rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.btn--primary {
    background-color: var(--color-coral);
    color: white;
    /* Sharper shadow */
    box-shadow: 0 4px 0px #d6336c;
}

.btn--primary:hover {
    background-color: #ff2d66;
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    box-shadow: none;
}

.btn--outline:hover {
    background-color: rgba(245, 197, 100, 0.1);
}

.btn:focus-visible {
    outline: 2px solid rgba(245, 197, 100, 0.7);
    outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
    .btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 0px #d6336c, 0 12px 22px rgba(214, 51, 108, 0.35);
    }

    .btn--outline:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(245, 197, 100, 0.28);
    }

    .site-nav .btn--primary:hover {
        box-shadow: 0 10px 18px rgba(214, 51, 108, 0.35);
    }

    .nav-toggle:hover {
        transform: translateY(-1px);
        border-color: rgba(245, 197, 100, 0.6);
        background: rgba(16, 24, 32, 0.85);
    }

    .home-feature-card:hover::after {
        transform: translateX(120%);
        transition: transform 0.85s ease;
    }

    .home-feature-card:hover {
        box-shadow: 0 14px 26px -12px rgba(0, 0, 0, 0.22);
        border-color: rgba(255, 255, 255, 0.14);
    }

    .home-feature-card:hover .home-feature-card__image {
        transform: scale(1.012);
        filter: saturate(1.02) contrast(1.01);
    }
}

.eyebrow {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: var(--pink-hot);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    transform: rotate(-2deg);
}

/* Header */
.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header .container {
    position: relative;
    isolation: isolate;
    background: rgba(16, 24, 32, 0.78);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(245, 197, 100, 0.25);
    border-radius: 999px;
    padding: 0.85rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.25s ease;
}

.site-header .container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(120deg, rgba(245, 197, 100, 0.5), rgba(255, 71, 126, 0.25), rgba(31, 92, 74, 0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

.site-header .container > * {
    position: relative;
    z-index: 1;
}

.site-header--scrolled .container {
    padding: 0.55rem 1.5rem;
    background: rgba(16, 24, 32, 0.92);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.5);
    border-color: rgba(245, 197, 100, 0.45);
}

.site-header--scrolled .container::before {
    opacity: 0.85;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand__mark {
    height: 46px;
    width: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.site-nav ul {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.site-nav a {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    color: var(--text-main);
    transition: color 0.2s ease;
    padding: 0.3rem 0;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
    color: var(--color-gold);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.site-nav .btn--primary::after {
    display: none;
}

.site-nav .btn--primary {
    padding: 0.6rem 1.6rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    box-shadow: 0 6px 0px rgba(214, 51, 108, 0.85);
}

.site-nav a:focus-visible,
.nav-toggle:focus-visible {
    outline: 2px solid rgba(245, 197, 100, 0.7);
    outline-offset: 4px;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(245, 197, 100, 0.35);
    background: rgba(16, 24, 32, 0.6);
    color: var(--text-main);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle__icon {
    position: relative;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__icon::before {
    top: -6px;
}

.nav-toggle__icon::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 36px) 0 6rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    --hero-image-x: 62%;
    --hero-image-y: 30%;
    --hero-cta-offset: clamp(10px, 2vh, 28px);
}

.hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-image-x) var(--hero-image-y);
    z-index: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.hero__inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero__surface {
    position: relative;
    z-index: 1;
    width: min(100%, 700px);
    padding: 3rem 2.5rem;
    text-align: center;
    margin-inline: auto;
}

.hero__surface::before {
    content: '';
    position: absolute;
    inset: -1.4rem -3.2rem;
    border-radius: 26px;
    background: linear-gradient(90deg, rgba(16, 24, 32, 0.72) 0%, rgba(16, 24, 32, 0.48) 45%, rgba(16, 24, 32, 0.16) 74%, rgba(16, 24, 32, 0) 100%);
    filter: blur(8px);
    z-index: 0;
    pointer-events: none;
}

.hero__surface > * {
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: rgba(16, 24, 32, 0.6);
    color: var(--color-gold);
    border: 1px solid rgba(245, 197, 100, 0.5);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
}

.hero__title {
    font-size: clamp(3.5rem, 8.8vw, 7.5rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin: 1.1rem 0 1.2rem;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 0 rgba(16, 24, 32, 0.58), 0 8px 20px rgba(0, 0, 0, 0.32), 0 0 12px rgba(255, 71, 126, 0.16);
}

.hero__title::after {
    content: '';
    position: absolute;
    left: -6%;
    top: 12%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 71, 126, 0.24) 0%, rgba(245, 197, 100, 0.16) 45%, transparent 72%);
    filter: blur(28px);
    z-index: -1;
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: var(--color-gold);
    text-shadow: 1px 1px 0 rgba(16, 24, 32, 0.46), 0 8px 16px rgba(245, 197, 100, 0.16);
}

.hero__lead {
    max-width: 42ch;
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 249, 240, 0.82);
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

/* Story Section */
.story__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    align-items: center;
}

.story__copy {
    display: grid;
    gap: 1.4rem;
}

.story__copy p {
    margin: 0;
}

.story__title {
    margin: 0;
}

.story__title-accent {
    color: var(--color-lime);
}

.story__media {
    position: relative;
}

.story__image-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
    background: var(--color-bg-card);
}

.story__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

/* Our Story Hero Fix - Scalable Text */
.story-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.hero__actions {
    margin-top: calc(1.8rem + var(--hero-cta-offset));
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero .btn--outline {
    border-width: 2px;
    border-color: rgba(245, 197, 100, 0.95);
    background: rgba(16, 24, 32, 0.55);
    color: var(--color-gold);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.hero .btn--outline:focus-visible {
    outline: 2px solid rgba(245, 197, 100, 0.9);
    outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
    .hero .btn--outline:hover {
        background: rgba(16, 24, 32, 0.75);
        border-color: rgba(245, 197, 100, 1);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    }
}

.headline-shadow-pop {
    color: white;
    text-shadow: 2px 2px 0 var(--color-coral) !important;
}

.headline-shadow-pop--sm {
    text-shadow: 1px 1px 0 var(--color-coral) !important;
}

.headline-accent {
    color: var(--color-gold);
    text-shadow: inherit;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .home-feature-card--one,
    .home-feature-card--two,
    .home-feature-card--three {
        animation: none;
    }

    .site-header .container,
    .site-nav a,
    .site-nav a::after,
    .site-nav .btn--primary,
    .nav-toggle,
    .nav-toggle__icon,
    .nav-toggle__icon::before,
    .nav-toggle__icon::after,
    .btn,
    .hero__surface {
        transition: none;
    }
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section--alt {
    background-color: var(--bg-alt);
    /* Coral */
    color: white;
    border: none;
}

.section--alt h1,
.section--alt h2,
.section--alt h3,
.section--alt p,
.section--alt li {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    /* Contrast Fix */
}

.section--alt .eyebrow {
    background: white;
    color: var(--color-coral);
}

.section--alt .headline-shadow-pop {
    text-shadow: 2px 2px 0 var(--color-coral) !important;
}

.section--alt .headline-shadow-pop--sm {
    text-shadow: 1px 1px 0 var(--color-coral) !important;
}

/* Cards */
.card-tilt {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    transform: translateY(0);
}

img.card-tilt {
    padding: 0;
    width: 100%;
    height: auto;
}

.card-tilt:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lift);
    border-color: var(--color-coral);
    z-index: 10;
}

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

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

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

.home-feature-card--one {
    animation: float-card-one 6.4s ease-in-out infinite;
}

.home-feature-card--two {
    animation: float-card-two 7s ease-in-out infinite;
}

.home-feature-card--three {
    animation: float-card-three 6.6s ease-in-out infinite;
}

.card-tilt img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--text-main);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
    background: var(--color-bg-card);
}

.zone__badge {
    background: var(--color-coral);
    color: white;
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    box-shadow: none;
}

/* Menu Slider */
.menu-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.menu-slider .card-tilt {
    height: auto;
    display: flex;
    flex-direction: column;
    align-self: start;
}

.home-feature-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.home-feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 46%, transparent 70%);
    transform: translateX(-120%);
    pointer-events: none;
}

.home-feature-card::before {
    content: '';
    position: absolute;
    right: -5.5rem;
    bottom: -5.5rem;
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(245, 197, 100, 0.06) 0%, rgba(245, 197, 100, 0.025) 42%, transparent 72%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
}

.home-feature-card__image {
    width: 100%;
    border: 2px solid var(--text-main);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.home-feature-card__image--cocktails {
    object-position: center 42%;
}

.home-feature-card__image--food {
    object-position: center 48%;
}

.home-feature-card__image--celebrations {
    object-position: center 44%;
}

.reviews-grid {
    align-items: start;
}

/* Gallery */
.gallery__rail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 1rem;
    justify-content: center;
}

.gallery__rail figure {
    min-width: 300px;
    max-width: 350px;
    flex: 1 1 300px;
    z-index: 2;
    transition: all 0.3s ease;

    transform: rotate(-2deg);
}

.gallery__rail figure:nth-child(2) {
    transform: rotate(2deg);

    margin-top: 1rem;
    z-index: 3;
}

.gallery__rail figure:nth-child(3) {
    transform: rotate(-3deg);

    margin-top: -1rem;
}

.gallery__rail figure:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}

.gallery__rail figure img {
    width: 100%;
    height: auto;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-card);
}

.gallery__rail figure:hover img {
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.site-footer {
    padding: 4rem 0 2.8rem;
    background: linear-gradient(180deg, rgba(16, 24, 32, 0.96) 0%, rgba(16, 24, 32, 1) 100%);
}

.site-footer .brand {
    margin: 0;
}

.site-footer .brand__mark {
    height: 54px;
    filter: drop-shadow(3px 3px 0px rgba(0, 0, 0, 0.3));
}

.site-footer h4 {
    font-family: 'Fraunces', serif;
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: inline-block;
}

.site-footer p {
    font-size: 0.98rem;
    line-height: 1.65;
    font-weight: 500;
    color: rgba(255, 249, 240, 0.84);
}

.site-footer a {
    color: inherit;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.site-footer a:hover {
    color: var(--color-gold);
    transform: translateY(-1px);
}

.site-footer a:focus-visible {
    outline: 2px solid rgba(245, 197, 100, 0.7);
    outline-offset: 4px;
    border-radius: 999px;
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 2rem 3rem;
    align-items: start;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: start;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    align-items: start;
}

.footer__column {
    display: grid;
    gap: 0.6rem;
    align-content: start;
}

.footer__column p {
    margin: 0;
}

.footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer__socials .btn {
    padding: 0.55rem 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
}

.footer__divider {
    height: 1px;
    background: rgba(245, 197, 100, 0.35);
    margin: 2.5rem 0 1.5rem;
}

.footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.footer__bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.6rem;
    background: transparent;
    color: var(--color-gold);
    border: 1px solid rgba(245, 197, 100, 0.7);
    border-radius: var(--radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    box-shadow: none;
    transition: all 0.2s ease;
    justify-self: end;
}

.back-to-top:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
}

/* Lightbox */
#lightbox {
    position: fixed;
    z-index: 5000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 4px;
    background: white;
}

#lightbox .lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(245, 197, 100, 0.6);
    background: rgba(16, 24, 32, 0.85);
    color: var(--color-gold);
    font-size: 1.6rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5001;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.booking-container {
    background: #ff785b;
    border: 2px solid white;
    border-radius: var(--radius-card);
    padding: 1rem;
    box-shadow: var(--shadow-lift);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto 4rem;
}

.booking-header {
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
    padding-bottom: 1rem;
    color: white;
}

.booking-header h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Booking Frame - Transparent background fix */
.booking-frame {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 2px;
}

/* Helper for map */
.map-container {
    margin-top: 2rem;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.page-hero-shell {
    padding-top: 150px;
    padding-bottom: 4rem;
    background: var(--bg-body);
}

.page-hero-shell__inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.page-hero-shell__inner p {
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 769px) and (max-height: 800px) {
    .site-header {
        top: 12px;
    }

    .site-header .container {
        padding: 0.7rem 1.8rem;
    }

    .site-header--scrolled .container {
        padding: 0.55rem 1.5rem;
    }

    .brand__mark {
        height: 40px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 12px);
        padding-bottom: 3.2rem;
        --hero-cta-offset: 8px;
    }

    .hero__surface {
        padding: 2.4rem 2.2rem;
    }

    .hero__eyebrow {
        font-size: 0.68rem;
        padding: 0.45rem 1rem;
    }

    .hero__title {
        font-size: clamp(3.1rem, 7.4vw, 6.4rem);
        line-height: 0.88;
        margin: 0.9rem 0 1rem;
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__actions {
        margin-top: calc(1.2rem + var(--hero-cta-offset));
        gap: 0.8rem;
    }

    .hero__actions .btn {
        padding: 0.85rem 2.4rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-height: 720px) {
    .site-header .container {
        padding: 0.6rem 1.5rem;
    }

    .site-header--scrolled .container {
        padding: 0.5rem 1.35rem;
    }

    .brand__mark {
        height: 36px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 4px);
        padding-bottom: 2.6rem;
        --hero-cta-offset: 6px;
    }

    .hero__surface {
        padding: 2.1rem 2rem;
    }

    .hero__title {
        font-size: clamp(2.9rem, 7vw, 6rem);
        line-height: 0.86;
        margin: 0.75rem 0 0.9rem;
    }

    .hero__lead {
        font-size: 0.98rem;
    }

    .hero__actions {
        margin-top: calc(1rem + var(--hero-cta-offset));
        gap: 0.7rem;
    }

    .hero__actions .btn {
        padding: 0.8rem 2.2rem;
        font-size: 0.88rem;
    }
}

/* Mobile Media Queries */
@media (max-width: 768px) {

    .site-header {
        top: 12px;
        padding: 0 12px;
    }

    .site-header .container {
        border-radius: 999px;
        border: 1px solid rgba(245, 197, 100, 0.3);
        background: rgba(16, 24, 32, 0.9);
        padding: 0.7rem 1.2rem;
        min-height: 56px;
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    }

    .brand__mark {
        height: 34px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    /* Mobile Nav Panel */
    .site-nav ul {
        position: fixed;
        top: 74px;
        right: 12px;
        left: 12px;
        background: rgba(16, 24, 32, 0.97);
        border: 1px solid rgba(245, 197, 100, 0.35);
        border-radius: 22px;
        flex-direction: column;
        padding: 1.4rem;
        gap: 0.8rem;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        max-height: 80vh;
        align-items: stretch;
        overflow-y: auto;
        z-index: 999;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(16px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .site-nav[data-open="true"] ul {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-nav ul li {
        width: 100%;
    }

    .site-nav ul a {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.4rem 0;
    }

    .site-nav ul .btn {
        width: 100%;
        justify-content: center;
    }

    body.nav-open {
        overflow: hidden;
    }

    .hero {
        padding-top: 118px;
        padding-bottom: calc(4rem + 20px);
        min-height: calc(var(--vh, 1vh) * 100);
        align-items: flex-start;
        --hero-image-x: 55%;
        --hero-image-y: 22%;
        --hero-cta-offset: clamp(6px, 1.5vh, 16px);
    }

    .hero__surface {
        padding: 2.2rem 1.6rem;
        text-align: center;
        max-width: min(34rem, 100%);
        margin-inline: auto;
        transform: translateY(clamp(16px, 4vw, 20px));
    }

    .hero__surface::before {
        inset: -1.1rem -1.4rem;
        background: linear-gradient(90deg, rgba(16, 24, 32, 0.72) 0%, rgba(16, 24, 32, 0.5) 58%, rgba(16, 24, 32, 0.16) 82%, rgba(16, 24, 32, 0) 100%);
    }

    .hero__eyebrow {
        transform: rotate(0deg);
    }

    .hero__title {
        font-size: clamp(2.8rem, 10vw, 4.8rem);
    }

    .hero__title::after {
        left: 6%;
        width: 84%;
    }

    .hero__lead {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 19ch;
    }

    .hero__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-top: calc(7.5rem + var(--hero-cta-offset));
    }

    .hero__actions .btn {
        width: 100%;
        min-height: 48px;
    }

    .menu-slider .home-feature-card {
        transform-origin: center top;
        animation: none !important;
    }

    .menu-slider .home-feature-card:nth-child(odd) {
        transform: rotate(-0.9deg) !important;
    }

    .menu-slider .home-feature-card:nth-child(even) {
        transform: rotate(0.85deg) !important;
        margin-top: 0.6rem !important;
    }

    /* Overlap Section */
    .section--alt {
        margin-top: 0;
        position: relative;
        z-index: 1;
        padding-top: 4rem;
    }

    .section--alt.overlap-hero {
        margin-top: 0;
        z-index: 10;
        box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.3);
    }

    /* Footer Mobile */
    .story__grid {
        gap: 2.5rem;
    }

    .story__image-frame {
        aspect-ratio: 4 / 3;
        height: auto;
        overflow: hidden;
        padding: 0;
        background: var(--color-bg-card);
        border: 2px solid var(--text-main);
        box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    }

    .story__image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        justify-items: center;
        text-align: center;
    }

    .footer__brand {
        justify-self: center;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        justify-items: center;
    }

    .footer__socials {
        justify-content: center;
    }

    .footer__divider {
        margin: 2rem 0 1.2rem;
    }

    .footer__bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 0.9rem;
    }

    .back-to-top {
        width: 100%;
        justify-self: center;
    }

    /* Mobile Hero Spacing Fixes */
    .mobile-hero-fix {
        margin-top: 0 !important;
        padding-top: 170px !important;
        scroll-margin-top: 100px;
    }

    .mobile-unstack-fix {
        margin-top: 0 !important;
        scroll-margin-top: 100px;
    }
}

