/* ============================================================
   Kandil Kebap & Pizza — Fusion Fire Edition
   Dark charcoal base, rust-ember red as primary accent,
   cream typography, Fraunces display + Inter body.
   ============================================================ */

/* =================== DESIGN TOKENS =================== */
:root {
    /* Fusion Fire palette */
    --bg-deep:        #0a0908;
    --bg-card:        #14110e;
    --bg-elevated:    #1d1814;
    --bg-deeper:      #050403;

    --ember:          #8c1d08;
    --ember-hot:      #b02514;
    --ember-dark:     #4d0700;
    --turkish-red:    #c8102e;

    --cream:          #faf3e3;
    --cream-muted:    #d4c3a4;
    --cream-dim:      #8a7b66;

    --border:         #2a2420;
    --border-hot:     #3d2f24;
    --charcoal:       #1a1816;

    /* Legacy aliases (for backwards compat with older markup) */
    --bg-primary:     #0a0908;
    --bg-secondary:   #14110e;
    --text-primary:   #f5ead5;
    --text-secondary: #c9b89b;
    --text-muted:     #8a7b66;
    --accent:         #8c1d08;
    --accent-hover:   #b02514;
    --gold:           #8c1d08;
    --border-strong:  #3d2f24;

    /* Typography */
    --font-display:   'Fraunces', 'Archivo Black', Georgia, serif;
    --font-sans:      'Inter', -apple-system, 'Helvetica Neue', sans-serif;
    --font-serif:     'Fraunces', Georgia, serif;

    /* Spacing scale */
    --space-2xs:      0.375rem;
    --space-xs:       0.625rem;
    --space-sm:       1rem;
    --space-md:       1.75rem;
    --space-lg:       3rem;
    --space-xl:       5rem;
    --space-2xl:      8rem;
    --space-3xl:      11rem;

    /* Container widths */
    --container:      1240px;
    --container-wide: 1400px;
    --container-narrow: 860px;

    --radius:         3px;
    --radius-lg:      6px;
    --radius-xl:      12px;

    --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --ember-glow:     0 12px 52px rgba(140, 29, 8, 0.55);
    --card-shadow:    0 12px 48px rgba(0, 0, 0, 0.5);
}

/* =================== RESET =================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--cream-muted);
    background-color: var(--bg-deep);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--ember);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--ember-hot); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.02;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(3rem, 9vw, 8rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.04;
}

h3 {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    font-weight: 900;
    line-height: 1.1;
}

p { margin-bottom: var(--space-sm); }

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

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

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

section {
    padding: var(--space-2xl) 0;
}

@media (max-width: 768px) {
    section { padding: var(--space-xl) 0; }
}

/* =================== TYPOGRAPHY UTILITIES =================== */
.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ember);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: var(--space-sm);
}

.text-ember { color: var(--ember); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--cream-muted); }

.divider-ember {
    display: block;
    width: 72px;
    height: 3px;
    background: var(--ember);
    border: none;
    margin: var(--space-sm) 0 var(--space-md);
}

.divider-ember.center {
    margin-left: auto;
    margin-right: auto;
}

/* Backwards-compat alias for old markup */
.accent-line {
    display: block;
    width: 72px;
    height: 3px;
    background: var(--ember);
    border: none;
    margin: var(--space-sm) 0 var(--space-md);
}

.accent-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* =================== BUTTONS =================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2.4rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary,
.btn-ember {
    background: var(--ember);
    color: var(--bg-deep);
    border-color: var(--ember);
    box-shadow: var(--ember-glow);
}

.btn-primary:hover,
.btn-ember:hover {
    background: var(--ember-hot);
    border-color: var(--ember-hot);
    color: var(--bg-deep);
    transform: translateY(-2px);
    box-shadow: 0 18px 60px rgba(140, 29, 8, 0.65);
}

.btn-ghost,
.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245, 234, 213, 0.8);
}

.btn-ghost:hover,
.btn-outline:hover {
    border-color: var(--ember);
    color: var(--ember);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--bg-deep);
    color: var(--ember);
    border-color: var(--bg-deep);
}

.btn-dark:hover {
    background: #000;
    color: var(--ember-hot);
}

.btn-lg {
    padding: 1.4rem 3rem;
    font-size: 1rem;
    letter-spacing: 0.14em;
}

/* =================== HEADER / NAV =================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.3rem 0;
    background: rgba(10, 9, 8, 0.82);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 9, 8, 0.96);
    border-bottom-color: var(--border);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -0.025em;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo small {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--ember);
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--cream);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ember);
    border-bottom-color: var(--ember);
}

.nav-cta {
    padding: 0.85rem 1.6rem !important;
    background: var(--ember);
    color: var(--bg-deep) !important;
    border-radius: var(--radius);
    font-weight: 800 !important;
    border-bottom: none !important;
    box-shadow: var(--ember-glow);
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--ember-hot) !important;
    color: var(--bg-deep) !important;
    border-bottom-color: transparent !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 920px) {
    .logo { font-size: 1.6rem; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: var(--bg-card);
        padding: var(--space-xl) var(--space-md);
        transition: right var(--transition);
        border-left: 1px solid var(--border);
        gap: 2rem;
    }
    .nav-links.open { right: 0; }
    .nav-toggle { display: block; }
}

/* =================== HERO =================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem var(--space-md) var(--space-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: saturate(115%) contrast(108%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(10, 9, 8, 0.45) 0%, rgba(10, 9, 8, 0.85) 70%, rgba(10, 9, 8, 1) 100%),
        linear-gradient(180deg, rgba(10, 9, 8, 0.5) 0%, rgba(10, 9, 8, 0.72) 55%, rgba(10, 9, 8, 0.98) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1100px;
    animation: fadeUp 1.1s ease-out;
    position: relative;
}

.hero-kicker {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ember);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    margin-bottom: var(--space-md);
}

.hero-kicker::before,
.hero-kicker::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--ember);
    vertical-align: middle;
    margin: 0 0.9em;
}

.hero h1 {
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(3rem, 9vw, 7.8rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--cream);
}

.hero h1 .text-ember {
    color: var(--ember);
    display: block;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.7;
    color: var(--cream-muted);
    max-width: 780px;
    margin: 0 auto var(--space-lg);
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-mini {
    min-height: 60vh;
}

.hero-mini .hero-content { max-width: 820px; }

.hero-mini h1 {
    font-size: clamp(2.8rem, 7vw, 5.6rem);
}

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

/* =================== OPENING HOURS STRIP =================== */
.opening-banner {
    background: var(--bg-elevated);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.opening-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.opening-banner .label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ember);
    text-transform: uppercase;
    letter-spacing: 0.28em;
}

.opening-banner .hours {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.opening-banner .closed {
    color: var(--cream-dim);
    font-size: 0.85rem;
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =================== STATS ROW =================== */
.stats-row {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 0 var(--space-sm);
    position: relative;
}

.stat + .stat::before {
    content: '';
    position: absolute;
    left: calc(-0.5 * var(--space-md));
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--border-hot);
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 900;
    color: var(--ember);
    line-height: 1;
    letter-spacing: -0.035em;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cream-muted);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    max-width: 280px;
}

@media (max-width: 780px) {
    .stats-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .stat + .stat::before { display: none; }
    .stats-row { padding: var(--space-lg) 0; }
}

/* =================== SECTION HEADER =================== */
.section-header {
    text-align: center;
    max-width: 880px;
    margin: 0 auto var(--space-xl);
}

.section-kicker {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ember);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--cream-muted);
    font-size: 1.1rem;
    max-width: 620px;
    margin: var(--space-sm) auto 0;
}

/* =================== ABOUT =================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-text h2 { margin-bottom: var(--space-md); }

.about-text .divider-ember,
.about-text .accent-line {
    margin: var(--space-md) 0;
}

.about-text p {
    color: var(--cream-muted);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: var(--space-sm);
}

.about-text p + p { margin-top: 1rem; }

.about-signature {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ember);
    margin-top: var(--space-md) !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 120px rgba(10, 9, 8, 0.45);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(115%) contrast(106%);
    transition: transform var(--transition-slow);
}

.about-image:hover img { transform: scale(1.04); }

@media (max-width: 920px) {
    .about-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .about-image { max-width: 520px; margin: 0 auto; }
}

/* =================== SPECIALTIES =================== */
.section-specialties {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.specialty-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.specialty-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 0 1px var(--ember);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 56px rgba(140, 29, 8, 0.35);
}

.specialty-card:hover::before { opacity: 1; }

.specialty-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: var(--bg-elevated);
}

.specialty-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 9, 8, 0.6) 100%);
    pointer-events: none;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(118%) contrast(108%);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialty-card:hover .specialty-image img { transform: scale(1.07); }

.specialty-body {
    padding: var(--space-md) var(--space-md) calc(var(--space-md) + 0.5rem);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.specialty-body h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--cream);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.specialty-body p {
    color: var(--cream-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.specialty-card .card-tag {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--ember);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 0.25rem;
}

/* =================== FEATURE QUOTE =================== */
.feature-quote {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.feature-quote .container-narrow {
    max-width: 1040px;
}

.feature-quote .stars {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.feature-quote .stars svg {
    width: 28px;
    height: 28px;
    fill: var(--ember);
    filter: drop-shadow(0 0 22px rgba(140, 29, 8, 0.7));
}

.feature-quote blockquote {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1.2;
    color: var(--cream);
    letter-spacing: -0.015em;
    margin: 0 auto var(--space-md);
    max-width: 960px;
}

.feature-quote blockquote::before {
    content: '„';
    color: var(--ember);
    font-size: 1.1em;
    line-height: 0;
    margin-right: 0.05em;
}

.feature-quote blockquote::after {
    content: '"';
    color: var(--ember);
    font-size: 1.1em;
    line-height: 0;
    margin-left: 0.05em;
}

.feature-quote .review-meta {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ember);
    text-transform: uppercase;
    letter-spacing: 0.28em;
}

/* =================== CTA BANNER =================== */
.cta-banner {
    background: linear-gradient(135deg, var(--ember) 0%, var(--ember-dark) 100%);
    padding: var(--space-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(10, 9, 8, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner .eyebrow,
.cta-banner .section-kicker {
    color: var(--bg-deep);
    opacity: 0.85;
}

.cta-banner h2 {
    color: var(--bg-deep);
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    margin-bottom: var(--space-md);
    letter-spacing: -0.035em;
    line-height: 1;
}

.cta-banner p {
    color: rgba(10, 9, 8, 0.82);
    font-size: 1.15rem;
    margin-bottom: var(--space-lg);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.cta-banner .btn-dark {
    background: var(--bg-deep);
    color: var(--ember);
    border-color: var(--bg-deep);
    font-size: 1rem;
    padding: 1.3rem 2.8rem;
}

.cta-banner .btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* =================== REVIEWS (legacy, falls noch genutzt) =================== */
.reviews-header { text-align: center; margin-bottom: var(--space-lg); }

.reviews-stars {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: var(--space-sm);
}

.reviews-stars svg {
    width: 26px;
    height: 26px;
    fill: var(--ember);
    filter: drop-shadow(0 0 18px rgba(140, 29, 8, 0.55));
}

.reviews-rating {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--cream);
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.reviews-rating span {
    color: var(--cream-dim);
    font-size: 0.85rem;
    font-family: var(--font-sans);
    font-weight: 500;
}

/* =================== MENU (Speisekarte) =================== */
.menu-category { margin-bottom: var(--space-2xl); }
.menu-category:last-child { margin-bottom: 0; }

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

.menu-category-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    margin-bottom: var(--space-xs);
}

.menu-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 880px;
    margin: 0 auto;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
}

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

.menu-item-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--cream);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.menu-item-desc {
    color: var(--cream-muted);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.menu-allergens {
    font-size: 0.7rem;
    color: var(--cream-dim);
    font-family: var(--font-sans);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-price {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.45rem;
    color: var(--ember);
    white-space: nowrap;
    padding-left: var(--space-sm);
    letter-spacing: -0.01em;
}

.menu-highlight {
    background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-hot);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    max-width: 880px;
    margin: 0 auto var(--space-xl);
    text-align: center;
    box-shadow: var(--card-shadow), inset 0 1px 0 rgba(140, 29, 8, 0.08);
}

.menu-highlight .kicker {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ember);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-bottom: 0.5rem;
}

.menu-highlight h3 {
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-weight: 900;
}

.menu-highlight p {
    color: var(--cream-muted);
    margin-bottom: 0;
}

.allergens-legend {
    max-width: 880px;
    margin: var(--space-xl) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: center;
}

.allergens-legend h4 {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: var(--space-sm);
}

.allergens-legend p {
    color: var(--cream-dim);
    font-size: 0.85rem;
    line-height: 1.8;
}

/* =================== CONTACT =================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 920px) {
    .contact-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

.contact-info {
    padding: 0;
}

.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 900;
}

.contact-info-row {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-row:last-child { border-bottom: none; }

.contact-info-row svg {
    width: 24px;
    height: 24px;
    color: var(--ember);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-info-row .label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ember);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 0.3rem;
}

.contact-info-row .value {
    color: var(--cream);
    font-size: 1.02rem;
    line-height: 1.55;
    font-weight: 500;
}

.contact-info-row .value a { color: var(--cream); }
.contact-info-row .value a:hover { color: var(--ember); }

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-sm);
}

.hours-table td {
    padding: 0.7rem 0;
    color: var(--cream-muted);
    border-bottom: 1px solid var(--border);
    font-size: 0.98rem;
}

.hours-table td:last-child {
    text-align: right;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.hours-table tr:last-child td { border-bottom: none; }
.hours-table .closed {
    color: var(--cream-dim);
    font-style: italic;
    font-family: var(--font-sans);
    font-weight: 500;
}

/* =================== MAP =================== */
.map-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

.map-placeholder {
    position: absolute;
    inset: 0;
    background-image: url('../assets/map-placeholder.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 8, 0.78);
}

.map-consent {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-md);
    max-width: 360px;
}

.map-consent svg {
    width: 42px;
    height: 42px;
    color: var(--ember);
    margin-bottom: var(--space-xs);
}

.map-consent h4 {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--cream);
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.map-consent p {
    color: var(--cream-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    line-height: 1.55;
}

.map-consent .btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.82rem;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
    filter: grayscale(40%) brightness(0.85);
}

.map-wrapper.loaded .map-placeholder { display: none; }
.map-wrapper.loaded .map-iframe { display: block; }

/* =================== FOOTER =================== */
.site-footer {
    padding: var(--space-xl) 0 var(--space-md);
    background: var(--bg-deeper);
    border-top: 1px solid var(--border);
    color: var(--cream-dim);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

@media (max-width: 780px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
}

.footer-col h5 {
    font-family: var(--font-sans);
    color: var(--cream);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin-bottom: var(--space-sm);
}

.footer-col ul { list-style: none; }
.footer-col li { padding: 0.4rem 0; }

.footer-col a {
    color: var(--cream-muted);
    font-size: 0.92rem;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--ember); }

.footer-brand .logo {
    display: flex;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: var(--cream-dim);
    font-size: 0.9rem;
    max-width: 360px;
    line-height: 1.65;
}

@media (max-width: 780px) {
    .footer-brand p { margin: 0 auto; }
    .footer-brand .logo { align-items: center; }
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.78rem;
    color: var(--cream-dim);
    letter-spacing: 0.04em;
}

.footer-bottom a {
    color: var(--cream-muted);
    margin: 0 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.footer-bottom a:hover { color: var(--ember); }

.made-by {
    margin-top: 0.6rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.made-by a { color: var(--ember); }

/* =================== FADE-IN =================== */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.2, 0.9, 0.3, 1);
}

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

/* =================== SELECTION =================== */
::selection {
    background: var(--ember);
    color: var(--bg-deep);
}

/* =================== MOBILE TWEAKS =================== */
@media (max-width: 640px) {
    body { font-size: 16px; }
    .hero { min-height: 92vh; padding-top: 6rem; }
    .hero h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
    .hero-tagline { font-size: 1rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }
    .menu-item { grid-template-columns: 1fr; }
    .menu-price { padding-left: 0; padding-top: 0.5rem; }
    .feature-quote blockquote { font-size: 1.5rem; line-height: 1.3; }
    .stat-num { font-size: 2.8rem; }
}
