/* ============================================
   AROMA BISTRO
   Old Wethersfield, CT — 2026
   
   Brand-first, mobile-first CSS
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
    /* Brand Colors — Warmer Bistro Palette */
    --navy: #2c3e50;
    --navy-deep: #1a252f;
    --navy-light: #3d566e;
    --gold: #e5a93d;
    --gold-light: #f0c05c;
    --gold-rich: #d4920a;
    --gold-muted: #c49a42;
    --brick: #8b5a3c;
    --brick-light: #a67c5b;
    
    /* Neutrals — Warmer Tones */
    --cream: #fdf9f3;
    --cream-dark: #f5ede0;
    --warm-white: #fffcf7;
    --text-primary: #3d3632;
    --text-secondary: #5d5650;
    --text-muted: #8a837d;
    --border-light: #e8e2d9;
    --border-medium: #d9d1c4;
    
    /* Accents */
    --green-fresh: #5a7c52;
    --green-light: #ecf2e8;
    
    /* Typography */
    --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
    
    /* Textures */
    --brick-pattern: url("data:image/svg+xml,%3Csvg width='42' height='22' viewBox='0 0 42 22' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238b5a3c' fill-opacity='0.03'%3E%3Cpath d='M0 0h20v10H0zM22 0h20v10H22zM11 12h20v10H11z'/%3E%3C/g%3E%3C/svg%3E");
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Layout */
    --container-max: 1140px;
    --container-padding: 1.25rem;
    --header-height: 64px;
    
    /* Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 2px 8px rgba(26, 46, 68, 0.06);
    --shadow-medium: 0 4px 24px rgba(26, 46, 68, 0.08);
    --shadow-strong: 0 12px 48px rgba(26, 46, 68, 0.12);
    
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---------- Typography ---------- */
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-muted);
    margin-bottom: var(--space-sm);
}

.section-label.light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--navy);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-top: var(--space-md);
    max-width: 540px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    color: var(--navy-deep);
    background: var(--gold);
    box-shadow: 0 4px 16px rgba(196, 163, 90, 0.25);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196, 163, 90, 0.35);
}

.btn-secondary {
    color: var(--warm-white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-outline:hover {
    background: var(--cream);
    border-color: var(--navy-light);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(26, 46, 68, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--warm-white);
}

.logo-sub {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.nav-desktop {
    display: none;
    gap: var(--space-xl);
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition-fast);
}

.nav-desktop a:hover {
    color: var(--warm-white);
}

.header-cta {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy-deep);
    background: var(--gold);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.header-cta:hover {
    background: var(--gold-light);
}

/* Hide header and logo on mobile */
@media (max-width: 767px) {
    .header {
        display: none;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-cta {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: calc(var(--header-height) + var(--space-xl)) 0 0;
    background: var(--navy-deep);
    overflow: hidden;
}

/* Top section with headline */
.hero-top {
    text-align: center;
    padding: 0 var(--container-padding);
    margin-bottom: var(--space-xl);
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    margin-bottom: var(--space-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    background: rgba(212, 168, 83, 0.12);
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: var(--radius-md);
}

.hero-badge svg {
    flex-shrink: 0;
}

.hero-headline {
    margin: 0 0 var(--space-md);
}

.hero-headline-line1 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 7vw, 4rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--warm-white);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-headline-line2 {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 3vw, 1.75rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--gold-light);
    margin-top: var(--space-xs);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
    .hero-subtext {
        font-size: 1.0625rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        gap: var(--space-md);
    }
}

/* Food Preview Strip */
.hero-food-strip {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--container-padding);
    margin-bottom: var(--space-lg);
    width: 100%;
    max-width: 600px;
}

@media (min-width: 640px) {
    .hero-food-strip {
        gap: var(--space-2xl);
        max-width: 700px;
    }
}

.food-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
    max-width: 140px;
}

.food-strip-image {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

@media (min-width: 640px) {
    .food-strip-image {
        width: 88px;
        height: 88px;
    }
}

.food-strip-image:hover {
    transform: scale(1.08);
    border-color: var(--gold);
}

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

.food-strip-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .food-strip-label {
        font-size: 0.75rem;
    }
}

/* Ripped Logo Image */
.hero-rip-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: auto;
}

.hero-rip-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-scroll-hint {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--container-padding);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-arrow {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--cream);
    background-image: var(--brick-pattern);
    position: relative;
}

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

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Menu Shell & Loading States */
.menu-shell {
    position: relative;
    min-height: 200px;
}

.menu-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-3xl);
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.menu-loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border-light);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.menu-loading.hidden,
.menu-error.hidden {
    display: none;
}

.menu-error {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-lg);
}

.menu-error p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.menu-error a {
    color: var(--gold-muted);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.menu-error a:hover {
    color: var(--gold);
}

/* Menu Tabs / Segmented Control */
.menu-controls {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.menu-tabs {
    display: inline-flex;
    background: var(--warm-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 4px;
    gap: 4px;
}

.menu-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-tab:hover {
    color: var(--navy);
    background: var(--cream);
}

.menu-tab[aria-selected="true"],
.menu-tab.active {
    color: var(--navy-deep);
    background: var(--gold);
    box-shadow: 0 2px 8px rgba(196, 163, 90, 0.25);
}

.menu-tab:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Section Note (under tabs) */
.menu-section-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: var(--space-xl);
    margin-top: calc(-1 * var(--space-md));
}

/* Menu Banner */
.menu-banner {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
    .menu-banner {
        height: 200px;
    }
}

@media (min-width: 900px) {
    .menu-banner {
        height: 240px;
    }
}

.menu-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.menu-banner-img.active {
    opacity: 1;
}

.menu-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 62, 80, 0.1) 0%,
        rgba(44, 62, 80, 0.25) 100%
    );
    pointer-events: none;
}

/* Menu Grid (Category Cards) */
.menu-grid {
    width: 100%;
}

.menu-grid-inner {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .menu-grid-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .menu-grid-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

.menu-section-note {
    grid-column: 1 / -1;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.menu-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    cursor: pointer;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-muted);
}

.menu-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.menu-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.menu-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--gold-muted);
}

.menu-card-icon svg {
    width: 100%;
    height: 100%;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: var(--space-xs);
}

.menu-card-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.menu-card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.menu-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.menu-card-count {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
}

.menu-card-arrow {
    width: 20px;
    height: 20px;
    color: var(--gold-muted);
    transition: transform var(--transition-fast);
}

.menu-card:hover .menu-card-arrow {
    transform: translateX(4px);
}

.menu-card-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-sm);
}

.menu-card-tag {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 4px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--green-fresh);
    background: var(--green-light);
    border-radius: var(--radius-full);
}

.menu-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

/* ============================================
   MENU MODAL / DRAWER
   ============================================ */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.menu-modal[hidden] {
    display: none;
}

.menu-modal.open {
    pointer-events: auto;
    opacity: 1;
}

.menu-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 37, 47, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.menu-modal-container {
    position: relative;
    width: 100%;
    max-height: 85vh;
    max-height: 85dvh;
    background: var(--warm-white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
}

.menu-modal.open .menu-modal-container {
    transform: translateY(0);
}

/* Drawer handle for mobile */
.menu-modal-container::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--border-medium);
    border-radius: 2px;
}

.menu-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl) var(--space-lg) var(--space-md);
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}

.menu-modal-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
    padding-right: var(--space-md);
}

.menu-modal-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 2px;
}

.menu-modal-close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: var(--cream);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.menu-modal-close:hover {
    color: var(--navy);
    background: var(--cream-dark);
}

.menu-modal-close:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.menu-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
    -webkit-overflow-scrolling: touch;
}

/* Category Note in Modal */
.menu-modal-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    padding: var(--space-sm) var(--space-md);
    background: var(--cream);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

/* Menu Items List */
.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.menu-item {
    padding: var(--space-md);
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.menu-item:hover {
    background: var(--cream-dark);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-xs);
}

.menu-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

.menu-item-price {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gold-muted);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.menu-item-note {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-xs);
}

/* Desktop: Centered Modal */
@media (min-width: 768px) {
    .menu-modal {
        align-items: center;
        padding: var(--space-xl);
    }
    
    .menu-modal-container {
        max-width: 600px;
        max-height: 80vh;
        border-radius: var(--radius-xl);
        transform: translateY(20px) scale(0.98);
    }
    
    .menu-modal.open .menu-modal-container {
        transform: translateY(0) scale(1);
    }
    
    /* Remove drawer handle on desktop */
    .menu-modal-container::before {
        display: none;
    }
    
    .menu-modal-header {
        padding: var(--space-lg) var(--space-xl);
    }
    
    .menu-modal-body {
        padding: var(--space-xl);
    }
}

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

/* ============================================
   FOOD BAND — Visual Break
   ============================================ */
.food-band {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.food-band-image {
    position: absolute;
    inset: 0;
    background: url('assets/bagelsandwich.jpg') center / cover no-repeat;
    filter: brightness(0.85) saturate(1.1);
}

.food-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        var(--cream) 0%,
        rgba(253, 249, 243, 0) 15%,
        rgba(253, 249, 243, 0) 85%,
        var(--navy) 100%
    );
}

@media (min-width: 768px) {
    .food-band {
        height: 280px;
    }
}

/* ============================================
   SAUCE SECTION — Friendly Callout
   ============================================ */
.sauce-section {
    position: relative;
    padding: var(--space-3xl) 0;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    overflow: hidden;
}

.sauce-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 80% 50%, rgba(212, 168, 83, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.sauce-content {
    position: relative;
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

.sauce-headline {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--warm-white);
    margin-bottom: var(--space-md);
}

.sauce-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-md);
    max-width: 480px;
}

.sauce-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold);
    margin-top: var(--space-lg);
}

.sauce-visual {
    display: flex;
    justify-content: center;
}

.sauce-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    text-align: center;
    background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 50%;
    box-shadow: 
        0 16px 40px rgba(212, 168, 83, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.25);
    animation: floatBadge 6s ease-in-out infinite;
}

.sauce-badge-main {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy-deep);
    opacity: 0.7;
}

.sauce-badge-accent {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy-deep);
    line-height: 1.2;
}

.sauce-badge-sub {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy-deep);
    opacity: 0.6;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

@media (min-width: 768px) {
    .sauce-content {
        grid-template-columns: 1fr auto;
        gap: var(--space-3xl);
    }
    
    .sauce-badge {
        width: 180px;
        height: 180px;
    }
    
    .sauce-badge-accent {
        font-size: 1.375rem;
    }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--warm-white);
    background-image: var(--brick-pattern);
}

.reviews-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
}

.stars svg {
    width: 18px;
    height: 18px;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.reviews-grid {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.review-card {
    padding: var(--space-xl);
    background: var(--cream);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--gold);
}

.review-text {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.review-text::before {
    content: '"';
}

.review-text::after {
    content: '"';
}

.review-footer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.review-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
}

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

.review-source::before {
    content: '·';
    margin-right: var(--space-sm);
}

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .review-card:nth-child(4) {
        grid-column: 1;
    }
    
    .review-card:nth-child(5) {
        grid-column: 2;
    }
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit-section {
    padding: var(--space-3xl) 0 var(--space-4xl);
    background: var(--cream-dark);
    position: relative;
}

.visit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brick) 0%, var(--gold) 50%, var(--brick) 100%);
    opacity: 0.3;
}

/* Historic Main Street callout */
.main-street-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    margin-top: var(--space-lg);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brick);
    background: rgba(139, 90, 60, 0.08);
    border: 1px solid rgba(139, 90, 60, 0.15);
    border-radius: var(--radius-md);
}

.main-street-badge svg {
    color: var(--brick-light);
}

.visit-grid {
    display: grid;
    gap: var(--space-2xl);
}

.visit-details {
    display: grid;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.visit-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.visit-address {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.visit-address strong {
    font-weight: 600;
}

.visit-hours li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-light);
}

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

.visit-hours span:first-child {
    color: var(--text-secondary);
}

.visit-hours span:last-child {
    font-weight: 600;
    color: var(--navy);
}

.visit-phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--transition-fast);
}

.visit-phone:hover {
    color: var(--gold-muted);
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

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

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--warm-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
}

.feature-pill svg {
    flex-shrink: 0;
    color: var(--gold-muted);
}

.visit-map {
    min-height: 300px;
}

.map-container {
    position: relative;
    height: 100%;
    min-height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--border-light);
}

.map-container iframe {
    position: absolute;
    inset: 0;
}

.map-overlay-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    color: var(--text-secondary);
}

.map-pin {
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.map-label {
    font-size: 0.9375rem;
    font-weight: 500;
}

.map-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Hide fallback when iframe loads */
.map-container iframe:not([src=""]) ~ .map-overlay-fallback {
    display: none;
}

@media (min-width: 768px) {
    .visit-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
        align-items: start;
    }
    
    .visit-map {
        min-height: 400px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--navy-deep);
    color: var(--warm-white);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    opacity: 0.95;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.625rem 1rem;
    margin-top: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold);
    background: rgba(196, 163, 90, 0.1);
    border: 1px solid rgba(196, 163, 90, 0.25);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.footer-social:hover {
    background: rgba(196, 163, 90, 0.2);
    border-color: rgba(196, 163, 90, 0.4);
}

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

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

/* ============================================
   MOBILE ACTION BAR
   ============================================ */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    justify-content: space-around;
    padding: var(--space-sm) var(--space-md);
    padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom, 0));
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.action-item:hover,
.action-item:active {
    color: var(--warm-white);
    background: rgba(255, 255, 255, 0.1);
}

.action-item.accent {
    color: var(--gold);
}

.action-item.accent:hover,
.action-item.accent:active {
    color: var(--gold-light);
}

@media (min-width: 768px) {
    .mobile-action-bar {
        display: none;
    }
}

/* Add bottom padding to body for mobile action bar */
@media (max-width: 767px) {
    body {
        padding-bottom: 72px;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

/* Scroll-triggered reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Selection */
::selection {
    background: rgba(196, 163, 90, 0.3);
    color: var(--navy-deep);
}
