/* ==========================================================================
   Quang Minh Vietnamees Restaurant — Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --gold: #285B3D;
    --gold-light: #6A9577;
    --gold-pale: #E4EDE1;
    --gold-deep: #1A3F28;
    --terracotta: #C9B7A0;
    --terracotta-light: #DCCDB8;
    --terracotta-dark: #8A7F6E;
    --forest: #285B3D;
    --forest-light: #3D7A52;
    --forest-pale: #E4EDE1;
    --cream: #F4EEE0;
    --cream-mid: #E6DDC7;
    --cream-dark: #D0C4A9;
    --charcoal: #285B3D;
    --charcoal-light: #5C7766;
    --surface-dark: #1A3024;
    --warm-white: #FBF5E8;
    --font-display: 'Archivo Black', system-ui, sans-serif;
    --font-body: 'Be Vietnam Pro', system-ui, sans-serif;
    --section-padding: clamp(64px, 10vw, 120px);
    --container-max: 1240px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}


/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
.section-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terracotta-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--terracotta-dark);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-title em {
    font-style: italic;
    color: var(--forest);
}

.lotus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 16px 0;
}

.lotus-divider::before,
.lotus-divider::after {
    content: '';
    height: 1px;
    width: 50px;
    background: var(--cream-dark);
}

.lotus-icon {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}


/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}


/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    text-align: center;
    line-height: 1.4;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background: var(--gold-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(40, 91, 61, 0.3);
}

.btn-terracotta {
    background: var(--terracotta);
    color: var(--charcoal);
}

.btn-terracotta:hover {
    background: var(--terracotta-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(210, 171, 153, 0.4);
}

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

.btn-forest:hover {
    background: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45, 90, 61, 0.3);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
}

.btn--primary {
    background: var(--gold);
    color: #fff;
    font-weight: 600;
    padding: 16px 36px;
    font-size: 0.92rem;
}

.btn--primary:hover {
    background: var(--gold-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(40, 91, 61, 0.3);
}

.btn--full {
    width: 100%;
}


/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 18px 0;
    background: linear-gradient(to bottom, rgba(244, 238, 224, 0.72) 0%, rgba(244, 238, 224, 0.3) 70%, rgba(244, 238, 224, 0) 100%);
}

.main-nav.scrolled {
    background: rgba(244, 238, 224, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06);
}

.main-nav.menu-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--cream) !important;
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    position: relative;
}

.nav-logo img {
    height: 68px;
    width: auto;
    transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav.scrolled .nav-logo img {
    height: 56px;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--charcoal);
    transition: color 0.4s;
}

.main-nav.scrolled .nav-logo-text {
    color: var(--charcoal);
}

.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--charcoal);
    transition: color 0.3s;
    position: relative;
}

.main-nav.scrolled .nav-link {
    color: var(--charcoal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link--active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-deep);
}

.main-nav.scrolled .nav-link:hover {
    color: var(--charcoal);
}

.nav-link--active {
    color: var(--charcoal);
}

.main-nav.scrolled .nav-link--active {
    color: var(--charcoal);
}

.nav-link--cta {
    background: var(--gold);
    color: #fff;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
}

.nav-link--cta:hover {
    background: var(--gold-deep);
    color: #fff;
    transform: translateY(-1px);
}

.nav-link--cta::after {
    display: none;
}

.main-nav.scrolled .nav-link--cta {
    color: #fff;
}

.main-nav.scrolled .nav-link--cta:hover {
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10000;
    position: relative;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
    border-radius: 2px;
}

.main-nav.scrolled .nav-toggle span {
    background: var(--charcoal);
}

.nav-toggle--active span {
    background: var(--charcoal) !important;
}

.nav-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle--active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile menu open state ---- */
.nav-list--open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    inset: 0;
    padding: 104px clamp(28px, 7vw, 56px) clamp(32px, 6vw, 48px);
    gap: 0;
    z-index: 9999;
    overflow-y: auto;
    list-style: none;
    counter-reset: navitem;
    background:
        radial-gradient(ellipse 75% 60% at 92% -8%, var(--gold-pale) 0%, rgba(228, 237, 225, 0) 62%),
        radial-gradient(ellipse 60% 50% at -12% 112%, rgba(40, 91, 61, 0.14) 0%, rgba(40, 91, 61, 0) 55%),
        var(--cream);
    animation: mobileMenuFade 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mobileMenuFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Decorative logo echo in bottom corner */
.nav-list--open::after {
    content: '';
    position: absolute;
    bottom: -48px;
    right: -56px;
    width: 300px;
    height: 300px;
    background: url('/public/images/logo.png') no-repeat center / contain;
    opacity: 0.055;
    pointer-events: none;
    z-index: -1;
}

/* Brand tagline above the items */
.nav-list--open::before {
    content: 'Menukaart';
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    padding-bottom: 18px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(40, 91, 61, 0.12);
    animation: mobileItemSlide 0.55s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Each row */
.nav-list--open li {
    position: relative;
    counter-increment: navitem;
    border-bottom: 1px solid rgba(40, 91, 61, 0.1);
    animation: mobileItemSlide 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.nav-list--open li:nth-child(1) { animation-delay: 0.14s; }
.nav-list--open li:nth-child(2) { animation-delay: 0.19s; }
.nav-list--open li:nth-child(3) { animation-delay: 0.24s; }
.nav-list--open li:nth-child(4) { animation-delay: 0.29s; }
.nav-list--open li:nth-child(5) { animation-delay: 0.38s; }

/* Numeric marker — sits in a fixed gutter, right-aligned to the text baseline */
.nav-list--open li::before {
    content: counter(navitem, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 50%;
    width: 34px;
    text-align: right;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gold-light);
    opacity: 0.6;
    transition: color 0.35s, opacity 0.35s;
    pointer-events: none;
}

/* Link styling — oversized editorial treatment */
.nav-list--open .nav-link {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 2.6rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.05;
    color: var(--charcoal);
    padding: 22px 12px 22px 52px;
    border-bottom: none;
    display: flex;
    align-items: center;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}

.nav-list--open .nav-link::after {
    display: none;
}

.nav-list--open .nav-link:hover,
.nav-list--open .nav-link:focus-visible {
    color: var(--gold-deep);
    transform: translateX(8px);
    outline: none;
}

.nav-list--open li:hover::before,
.nav-list--open li:focus-within::before {
    color: var(--gold-deep);
    opacity: 1;
}

/* Active page indicator: vertical rule on the far left + bold number/text */
.nav-list--open li:has(.nav-link--active)::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background: var(--gold-deep);
    border-radius: 2px;
}

.nav-list--open li:has(.nav-link--active)::before {
    color: var(--gold-deep);
    opacity: 1;
}

.nav-list--open .nav-link--active {
    color: var(--gold-deep);
}

/* CTA — last item turns into a full-width pill */
.nav-list--open li:has(.nav-link--cta) {
    margin-top: auto;
    padding-top: 28px;
    border-bottom: none;
    border-top: 1px solid rgba(40, 91, 61, 0.12);
}

.nav-list--open li:has(.nav-link--cta)::before {
    display: none;
}

.nav-list--open .nav-link--cta {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--charcoal);
    color: var(--cream);
    padding: 20px 28px;
    border-radius: 999px;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    box-shadow: 0 12px 30px rgba(40, 91, 61, 0.22);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, color 0.3s;
}

.nav-list--open .nav-link--cta::after {
    content: '\2192';
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    background: transparent;
    color: var(--cream);
    font-size: 1.1rem;
    margin-left: 12px;
    opacity: 1;
    transform: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-list--open .nav-link--cta:hover,
.nav-list--open .nav-link--cta:focus-visible {
    transform: translateY(-3px);
    color: var(--cream);
    box-shadow: 0 18px 40px rgba(40, 91, 61, 0.3);
    outline: none;
}

.nav-list--open .nav-link--cta:hover::after,
.nav-list--open .nav-link--cta:focus-visible::after {
    transform: translateX(5px);
    background: transparent;
}

@media (prefers-reduced-motion: reduce) {
    .nav-list--open,
    .nav-list--open li,
    .nav-list--open::before {
        animation: none;
    }
}


/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(26, 48, 36, 0.55) 0%, rgba(26, 48, 36, 0.25) 70%, rgba(26, 48, 36, 0) 100%),
        linear-gradient(
            170deg,
            rgba(26, 48, 36, 0.7) 0%,
            rgba(26, 48, 36, 0.5) 50%,
            rgba(26, 48, 36, 0.8) 100%
        );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 clamp(20px, 6vw, 80px);
    z-index: 2;
}

.hero-logo-badge {
    width: 168px;
    height: 168px;
    box-sizing: border-box;
    margin-bottom: 28px;
    background: var(--cream);
    border-radius: 50%;
    box-shadow:
        0 14px 44px rgba(0, 0, 0, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset;
    animation: logoSnap 1s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-logo-badge img {
    width: 68%;
    height: 68%;
    object-fit: contain;
    display: block;
}

.hero-subtitle {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    animation: fadeInDown 0.8s 0.3s both;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.4vw, 3.6rem);
    font-weight: 400;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    max-width: 100%;
    animation: fadeInDown 0.8s 0.4s both;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.hero-title em {
    font-style: italic;
    color: var(--cream);
}

.hero-desc {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 400;
    animation: fadeInDown 0.8s 0.5s both;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s 0.6s both;
}

.hero-indicators {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-indicator {
    width: 28px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.4s;
    border: none;
    padding: 0;
}

.hero-indicator.active {
    width: 48px;
    background: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: float 2.5s ease-in-out infinite;
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.hero-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
}


/* --------------------------------------------------------------------------
   8. About Section
   -------------------------------------------------------------------------- */
.about {
    padding: var(--section-padding) 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -60px;
    width: 300px;
    height: 300px;
    border: 1px solid var(--cream-dark);
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 6s ease;
}

.about-img-main:hover img {
    transform: scale(1.04);
}

.about-img-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 190px;
    height: 190px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--cream);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-gold-stripe {
    position: absolute;
    top: 20px;
    left: -12px;
    width: 4px;
    height: 80px;
    background: var(--gold);
    border-radius: 4px;
}

.about-text p {
    color: var(--charcoal-light);
    font-size: 1rem;
    margin-bottom: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--charcoal-light);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}


/* --------------------------------------------------------------------------
   9. Menu Highlights (Homepage)
   -------------------------------------------------------------------------- */
.menu-section {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cream-dark), transparent);
}

.menu-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 52px;
}

.menu-header .section-label {
    justify-content: center;
}

.menu-header p {
    color: var(--charcoal-light);
    font-size: 0.98rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.menu-tab {
    padding: 9px 20px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    border: 1.5px solid var(--cream-dark);
    background: transparent;
    color: var(--charcoal-light);
    cursor: pointer;
    transition: all 0.3s;
}

.menu-tab:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
}

.menu-tab.active {
    background: var(--forest);
    border-color: var(--forest);
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.menu-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.07);
    border-color: var(--gold-pale);
}

.menu-card--hidden {
    display: none;
}

.menu-card-img {
    width: 155px;
    min-height: 155px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--cream-mid);
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.08);
}

.menu-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.menu-card-category {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--terracotta-dark);
    margin-bottom: 5px;
}

.menu-card-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.menu-card-desc {
    font-size: 0.83rem;
    color: var(--charcoal-light);
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-card-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
}

.menu-card-tags {
    display: flex;
    gap: 5px;
}

.menu-card-tag {
    font-size: 0.62rem;
    padding: 3px 8px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.menu-card-tag.signature {
    background: var(--cream-mid);
    color: var(--charcoal);
}

.menu-card-tag.veg {
    background: var(--forest-pale);
    color: var(--forest);
}

.menu-card-tag.halal {
    background: var(--terracotta-light);
    color: var(--terracotta-dark);
}

.menu-cta {
    text-align: center;
    margin-top: 44px;
}


/* --------------------------------------------------------------------------
   10. CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
    position: relative;
    padding: clamp(64px, 8vw, 100px) 0;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
}

.cta-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 48, 36, 0.85);
}

.cta-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.cta-banner .section-label {
    justify-content: center;
    color: var(--gold-light);
}

.cta-banner .section-label::before {
    background: var(--gold-light);
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 14px;
    color: white;
}

.cta-banner h2 em {
    color: var(--gold-light);
}

.cta-banner p {
    font-size: 1rem;
    opacity: 0.78;
    max-width: 480px;
    margin: 0 auto 32px;
    font-weight: 300;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    opacity: 0.9;
}

.cta-feature-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    border-radius: 50%;
    flex-shrink: 0;
}


/* --------------------------------------------------------------------------
   11. Info Section
   -------------------------------------------------------------------------- */
.info-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.hours-card {
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.hours-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.hours-card > p {
    font-size: 0.88rem;
    color: var(--charcoal-light);
    margin-bottom: 24px;
}

.hours-types {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.hours-type-btn {
    padding: 7px 16px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    border: 1.5px solid var(--cream-dark);
    background: transparent;
    color: var(--charcoal-light);
    cursor: pointer;
    transition: all 0.3s;
}

.hours-type-btn.active {
    background: var(--forest);
    border-color: var(--forest);
    color: white;
}

.hours-type-btn:hover:not(.active) {
    border-color: var(--forest-light);
    color: var(--forest);
}

.location-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-map {
    flex: 1;
    min-height: 290px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--cream-mid);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 290px;
}

.location-details {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--charcoal-light);
}

.location-detail-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.location-detail strong {
    display: block;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 1px;
    font-size: 0.82rem;
}

.location-detail a {
    color: var(--forest);
}

.location-detail a:hover {
    color: var(--gold-deep);
}


/* --------------------------------------------------------------------------
   12. Dish Cards (Menu Page)
   -------------------------------------------------------------------------- */
.dish-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.dish-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    border-color: var(--gold-pale);
}

.dish-card--featured {
    background: var(--gold-pale);
    border-color: var(--gold);
}

.dish-card--featured:hover {
    border-color: var(--gold-deep);
}

.dish-card__info {
    flex: 1;
}

.dish-card__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.dish-card__description {
    font-size: 0.84rem;
    color: var(--charcoal-light);
    line-height: 1.55;
    margin-bottom: 6px;
}

.dish-card__allergens {
    font-size: 0.72rem;
    color: var(--charcoal-light);
    opacity: 0.7;
    font-style: italic;
}

.dish-card__price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest);
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 2px;
}

.dish-card--has-img {
    align-items: center;
}

.dish-card__img {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.dish-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dish-card:hover .dish-card__img img {
    transform: scale(1.08);
}

@media (max-width: 480px) {
    .dish-card__img {
        width: 64px;
        height: 64px;
        border-radius: 8px;
    }
}


/* --------------------------------------------------------------------------
   13. Menu Page Sections
   -------------------------------------------------------------------------- */
.menu-page {
    padding-top: 80px;
}

.menu-page-section {
    padding: clamp(40px, 6vw, 72px) 0;
}

.menu-page-section:nth-child(even) {
    background: var(--warm-white);
}

.menu-page-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.menu-page-section__subtitle {
    font-size: 0.92rem;
    color: var(--charcoal-light);
    margin-bottom: 28px;
    max-width: 600px;
}

.menu-page-section .dish-card + .dish-card {
    margin-top: 12px;
}

/* Anchor nav pills */
.menu-anchor-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 50;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
}

.menu-anchor-pill {
    padding: 8px 18px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1.5px solid var(--cream-dark);
    background: transparent;
    color: var(--charcoal-light);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.menu-anchor-pill:hover,
.menu-anchor-pill.active {
    background: var(--forest);
    border-color: var(--forest);
    color: white;
}


/* --------------------------------------------------------------------------
   14. Forms
   -------------------------------------------------------------------------- */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--warm-white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(40, 91, 61, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23555550' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Error state */
.form-group--error input,
.form-group--error select,
.form-group--error textarea {
    border-color: var(--terracotta-dark);
}

.form-group--error label {
    color: var(--terracotta-dark);
}

.form-group__error-message {
    font-size: 0.78rem;
    color: var(--terracotta-dark);
    margin-top: 4px;
}

/* Alert boxes */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.alert--success {
    background: var(--forest-pale);
    color: var(--forest);
    border: 1px solid var(--forest-light);
}

.alert--error {
    background: #FFF0ED;
    color: var(--terracotta-dark);
    border: 1px solid var(--terracotta-light);
}


/* --------------------------------------------------------------------------
   15. Page Hero (Inner Pages)
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    padding: clamp(120px, 16vw, 180px) 0 clamp(48px, 8vw, 80px);
    background: var(--surface-dark);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(26, 48, 36, 0.72) 0%,
        rgba(26, 48, 36, 0.88) 100%
    );
    z-index: 1;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.page-hero__breadcrumb a:hover {
    color: var(--gold-light);
}

.page-hero__breadcrumb span {
    color: var(--gold-light);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    font-weight: 400;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.page-hero__title em {
    font-style: italic;
    color: var(--gold-light);
}

.page-hero__subtitle {
    font-size: clamp(0.92rem, 1.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    font-weight: 300;
}


/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.footer-top-accent {
    height: 3px;
    background: var(--gold);
}

.footer {
    background: var(--surface-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: clamp(48px, 6vw, 72px) 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
    margin-bottom: 44px;
}

.footer-brand {
    max-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo img {
    height: 72px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
}

.footer-brand p {
    font-size: 0.86rem;
    line-height: 1.65;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.65);
}

.footer-social a:hover {
    background: var(--gold-light);
    color: var(--surface-dark);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-hours-mini .hours-mini-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.84rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours-mini .hours-mini-row:last-child {
    border-bottom: none;
}

.footer-hours-mini .closed {
    color: var(--terracotta-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}


/* --------------------------------------------------------------------------
   17. FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-item {
    border-bottom: 1px solid var(--cream-dark);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    list-style: none;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--gold-deep);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item summary:hover {
    color: var(--forest);
}

.faq-item__answer {
    padding: 0 0 20px;
    font-size: 0.92rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

.faq-item__answer p {
    margin-bottom: 10px;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   18. Hours List
   -------------------------------------------------------------------------- */
.hours-list {
    width: 100%;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--cream-mid);
    font-size: 0.9rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
}

.hours-time {
    color: var(--charcoal-light);
    white-space: nowrap;
}

.hours-time.closed {
    color: var(--terracotta-dark);
    font-weight: 600;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hours-row.today {
    background: var(--gold-pale);
    margin: 0 -16px;
    padding: 11px 16px;
    border-radius: 8px;
    border-bottom-color: transparent;
}

.hours-row.today .hours-day::after {
    content: ' \2014  vandaag';
    font-size: 0.72rem;
    color: var(--gold-deep);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}


/* --------------------------------------------------------------------------
   19. Contact Page
   -------------------------------------------------------------------------- */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.contact-info-block:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-info-block__icon {
    width: 42px;
    height: 42px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-info-block__content {
    flex: 1;
    min-width: 0;
}

.contact-info-block__content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-block__content p {
    font-size: 0.88rem;
    color: var(--charcoal-light);
    line-height: 1.55;
}

.contact-info-block__content a {
    color: var(--forest);
}

.contact-info-block__content a:hover {
    color: var(--gold-deep);
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}


/* --------------------------------------------------------------------------
   20. Utilities
   -------------------------------------------------------------------------- */
.text-center {
    text-align: center;
}

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


/* --------------------------------------------------------------------------
   21. Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes logoSnap {
    0% { opacity: 0; transform: rotate(-20deg) scale(0.85); }
    100% { opacity: 1; transform: rotate(0deg) scale(1); }
}

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

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: none; }


/* --------------------------------------------------------------------------
   22. Media Queries
   -------------------------------------------------------------------------- */

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .about-grid,
    .info-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        order: -1;
    }

    .about-img-main img {
        height: 340px;
    }

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

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

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

/* Mobile breakpoint */
@media (max-width: 768px) {
    /* Navigation: hide links, show toggle */
    .nav-list {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero smaller */
    .hero {
        min-height: 560px;
    }

    .hero-logo-badge {
        width: 124px;
        height: 124px;
    }

    /* About adjustments */
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-img-accent,
    .about-gold-stripe {
        display: none;
    }

    /* CTA banner */
    .cta-features {
        gap: 16px;
    }

    /* Footer single column */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Menu cards vertical */
    .menu-card {
        flex-direction: column;
    }

    .menu-card-img {
        width: 100%;
        min-height: 180px;
        height: 180px;
    }

    /* Location details */
    .location-details {
        flex-direction: column;
    }

    /* Page hero */
    .page-hero {
        padding-top: 110px;
    }

    /* Contact */
    .contact-map {
        min-height: 280px;
    }

    .contact-map iframe {
        min-height: 280px;
    }

    /* Menu anchor nav scroll */
    .menu-anchor-nav {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 14px clamp(20px, 4vw, 40px);
    }

    .menu-anchor-nav::-webkit-scrollbar {
        display: none;
    }

    .menu-anchor-pill {
        white-space: nowrap;
    }
}

/* --------------------------------------------------------------------------
   23. Rating Display
   -------------------------------------------------------------------------- */
.rating-card {
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.rating-card__score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-card__number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--charcoal);
}

.rating-card__stars {
    display: flex;
    gap: 2px;
    font-size: 1.2rem;
    color: var(--gold);
}

.rating-card__text {
    font-size: 0.92rem;
    color: var(--charcoal-light);
    margin-bottom: 16px;
}

.rating-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--gold-pale);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-deep);
    letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   24. Feature Cards (Over Ons)
   -------------------------------------------------------------------------- */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.04);
}

.feature-card__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   25. Service Cards (Over Ons)
   -------------------------------------------------------------------------- */
.service-card {
    flex-direction: column;
    cursor: default;
}

.service-card .menu-card-body {
    text-align: center;
    padding: 32px 24px;
}

.service-card__icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.service-card .menu-card-desc {
    -webkit-line-clamp: unset;
}

/* --------------------------------------------------------------------------
   26. Review Cards (Over Ons)
   -------------------------------------------------------------------------- */
.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 40px 0 36px;
    text-align: left;
}

.review-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.review-card__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.55;
    opacity: 0.92;
}

.review-card__author {
    font-size: 0.78rem;
    margin-top: 14px;
    opacity: 0.55;
}

.review-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.review-summary__score {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.review-summary__divider {
    opacity: 0.6;
}

.review-summary__count {
    opacity: 0.5;
    margin-left: 8px;
}

/* --------------------------------------------------------------------------
   27. Allergen Notice
   -------------------------------------------------------------------------- */
.allergen-notice {
    background: var(--gold-pale);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    border-left: 4px solid var(--gold);
    max-width: 700px;
    margin: 0 auto;
}

.allergen-notice p {
    font-size: 0.92rem;
    color: var(--charcoal);
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   28. Utility: Inline Helpers
   -------------------------------------------------------------------------- */
.text-muted {
    color: var(--charcoal-light);
}

.text-sm {
    font-size: 0.92rem;
}

.mb-md {
    margin-bottom: 28px;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.my-lg {
    margin-top: 32px;
    margin-bottom: 32px;
}

.mt-sm {
    margin-top: 12px;
}

.max-w-md {
    max-width: 700px;
}

.flex-center-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.label-optional {
    font-weight: 400;
    color: var(--charcoal-light);
}

.menu-anchor-pill--back {
    border-color: var(--terracotta-dark);
    color: var(--terracotta-dark);
}

.menu-card-tag--inline {
    margin-left: 8px;
    vertical-align: middle;
}

/* --------------------------------------------------------------------------
   FAB Quick Action Buttons
   -------------------------------------------------------------------------- */
.fab-actions {
    position: fixed;
    right: 20px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.fab-actions.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px 10px 16px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.fab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.12);
}

.fab-btn:active {
    transform: translateY(0);
}

.fab-btn svg {
    flex-shrink: 0;
}

.fab-btn--terracotta {
    background: var(--terracotta);
}

.fab-btn--terracotta:hover {
    background: var(--terracotta-dark);
}

.fab-btn--forest {
    background: var(--forest);
}

.fab-btn--forest:hover {
    background: #234a30;
}

.fab-btn--gold {
    background: var(--gold);
    color: #fff;
}

.fab-btn--gold:hover {
    background: var(--gold-deep);
}

/* Hide FABs when footer is in view to prevent overlap */
@media (max-width: 768px) {
    .fab-actions {
        right: 14px;
        bottom: 20px;
        gap: 8px;
    }

    .fab-btn {
        padding: 9px 16px 9px 14px;
        font-size: 0.82rem;
    }
}

/* --------------------------------------------------------------------------
   Photo Gallery
   -------------------------------------------------------------------------- */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    display: block;
}

.gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 90, 61, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s;
    color: white;
}

.gallery-item__overlay svg {
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-item__overlay {
    background: rgba(45, 90, 61, 0.35);
}

.gallery-item:hover .gallery-item__overlay svg {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item--wide {
        grid-column: span 2;
    }
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--radius-lg);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.25s;
    line-height: 1;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.12);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.25s;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.lightbox__nav--prev {
    left: 16px;
}

.lightbox__nav--next {
    right: 16px;
}

@media (max-width: 768px) {
    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox__nav--prev {
        left: 8px;
    }

    .lightbox__nav--next {
        right: 8px;
    }
}


/* Small mobile */
@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hours-types {
        flex-wrap: wrap;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
