/* ================================================
   Felix for Goodness — Cafe Website Styles
   ================================================ */

/* --- Custom Properties --- */
:root {
    --bg:           #f5efe8;
    --bg-alt:       #ede0d4;
    --panel:        #f5efe8;
    --text:         #2c1810;
    --text-muted:   #6b5244;
    --heading:      #3a2218;
    --accent:       #c0623a;
    --accent-hover: #a34f2d;
    --accent-light: #f5ded3;
    --green:        #7a8c6e;
    --green-light:  #e8ede4;
    --line:         #d9cfc4;
    --overlay:      rgba(44, 24, 16, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Courier Prime", "Courier New", Courier, monospace;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3 {
    margin: 0 0 12px;
    font-family: "Courier Prime", "Courier New", Courier, monospace;
    font-style: italic;
    color: var(--heading);
    line-height: 1.3;
    letter-spacing: 0;
}

p {
    margin: 0 0 16px;
    color: var(--text-muted);
}

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

/* --- Layout Utilities --- */
.container {
    width: min(1120px, 100% - 2rem);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
}

.section-header p {
    font-size: 1.0625rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 8px;
    font-family: "Courier Prime", "Courier New", Courier, monospace;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 16px;
    padding: 10px 14px;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: top 0.2s ease;
    z-index: 100;
}

.skip-link:focus-visible {
    top: 12px;
}

/* --- Header --- */
.site-header {
    background: transparent;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(245, 239, 232, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.scrolled .brand-logo {
    filter: none;
}

@media (max-width: 719px) {
    .brand-logo {
        height: 38px;
    }

    .header-inner {
        padding: 12px 0;
    }
}

.nav-links {
    display: none;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.75rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.15s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
}

.scrolled .nav-links a {
    color: var(--text);
}

.scrolled .nav-links a:hover,
.scrolled .nav-links a:focus-visible {
    background-color: var(--accent-light);
    color: var(--accent);
}

.nav-links .nav-cta {
    background-color: var(--accent);
    color: #fff;
    font-weight: 600;
    margin-left: 6px;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
    background-color: var(--accent-hover);
    color: #fff;
}

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

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 60;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #f5efe8;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

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

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245, 239, 232, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav-open .mobile-nav {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.15s ease;
}

.mobile-nav a:hover {
    background-color: var(--accent-light);
    color: var(--accent);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    text-decoration: none;
    font-family: "Courier Prime", "Courier New", Courier, monospace;
}

.btn.primary {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(192, 98, 58, 0.2);
}

.btn.primary:hover,
.btn.primary:focus-visible {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(192, 98, 58, 0.3);
    outline: none;
}

.btn.secondary {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    outline: none;
}

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

.btn.outline:hover,
.btn.outline:focus-visible {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    outline: none;
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* --- Hero --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #2c1810;
    overflow: hidden;
}

/* Slideshow background images with Ken Burns */
.hero-slide {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenBurns 12s ease-in-out infinite alternate;
    z-index: 0;
    transition: opacity 1.5s ease;
}

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

.hero-slide:nth-child(1) {
    background-image: url('https://www.felixforgoodness.com/cdn/shop/files/DSCF4309-1.jpg?v=1668417342&width=1500');
}

.hero-slide:nth-child(2) {
    background-image: url('../assets/images/instagram/02-latte-art.jpg');
    animation-delay: -4s;
}

.hero-slide:nth-child(3) {
    background-image: url('../assets/images/instagram/04-brunch-spread-omelette.jpg');
    animation-delay: -8s;
}

.hero-slide:nth-child(4) {
    background-image: url('../assets/images/instagram/10-croissant-poached-egg.jpg');
    animation-delay: -2s;
}

/* Animated gradient overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.65), rgba(58, 34, 24, 0.55), rgba(44, 24, 16, 0.7));
    background-size: 300% 300%;
    animation: overlayShift 12s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.12) translate(-1.5%, -1%);
    }
}

@keyframes overlayShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px 20px;
}

/* Staggered hero content fade-in */
.hero .eyebrow {
    color: var(--green-light);
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    margin: 0 auto 20px;
    opacity: 0;
    transform: translateY(16px) scale(0.92);
    animation: heroLogoIn 1s ease forwards;
    animation-delay: 0.6s;
}

.hero .tagline {
    font-size: clamp(1rem, 1vw + 0.75rem, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 1.1s;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 1.5s;
}

.hero-address {
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 1.8s;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLogoIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-text .eyebrow {
    margin-bottom: 8px;
}

.about-text h2 {
    font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
    position: relative;
}

.about-text h2::before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.about-image {
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
}

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

/* --- Menu Section (dark themed) --- */
.menu-section {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.menu-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}

.menu-ornament {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 0.5em;
    opacity: 0.5;
    margin: 8px 0;
}

.menu-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.menu-header h2 {
    color: var(--heading);
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    margin-bottom: 8px;
}

.menu-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-style: italic;
}

/* Menu board — the main two-column layout */
.menu-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.menu-col {
    display: flex;
    flex-direction: column;
}

.menu-divider {
    display: none;
}

/* Individual dish */
.menu-dish {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.menu-dish:last-child {
    border-bottom: none;
}

.menu-dish--highlight {
    background: rgba(192, 98, 58, 0.06);
    border-radius: 12px;
    padding: 18px 16px;
    margin: 4px -16px;
    border-bottom: none;
}

.menu-dish-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.menu-dish-name {
    font-weight: 700;
    color: var(--heading);
    font-size: 1rem;
    white-space: nowrap;
}

.menu-dish-line {
    flex: 1;
    border-bottom: 1px dotted var(--line);
    min-width: 16px;
    margin-bottom: 4px;
}

.menu-dish-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.0625rem;
    white-space: nowrap;
}

.menu-dish-price::before {
    content: "$";
    font-size: 0.75em;
    opacity: 0.7;
}

.menu-dish-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 6px 0 0;
    line-height: 1.5;
}

.menu-dish-tags {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.menu-dish-tags span {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--green);
    background: var(--green-light);
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Add-ons */
.menu-addons {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 32px 0;
    margin-bottom: 40px;
}

.menu-addons h3 {
    color: var(--text-muted);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-style: normal;
    margin-bottom: 16px;
    text-align: center;
}

.menu-addons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

.menu-addons-list span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Menu footer (legend, CTA, note) */
.menu-footer {
    text-align: center;
}

.menu-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 32px;
}

.menu-legend span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.menu-legend strong {
    color: var(--green);
    margin-right: 2px;
}

.menu-view-btn {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.menu-view-btn:hover,
.menu-view-btn:focus-visible {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.menu-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 20px;
}

/* Full Menu Modal */
.menu-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.menu-modal.active {
    display: flex;
}

.menu-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.8);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.menu-modal-content {
    position: relative;
    max-width: 820px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    background: #faf6f1;
    border-radius: 4px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
    z-index: 1;
    border: 2px solid var(--accent);
}

.menu-modal-x {
    position: fixed;
    top: max(2vh, 12px);
    right: max(2vw, 12px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--heading);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, transform 0.15s ease;
    z-index: 10001;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.menu-modal-x:hover {
    background: var(--accent);
    transform: scale(1.1);
}

/* Styled modal menu */
.modal-menu {
    padding: 40px 32px;
}

.modal-menu-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-menu-logo {
    height: 60px;
    width: auto;
    margin: 0 auto 12px;
}

.modal-menu-ornament {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 0.6em;
    opacity: 0.4;
    margin: 8px 0;
}

.modal-menu-header h2 {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-style: normal;
    color: var(--heading);
    margin: 0;
}

/* Two-column layout */
.modal-menu-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 32px;
}

.modal-menu-divider {
    display: none;
}

.modal-menu-col {
    display: flex;
    flex-direction: column;
}

/* Dish styling */
.modal-dish {
    padding: 14px 0;
    border-bottom: 1px solid rgba(58, 34, 24, 0.08);
}

.modal-dish:last-child {
    border-bottom: none;
}

.modal-dish-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.modal-dish-name {
    font-weight: 700;
    color: var(--heading);
    font-size: 0.9375rem;
    white-space: nowrap;
}

.modal-dish-dots {
    flex: 1;
    border-bottom: 1px dotted var(--line);
    min-width: 12px;
    margin-bottom: 3px;
}

.modal-dish-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 0.9375rem;
    white-space: nowrap;
}

.modal-dish-price::before {
    content: "$";
    font-size: 0.75em;
    opacity: 0.6;
}

.modal-dish p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 4px 0 0;
    line-height: 1.5;
}

.modal-dish-choose {
    font-weight: 600;
    color: var(--heading) !important;
}

.modal-dish-add {
    color: var(--text-muted) !important;
    opacity: 0.7;
}

.modal-dish-tags {
    display: flex;
    gap: 4px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.modal-dish-tags span {
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--green);
    background: var(--green-light);
    padding: 1px 6px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modal-specials {
    text-align: center;
    font-style: italic;
    color: var(--accent);
    font-size: 0.875rem;
    margin-top: 20px;
    padding: 12px;
    border: 1px dashed var(--accent);
    border-radius: 8px;
    opacity: 0.7;
}

/* Add-ons section */
.modal-addons {
    border-top: 2px solid var(--line);
    padding-top: 28px;
    margin-bottom: 28px;
    text-align: center;
}

.modal-addons h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-style: normal;
    color: var(--heading);
    margin-bottom: 4px;
}

.modal-addons-note {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.modal-addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.modal-addons-grid span {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px dotted rgba(58, 34, 24, 0.08);
}

.modal-addons-grid span em {
    font-style: normal;
    font-weight: 700;
    color: var(--accent);
}

.modal-addons-grid span em::before {
    content: "$";
    font-size: 0.75em;
    opacity: 0.6;
}

/* Footer legend + notices */
.modal-menu-footer {
    border-top: 2px solid var(--line);
    padding-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.modal-legend {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-legend span {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.modal-legend strong {
    color: var(--green);
    font-size: 0.6875rem;
    margin-right: 4px;
}

.modal-notices p {
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin: 0 0 4px;
    font-weight: 600;
}

/* Modal responsive */
@media (min-width: 600px) {
    .modal-menu {
        padding: 48px 40px;
    }

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

    .modal-menu-divider {
        display: block;
        width: 1px;
        background: linear-gradient(to bottom, transparent, var(--line) 15%, var(--line) 85%, transparent);
        margin: 0 24px;
    }

    .modal-addons-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px 32px;
        max-width: 600px;
    }

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

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

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

/* --- Reviews --- */
.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.reviews-stars {
    display: flex;
    gap: 4px;
}

.reviews-stars svg {
    width: 24px;
    height: 24px;
    fill: #f0a500;
}

.reviews-score {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 3);
    gap: 24px;
    transition: transform 0.5s ease;
}

.review-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 10, 60, 0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card-stars {
    display: flex;
    gap: 3px;
}

.review-card-stars svg {
    width: 18px;
    height: 18px;
    fill: #f0a500;
}

.review-card-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin: 0;
    flex: 1;
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.review-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-card-name {
    display: block;
    font-weight: 700;
    color: var(--heading);
    font-size: 0.9375rem;
}

.review-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.reviews-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Mobile: show 1 card */
@media (max-width: 719px) {
    .reviews-track {
        grid-auto-columns: 100%;
    }
}

/* Tablet: show 2 cards */
@media (min-width: 720px) and (max-width: 959px) {
    .reviews-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }
}

/* --- Hours & Location --- */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.hours-list {
    margin: 24px 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
}

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

.hours-day {
    font-weight: 600;
    color: var(--heading);
}

.hours-time {
    color: var(--text-muted);
}

.hours-note {
    font-size: 0.875rem;
    color: var(--accent);
    font-style: italic;
    margin-top: 8px;
}

.visit-info {
    margin-top: 24px;
}

.visit-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.visit-info .info-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.map-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
}

.map-placeholder .placeholder-text {
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 500;
}

/* --- Reservations --- */
.reservations {
    background: radial-gradient(ellipse at 50% 0%, var(--accent-light) 0%, var(--bg) 70%);
}

.reservations-inner {
    max-width: 640px;
    margin: 0 auto;
}

.reservation-form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    display: grid;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 10, 60, 0.06);
}

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

.field {
    display: grid;
    gap: 6px;
}

label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--heading);
}

input, textarea, select {
    font: inherit;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #ede0d4;
    color: var(--text);
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
    font-size: 0.9375rem;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
    border-color: var(--accent);
    background: #f5efe8;
    box-shadow: 0 0 0 3px var(--accent-light);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b5244' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}

.reservation-form .btn {
    width: 100%;
}

/* --- Footer --- */
.site-footer {
    background: var(--heading);
    color: rgba(250, 246, 241, 0.8);
    padding: 48px 0 32px;
}

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

.footer-logo {
    filter: brightness(0) invert(1);
    height: 50px;
    opacity: 0.9;
}

.footer-brand .footer-tagline {
    font-size: 0.9375rem;
    color: rgba(250, 246, 241, 0.6);
    margin-top: 12px;
}

.footer-nav h4 {
    font-family: "Courier Prime", "Courier New", Courier, monospace;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 246, 241, 0.5);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-nav a {
    display: block;
    padding: 4px 0;
    font-size: 0.9375rem;
    transition: color 0.15s ease;
}

.footer-nav a:hover {
    color: var(--accent-light);
}

.footer-social h4 {
    font-family: "Courier Prime", "Courier New", Courier, monospace;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 246, 241, 0.5);
    margin-bottom: 16px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(250, 246, 241, 0.4);
}

.footer-credit {
    margin-top: 8px;
}

.footer-credit a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   DEMO PROTECTION
   ============================================ */

/* Fixed bottom banner */
.demo-watermark {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(58, 34, 24, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    text-align: center;
    padding: 0.6rem 1.5rem;
    font-family: "Courier Prime", "Courier New", Courier, monospace;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    user-select: none;
    -webkit-user-select: none;
}

.demo-watermark__divider {
    opacity: 0.4;
    font-weight: 400;
}

/* Repeating diagonal watermark across the page */
.demo-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 180px,
            rgba(192, 98, 58, 0.03) 180px,
            rgba(192, 98, 58, 0.03) 181px
        );
    background-size: 100% 100%;
    overflow: hidden;
}

.demo-overlay::before {
    content: 'DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design\ADEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design        DEMO — BH Web Design';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vmax;
    height: 200vmax;
    display: flex;
    align-items: center;
    text-align: center;
    transform: translate(-50%, -50%) rotate(-35deg);
    font-family: "Courier Prime", "Courier New", Courier, monospace;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(192, 98, 58, 0.05);
    white-space: pre-wrap;
    word-spacing: 0.5em;
    line-height: 6;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

/* Expired state */
.demo-expired {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--heading);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Courier Prime", "Courier New", Courier, monospace;
    text-align: center;
    padding: 2rem;
}

.demo-expired h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.demo-expired p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 400px;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--heading);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.3; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--green));
    z-index: 9999;
    transition: width 0.05s linear;
}

/* --- Sticky Mobile CTA --- */
.sticky-cta {
    display: none;
}

@media (max-width: 719px) {
    .sticky-cta {
        position: fixed;
        bottom: 44px;
        left: 16px;
        right: 16px;
        z-index: 9997;
        display: block;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

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

    .sticky-cta .btn {
        width: 100%;
        box-shadow: 0 4px 20px rgba(192, 98, 58, 0.4);
        font-size: 0.875rem;
        padding: 12px 20px;
    }
}

/* --- Stats Bar --- */
.stats-bar {
    background: url('../assets/images/instagram/14-storefront-christmas.jpg') center/cover no-repeat fixed;
    padding: 60px 0;
    position: relative;
}

.stats-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    font-family: "Courier Prime", monospace;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@media (min-width: 720px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Video Reels --- */
.reels-section {
    background: url('../assets/images/instagram/20-laneway-view.jpg') center/cover no-repeat fixed;
    position: relative;
}

.reels-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.85);
}

.reels-section > .container {
    position: relative;
    z-index: 1;
}

.reels-section .eyebrow {
    color: var(--accent);
}

.reels-section .section-header h2 {
    color: #fff;
}

.reels-section .btn.outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.reels-section .btn.outline:hover {
    background: #fff;
    color: var(--heading);
    border-color: #fff;
}

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

.reel-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: var(--heading);
    cursor: pointer;
}

.reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-mute-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.reel-mute-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.reel-mute-btn svg {
    width: 18px;
    height: 18px;
}

.reel-mute-btn .icon-unmuted {
    display: none;
}

.reel-item.unmuted .reel-mute-btn .icon-muted {
    display: none;
}

.reel-item.unmuted .reel-mute-btn .icon-unmuted {
    display: block;
}

.reels-cta {
    text-align: center;
    margin-top: 32px;
}

@media (min-width: 720px) {
    .reels-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* --- Gallery Lightbox --- */
.gallery-item {
    position: relative;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.7));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.9);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.lightbox-img {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: max(2vh, 12px);
    right: max(2vw, 12px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background-color 0.15s ease, transform 0.15s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

/* --- About Parallax --- */
.about-image {
    overflow: hidden;
}

.about-image img {
    transition: transform 0.1s linear;
}

/* --- FAQ Section --- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: var(--panel);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    color: var(--heading);
    font-size: 0.9375rem;
    text-align: left;
    gap: 12px;
    transition: color 0.15s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
}

/* --- Section Dividers (wavy SVG) --- */
.section-wave {
    display: block;
    width: 100%;
    height: 48px;
    margin-top: -1px;
}

.section-wave-flip {
    transform: scaleY(-1);
    margin-bottom: -1px;
    margin-top: 0;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 60px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(192, 98, 58, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.15s ease;
    z-index: 100;
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- Review Card Quote Mark --- */
.review-card {
    position: relative;
}

.review-card::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

/* --- Subtle Texture Overlay on Sections --- */
.section::after,
.section-alt::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.section,
.section-alt,
.menu-section {
    position: relative;
}

.section > .container,
.section-alt > .container,
.menu-section > .container {
    position: relative;
    z-index: 1;
}

/* --- Enhanced Button Glow --- */
.btn.primary:hover {
    box-shadow: 0 12px 32px rgba(192, 98, 58, 0.35), 0 0 0 4px rgba(192, 98, 58, 0.1);
}

/* --- Hero Address --- */
.hero-address {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
    letter-spacing: 0.05em;
}

.hero-address a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.hero-address a:hover {
    color: #fff;
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* --- Responsive: Mobile (max 719px) --- */
@media (max-width: 719px) {
    /* Hero */
    .hero {
        min-height: 75vh;
    }

    .hero-content {
        padding: 30px 16px;
    }

    .hero-logo {
        max-width: 240px;
    }

    .hero .tagline {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    .hero-address {
        font-size: 0.875rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Sections */
    .section,
    .menu-section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-wave {
        height: 28px;
    }

    /* About */
    .about-text h2 {
        font-size: 1.375rem;
    }

    .about-text p {
        font-size: 0.9375rem;
    }

    .about-image {
        aspect-ratio: 3 / 2;
    }

    /* Menu */
    .menu-header h2 {
        font-size: 1.75rem;
    }

    .menu-section {
        padding: 56px 0;
    }

    .menu-dish-name {
        font-size: 0.875rem;
    }

    .menu-dish-price {
        font-size: 0.9375rem;
    }

    .menu-addons-list {
        gap: 6px 12px;
    }

    .menu-addons-list span {
        font-size: 0.75rem;
    }

    .menu-footer {
        gap: 20px;
    }

    .menu-legend {
        gap: 4px 12px;
    }

    /* Hide non-essential menu items on mobile */
    .mobile-hide {
        display: none;
    }

    /* Gallery */
    .gallery-grid {
        gap: 8px;
    }

    /* Reviews */
    .reviews-stars svg {
        width: 20px;
        height: 20px;
    }

    .reviews-score {
        font-size: 0.75rem;
    }

    .review-card {
        padding: 20px;
    }

    .review-card::before {
        font-size: 3rem;
        top: 10px;
        right: 16px;
    }

    .review-card-text {
        font-size: 0.875rem;
    }

    .review-card-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.875rem;
    }

    .review-card-name {
        font-size: 0.875rem;
    }

    .reviews-dots {
        margin-top: 20px;
    }

    /* Hours */
    .hours-list li {
        font-size: 0.875rem;
        padding: 10px 0;
    }

    .visit-info p {
        font-size: 0.8125rem;
    }

    .map-placeholder {
        aspect-ratio: 16 / 9;
    }

    /* Reservations */
    .reservation-form {
        padding: 20px;
        gap: 16px;
    }

    .reservation-form .btn {
        padding: 14px 20px;
    }

    /* Footer */
    .site-footer {
        padding: 36px 0 72px;
    }

    .footer-grid {
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav {
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Back to top — above demo banner */
    .back-to-top {
        bottom: 70px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    /* Demo banner */
    .demo-watermark {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    /* Modal */
    .menu-modal-content {
        padding: 12px;
        max-height: 88vh;
    }

    .modal-menu {
        padding: 24px 16px;
    }

    .modal-menu-logo {
        height: 44px;
    }

    .modal-menu-header h2 {
        font-size: 1.125rem;
    }

    .modal-dish-name {
        font-size: 0.8125rem;
    }

    .modal-dish-price {
        font-size: 0.8125rem;
    }

    .modal-dish p {
        font-size: 0.6875rem;
    }

    .modal-dish-tags span {
        font-size: 0.5rem;
        padding: 1px 5px;
    }

    .modal-addons-grid span {
        font-size: 0.75rem;
    }

    .modal-menu-x {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}

/* --- Responsive: Tablet (720px) --- */
@media (min-width: 720px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-nav {
        display: none !important;
    }

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

    .menu-board {
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
    }

    .menu-divider {
        display: block;
        width: 1px;
        background: linear-gradient(to bottom, transparent, var(--line) 15%, var(--line) 85%, transparent);
        margin: 0 32px;
    }

    .menu-dish--highlight {
        margin: 4px -20px;
        padding: 18px 20px;
    }

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

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    .visit-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

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

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* --- Responsive: Desktop (960px) --- */
@media (min-width: 960px) {
    .hero {
        min-height: 90vh;
    }

    .section {
        padding: 100px 0;
    }

    .about-grid {
        gap: 64px;
    }

    .reservation-form {
        padding: 36px;
    }
}
