:root {
    --cream: #f4efe5;
    --sand: #ded2bd;
    --dark: #14120f;
    --charcoal: #1c1a16;
    --smoke: #27231f;
    --moss: #2f3d35;
    --ink: #f8f2e8;
    --muted: #c7bca8;
    --muted-dark: #786f62;
    --copper: #b47142;
    --copper-dark: #8f5230;
    --gold: #d5a75b;
    --line: rgba(248, 242, 232, 0.16);
    --line-dark: rgba(17, 16, 14, 0.14);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    --radius: 6px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dark);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

::selection {
    background: var(--copper);
    color: #fff;
}

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

/* ─────────────────────────── HEADER ─────────────────────────── */

.site-header {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px clamp(18px, 4vw, 56px);
    color: #fff;
    transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(20, 18, 15, 0.92);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    padding-top: 16px;
    padding-bottom: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1rem, 2vw, 1.12rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(213, 167, 91, 0.75);
    border-radius: 50%;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.site-nav {
    display: flex;
    gap: clamp(16px, 2.8vw, 30px);
    align-items: center;
}

.site-nav a {
    position: relative;
    font-size: 0.74rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-nav a::after {
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transition: width 180ms ease;
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(213, 167, 91, 0.58);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

/* ─────────────────────────── HERO ─────────────────────────── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: var(--dark);
}

.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    filter: brightness(0.92) saturate(1.05);
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 18, 15, 0.55) 0%, rgba(20, 18, 15, 0.22) 32%, rgba(20, 18, 15, 0.55) 72%, rgba(20, 18, 15, 0.92) 100%),
        linear-gradient(90deg, rgba(20, 18, 15, 0.55) 0%, rgba(20, 18, 15, 0.05) 45%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 160px clamp(20px, 6vw, 82px) 64px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.hero-copy {
    max-width: 600px;
}

.eyebrow,
.menu-kicker {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy .eyebrow::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 1px;
    margin-right: 10px;
    background: var(--gold);
    vertical-align: middle;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 22px;
    font-family: "Pacifico", cursive;
    font-size: clamp(3.1rem, 7vw, 5.6rem);
    font-weight: 400;
    line-height: 1.05;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 5vw, 4.2rem);
    font-weight: 600;
}

h3 {
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 600;
}

.hero-text {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 12px 26px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    background: var(--copper);
    color: #fff;
}

.button.primary:hover {
    background: var(--copper-dark);
}

.button.secondary,
.button.ghost {
    border-color: rgba(248, 242, 232, 0.5);
    color: #fff;
}

.button.ghost {
    border-color: rgba(248, 242, 232, 0.32);
}

.hero-aside {
    flex-shrink: 0;
    display: grid;
    gap: 18px;
    text-align: right;
}

.hero-rating {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.hero-rating .stars {
    color: var(--gold);
    font-size: 0.95rem;
}

.hero-rating span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.82rem;
}

.hero-hours {
    display: inline-grid;
    gap: 2px;
    border-right: 2px solid var(--gold);
    padding-right: 16px;
}

.hero-hours span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-hours strong {
    font-size: 0.96rem;
    font-weight: 600;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transform: translateX(-50%);
}

.scroll-cue::after {
    content: "";
    width: 1px;
    height: 34px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: cue-fall 2.2s ease-in-out infinite;
}

@keyframes cue-fall {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─────────────────────────── SECTIONS / SHARED ─────────────────────────── */

.section {
    padding: clamp(76px, 10vw, 128px) clamp(20px, 6vw, 82px);
}

.intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    gap: clamp(32px, 7vw, 92px);
    background: var(--charcoal);
}

.section-heading {
    max-width: 650px;
}

.intro-copy {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.intro-copy p + p {
    margin-top: 18px;
}

/* ─────────────────────────── MENU ─────────────────────────── */

.menu {
    background:
        radial-gradient(circle at 12% 8%, rgba(180, 113, 66, 0.16), transparent 30%),
        linear-gradient(120deg, rgba(47, 61, 53, 0.08), transparent 45%),
        var(--sand);
    color: var(--charcoal);
}

.menu .section-heading {
    max-width: 820px;
}

.menu-intro {
    max-width: 720px;
    color: var(--muted-dark);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.menu-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 34px);
    margin-top: clamp(34px, 6vw, 62px);
}

.menu-category {
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    background:
        linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(246, 238, 224, 0.92)),
        var(--cream);
    box-shadow: 0 24px 60px rgba(17, 16, 14, 0.12);
    padding: clamp(24px, 3.4vw, 42px);
}

.menu-category.featured {
    border-color: rgba(180, 113, 66, 0.35);
}

.menu-category-heading {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 14px;
    border-bottom: 1px solid rgba(17, 16, 14, 0.16);
    margin-bottom: 22px;
    padding: 0 0 18px;
}

.menu-number {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(180, 113, 66, 0.4);
    border-radius: 50%;
    color: var(--copper);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.menu-category-heading > div {
    display: flex;
    flex-direction: column;
}

.menu-category h3 {
    margin: 0;
    color: var(--charcoal);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.menu-category .menu-kicker {
    margin: 0 0 4px;
    color: var(--copper);
}

.menu-list {
    display: grid;
    gap: 0;
}

.menu-list p {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    margin: 0;
    border-bottom: 1px solid rgba(17, 16, 14, 0.08);
    padding: 14px 0;
    color: var(--charcoal);
}

.menu-list p:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.menu-list strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.menu-list small {
    display: block;
    margin-top: 5px;
    color: var(--muted-dark);
    font-size: 0.88rem;
    line-height: 1.35;
}

.menu-list b {
    min-width: 58px;
    border: 1px solid rgba(180, 113, 66, 0.26);
    border-radius: 999px;
    padding: 4px 9px;
    color: var(--copper);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
}

.text-link {
    display: inline-flex;
    margin-top: 28px;
    color: var(--gold);
    font-weight: 700;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

/* ─────────────────────────── EVENEMENTS ─────────────────────────── */

.events {
    background:
        linear-gradient(120deg, rgba(47, 61, 53, 0.1), transparent 42%),
        var(--cream);
    color: var(--charcoal);
}

.events .section-heading p {
    max-width: 620px;
    color: var(--muted-dark);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.timeline-horizontal {
    display: flex;
    gap: 22px;
    margin-top: clamp(34px, 6vw, 56px);
    overflow-x: auto;
    padding: 6px 6px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.timeline-horizontal::-webkit-scrollbar {
    display: none;
}

.timeline-card {
    position: relative;
    flex: 0 0 290px;
    scroll-snap-align: start;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4 / 5;
    background: var(--charcoal);
    box-shadow: 0 18px 50px rgba(17, 16, 14, 0.16);
    transition: transform 0.25s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
}

.timeline-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.timeline-card:hover img {
    transform: scale(1.04);
}

.timeline-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(17, 16, 14, 0.82) 100%);
}

.timeline-date {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ─────────────────────────── GALERIE ─────────────────────────── */

.gallery {
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding-bottom: 56px;
}

.gallery-track {
    display: flex;
    transition: transform 520ms ease;
    height: clamp(200px, 24vw, 340px);
}

.gallery-slide {
    flex: 0 0 calc(100% / 3);
    margin: 0;
    padding: 0 4px;
    background: var(--charcoal);
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    background: var(--charcoal);
}

.gallery-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(248, 242, 232, 0.46);
    border-radius: 50%;
    background: rgba(17, 16, 14, 0.58);
    color: #fff;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 180ms ease, border-color 180ms ease;
}

.gallery-control:hover {
    border-color: var(--gold);
    background: rgba(17, 16, 14, 0.82);
}

.gallery-control.previous {
    left: clamp(16px, 4vw, 48px);
}

.gallery-control.next {
    right: clamp(16px, 4vw, 48px);
}

.gallery-dots {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 70px;
}

.gallery-dots button {
    width: 22px;
    height: 3px;
    border: 0;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    padding: 0;
}

.gallery-dots button.is-active {
    background: var(--gold);
}

/* ─────────────────────────── AVIS ─────────────────────────── */

.reviews {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.35fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
    background:
        linear-gradient(120deg, rgba(213, 167, 91, 0.14), transparent 42%),
        var(--cream);
    color: var(--charcoal);
}

.reviews-summary {
    position: sticky;
    top: 112px;
}

.rating-block {
    border-left: 2px solid var(--copper);
    padding-left: 18px;
}

.rating-block strong {
    display: block;
    color: var(--copper);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(4rem, 8vw, 6.8rem);
    line-height: 0.9;
}

.stars {
    display: inline-flex;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0;
}

.rating-block p {
    max-width: 480px;
    margin: 12px 0 0;
    color: var(--muted-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    padding: 24px;
    background: rgba(255, 252, 245, 0.74);
    box-shadow: 0 18px 45px rgba(17, 16, 14, 0.1);
}

.review-head {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.avatar {
    display: grid;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--moss);
    color: #fff;
    font-weight: 700;
}

.review-head h3 {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.review-head p {
    margin: 2px 0 0;
    color: var(--muted-dark);
    font-size: 0.86rem;
}

.review-card > p {
    margin: 18px 0;
    color: var(--muted-dark);
    font-size: 1.02rem;
}

.review-visit {
    margin-top: auto;
    color: var(--copper);
    font-size: 0.84rem;
    font-weight: 700;
}

.review-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.review-actions .button.ghost {
    border-color: rgba(17, 16, 14, 0.28);
    color: var(--charcoal);
}

/* ─────────────────────────── VISITE / CONTACT ─────────────────────────── */

.visit {
    background:
        linear-gradient(120deg, rgba(213, 167, 91, 0.12), transparent 38%),
        var(--moss);
    color: #fff;
}

.visit .eyebrow {
    color: #ffe0a5;
}

.visit-panel {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(28px, 6vw, 70px);
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.visit-panel > div:first-child p:not(.eyebrow) {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.84);
}

.map-frame {
    margin-top: 26px;
}

.map-frame span {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.map-frame iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: var(--radius);
    filter: grayscale(0.25) contrast(1.05);
}

.info-list {
    display: grid;
    gap: 14px;
}

.info-list p {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.info-list span {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 2px;
}

.social-links {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 14px;
}

.social-links > span {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(213, 167, 91, 0.3);
    border-radius: 2px;
    background: rgba(213, 167, 91, 0.08);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-icon:hover {
    background: rgba(213, 167, 91, 0.18);
    border-color: var(--gold);
    color: #fff;
}

.info-list-horaires {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 18px;
}

.info-list-horaires > span {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
}

.schedule {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.schedule-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(213, 167, 91, 0.2);
    border-radius: 2px;
    padding: 16px 6px;
    background: rgba(255, 255, 255, 0.03);
}

.schedule-col.is-closed {
    opacity: 0.4;
}

.schedule-day {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
    text-align: center;
}

.schedule-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.schedule-col.is-closed .schedule-dot {
    background: rgba(248, 242, 232, 0.2);
}

.schedule-slot {
    font-size: 0.74rem;
    color: rgba(248, 242, 232, 0.85);
    background: rgba(213, 167, 91, 0.12);
    border-radius: 2px;
    padding: 5px 4px;
    text-align: center;
    line-height: 1.4;
    width: 100%;
}

.schedule-closed {
    font-size: 0.74rem;
    color: rgba(248, 242, 232, 0.3);
    font-style: italic;
}

.contact-actions {
    margin-top: 0;
}

/* ─────────────────────────── FOOTER ─────────────────────────── */

.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 26px clamp(20px, 6vw, 82px);
    background: #0b0a09;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
    margin: 0;
    font-size: 0.86rem;
}

.site-footer a {
    color: #fff;
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
}

/* ─────────────────────────── MOBILE CTA ─────────────────────────── */

.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 999;
    background: rgba(17, 16, 14, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px;
    gap: 10px;
}

.mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.cta-call {
    background: var(--copper);
    color: #fff;
}

.cta-map {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ─────────────────────────── RESPONSIVE ─────────────────────────── */

@media (max-width: 1040px) {
    .menu-board,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .site-nav {
        position: absolute;
        top: 100%;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 2px;
        padding: 12px;
        background: rgba(17, 16, 14, 0.98);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 14px 8px;
    }

    .site-nav a::after {
        display: none;
    }

    .intro,
    .reviews,
    .visit-panel {
        grid-template-columns: 1fr;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .hero-aside {
        align-items: flex-start;
        text-align: left;
    }

    .hero-hours {
        border-right: 0;
        border-left: 2px solid var(--gold);
        padding-right: 0;
        padding-left: 16px;
    }

    .hero-rating {
        align-items: flex-start;
    }

    .schedule {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .reviews-summary {
        position: static;
    }

    .contact-actions {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 14px 16px;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .hero-content {
        padding: 130px 20px 56px;
    }

    .hero-copy,
    .hero-aside {
        max-width: 100%;
    }

    .scroll-cue {
        display: none;
    }

    .button {
        width: 100%;
    }

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

    .menu-category-heading {
        gap: 12px;
    }

    .menu-number {
        width: 38px;
        height: 38px;
        font-size: 1.02rem;
    }

    .menu-list p {
        gap: 12px;
    }

    .menu-list b {
        min-width: 50px;
        padding: 4px 7px;
    }

    .timeline-card {
        flex: 0 0 78%;
    }

    .gallery-track {
        height: 320px;
    }

    .gallery-slide {
        flex: 0 0 100%;
        padding: 0;
    }

    .gallery-dots {
        gap: 7px;
        padding: 0 58px;
    }

    .gallery-dots button {
        width: 15px;
    }

    .gallery-control {
        width: 42px;
        height: 42px;
    }

    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-cue::after {
        animation: none;
    }

    .button,
    .timeline-card,
    .timeline-card img {
        transition: none;
    }
}
