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

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --gold: #E2B93B;
    --gold-light: #F0D36A;
    --gold-pale: #FBF3D4;
    --gold-deep: #C49A2D;
    --terracotta: #C4603A;
    --terracotta-light: #D8845E;
    --terracotta-dark: #A34D2E;
    --forest: #2D5A3D;
    --forest-light: #3D7A52;
    --forest-pale: #E8F0EA;
    --cream: #FDF9F0;
    --cream-mid: #F5EDE0;
    --cream-dark: #EBE1D0;
    --charcoal: #2A2A28;
    --charcoal-light: #555550;
    --warm-white: #FFFDF7;
    --font-display: 'Playfair Display', Georgia, 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);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 18px;
    line-height: 1.15;
}

.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: var(--charcoal);
}

.btn-gold:hover {
    background: var(--gold-deep);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(226, 185, 59, 0.3);
}

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

.btn-terracotta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196, 96, 58, 0.3);
}

.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: var(--charcoal);
    font-weight: 600;
    padding: 16px 36px;
    font-size: 0.92rem;
}

.btn--primary:hover {
    background: var(--gold-deep);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(226, 185, 59, 0.3);
}

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


/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 18px 0;
}

.main-nav.scrolled {
    background: rgba(253, 249, 240, 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);
}

.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: 10;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s;
}

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

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    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: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
}

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

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

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

.nav-link:hover {
    color: white;
}

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

.nav-link--active {
    color: white;
}

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

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

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

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

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

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

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

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

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

/* Body scroll lock when nav is open */
body.nav-open {
    overflow: hidden;
}

/* Mobile menu open state — fullscreen overlay */
.nav-list.nav-list--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--charcoal);
    padding: 0 40px;
    gap: 0;
    align-items: center;
    justify-content: center;
    animation: navFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-list--open li {
    opacity: 0;
    animation: navItemIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    text-align: center;
}

.nav-list--open li:nth-child(1) { animation-delay: 0.05s; }
.nav-list--open li:nth-child(2) { animation-delay: 0.10s; }
.nav-list--open li:nth-child(3) { animation-delay: 0.15s; }
.nav-list--open li:nth-child(4) { animation-delay: 0.20s; }
.nav-list--open li:nth-child(5) { animation-delay: 0.25s; }
.nav-list--open li:nth-child(6) { animation-delay: 0.30s; }

.nav-list--open .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.6rem;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 14px 0;
    display: block;
}

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

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

.nav-list--open .nav-link--cta {
    margin-top: 24px;
    background: var(--gold);
    color: var(--charcoal) !important;
    text-align: center;
    display: inline-block;
    padding: 16px 44px;
    border-radius: 100px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.nav-list--open .nav-link--cta:hover {
    background: var(--gold-deep);
    color: white !important;
}

/* Hamburger to X animation */
.nav-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: white !important;
}

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

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

/* Nav open: logo stays visible with white text */
body.nav-open .nav-logo-text {
    color: white !important;
}

body.nav-open .main-nav {
    background: transparent !important;
    box-shadow: none !important;
}

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

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


/* --------------------------------------------------------------------------
   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: linear-gradient(
        170deg,
        rgba(42, 42, 40, 0.5) 0%,
        rgba(42, 42, 40, 0.15) 45%,
        rgba(42, 42, 40, 0.6) 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: 110px;
    height: 110px;
    margin-bottom: 24px;
    animation: logoSnap 1s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    animation: fadeInDown 0.8s 0.3s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s 0.4s both;
}

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

.hero-desc {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 300;
    animation: fadeInDown 0.8s 0.5s both;
}

.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: var(--gold);
}

.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);
    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(--gold-pale);
    color: var(--gold-deep);
}

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

.menu-card-tag.halal {
    background: #FFF3E0;
    color: #C67A2E;
}

.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(42, 42, 40, 0.82);
}

.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);
    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;
}


/* --------------------------------------------------------------------------
   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(226, 185, 59, 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);
}

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

.form-group__error-message {
    font-size: 0.78rem;
    color: var(--terracotta);
    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(--charcoal);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(42, 42, 40, 0.7) 0%,
        rgba(42, 42, 40, 0.85) 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(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    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(--charcoal);
    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: 42px;
    width: auto;
}

.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);
    color: var(--charcoal);
    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);
    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;
    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);
}

.hours-time.closed {
    color: var(--terracotta);
    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 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: 88px;
        height: 88px;
    }

    /* 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 — horizontal scroll strip */
    .menu-anchor-nav {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 12px clamp(16px, 4vw, 40px);
        gap: 6px;
        top: 60px;
    }

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

    .menu-anchor-pill {
        white-space: nowrap;
        padding: 10px 16px;
        font-size: 0.78rem;
    }

    /* Dish cards tighter on mobile */
    .dish-card {
        padding: 16px;
        gap: 12px;
    }

    .dish-card__name {
        font-size: 0.98rem;
    }

    .dish-card__price {
        font-size: 1rem;
    }

    .menu-page {
        padding-top: 60px;
    }

    .menu-page-section {
        padding: clamp(28px, 5vw, 48px) 0;
    }

    .menu-page-section__subtitle {
        margin-bottom: 20px;
        font-size: 0.85rem;
    }

    /* Homepage menu cards: horizontal scroll */
    .menu-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
    }

    .menu-grid::-webkit-scrollbar {
        display: none;
    }

    .menu-grid .menu-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    /* Section spacing on mobile */
    .info-section {
        padding: clamp(40px, 8vw, 72px) 0;
    }

    /* Menu tabs horizontal scroll */
    .menu-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        padding: 0 clamp(16px, 4vw, 40px);
    }

    .menu-tabs::-webkit-scrollbar {
        display: none;
    }

    .menu-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* --------------------------------------------------------------------------
   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);
    color: var(--terracotta);
}

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

/* 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;
    }
}


/* --------------------------------------------------------------------------
   29. Floating Action Bar — 3 always-visible buttons
   -------------------------------------------------------------------------- */
.fab-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity 0.3s;
}

body.nav-open .fab-bar {
    opacity: 0;
    pointer-events: none;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
    white-space: nowrap;
}

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

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

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

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

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

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

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

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


/* --------------------------------------------------------------------------
   30. Mobile Tap States & UX
   -------------------------------------------------------------------------- */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        transform: scale(0.97) !important;
    }

    .fab-btn:active {
        transform: scale(0.95) !important;
    }

    .menu-anchor-pill:active {
        transform: scale(0.95);
    }

    .dish-card:active {
        transform: none;
        background: var(--cream-mid);
    }

    .nav-list--open .nav-link:active {
        opacity: 0.7;
    }
}

/* Safe area support for notched devices */
@supports (padding: env(safe-area-inset-bottom)) {
    .fab-bar {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }

    .nav-list.nav-list--open {
        padding-bottom: env(safe-area-inset-bottom);
    }
}
