/* ============================================
   Le's Baguette Banh Mi Cafe — Styles
   Premium Dark Luxury · Burgundy + Blush
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --bg-primary: #0D0A0A;
    --bg-secondary: #141010;
    --bg-tertiary: #1A1515;
    --bg-card: #1C1616;
    --bg-card-hover: #221C1C;
    
    --burgundy-deep: #5C1A24;
    --burgundy: #7B2D3B;
    --burgundy-light: #9E3A4A;
    --burgundy-muted: #3D1520;
    
    --blush: #D4A574;
    --blush-light: #E8C4A0;
    --blush-pale: #F2DFC8;
    --blush-muted: #A87B52;
    
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-pale: #E8D5A0;
    
    --text-primary: #F5F0EB;
    --text-secondary: #C4B8AE;
    --text-muted: #8A7E74;
    --text-dark: #1A1412;
    
    --border-subtle: rgba(212, 165, 116, 0.1);
    --border-medium: rgba(212, 165, 116, 0.2);
    --border-strong: rgba(212, 165, 116, 0.35);
    
    --gold-glow: rgba(201, 168, 76, 0.15);
    --burgundy-glow: rgba(123, 45, 59, 0.2);
    
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 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.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    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;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 48px;
    }
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--blush);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
}

.accent-gold {
    color: var(--blush);
    font-style: italic;
}

/* ---------- Button ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--text-primary);
    border: 1px solid var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-light);
    border-color: var(--burgundy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--burgundy-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--blush);
    background: rgba(212, 165, 116, 0.06);
}

.btn-gold {
    background: var(--blush);
    color: var(--text-dark);
    border: 1px solid var(--blush);
}

.btn-gold:hover {
    background: var(--blush-light);
    border-color: var(--blush-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline-gold {
    background: transparent;
    color: var(--blush);
    border: 1px solid var(--border-strong);
}

.btn-outline-gold:hover {
    background: rgba(212, 165, 116, 0.08);
    border-color: var(--blush);
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-letter {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--blush);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blush);
    transition: width var(--transition-base);
}

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

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

.nav-cta {
    padding: 10px 22px !important;
    background: var(--burgundy) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-md) !important;
    font-weight: 500 !important;
    transition: all var(--transition-base) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--burgundy-light) !important;
    transform: translateY(-1px);
}

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

.hamburger {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(13, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 12px 24px;
    transition: color var(--transition-fast);
}

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

.mobile-divider {
    width: 40px;
    height: 1px;
    background: var(--border-medium);
    margin: 8px 0;
}

.mobile-phone, .mobile-address {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    color: var(--text-muted) !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px !important;
}

.mobile-phone:hover, .mobile-address:hover {
    color: var(--blush) !important;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(92, 26, 36, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(123, 45, 59, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 30% 30% at 90% 90%, rgba(201, 168, 76, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 28px;
}

.badge-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--blush);
}

/* Headline */
.hero-headline {
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.headline-accent {
    color: var(--blush);
    font-style: italic;
}

.headline-highlight {
    position: relative;
    display: inline;
}

.headline-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--burgundy);
    opacity: 0.6;
    border-radius: 2px;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

/* Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--blush);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-medium);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
    padding-right: 0;
}

.hero-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

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

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 10, 10, 0.4) 100%);
    pointer-events: none;
}

.hero-img-primary {
    width: 100%;
    aspect-ratio: 5/6.5;
}

.hero-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 70%;
    aspect-ratio: 4/3;
    border: 3px solid var(--bg-primary);
    z-index: 2;
}

.hero-img-accent {
    position: absolute;
    top: 30%;
    right: -20px;
    width: 50%;
    aspect-ratio: 1;
    z-index: 3;
    border: 3px solid var(--bg-primary);
}

/* Floating Card */
.hero-floating-card {
    position: absolute;
    bottom: 60px;
    right: -10px;
    z-index: 4;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.fc-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.fc-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Decorative */
.hero-deco {
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
}

.hero-deco-top-right {
    top: 8%;
    right: 2%;
}

.hero-deco-bottom-left {
    bottom: 12%;
    left: 3%;
}

/* ---------- Marquee ---------- */
.marquee-strip {
    background: var(--burgundy-deep);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--blush-pale);
    letter-spacing: 0.08em;
    white-space: nowrap;
    opacity: 0.85;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- Menu Section ---------- */
.menu-section {
    padding: 100px 0 110px;
    background: var(--bg-secondary);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* Category Tabs */
.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.menu-cat {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    background: transparent;
    transition: all var(--transition-base);
}

.menu-cat:hover {
    color: var(--text-secondary);
    border-color: var(--border-medium);
}

.menu-cat.active {
    background: var(--burgundy);
    color: var(--text-primary);
    border-color: var(--burgundy);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.menu-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.menu-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.menu-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.menu-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--burgundy);
    color: var(--text-primary);
    border-radius: 100px;
}

.menu-badge-green {
    background: #2D5A3D;
    color: #B8D4BA;
}

.menu-card-body {
    padding: 24px;
}

.menu-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Hidden cards */
.menu-card.hidden {
    display: none;
}

/* ---------- About Section ---------- */
.about-section {
    padding: 110px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

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

.about-img-float {
    position: absolute;
    bottom: -32px;
    right: -16px;
    width: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--bg-primary);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

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

.about-exp-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--burgundy);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(92, 26, 36, 0.4);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--blush);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* About Content */
.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- Experience Section ---------- */
.experience-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
}

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 10, 10, 0.88) 0%,
        rgba(92, 26, 36, 0.75) 50%,
        rgba(13, 10, 10, 0.88) 100%
    );
}

.experience-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.experience-content .section-title {
    margin-bottom: 24px;
}

.experience-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}

.experience-content .btn-gold {
    margin: 0 auto;
}

/* ---------- Visit Section ---------- */
.visit-section {
    padding: 110px 0;
    background: var(--bg-secondary);
    position: relative;
}

.visit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.visit-info .section-title {
    margin-bottom: 36px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-value {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
}

.detail-link {
    color: var(--blush);
    transition: color var(--transition-fast);
}

.detail-link:hover {
    color: var(--blush-light);
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Map */
.visit-map .map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/3;
}

.visit-map .map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(0.4) contrast(1.1);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 56px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-letter {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--blush);
    line-height: 1;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 4px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-address, .footer-hours {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-phone {
    font-size: 16px !important;
    color: var(--blush) !important;
    font-weight: 500 !important;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-locale {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- 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;
    }
    
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
    
    .marquee-track {
        animation: none;
    }
}

/* ---------- Tablet ---------- */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .hero-image-stack {
        padding-right: 0;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ---------- Desktop ---------- */
@media (min-width: 1024px) {
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero-img-secondary {
        left: -40px;
        bottom: -50px;
    }
    
    .hero-img-accent {
        right: -30px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------- Large Desktop ---------- */
@media (min-width: 1400px) {
    .hero-headline {
        font-size: 4.5rem;
    }
}
