/* ============================================
   Mel's Main Street Grille — Custom Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Plum palette */
    --plum-50: #faf5f7;
    --plum-100: #f5e9ee;
    --plum-200: #ebcdd9;
    --plum-300: #d9a5b8;
    --plum-400: #c47a94;
    --plum-500: #a85578;
    --plum-600: #8b3a5c;
    --plum-700: #6b2d5b;
    --plum-800: #4a1e3e;
    --plum-900: #2d1325;
    --plum-950: #1a0b16;

    /* Amber palette */
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;

    /* Neutrals */
    --cream: #fdf8f4;
    --cream-dark: #f5ede6;
    --warm-gray-50: #fafaf8;
    --warm-gray-100: #f5f2ef;
    --warm-gray-200: #e8e2dc;
    --warm-gray-300: #d4c bc4;
    --warm-gray-500: #78716c;
    --warm-gray-600: #57534e;
    --warm-gray-700: #44403c;
    --warm-gray-800: #292524;
    --warm-gray-900: #1c1917;

    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: clamp(4rem, 10vw, 8rem);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(107, 45, 91, 0.06), 0 1px 2px rgba(107, 45, 91, 0.04);
    --shadow-md: 0 4px 16px rgba(107, 45, 91, 0.08), 0 2px 6px rgba(107, 45, 91, 0.05);
    --shadow-lg: 0 12px 40px rgba(107, 45, 91, 0.12), 0 4px 12px rgba(107, 45, 91, 0.07);
    --shadow-xl: 0 24px 60px rgba(107, 45, 91, 0.15), 0 8px 20px rgba(107, 45, 91, 0.09);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--warm-gray-800);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* --- Utility --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

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

/* --- Section Label --- */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-600);
    background: linear-gradient(135deg, var(--amber-100), var(--amber-50));
    padding: 0.4em 1em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

/* --- Section Title --- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--plum-900);
    margin-bottom: 1.25rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--plum-700), var(--plum-500), var(--amber-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--warm-gray-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--warm-gray-900);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(217, 119, 6, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-sm);
}

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

.btn-outline {
    background: transparent;
    color: var(--plum-700);
    border: 2px solid var(--plum-200);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--plum-50);
    border-color: var(--plum-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 45, 91, 0.08);
    transition: all var(--transition-base);
    padding: 0.75rem 0;
}

.navbar.scrolled {
    background: rgba(253, 248, 244, 0.95);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--plum-800);
    font-weight: 400;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    color: var(--plum-600);
}

.nav-logo-icon {
    color: var(--amber-600);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--warm-gray-700);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    color: var(--plum-700);
    background: var(--plum-50);
}

.nav-cta {
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600)) !important;
    color: var(--warm-gray-900) !important;
    box-shadow: 0 2px 10px rgba(217, 119, 6, 0.25);
    margin-left: 0.5rem;
}

.nav-cta:hover {
    box-shadow: 0 4px 18px rgba(217, 119, 6, 0.4) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--plum-800);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: linear-gradient(160deg, var(--plum-900) 0%, var(--plum-800) 50%, var(--plum-700) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    color: var(--amber-300);
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    color: var(--amber-400);
    transform: rotate(90deg);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--plum-100);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--amber-300);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-cta {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 1rem !important;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--warm-gray-900) !important;
    padding: 1rem 2.5rem !important;
    border-radius: var(--radius-full);
    font-weight: 800;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--plum-900) 0%,
        var(--plum-700) 25%,
        var(--plum-600) 45%,
        var(--amber-700) 70%,
        var(--amber-500) 100%
    );
    padding-top: 5rem;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(217, 119, 6, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(168, 85, 120, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(45, 19, 37, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: 2rem 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--amber-200);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.75rem;
}

.hero-badge svg {
    color: var(--amber-400);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-accent {
    color: var(--amber-300);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-detail svg {
    color: var(--amber-400);
    flex-shrink: 0;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--section-padding) 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 480px;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 4px solid var(--cream);
}

.about-img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    top: -20px;
    right: 30%;
    width: 45%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    border: 4px solid var(--cream);
}

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

.about-text .section-label {
    margin-bottom: 0.75rem;
}

.about-text .section-title {
    margin-bottom: 1.5rem;
}

.about-text > p {
    color: var(--warm-gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border: 1px solid var(--plum-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.about-feature strong {
    display: block;
    color: var(--plum-800);
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.about-feature span {
    color: var(--warm-gray-600);
    font-size: 0.9rem;
}

/* ============================================
   MENU
   ============================================ */
.menu {
    background: var(--warm-gray-100);
}

.section-header {
    margin-bottom: 3.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(107, 45, 91, 0.06);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.menu-card-img {
    overflow: hidden;
    height: 200px;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-700);
    background: var(--amber-100);
    padding: 0.3em 0.85em;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--plum-800);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.menu-card-desc {
    font-size: 0.95rem;
    color: var(--warm-gray-600);
    line-height: 1.7;
}

.menu-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--warm-gray-500);
    font-weight: 600;
    padding: 1rem;
    background: rgba(253, 248, 244, 0.8);
    border-radius: var(--radius-md);
    border: 1px dashed var(--plum-200);
}

.menu-note svg {
    color: var(--amber-600);
    flex-shrink: 0;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
    background: var(--cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.visit-info .section-label {
    margin-bottom: 0.75rem;
}

.visit-info .section-title {
    margin-bottom: 1rem;
}

.visit-description {
    color: var(--warm-gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--plum-100), var(--plum-50));
    border: 1px solid var(--plum-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-700);
}

.visit-detail-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-500);
    margin-bottom: 0.15rem;
}

.visit-detail-value {
    display: block;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--warm-gray-800);
}

.visit-detail-value a {
    color: var(--plum-700);
    transition: color var(--transition-fast);
}

.visit-detail-value a:hover {
    color: var(--amber-600);
}

.visit-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Map placeholder */
.visit-map {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--plum-200), var(--plum-100));
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--plum-100);
}

.map-placeholder-content {
    text-align: center;
    padding: 2rem;
}

.map-placeholder-content svg {
    color: var(--plum-500);
    margin-bottom: 1rem;
}

.map-placeholder-content p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--plum-800);
    margin-bottom: 0.25rem;
}

.map-placeholder-content p:last-of-type {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--plum-600);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.visit-hours {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(107, 45, 91, 0.06);
}

.visit-hours h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--plum-800);
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--warm-gray-100);
    font-size: 0.95rem;
}

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

.hours-row span:first-child {
    color: var(--warm-gray-700);
    font-weight: 700;
}

.hours-row span:last-child {
    color: var(--warm-gray-600);
    font-weight: 600;
}

.hours-note {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--warm-gray-500);
    font-style: italic;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(160deg, var(--plum-950) 0%, var(--plum-900) 100%);
    color: var(--plum-200);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: var(--plum-300);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 1rem;
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
}

.footer-logo-icon {
    color: var(--amber-400);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--plum-300);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.35rem 0;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--amber-400);
    transform: translateX(4px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--plum-300);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--amber-400);
    font-weight: 700;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--amber-300);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: var(--plum-400);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        min-height: 360px;
        order: -1;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 85vh;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-images {
        min-height: 280px;
    }

    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }

    .about-img-accent {
        top: -10px;
        right: 20%;
    }

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

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

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.72rem;
        padding: 0.45rem 1rem;
    }

    .hero-details {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .visit-cta-group {
        flex-direction: column;
    }

    .visit-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
}
