/* =========================================================
   Ruby Sushi — Premium Sushi
   Mobile-First CSS Architecture
   Reset · Variables · Layout · Typography · Navigation
   Hero · Cards · Story · Footer · Responsive
   =========================================================
   BREAKPOINTS (min-width, mobile-first):
   sm  ≥ 480px
   md  ≥ 640px
   lg  ≥ 768px
   xl  ≥ 992px
   2xl ≥ 1200px
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
    /* Colour palette */
    --primary:     #18130F;   /* near-black walnut */
    --secondary:   #6A4B32;   /* warm mahogany */
    --accent:      #B08A57;   /* brushed gold */
    --accent-lt:   #C9A87A;   /* light gold hover */
    --background:  #F5F1EB;   /* warm cream */
    --paper:       #FFFFFF;
    --dark-card:   #211A14;   /* restaurant section bg */
    --text:        #1A1A1A;
    --muted:       #6B6560;
    --border:      #E6DED2;
    --border-dk:   rgba(176, 138, 87, 0.18);

    /* Typography — Montserrat covers latin-ext (ő, ű, ö, ü) for Hungarian */
    --font-heading: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-body:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

    /* Spacing scale (4px base) */
    --sp-1:  0.25rem;  /*  4px */
    --sp-2:  0.5rem;   /*  8px */
    --sp-3:  0.75rem;  /* 12px */
    --sp-4:  1rem;     /* 16px */
    --sp-5:  1.25rem;  /* 20px */
    --sp-6:  1.5rem;   /* 24px */
    --sp-8:  2rem;     /* 32px */
    --sp-10: 2.5rem;   /* 40px */
    --sp-12: 3rem;     /* 48px */

    /* Layout */
    --header-height: 64px;   /* mobile header height */
    --container:  1200px;
    --radius:     2px;
    --radius-md:  6px;

    /* Shadows — layered for depth */
    --shadow-xs:    0 1px 3px rgba(24, 19, 15, 0.06);
    --shadow-soft:  0 2px 8px rgba(24, 19, 15, 0.08), 0 1px 2px rgba(24, 19, 15, 0.04);
    --shadow-md:    0 4px 20px rgba(24, 19, 15, 0.10), 0 1px 4px rgba(24, 19, 15, 0.06);
    --shadow-lg:    0 12px 40px rgba(24, 19, 15, 0.14), 0 2px 8px rgba(24, 19, 15, 0.06);
    --shadow-header: 0 1px 0 rgba(255, 255, 255, 0.04), 0 6px 24px rgba(0, 0, 0, 0.22);

    /* Motion */
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* Tablet+: taller header */
@media (min-width: 768px) {
    :root { --header-height: 76px; }
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    font-family: var(--font-body);
    /* Fluid body font: 15px on phones → 16px on large screens */
    font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    position: relative;
    isolation: isolate;
}

body.nav-open {
    overflow: hidden;
}

body.picker-open {
    overflow: hidden;
}

body.has-hero::before {
    content: "";
    position: fixed;
    inset: -20px;
    z-index: -2;
    background-image: url("https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/viewruby/viewquan.jpg");
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.05);
    filter: blur(8px) brightness(0.55) saturate(0.85);
}

body.has-hero::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(12, 9, 7, 0.28) 0%, rgba(12, 9, 7, 0.54) 100%);
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.15;
    color: var(--primary);
    letter-spacing: 0.01em;
}

p {
    margin: 0 0 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ---------- Layout ---------- */
.site-container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    /* Mobile: 16px sides — scales up at each breakpoint */
    padding-inline: var(--sp-4);
}
@media (min-width: 480px) { .site-container { padding-inline: var(--sp-5); } }
@media (min-width: 768px) { .site-container { padding-inline: var(--sp-8); } }
@media (min-width: 1200px) { .site-container { padding-inline: var(--sp-6); } }

main {
    display: block;
}

.section {
    /* Mobile: 52px → Desktop: 96px — smooth fluid scaling */
    padding-block: clamp(3.25rem, 8vw, 6rem);
}

.section > .site-container {
    position: relative;
}

.section-head {
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: var(--sp-8);
    text-align: center;
}
@media (min-width: 768px) {
    .section-head { margin-bottom: clamp(2.5rem, 5vw, 3rem); }
}

.section-head--compact {
    margin-bottom: 28px;
}

.section-title {
    /* Fluid: 1.75rem at 360px → 2.5rem at 1200px+ */
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: var(--sp-3);
    line-height: 1.12;
}

.section-subtitle {
    color: var(--muted);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    margin: 0;
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--sp-3);
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.eyebrow--light {
    color: var(--accent-lt);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    /* Touch target: minimum 44×44px */
    min-height: 44px;
    min-width: 44px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition:
        background-color 0.3s var(--ease),
        color 0.3s var(--ease),
        border-color 0.3s var(--ease),
        box-shadow 0.3s var(--ease),
        transform 0.3s var(--ease);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 2px 12px rgba(176, 138, 87, 0.3);
}
.btn-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(106, 75, 50, 0.35);
}

.btn-ghost {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.btn-dark {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-xs);
}
.btn-dark:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    box-shadow: var(--shadow-soft);
}

.btn-line {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--border);
}

.btn-line:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-block {
    width: 100%;
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: env(safe-area-inset-top, 0);
    background-color: transparent;
    transition:
        background-color 0.4s var(--ease),
        box-shadow 0.4s var(--ease),
        border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.brand {
    display: flex;
    align-items: center;
    line-height: 1;
    color: #fff;
}

.brand-logo {
    display: block;
    height: 44px;
    width: auto;
}

@media (min-width: 768px) {
    .brand-logo {
        height: 52px;
    }
}

/* Solid state — scrolled on hero or always on non-hero pages */
.site-header--solid,
.site-header.is-scrolled {
    background-color: var(--primary);
    box-shadow: var(--shadow-header);
    border-bottom-color: rgba(176, 138, 87, 0.16);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(var(--sp-4), 2vw, var(--sp-6));
}

.nav-link {
    position: relative;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    /* Min 44px touch target vertically */
    padding: 0.75rem 0;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.nav-link--reserve {
    border: 1px solid rgba(176, 138, 87, 0.45);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius);
}
.nav-link--reserve::after {
    display: none;
}
.nav-link--reserve:hover {
    border-color: var(--accent);
    background-color: rgba(176, 138, 87, 0.08);
    color: #fff;
}

/* Nav dropdown — Étlap restaurant picker */
.nav-item--dropdown {
    position: relative;
}

.nav-link--dropdown {
    gap: 0.4rem;
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}

.nav-link--dropdown::after {
    bottom: 8px;
}

.nav-dropdown-caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.7;
    transition: transform 0.25s var(--ease);
}

.nav-item--dropdown.is-open .nav-dropdown-caret,
.nav-item--dropdown:hover .nav-dropdown-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    z-index: 1004;
    min-width: 280px;
    padding: var(--sp-2);
    margin: 0;
    list-style: none;
    background-color: var(--primary);
    border: 1px solid rgba(176, 138, 87, 0.28);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition:
        opacity 0.22s var(--ease),
        transform 0.22s var(--ease),
        visibility 0.22s var(--ease);
}

.nav-item--dropdown.is-open .nav-dropdown,
.nav-item--dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown--end {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(6px);
}

.nav-item--dropdown.is-open .nav-dropdown--end,
.nav-item--dropdown:hover .nav-dropdown--end {
    transform: translateX(0) translateY(0);
}

.nav-item--reserve .nav-link--reserve {
    gap: 0.4rem;
}

.nav-dropdown-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.88);
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-dropdown-link:hover {
    background-color: rgba(176, 138, 87, 0.14);
    color: #fff;
}

.nav-dropdown-name {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.nav-dropdown-meta {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: none;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Min 44px touch target */
    min-width: 44px;
    min-height: 44px;
    line-height: 0;
    border-radius: 3px;
    padding: 2px;
    border: 1px solid transparent;
    opacity: 0.55;
    transition:
        opacity 0.25s var(--ease),
        border-color 0.25s var(--ease),
        transform 0.25s var(--ease);
}
.lang-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}
.lang-link.is-active {
    opacity: 1;
    border-color: var(--accent);
}

.lang-flag {
    display: block;
    width: 28px;
    height: 19px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}

/* Hamburger button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    /* 44×44 touch target */
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    z-index: 1003;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transition:
        transform 0.3s var(--ease),
        opacity 0.3s var(--ease);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    background-color: rgba(12, 10, 8, 0.58);
    backdrop-filter: blur(2px);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image: url("https://pub-e3da109533764cb29410b35fc1bd8b42.r2.dev/ruby/viewruby/viewquan.jpg");
    background-size: cover;
    background-position: center 30%;
    /* Subtle scale — does NOT affect layout or cause overflow */
    transform: scale(1.04);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.82) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin-inline: auto;
    padding-top: calc(var(--header-height) + var(--sp-8));
    padding-bottom: var(--sp-16, 4rem);
    color: #fff;
    text-align: center;
}

.hero-headline {
    /* Fluid: 2rem at 360px → 4.25rem at 1440px */
    font-size: clamp(2rem, 5vw + 1rem, 4.25rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--sp-4);
    line-height: 1.08;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-subheadline {
    font-size: clamp(0.95rem, 2vw + 0.2rem, 1.15rem);
    color: rgba(255, 255, 255, 0.84);
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: var(--sp-8);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
}

/* Stack buttons on very small screens */
@media (max-width: 479px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: min(100%, 300px);
        margin-inline: auto;
    }
    .hero-actions .btn { width: 100%; }
    .btn {
        white-space: normal;
        line-height: 1.3;
    }
}
@media (min-width: 480px) {
    .hero-actions .btn { min-width: 160px; }
}

.hero-scroll {
    position: absolute;
    bottom: var(--sp-6);
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 44px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.72) 100%
    );
    z-index: 2;
    animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 44px; }
    50% { opacity: 0.4; height: 30px; }
}

/* ---------- Signature / Ruby Sushi World ---------- */
.section--signature {
    background-color: rgba(255, 255, 255, 0.9);
    padding-block: clamp(2.75rem, 6vw, 5rem);
    backdrop-filter: blur(8px);
}

/* Signature grid: 1 col → 2 col → 4 col */
.sushi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}
@media (min-width: 480px) {
    .sushi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 992px) {
    .sushi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-5); }
}
@media (min-width: 1200px) {
    .sushi-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.sushi-grid--preview {
    /* Inherits the grid definition above — no gap override needed */
}

.sushi-card {
    display: flex;
    flex-direction: column;
    background-color: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 0; /* Prevents grid/flex overflow on small screens */
    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        border-color 0.35s var(--ease);
}
.sushi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

/* Reserves space before image loads → prevents layout shift (CLS) */
.sushi-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #efe9e0;
}

.sushi-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.sushi-card:hover .sushi-card-media img {
    transform: scale(1.05);
}

.sushi-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--sp-4) var(--sp-4) var(--sp-5);
}

.sushi-card-name {
    font-size: clamp(1rem, 1.5vw + 0.3rem, 1.2rem);
    margin-bottom: var(--sp-2);
    line-height: 1.3;
}

.sushi-card-desc {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.sushi-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: auto;
    padding-top: var(--sp-4);
}

.sushi-card-actions .btn {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

/* ---------- Our Story ---------- */
.section--story {
    position: relative;
    /* Keep above the next section so the "Reserve a Table" dropdown,
       which overflows downward on mobile, is not covered by the
       experience section's own stacking context (backdrop-filter). */
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

/* Mobile: stacked → Desktop: side-by-side */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    align-items: center;
}
@media (min-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(2.5rem, 5vw, 4rem);
    }
}

.story-media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    min-height: 240px;
}

.story-media::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    pointer-events: none;
    border-radius: calc(var(--radius-md) - 4px);
}

.story-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.story-paragraph {
    color: #3a342e;
    margin-bottom: var(--sp-4);
    font-size: clamp(0.92rem, 1.5vw, 1rem);
    line-height: 1.8;
}

.story-content .btn {
    margin-top: var(--sp-4);
}

/* ---------- Experience ---------- */
.section--experience {
    background-color: rgba(245, 241, 235, 0.88);
    backdrop-filter: blur(8px);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--sp-5);
    }
}

.feature-card {
    background-color: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--sp-6) var(--sp-5);
    min-width: 0;
    text-align: center;
    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        border-color 0.35s var(--ease);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.feature-card-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: var(--sp-4);
    line-height: 1;
}

.feature-card-title {
    font-size: clamp(1rem, 1.5vw + 0.3rem, 1.15rem);
    margin-bottom: var(--sp-3);
}

.feature-card-desc {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ---------- Gallery ---------- */
.section--gallery {
    background-color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    backdrop-filter: blur(8px);
    /* Smaller laptops: keep section from dominating the viewport */
    padding-block: clamp(2.5rem, 5vw, 4rem);
}

.gallery-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 68vw);
    gap: var(--sp-3);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--sp-2);
    margin-inline: calc(-1 * var(--sp-4));
    padding-inline: var(--sp-4);
}

@media (min-width: 640px) {
    .gallery-strip {
        grid-auto-columns: minmax(220px, 34vw);
        margin-inline: 0;
        padding-inline: 0;
        gap: var(--sp-4);
    }
}

@media (min-width: 992px) {
    .gallery-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-flow: row;
        grid-auto-columns: unset;
        overflow-x: visible;
        scroll-snap-type: none;
        gap: var(--sp-4);
        max-width: 960px;
        margin-inline: auto;
    }
}

@media (min-width: 1200px) {
    .gallery-strip {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 1100px;
    }
}

.gallery-item {
    margin: 0;
    scroll-snap-align: start;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-width: 0;
}

.gallery-item img {
    width: 100%;
    height: min(200px, 26vh);
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}

@media (min-width: 640px) {
    .gallery-item img {
        height: min(210px, 26vh);
    }
}

@media (min-width: 992px) {
    .gallery-item img {
        height: min(190px, 24vh);
    }
}

@media (min-width: 1200px) {
    .gallery-item img {
        height: min(220px, 26vh);
    }
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* ---------- Values ---------- */
.section--values {
    background-color: rgba(245, 241, 235, 0.88);
    backdrop-filter: blur(8px);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--sp-5);
    }
}

.value-card {
    background-color: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--sp-6) var(--sp-5);
    min-width: 0;
}

.value-card-icon {
    display: block;
    font-size: 1.75rem;
    margin-bottom: var(--sp-4);
    line-height: 1;
}

.value-card-title {
    font-size: clamp(1rem, 1.5vw + 0.3rem, 1.15rem);
    margin-bottom: var(--sp-3);
}

.value-card-desc {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ---------- Reviews ---------- */
.section--reviews {
    background-color: rgba(245, 241, 235, 0.88);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.reviews-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 85vw);
    gap: var(--sp-4);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--sp-2);
    margin-inline: calc(-1 * var(--sp-4));
    padding-inline: var(--sp-4);
}

@media (min-width: 640px) {
    .reviews-strip {
        grid-auto-columns: minmax(300px, 45vw);
        margin-inline: 0;
        padding-inline: 0;
    }
}

@media (min-width: 992px) {
    .reviews-strip {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-flow: row;
        grid-auto-columns: unset;
        overflow-x: visible;
        scroll-snap-type: none;
    }
}

.review-card {
    background-color: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--sp-6) var(--sp-5);
    min-width: 0;
    scroll-snap-align: start;
}

.review-card-stars {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    margin-bottom: var(--sp-4);
}

.review-card-text {
    margin: 0 0 var(--sp-5);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--secondary);
}

.review-card-footer {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}

.review-card-author {
    font-style: normal;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
}

.review-card-source {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- CTA ---------- */
.section--cta {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.cta-inner {
    max-width: 720px;
}

.section-title--light {
    color: #fff;
}

.cta-subtitle {
    margin: var(--sp-4) auto var(--sp-6);
    max-width: 560px;
    font-size: clamp(0.92rem, 1.5vw, 1rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    justify-content: center;
}

@media (max-width: 479px) {
    .cta-actions {
        flex-direction: column;
        align-items: center;
        width: min(100%, 300px);
        margin-inline: auto;
    }
    .cta-actions .btn { width: 100%; }
}

.section--cta .btn-ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.section--cta .btn-ghost:hover {
    border-color: var(--accent-lt);
    background-color: rgba(255, 255, 255, 0.06);
    color: #fff;
}

/* ---------- Button-attached store dropdown ---------- */
.btn-dropdown-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.btn-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-dropdown-caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.8;
    flex-shrink: 0;
    transition: transform 0.25s var(--ease);
}

.btn-dropdown-wrap.is-open .btn-dropdown-caret {
    transform: rotate(180deg);
}

.btn-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 500;
    min-width: 260px;
    padding: var(--sp-2);
    margin: 0;
    list-style: none;
    background-color: var(--primary);
    border: 1px solid rgba(176, 138, 87, 0.32);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition:
        opacity 0.22s var(--ease),
        transform 0.22s var(--ease),
        visibility 0.22s var(--ease);
}

.btn-dropdown-wrap.is-open .btn-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Variant: opens upward (for CTA at bottom of page) */
.btn-dropdown-menu--up {
    top: auto;
    bottom: calc(100% + 8px);
    transform: translateX(-50%) translateY(-6px);
}

.btn-dropdown-wrap.is-open .btn-dropdown-menu--up {
    transform: translateX(-50%) translateY(0);
}

.btn-dropdown-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.88);
    transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
    text-decoration: none;
}

.btn-dropdown-link:hover {
    background-color: rgba(176, 138, 87, 0.18);
    color: #fff;
}

.btn-dropdown-name {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-transform: none;
}

.btn-dropdown-meta {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.52);
    text-transform: none;
}

/* Story section: dropdown on light background */
.section--story .btn-dropdown-menu {
    background-color: var(--primary);
}

/* CTA section: ghost button caret matches white text */
.section--cta .btn-dropdown-caret {
    opacity: 0.9;
}

/* Mobile: full-width wrap inside flex containers */
@media (max-width: 479px) {
    .cta-actions .btn-dropdown-wrap,
    .story-content .btn-dropdown-wrap {
        width: min(100%, 300px);
    }

    .cta-actions .btn-dropdown-toggle,
    .story-content .btn-dropdown-toggle {
        width: 100%;
        justify-content: center;
    }

    .btn-dropdown-menu {
        min-width: 220px;
    }
}


/* ---------- Restaurants ---------- */
.section--restaurants {
    position: relative;
    background-color: rgba(24, 19, 15, 0.94);
    color: rgba(255, 255, 255, 0.78);
}

/* Subtle grain overlay for premium feel */
.section--restaurants::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

.section--restaurants .eyebrow { color: var(--accent-lt); }
.section--restaurants .section-title { color: #fff; }
.section--restaurants .section-subtitle { color: rgba(255, 255, 255, 0.65); }

/* ============================================================
   Restaurant Section — Mobile: seamless snap-scroll filmstrip
   Desktop (640px+): bordered grid cards (unchanged)
   ============================================================ */

/* ── Mobile wrapper: horizontal snap-scroll strip ── */
.restaurant-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    overflow-y: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(-1 * var(--sp-4));
    padding-inline: var(--sp-4);
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}
.restaurant-grid::-webkit-scrollbar { display: none; }

/* Dot indicator row (rendered via JS injected into DOM) */
.restaurant-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: var(--sp-4);
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.restaurant-dots li {
    margin: 0;
}

.restaurant-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease), width 0.3s var(--ease);
}

.restaurant-dot.is-active {
    background: var(--accent);
    width: 20px;
    border-radius: 3px;
    transform: none;
}

/* ── Mobile card: image on top, restaurant info as a separate block below ── */
.restaurant-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(100vw - 2 * var(--sp-4));
    width: calc(100vw - 2 * var(--sp-4));
    max-width: 100%;
    gap: var(--sp-3);
    overflow: visible;
    min-width: 0;
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: none;
    border: none;
    border-radius: 0;
    transition: transform 0.35s var(--ease);
}

.restaurant-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 160px;
    overflow: hidden;
    background-color: var(--primary);
    flex: 0 0 auto;
    border-radius: var(--radius-md);
}

.restaurant-card-media img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s var(--ease);
    display: block;
}

.restaurant-card:hover .restaurant-card-media img {
    transform: scale(1.04);
}

.restaurant-card-media::after {
    display: none;
}

.restaurant-card-body {
    position: relative;
    z-index: 1;
    padding: var(--sp-5);
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    min-width: 0;
    overflow: visible;
    /* Solid fill: Android often fails to paint text inside backdrop-filter layers */
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: background 0.4s var(--ease);
}

.restaurant-card:hover .restaurant-card-body {
    background: #2a221b;
}

.restaurant-card-name {
    font-size: clamp(1.3rem, 5vw + 0.2rem, 1.8rem);
    margin-bottom: var(--sp-1);
    line-height: 1.25;
    overflow-wrap: break-word;
    word-break: break-word;
    color: #fff;
}

.restaurant-card-city {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-lt);
    margin-bottom: var(--sp-3);
    overflow-wrap: break-word;
}

.restaurant-card-address {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.restaurant-card-description {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.82);
    margin-bottom: 14px;
    overflow: visible;
    overflow-wrap: break-word;
    word-break: break-word;
}

.restaurant-card-details {
    display: grid;
    gap: var(--sp-2);
    margin-bottom: var(--sp-4);
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    min-width: 0;
    overflow: visible;
}

.restaurant-card-details li {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.restaurant-card-details span {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-lt);
}

.restaurant-card-details .restaurant-card-detail-value {
    font-size: inherit;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: inherit;
    overflow-wrap: break-word;
    word-break: break-word;
}

.restaurant-card-details a {
    color: inherit;
    text-decoration: none;
}

.restaurant-card-details a:hover {
    color: var(--accent-lt);
}

.restaurant-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    margin-top: auto;
    padding-top: var(--sp-2);
    flex-shrink: 0;
}

.restaurant-card-actions .btn {
    flex: 1 1 120px;
    padding: 0.65rem var(--sp-3);
    font-size: 0.72rem;
    min-height: 44px;
}

/* Ghost button variant reads well on dark image overlay */
.section--restaurants .restaurant-card-actions .btn-line {
    border-color: rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.85);
    background: transparent;
}
.section--restaurants .restaurant-card-actions .btn-line:hover {
    border-color: var(--accent-lt);
    color: var(--accent-lt);
}

.section--restaurants .restaurant-card-actions .btn-primary {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

@supports not (aspect-ratio: 4 / 3) {
    .restaurant-card-media {
        height: 200px;
        min-height: 200px;
    }
}

@media (max-width: 639px) {
    .restaurant-card-actions {
        flex-direction: column;
    }

    .restaurant-card-actions .btn {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* ── Desktop (640px+): revert to classic bordered grid ── */
@media (min-width: 640px) {
    /* Re-enable padding on the container */
    .restaurant-grid {
        display: grid;
        flex-direction: unset;
        flex-wrap: unset;
        align-items: stretch;
        grid-auto-flow: row;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-columns: unset;
        gap: var(--sp-5);
        overflow-x: visible;
        overflow-y: visible;
        overscroll-behavior-x: auto;
        scroll-snap-type: none;
        margin-inline: 0;
        padding-inline: 0;
        scroll-behavior: auto;
        scrollbar-width: auto;
        -ms-overflow-style: auto;
    }

    /* Hide mobile dots on desktop */
    .restaurant-dots { display: none; }

    /* Restore card look */
    .restaurant-card {
        flex: none;
        width: auto;
        max-width: none;
        background-color: var(--paper);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        scroll-snap-align: unset;
        height: 100%;
        min-height: 0;
        gap: 0;
        overflow: hidden;
    }
    .restaurant-card:hover {
        box-shadow: var(--shadow-lg);
        border-color: var(--accent);
        transform: translateY(-4px);
    }

    /* Restore media ratio */
    .restaurant-card-media {
        aspect-ratio: 4 / 3;
        border-radius: 0;
        min-height: 0;
    }
    /* Remove gradient overlay on desktop */
    .restaurant-card-media::after { display: none; }

    /* Clear mobile blur filter on desktop images */
    .restaurant-card-media img {
        filter: none;
    }
    .restaurant-card:hover .restaurant-card-media img {
        filter: none;
        transform: scale(1.04);
    }

    /* Restore body to flow layout — clear mobile glass panel */
    .restaurant-card-body {
        position: static;
        z-index: auto;
        transform: none;
        padding: var(--sp-5);
        flex: 1 0 auto;
        min-height: auto;
        overflow: visible;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
    }
    .restaurant-card:hover .restaurant-card-body {
        background: transparent;
    }

    /* Text colours back to dark */
    .restaurant-card-name {
        font-size: clamp(1.2rem, 2vw + 0.4rem, 1.5rem);
        color: var(--primary);
        text-shadow: none;
    }
    .restaurant-card-city { color: var(--accent); }
    .restaurant-card-address { color: var(--muted); }
    .restaurant-card-description { color: var(--text); }

    .restaurant-card-details {
        color: var(--muted);
    }
    .restaurant-card-details span { color: var(--accent); }
    .restaurant-card-details a { color: inherit; }
    .restaurant-card-details a:hover { color: var(--accent); }

    .restaurant-card-actions {
        margin-top: auto;
        padding-top: var(--sp-2);
        flex-shrink: 0;
    }

    .restaurant-card-details {
        flex: 1 0 auto;
    }

    .section--restaurants .restaurant-card-actions .btn-line {
        border-color: var(--border);
        color: var(--primary);
    }
    .section--restaurants .restaurant-card-actions .btn-line:hover {
        border-color: var(--accent);
        color: var(--accent);
    }
}

@media (min-width: 992px) {
    .restaurant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1200px) {
    .restaurant-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
}

/* Footer grid — 1 col → 2 col → 4 col */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    padding-block: clamp(2.5rem, 6vw, 3.5rem);
}
@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-8) var(--sp-6); }
}
@media (min-width: 992px) {
    .footer-grid { grid-template-columns: 1.8fr repeat(3, minmax(0, 1fr)); gap: var(--sp-8); }
}

.footer-logo {
    display: block;
    height: 64px;
    width: auto;
    margin-bottom: var(--sp-4);
}

.footer-text {
    font-size: 0.9rem;
    margin: 0;
    max-width: 300px;
    line-height: 1.75;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--sp-4);
}

.footer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    background: none;
    border: 0;
    text-align: left;
}

.footer-toggle::after {
    content: "+";
    font-size: 1rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.7);
}

.footer-toggle[aria-expanded="true"]::after {
    content: "-";
}

.footer-links li,
.footer-social li {
    margin-bottom: var(--sp-3);
    font-size: 0.9rem;
}

.footer-links a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.footer-link-meta {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: none;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--accent);
}

.footer-links a:hover .footer-link-meta {
    color: rgba(201, 168, 122, 0.85);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-block: var(--sp-5);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

/* =========================================================
   Mobile Navigation (below 992px)
   ========================================================= */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--sp-3) var(--sp-5) calc(var(--sp-8) + env(safe-area-inset-bottom, 0));
        padding-top: calc(var(--sp-3) + env(safe-area-inset-top, 0));
        background-color: var(--primary);
        border-top: 1px solid var(--border-dk);
        box-shadow: var(--shadow-header);
        max-height: calc(100dvh - var(--header-height));
        overflow-y: auto;
        /* Slide-in animation */
        transform: translateY(-8px);
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.3s var(--ease),
            transform 0.3s var(--ease),
            visibility 0.3s var(--ease);
    }

    .primary-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-link {
        display: flex;
        align-items: center;
        /* 48px touch target on mobile */
        min-height: 48px;
        padding-block: var(--sp-3);
        padding-inline: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }

    .nav-link::after {
        display: none;
    }

    .nav-item--dropdown {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-link--dropdown {
        width: 100%;
        justify-content: space-between;
        border-bottom: 0;
    }

    .nav-item--dropdown:hover .nav-dropdown {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
    }

    .nav-item--dropdown.is-open .nav-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-dropdown {
        position: static;
        left: auto;
        top: auto;
        min-width: 0;
        margin: 0 0 var(--sp-2);
        padding: 0 0 var(--sp-2) var(--sp-3);
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        transform: none;
        display: none;
    }

    .nav-item--dropdown.is-open .nav-dropdown {
        display: block;
    }

    .nav-dropdown-link {
        padding: 0.65rem 0.4rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-dropdown-link:last-child {
        border-bottom: 0;
    }

    .nav-link--reserve {
        margin-top: var(--sp-3);
        padding: var(--sp-3) var(--sp-4);
        border: 1px solid rgba(176, 138, 87, 0.5);
        border-radius: var(--radius);
        justify-content: center;
    }

    .lang-switch {
        margin-top: var(--sp-5);
        justify-content: center;
        gap: var(--sp-3);
    }

    .lang-link {
        opacity: 0.65;
    }
}

@media (max-width: 639px) {
    .footer-nav-group [data-footer-panel][hidden] {
        display: none;
    }

    .footer-nav-group [data-footer-panel] {
        padding-top: var(--sp-2);
    }
}

@media (min-width: 640px) {
    .footer-toggle {
        pointer-events: none;
    }

    .footer-toggle::after {
        display: none;
    }
}

/* ---------- Restaurant picker modal ---------- */
.restaurant-picker {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    place-items: center;
    padding: var(--sp-4);
}

.restaurant-picker.is-open,
.restaurant-picker:not([hidden]) {
    display: grid;
}

.restaurant-picker[hidden] {
    display: none !important;
}

.restaurant-picker__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(10, 7, 4, 0.72);
    backdrop-filter: blur(8px);
}

.restaurant-picker__panel {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    max-height: min(90dvh, 860px);
}

.restaurant-picker__dialog {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: min(90dvh, 860px);
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(24, 19, 15, 0.94);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.restaurant-picker__close {
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-4);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(24, 19, 15, 0.92);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.restaurant-picker__body {
    flex: 1;
    min-height: 0;
    overflow: auto;
    overscroll-behavior: contain;
}

.restaurant-picker__eyebrow {
    margin: 0 0 var(--sp-2);
    padding-right: 3rem;
    color: var(--accent-lt);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.restaurant-picker__title {
    color: #fff;
    margin: 0 0 var(--sp-6);
    padding-right: 3rem;
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.25;
}

.restaurant-picker__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-4);
}

.restaurant-picker__card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.25s var(--ease),
        border-color 0.25s var(--ease),
        background-color 0.25s var(--ease);
}

.restaurant-picker__card:hover {
    transform: translateY(-3px);
    border-color: rgba(176, 138, 87, 0.55);
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
}

.restaurant-picker__card-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.restaurant-picker__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.restaurant-picker__card:hover .restaurant-picker__card-media img {
    transform: scale(1.04);
}

.restaurant-picker__card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: var(--sp-5);
}

.restaurant-picker__card-title {
    color: #fff;
    margin: 0 0 var(--sp-1);
    font-size: 1.05rem;
}

.restaurant-picker__card-city {
    margin: 0 0 var(--sp-2);
    color: var(--accent-lt);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.restaurant-picker__card-address {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 var(--sp-4);
    font-size: 0.9rem;
    line-height: 1.45;
    flex: 1;
}

.restaurant-picker__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 40px;
    padding: 0.55rem 1rem;
    border-radius: var(--radius);
    background-color: var(--accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .restaurant-picker__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .restaurant-picker__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* =========================================================
   Reduced Motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .hero-scroll {
        animation: none;
    }
}
