:root {
    --paper: #f6f1e7;
    --ink: #111111;
    --mustard: #efb800;
    --charcoal: #1a232b;
    --pepper: #2f3941;
    --tomato: #d44a1f;
    --card: #fef6d0;
    --highlight-red: #b91c1c;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: #efb800;
    font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
}

.intro-splash {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.6rem;
    background: linear-gradient(180deg, #f9cc2a 0%, #efb800 100%);
    transition: opacity 220ms ease, visibility 220ms ease;
}

.intro-splash img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.intro-splash p {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@keyframes splashLoad {
    from {
        transform: scaleX(0);
        filter: saturate(90%);
    }
    to {
        transform: scaleX(1);
        filter: saturate(120%);
    }
}

@keyframes splashShimmer {
    from {
        transform: translateX(-140%);
    }
    to {
        transform: translateX(170%);
    }
}

@keyframes splashGlow {
    from {
        box-shadow: 0 0 0 rgb(255 130 20 / 0%);
    }
    to {
        box-shadow: 0 0 20px rgb(255 130 20 / 45%);
    }
}

.intro-progress {
    width: min(320px, 74vw);
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgb(255 255 255 / 46%);
    overflow: hidden;
    background: linear-gradient(180deg, rgb(255 255 255 / 44%), rgb(255 255 255 / 18%));
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 2px rgb(255 255 255 / 35%), inset 0 -2px 4px rgb(0 0 0 / 18%);
}

.intro-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, #ff9c1a 0%, #ff5c1b 45%, #d7350a 100%);
    animation: splashLoad 500ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards, splashGlow 500ms ease-out forwards;
    position: relative;
}

.intro-progress span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        transparent 0%,
        rgb(255 255 255 / 0%) 28%,
        rgb(255 255 255 / 45%) 50%,
        rgb(255 255 255 / 0%) 72%,
        transparent 100%
    );
    animation: splashShimmer 760ms ease-in-out 1;
}

body.intro-done .intro-splash {
    opacity: 0;
    visibility: hidden;
}

body.a11y-large-text {
    font-size: 120%;
}

body.a11y-readable-font {
    font-family: Arial, Helvetica, sans-serif;
}

body.a11y-high-contrast {
    background: #000;
    color: #fff;
}

body.a11y-high-contrast .site-header,
body.a11y-high-contrast .hero,
body.a11y-high-contrast .hero-copy,
body.a11y-high-contrast .intro,
body.a11y-high-contrast .menu-board,
body.a11y-high-contrast .menu-category,
body.a11y-high-contrast .visit-details,
body.a11y-high-contrast .menu-card,
body.a11y-high-contrast .a11y-panel,
body.a11y-high-contrast .a11y-reset {
    background: #111;
    color: #fff;
    border-color: #fff;
}

body.a11y-high-contrast a,
body.a11y-high-contrast .site-nav a,
body.a11y-high-contrast .visit-map-contact a,
body.a11y-high-contrast .brand {
    color: #fff;
}

body.a11y-high-contrast .brand span {
    color: #fff;
}

body.a11y-high-contrast .intro-splash p {
    color: #fff;
}

body.a11y-high-contrast .intro-splash {
    background: #000;
}

body.a11y-high-contrast .kicker,
body.a11y-high-contrast .lead,
body.a11y-high-contrast .menu-head p,
body.a11y-high-contrast .menu-card p,
body.a11y-high-contrast .visit-copy p,
body.a11y-high-contrast .a11y-panel label {
    color: #fff;
}

body.a11y-high-contrast .btn-primary,
body.a11y-high-contrast .btn-secondary,
body.a11y-high-contrast .order-online,
body.a11y-high-contrast .menu-card span,
body.a11y-high-contrast .a11y-toggle {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff;
}

body.a11y-high-contrast .social-link {
    border-color: #fff;
}

body.a11y-high-contrast .social-link svg {
    stroke: #fff;
}

body.a11y-high-contrast .social-link:last-child svg {
    fill: #fff;
}

body.a11y-high-contrast .a11y-toggle svg {
    stroke: #000;
}

body.a11y-high-contrast .site-nav .nav-link.nav-active {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff;
}

body.a11y-high-contrast .a11y-reset {
    color: #fff;
    background: #000;
    border: 2px solid #fff;
}

body.a11y-high-contrast .a11y-panel input[type="checkbox"] {
    accent-color: #fff;
}

body.a11y-high-contrast .contact-hero,
body.a11y-high-contrast .contact-card,
body.a11y-high-contrast .contact-map-wrap iframe,
body.a11y-high-contrast .instagram-stage iframe {
    background: #111;
    color: #fff;
    border-color: #fff;
}

body.a11y-high-contrast .visit-copy h2 {
    background: #fff;
    color: #000;
    border-color: #fff;
}

body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

body.a11y-reduce-motion .intro-splash {
    display: none;
}

body.a11y-high-contrast .intro-progress {
    border-color: #fff;
    background: #000;
}

body.a11y-high-contrast .intro-progress span {
    background: #fff;
    box-shadow: none;
}

body.a11y-high-contrast .intro-progress span::after {
    display: none;
}

.page-shell {
    min-height: 100vh;
}

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

html {
    scroll-behavior: smooth;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 4vw;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    background: rgb(246 241 231 / 84%);
    border-bottom: 2px solid rgb(0 0 0 / 8%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--ink);
    text-decoration: none;
    min-width: 0;
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 20%);
}

.brand span {
    font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: clamp(1rem, 2vw, 1.65rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.9rem;
}

.site-nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82rem;
}

.site-nav .nav-link {
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    transition: background-color 180ms ease, color 180ms ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible {
    background: rgb(185 28 28 / 14%);
    outline: none;
}

.site-nav .nav-link.nav-active {
    background: var(--highlight-red);
    color: #fff !important;
}

.order-online {
    border: 0;
    padding: 0.7rem 1rem;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #bf3205, #e14b1b);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgb(0 0 0 / 45%);
}

.social-link svg {
    width: 15px;
    height: 15px;
    stroke: #111;
    fill: none;
    stroke-width: 1.9;
}

.social-link:last-child svg {
    fill: #111;
    stroke: none;
}

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

.a11y-toggle {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
    border: 0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 0;
    background: #111;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.a11y-toggle svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
}

.a11y-panel {
    position: fixed;
    right: 1rem;
    bottom: 4.2rem;
    z-index: 20;
    width: min(90vw, 280px);
    background: #fffef6;
    border: 2px solid rgb(0 0 0 / 20%);
    border-radius: 12px;
    box-shadow: 0 14px 24px rgb(0 0 0 / 20%);
    padding: 0.9rem;
    display: grid;
    gap: 0.7rem;
}

.a11y-panel[hidden] {
    display: none !important;
}

.a11y-panel h2 {
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
}

.a11y-panel label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.a11y-reset {
    border: 0;
    border-radius: 8px;
    padding: 0.6rem 0.7rem;
    font-weight: 800;
    background: #e5e7eb;
    color: #111;
    cursor: pointer;
}

.hero {
    margin: 1.3rem 3vw 0;
    border: 2px solid rgb(0 0 0 / 18%);
    border-radius: 22px;
    overflow: hidden;
    background: var(--paper);
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 1.2fr;
    box-shadow: 0 24px 38px rgb(0 0 0 / 20%);
    animation: sectionEnter 520ms ease-out both;
}

.hero-copy {
    padding: clamp(1.2rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    background:
        linear-gradient(120deg, #ffe58f 0%, #ffd24e 54%, #ffc62b 100%);
}

.kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 700;
    font-size: 0.78rem;
}

h1 {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
}

.lead {
    margin: 0;
    max-width: 42ch;
    font-size: clamp(0.95rem, 1.3vw, 1.2rem);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.35rem;
}

.btn {
    border: 0;
    padding: 0.78rem 1.1rem;
    border-radius: 9px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--charcoal), #31424f);
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--tomato), #bf3205);
    color: #fff;
}

.hero-image {
    margin: 0;
    min-height: 520px;
}

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

.intro {
    margin: 1rem 3vw 0;
    padding: clamp(1rem, 2.2vw, 1.5rem);
    border: 2px solid rgb(0 0 0 / 12%);
    border-radius: 16px;
    background: #fff7d7;
    animation: sectionEnter 620ms ease-out both;
}

.intro h2 {
    margin: 0.2rem 0 0.5rem;
    font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.intro p {
    margin: 0;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 700;
}

.menu-board {
    margin: 1.2rem 3vw 0;
    border: 2px solid rgb(0 0 0 / 14%);
    border-radius: 22px;
    background: linear-gradient(180deg, #fff6ce 0%, #ffe893 100%);
    box-shadow: 0 18px 28px rgb(0 0 0 / 16%);
    padding: clamp(1rem, 3vw, 2rem);
    animation: sectionEnter 720ms ease-out both;
}

.menu-head {
    margin-bottom: 1.1rem;
}

.menu-head h2 {
    margin: 0.1rem 0;
    font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.menu-head p {
    margin: 0;
    font-weight: 700;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 0.9rem;
}

.menu-sections {
    display: grid;
    gap: 1rem;
}

.menu-category {
    border-top: 2px dashed rgb(0 0 0 / 18%);
    padding-top: 0.8rem;
}

.menu-category h3 {
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
}

.menu-card {
    background: #fffef6;
    border: 2px solid rgb(0 0 0 / 12%);
    border-radius: 12px;
    padding: 0.85rem 0.9rem;
    display: grid;
    gap: 0.45rem;
    align-content: start;
    min-height: 168px;
}

.menu-card h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.15;
    text-transform: uppercase;
    font-weight: 700;
}

.menu-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 700;
}

.menu-card span {
    margin-top: auto;
    justify-self: start;
    font-weight: 700;
    background: #111;
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.88rem;
}

.visit-details {
    margin: 1rem 3vw 2rem;
    border: 2px solid rgb(0 0 0 / 14%);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffd74a 0%, #efb800 100%);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.2rem;
    padding: clamp(1rem, 3vw, 2rem);
    animation: sectionEnter 820ms ease-out both;
}

.visit-copy h2,
.visit-copy h3 {
    margin: 0 0 0.35rem;
    font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.visit-copy h2 {
    display: inline-block;
    padding: 0.2rem 0.7rem 0.28rem;
    border-radius: 10px;
    background: var(--highlight-red);
    color: #fff;
    border: 2px solid rgb(0 0 0 / 20%);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.visit-copy h3 {
    margin-top: 1rem;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.visit-copy h4 {
    margin: 1rem 0 0.3rem;
    text-transform: uppercase;
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.visit-copy p {
    margin: 0 0 0.4rem;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 700;
}

.visit-address {
    max-width: 24ch;
}

.visit-map-contact {
    display: grid;
    align-content: start;
    gap: 0.45rem;
}

.visit-map-contact iframe {
    width: 100%;
    min-height: 300px;
    border: 2px solid rgb(0 0 0 / 12%);
    border-radius: 12px;
}

.visit-map-contact p {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 2.1rem);
    font-weight: 700;
}

.visit-map-contact a {
    color: #1d2730;
    text-decoration: none;
}

.contact-page-main {
    margin: 1rem 3vw 2rem;
    display: grid;
    gap: 1rem;
}

.contact-hero {
    border: 2px solid rgb(0 0 0 / 14%);
    border-radius: 18px;
    background: linear-gradient(120deg, #ffe58f 0%, #ffd24e 54%, #ffc62b 100%);
    padding: clamp(1rem, 2.8vw, 2rem);
}

.contact-hero h1 {
    margin: 0.2rem 0 0.4rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 0.8rem;
}

.contact-card {
    border: 2px solid rgb(0 0 0 / 12%);
    border-radius: 14px;
    background: #fff7d7;
    padding: 1rem;
}

.contact-card h2 {
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.contact-card p {
    margin: 0 0 0.35rem;
    font-weight: 700;
}

.contact-card a {
    color: inherit;
    text-decoration: none;
}

.contact-map-wrap iframe {
    width: 100%;
    min-height: 420px;
    border: 2px solid rgb(0 0 0 / 12%);
    border-radius: 14px;
}

.instagram-stage {
    width: min(1240px, 100%);
    margin-inline: auto;
    background: #000;
    border-radius: 14px;
    border: 2px solid rgb(0 0 0 / 12%);
    padding: 0.6rem;
}

.instagram-stage iframe {
    width: 100%;
    height: 760px;
    border: 0;
    border-radius: 10px;
    background: #000;
}

.instagram-section {
    background: transparent;
    border: 0;
    box-shadow: none;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 340px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, minmax(210px, 1fr));
    }

    .visit-details {
        grid-template-columns: 1fr;
    }

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

    .instagram-stage iframe {
        height: 620px;
    }
}

@media (max-width: 700px) {
    .site-header {
        position: static;
        background: rgb(246 241 231 / 96%);
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }

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