/* ==========================================================================
   't Luykje — Modern Restaurant Theme
   Palette: warm browns, cream, brass-gold, deep charcoal
   ========================================================================== */

:root {
    --color-bg: #faf6ef;
    --color-bg-alt: #f1ead9;
    --color-dark: #261610;
    --color-dark-2: #3a2418;
    --color-text: #2b1d15;
    --color-text-soft: #6b5848;
    --color-line: #e2d6bf;
    --color-accent: #b88746;
    --color-accent-deep: #8c5e2a;
    --color-cream: #fffbf3;
    --color-white: #ffffff;

    --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --radius-sm: 4px;
    --radius: 10px;
    --radius-lg: 18px;

    --shadow-sm: 0 2px 8px rgba(38, 22, 16, 0.06);
    --shadow: 0 12px 36px rgba(38, 22, 16, 0.10);
    --shadow-lg: 0 30px 80px rgba(38, 22, 16, 0.18);

    --container: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-accent-deep);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--color-dark); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-dark);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute;
    top: -40px; left: 16px;
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    z-index: 100;
    transition: top var(--transition);
}
.skip-link:focus { top: 16px; color: var(--color-cream); }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-accent-deep);
    margin: 0 0 1em;
}
.eyebrow-light { color: var(--color-accent); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-dark);
    color: var(--color-cream);
}
.btn-primary:hover {
    background: var(--color-accent-deep);
    color: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-ghost {
    background: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}
.btn-ghost:hover {
    background: var(--color-dark);
    color: var(--color-cream);
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 18px 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.is-scrolled {
    background: rgba(250, 246, 239, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-display);
    color: var(--color-dark);
    font-weight: 600;
}
.brand:hover { color: var(--color-accent-deep); }
.brand-mark {
    font-style: italic;
    font-size: 1.4rem;
    color: var(--color-accent);
}
.brand-name {
    font-size: 1.6rem;
    letter-spacing: 0.01em;
}

.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .brand:hover {
    color: var(--color-cream);
}
.site-header:not(.is-scrolled) .nav-list a { color: var(--color-cream); }
.site-header:not(.is-scrolled) .nav-toggle-bar { background: var(--color-cream); }

/* ---------- Navigation ---------- */
.primary-nav { display: flex; align-items: center; }
.nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-list a {
    display: inline-block;
    padding: 8px 14px;
    color: var(--color-dark);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 999px;
    transition: all var(--transition);
}
.nav-list a:hover { color: var(--color-accent-deep); }

.nav-cta {
    background: var(--color-accent);
    color: var(--color-cream) !important;
    padding: 10px 20px !important;
    border: 1.5px solid transparent;
}
.nav-cta:hover {
    background: var(--color-dark) !important;
    color: var(--color-cream) !important;
}
.site-header:not(.is-scrolled) .nav-cta {
    background: var(--color-cream);
    color: var(--color-dark) !important;
}
.site-header:not(.is-scrolled) .nav-cta:hover {
    background: var(--color-accent);
    color: var(--color-cream) !important;
}

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}
.nav-toggle-bar {
    display: block;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--color-cream);
    overflow: hidden;
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(135deg, rgba(20, 12, 8, 0.78) 0%, rgba(38, 22, 16, 0.55) 60%, rgba(140, 94, 42, 0.35) 100%),
        radial-gradient(ellipse at 20% 30%, #4a2d1d 0%, #1a0f08 100%);
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(184, 135, 70, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(184, 135, 70, 0.12) 0%, transparent 50%);
    opacity: 0.9;
}

.hero::before {
    content: "'t";
    position: absolute;
    right: -4vw;
    bottom: -10vw;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(22rem, 42vw, 44rem);
    color: var(--color-accent);
    opacity: 0.07;
    line-height: 0.9;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
}

.hero-embers {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-embers span {
    position: absolute;
    bottom: -14px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 10px 2px var(--color-accent), 0 0 22px 4px rgba(184, 135, 70, 0.4);
    opacity: 0;
    animation: ember-rise 9s ease-in infinite;
}
.hero-embers span:nth-child(1)  { left: 6%;  animation-delay: 0s;    animation-duration: 8s;  width: 4px; height: 4px; }
.hero-embers span:nth-child(2)  { left: 14%; animation-delay: 2.2s;  animation-duration: 10s; }
.hero-embers span:nth-child(3)  { left: 22%; animation-delay: 4.5s;  animation-duration: 7s;  width: 6px; height: 6px; }
.hero-embers span:nth-child(4)  { left: 31%; animation-delay: 1.1s;  animation-duration: 9s; }
.hero-embers span:nth-child(5)  { left: 39%; animation-delay: 6s;    animation-duration: 11s; width: 3px; height: 3px; }
.hero-embers span:nth-child(6)  { left: 48%; animation-delay: 3s;    animation-duration: 8s; }
.hero-embers span:nth-child(7)  { left: 56%; animation-delay: 5.5s;  animation-duration: 10s; width: 4px; height: 4px; }
.hero-embers span:nth-child(8)  { left: 64%; animation-delay: 0.7s;  animation-duration: 9s; }
.hero-embers span:nth-child(9)  { left: 72%; animation-delay: 7s;    animation-duration: 8s;  width: 5px; height: 5px; }
.hero-embers span:nth-child(10) { left: 80%; animation-delay: 2.8s;  animation-duration: 11s; }
.hero-embers span:nth-child(11) { left: 88%; animation-delay: 5s;    animation-duration: 9s;  width: 3px; height: 3px; }
.hero-embers span:nth-child(12) { left: 94%; animation-delay: 1.5s;  animation-duration: 10s; }
.hero-embers span:nth-child(13) { left: 18%; animation-delay: 8s;    animation-duration: 9s; }
.hero-embers span:nth-child(14) { left: 68%; animation-delay: 4s;    animation-duration: 12s; width: 4px; height: 4px; }

@keyframes ember-rise {
    0%   { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
    10%  { opacity: 0.85; }
    50%  { transform: translateY(-50vh) translateX(20px) scale(1); opacity: 0.7; }
    80%  { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(-15px) scale(0.3); opacity: 0; }
}

.hero-content {
    padding: 160px 24px 120px;
    max-width: 880px;
    position: relative;
    z-index: 1;
}

.hero-content .eyebrow {
    color: var(--color-accent);
}

.hero-title {
    color: var(--color-cream);
    margin-bottom: 0.4em;
    font-weight: 500;
}
.hero-title em {
    font-style: italic;
    color: var(--color-accent);
    font-weight: 600;
}
.hero-title .amp {
    font-style: italic;
    color: var(--color-accent);
    font-weight: 400;
}

.hero-lead {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    max-width: 600px;
    line-height: 1.6;
    color: rgba(255, 251, 243, 0.88);
    margin-bottom: 2.4em;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-actions .btn-primary {
    background: var(--color-accent);
    color: var(--color-dark);
}
.hero-actions .btn-primary:hover {
    background: var(--color-cream);
    color: var(--color-dark);
}
.hero-actions .btn-ghost {
    color: var(--color-cream);
    border-color: rgba(255, 251, 243, 0.5);
}
.hero-actions .btn-ghost:hover {
    background: var(--color-cream);
    color: var(--color-dark);
    border-color: var(--color-cream);
}

.hero-meta {
    list-style: none;
    margin: 0; padding: 24px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    border-top: 1px solid rgba(255, 251, 243, 0.18);
    color: rgba(255, 251, 243, 0.85);
    font-size: 0.95rem;
}
.hero-meta strong {
    color: var(--color-accent);
    font-weight: 500;
    margin-right: 6px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    border: 1.5px solid rgba(255, 251, 243, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
}
.hero-scroll span {
    width: 3px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ---------- Sections ---------- */
.section {
    padding: clamp(70px, 10vw, 130px) 0;
}
.section-dark {
    background: var(--color-dark);
    color: var(--color-cream);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--color-cream);
}

.section-head {
    max-width: 720px;
    margin: 0 auto clamp(40px, 6vw, 70px);
    text-align: center;
}
.section-lead {
    color: var(--color-text-soft);
    font-size: 1.05rem;
}
.section-dark .section-lead { color: rgba(255, 251, 243, 0.75); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

/* ---------- About ---------- */
.about-image {
    position: relative;
    margin: 0;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(38, 22, 16, 0.5), rgba(140, 94, 42, 0.3)),
        radial-gradient(ellipse at 30% 30%, #6b4226 0%, #2b1810 100%);
    box-shadow: var(--shadow-lg);
}
.about-image-frame {
    position: absolute;
    inset: 18px;
    border: 1.5px solid rgba(255, 251, 243, 0.25);
    border-radius: var(--radius);
    pointer-events: none;
}
.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(184, 135, 70, 0.18), transparent 55%),
        radial-gradient(circle at 30% 85%, rgba(184, 135, 70, 0.12), transparent 60%);
    pointer-events: none;
}

.about-crest {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 251, 243, 0.92);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    padding: 24px;
}
.about-crest-mark {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--color-accent);
    line-height: 1;
}
.about-crest-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    letter-spacing: 0.01em;
    line-height: 1;
    margin-top: 4px;
}
.about-crest-rule {
    width: 60px;
    height: 1px;
    background: rgba(255, 251, 243, 0.5);
    margin: 22px 0 16px;
}
.about-crest-est {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    color: rgba(255, 251, 243, 0.78);
}

.about-text h2 { margin-bottom: 0.8em; }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
}
.feature-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text-soft);
    padding: 14px 0;
    border-top: 1px solid var(--color-line);
}
.feature-list li span {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-accent-deep);
    min-width: 50px;
}

/* ---------- Menu ---------- */
.section-menu .section-head { color: var(--color-cream); }

/* Tabs */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px;
    background: rgba(255, 251, 243, 0.06);
    border: 1px solid rgba(255, 251, 243, 0.08);
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 56px;
}
.menu-tab {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 11px 22px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 251, 243, 0.7);
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.menu-tab:hover { color: var(--color-cream); }
.menu-tab:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
.menu-tab.is-active {
    background: var(--color-accent);
    color: var(--color-dark);
}

.menu-panels { position: relative; }
.menu-panel {
    display: none;
    animation: menu-fade 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-panel.is-active { display: block; }
@keyframes menu-fade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}

.menu-list {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
@media (min-width: 800px) {
    .menu-list { grid-template-columns: 1fr 1fr; column-gap: 64px; }
}
.menu-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px dashed rgba(255, 251, 243, 0.15);
    align-items: baseline;
}
.menu-list h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-cream);
    margin: 0 0 4px;
}
.menu-list h3 em {
    font-style: italic;
    color: rgba(255, 251, 243, 0.55);
    font-weight: 400;
    font-size: 0.85rem;
    margin-left: 6px;
}
.menu-list p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 251, 243, 0.65);
    font-style: italic;
    line-height: 1.55;
}
.price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
    white-space: nowrap;
}

.menu-foot {
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 251, 243, 0.7);
    font-style: italic;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.menu-foot strong {
    color: var(--color-accent);
    font-weight: 500;
    font-style: normal;
}

.menu-cta {
    text-align: center;
    margin-top: 36px;
}
.menu-cta .btn-primary {
    background: var(--color-accent);
    color: var(--color-dark);
}
.menu-cta .btn-primary:hover {
    background: var(--color-cream);
    color: var(--color-dark);
}

/* ---------- Takeout ---------- */
.section-takeout {
    background: var(--color-bg-alt);
}
.info-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}
.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-line);
    color: var(--color-text-soft);
}
.info-list strong {
    color: var(--color-dark);
    margin-right: 8px;
}

.takeout-card {
    position: relative;
    background: var(--color-dark);
    border-radius: var(--radius-lg);
    padding: 4px;
    box-shadow: var(--shadow-lg);
}
.takeout-card-inner {
    background: var(--color-dark-2);
    border-radius: calc(var(--radius-lg) - 4px);
    padding: 50px 40px;
    color: var(--color-cream);
    border: 1px solid rgba(184, 135, 70, 0.2);
}
.takeout-card-inner h3 {
    color: var(--color-accent);
    font-size: 2rem;
    margin-bottom: 0.6em;
}
.takeout-card-inner p {
    color: rgba(255, 251, 243, 0.85);
}
.takeout-card-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 251, 243, 0.15);
    font-size: 0.9rem;
    color: rgba(255, 251, 243, 0.6) !important;
}

/* ---------- Info / Hours ---------- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.info-block {
    background: rgba(255, 251, 243, 0.04);
    border: 1px solid rgba(255, 251, 243, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}
.info-block h3 {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 1em;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(184, 135, 70, 0.25);
}

.hours {
    width: 100%;
    border-collapse: collapse;
}
.hours th, .hours td {
    text-align: left;
    padding: 10px 0;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(255, 251, 243, 0.85);
    border-bottom: 1px dashed rgba(255, 251, 243, 0.1);
}
.hours th {
    color: var(--color-cream);
    font-weight: 500;
}
.hours td { text-align: right; color: rgba(255, 251, 243, 0.7); }
.hours-note {
    margin-top: 18px;
    font-size: 0.85rem;
    color: rgba(255, 251, 243, 0.55);
    line-height: 1.6;
}

.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.facility-list li {
    padding: 10px 0 10px 22px;
    color: rgba(255, 251, 243, 0.82);
    font-size: 0.95rem;
    position: relative;
    border-bottom: 1px dashed rgba(255, 251, 243, 0.1);
}
.facility-list li:last-child { border-bottom: 0; }
.facility-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 18px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* ---------- Contact ---------- */
.section-contact { background: var(--color-bg-alt); }

.contact-block {
    font-style: normal;
    margin: 30px 0;
}
.contact-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--color-accent-deep);
    margin: 24px 0 6px;
    font-weight: 600;
}
.contact-label:first-child { margin-top: 0; }
.contact-value {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 0;
    line-height: 1.55;
}
.contact-value .muted {
    font-size: 0.9rem;
    color: var(--color-text-soft);
}
.contact-value.socials {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.contact-value.socials a {
    border-bottom: 1px solid var(--color-accent);
}

.map-wrap {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-line);
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: contrast(1.02) saturate(0.92);
}

.map-consent {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: var(--color-cream);
    background:
        linear-gradient(135deg, rgba(38, 22, 16, 0.86), rgba(58, 36, 24, 0.78)),
        radial-gradient(circle at 30% 30%, #4a2d1d 0%, #1a0f08 100%);
    transition: background var(--transition);
    font-family: inherit;
}
.map-consent:hover { background:
    linear-gradient(135deg, rgba(38, 22, 16, 0.78), rgba(58, 36, 24, 0.65)),
    radial-gradient(circle at 30% 30%, #5a3525 0%, #1a0f08 100%);
}
.map-consent:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: -6px;
}
.map-consent-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    max-width: 340px;
    margin: 0 auto;
    height: 100%;
    text-align: center;
}
.map-consent-pin {
    font-size: 1.6rem;
    color: var(--color-accent);
}
.map-consent-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-cream);
    line-height: 1.2;
}
.map-consent-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 251, 243, 0.75);
    margin-bottom: 6px;
}
.map-consent-action {
    display: inline-block;
    margin-top: 4px;
    padding: 10px 22px;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-dark);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 251, 243, 0.75);
    padding-top: 70px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 50px;
}
.footer-brand .brand-mark {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-accent);
    font-style: italic;
}
.footer-brand .brand-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-cream);
    margin-left: 6px;
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.92rem;
    color: rgba(255, 251, 243, 0.6);
    line-height: 1.6;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.footer-cols h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 18px;
    font-weight: 600;
}
.footer-cols ul {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-cols ul li {
    padding: 6px 0;
}
.footer-cols ul a {
    color: rgba(255, 251, 243, 0.75);
    font-size: 0.95rem;
}
.footer-cols ul a:hover { color: var(--color-accent); }

.footer-base {
    border-top: 1px solid rgba(255, 251, 243, 0.1);
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 251, 243, 0.5);
}
.footer-base p { margin: 0; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
    .grid-2 { grid-template-columns: 1fr; }
    .about-image { aspect-ratio: 16/10; max-width: 500px; margin: 0 auto; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }

    .nav-list {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(320px, 80vw);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--color-dark);
        padding: 90px 24px 40px;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-lg);
    }
    .nav-list.is-open { transform: translateX(0); }
    .nav-list li { width: 100%; }
    .nav-list a {
        display: block;
        padding: 16px 18px;
        color: var(--color-cream) !important;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 251, 243, 0.08);
        border-radius: 0;
    }
    .nav-list a:hover { color: var(--color-accent) !important; background: rgba(255, 251, 243, 0.04); }
    .nav-cta { margin-top: 20px; border-radius: var(--radius) !important; text-align: center; }

    .hero-content { padding: 130px 24px 90px; }
    .hero-actions .btn { width: 100%; }
    .feature-list { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; gap: 30px; }

    .takeout-card-inner { padding: 36px 26px; }
    .info-block { padding: 28px 24px; }

    .menu-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        border-radius: 16px;
        width: 100%;
    }
    .menu-tabs::-webkit-scrollbar { display: none; }
    .menu-tab { flex-shrink: 0; }

    .menu-list li {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 18px 0;
    }
    .price { justify-self: start; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-meta { flex-direction: column; gap: 10px; }
    h2 { font-size: 1.8rem; }
}

/* ---------- Reveal-on-scroll ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in { opacity: 1; transform: none; }
}
