/* ========================================
   i-jive — Salem Café & Bar
   Bold Editorial Style
   Charcoal + Coral Palette
======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-charcoal: #1A1A1A;
    --color-charcoal-light: #2D2D2D;
    --color-charcoal-mid: #3A3A3A;
    --color-coral: #FF6B4A;
    --color-coral-dark: #E85A3A;
    --color-coral-light: #FF8A70;
    --color-cream: #FAF7F4;
    --color-cream-dark: #F0EBE6;
    --color-white: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-light: #6B6B6B;
    --color-text-inverse: #FAF7F4;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--color-coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 74, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-charcoal);
}

.btn-outline:hover {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-charcoal);
}

.btn-ghost:hover {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

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

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-coral);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-coral);
    transition: width var(--transition);
}

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

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

.nav-cta {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-coral);
    border: 1.5px solid var(--color-coral);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-cta:hover {
    background-color: var(--color-coral);
    color: var(--color-white);
}

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

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition);
    transform-origin: center;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition);
}

.hamburger::before {
    margin-top: -6px;
}

.hamburger::after {
    margin-top: 6px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    margin-top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    margin-top: 0;
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: var(--color-charcoal);
    display: flex;
    flex-direction: column;
    padding: var(--space-lg) var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.mobile-close {
    padding: 8px;
    color: var(--color-white);
    transition: color var(--transition);
}

.mobile-close:hover {
    color: var(--color-coral);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-white);
    transition: color var(--transition);
}

.mobile-link:hover {
    color: var(--color-coral);
}

.mobile-cta a {
    display: inline-block;
    margin-top: var(--space-md);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-coral);
    border: 1.5px solid var(--color-coral);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-cta a:hover {
    background-color: var(--color-coral);
    color: var(--color-white);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    background-color: var(--color-charcoal);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-lg);
    padding: calc(72px + var(--space-lg)) var(--space-md) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    padding-right: var(--space-md);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: var(--space-md);
}

.hero-subheadline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-detail a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.hero-detail a:hover {
    color: var(--color-coral);
}

.hero-detail svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-img-wrapper {
    position: relative;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.hero-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    background-color: var(--color-coral);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.6;
}

/* Hero Scroll Indicator */
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-md);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.hero-scroll svg {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* --- About Section --- */
.about {
    padding: var(--space-2xl) 0;
    background-color: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-content {
    padding-right: var(--space-md);
}

.about-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(26, 26, 26, 0.15);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

/* --- Menu Section --- */
.menu {
    padding: var(--space-2xl) 0;
    background-color: var(--color-charcoal);
}

.menu .section-eyebrow {
    color: var(--color-coral);
}

.menu .section-title {
    color: var(--color-white);
    text-align: center;
}

.menu .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0 auto var(--space-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.menu-tab {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.menu-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.menu-tab.active {
    color: var(--color-coral);
    border-color: var(--color-coral);
    background-color: rgba(255, 107, 74, 0.08);
}

.menu-tab svg {
    flex-shrink: 0;
}

/* Menu Panels */
.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: 960px;
    margin: 0 auto;
}

.menu-category {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
}

.item-name {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-white);
}

.item-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.menu-footer {
    text-align: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-footer p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-md);
}

.menu-footer .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.menu-footer .btn-outline:hover {
    border-color: var(--color-white);
    background-color: var(--color-white);
    color: var(--color-charcoal);
}

/* --- Vibe Section --- */
.vibe {
    padding: var(--space-2xl) 0;
    background-color: var(--color-cream);
}

.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.vibe-content {
    padding-right: var(--space-md);
}

.vibe-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.vibe-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.vibe-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.vibe-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-charcoal);
    border-radius: var(--radius-md);
    color: var(--color-coral);
}

.vibe-feature-text h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.vibe-feature-text p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.vibe-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.vibe-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.vibe-img-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.vibe-img-stack img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* --- Visit Section --- */
.visit {
    padding: var(--space-2xl) 0;
    background-color: var(--color-cream-dark);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.visit-info {
    padding-right: var(--space-md);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.visit-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-charcoal);
    border-radius: var(--radius-md);
    color: var(--color-coral);
}

.visit-detail h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
}

.visit-detail p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--color-coral);
    transition: color var(--transition);
}

.visit-detail a:hover {
    color: var(--color-coral-dark);
    text-decoration: underline;
}

.visit-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 500px;
    display: block;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: var(--space-2xl) 0;
    background-color: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-headline {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cta-actions .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.cta-actions .btn-ghost:hover {
    border-color: var(--color-white);
    background-color: var(--color-white);
    color: var(--color-charcoal);
}

/* --- Footer --- */
.footer {
    background-color: var(--color-charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-mark {
    font-size: 2.5rem;
}

.footer-brand .logo-text {
    font-size: 2rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: var(--space-sm);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-white);
}

.footer-contact li:not(:last-child) a {
    margin-bottom: 0.125rem;
}

.footer-contact li:last-child {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(72px + var(--space-md));
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-image {
        order: 0;
        min-height: 400px;
        max-height: 50vh;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-details {
        align-items: center;
    }

    .hero-accent {
        display: none;
    }

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

    .about-content,
    .vibe-content,
    .visit-info {
        padding-right: 0;
    }

    .about-image img {
        height: 400px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding-top: calc(72px + var(--space-md));
    }

    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-image {
        min-height: 300px;
        max-height: 40vh;
    }

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

    .vibe-img-main img {
        height: 280px;
    }

    .vibe-img-stack img {
        height: 220px;
    }

    .visit-map iframe {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-brand {
        grid-column: auto;
    }

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

    .about-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .menu-tabs {
        flex-direction: column;
        align-items: center;
    }

    .menu-tab {
        width: 100%;
        justify-content: center;
    }

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

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

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

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

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-scroll svg {
        animation: none;
    }

    .menu-panel.active {
        animation: none;
    }
}
