/* ==========================================================================
   Desi Street Food — design system
   Elegance and restraint borrowed from San Carlo, warmth and colour from
   Giggling Squid, palette lifted from the hand-painted Desi shopfront sign.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand — sampled from the shopfront sign */
    --rose:        #d4126b;
    --rose-deep:   #a50d53;
    --rose-soft:   #fbe7f0;
    --teal:        #1ea4b4;
    --teal-deep:   #14707c;
    --teal-soft:   #e4f5f7;
    --gold:        #e9b52c;
    --gold-deep:   #c2900f;

    /* Neutrals */
    --cream:       #fdf6e9;
    --cream-2:     #f7ecd8;
    --ink:         #14232a;
    --ink-2:       #1d3138;
    --ink-soft:    #4a5f68;
    --line:        #e3d6bf;
    --white:       #ffffff;

    /* Semantic */
    --bg:          var(--cream);
    --fg:          var(--ink);
    --muted:       var(--ink-soft);
    --accent:      var(--rose);

    /* Type */
    --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
    --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* A fluid type scale, kept deliberately restrained. Large display type
       reads as shouting; a tight scale with generous space reads as premium.
       Top of the scale is about 50px, not 75px. */
    --step--1: clamp(0.78rem, 0.76rem + 0.09vw, 0.83rem);
    --step-0:  clamp(0.94rem, 0.92rem + 0.11vw, 1rem);
    --step-1:  clamp(1rem, 0.97rem + 0.16vw, 1.13rem);
    --step-2:  clamp(1.13rem, 1.08rem + 0.28vw, 1.35rem);
    --step-3:  clamp(1.3rem, 1.2rem + 0.5vw, 1.7rem);
    --step-4:  clamp(1.55rem, 1.36rem + 0.95vw, 2.3rem);
    --step-5:  clamp(1.9rem, 1.58rem + 1.6vw, 3.1rem);

    /* Space */
    --gutter:   clamp(1.25rem, 4vw, 3rem);
    --section:  clamp(3.25rem, 6vw, 5.5rem);
    --measure:  68ch;
    --max:      1280px;
    --max-wide: 1560px;

    /* Effects */
    --radius:    4px;
    --radius-lg: 10px;
    --shadow:    0 1px 2px rgba(20, 35, 42, 0.04), 0 8px 24px -12px rgba(20, 35, 42, 0.16);
    --shadow-lg: 0 2px 4px rgba(20, 35, 42, 0.05), 0 24px 60px -24px rgba(20, 35, 42, 0.26);
    --ease:      cubic-bezier(0.22, 1, 0.36, 1);
    --dur:       0.5s;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem; /* clears the sticky header */
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.015em;
    text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { text-wrap: pretty; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.25em; }

ul, ol { padding: 0; list-style: none; }

::selection { background: var(--rose); color: var(--white); }

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

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

.skip-link {
    position: absolute;
    top: -100%; left: 1rem;
    z-index: 200;
    padding: 0.75rem 1.25rem;
    background: var(--ink);
    color: var(--cream);
    border-radius: 0 0 var(--radius) var(--radius);
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.wrap--wide { max-width: var(--max-wide); }
.wrap--narrow { max-width: 780px; }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.5rem); }

.section--ink {
    background: var(--ink);
    color: var(--cream);
}
.section--ink .eyebrow { color: var(--gold); }
.section--ink .lede,
.section--ink p { color: rgba(253, 246, 233, 0.76); }

.section--cream-2 { background: var(--cream-2); }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }

.stack > * + * { margin-top: 1.25rem; }

/* Breathing room between a display heading and the copy that follows it. */
h2 + .stack,
h2 + .lede,
h3 + .stack { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   4. Typographic components
   -------------------------------------------------------------------------- */
.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 1rem;
}

.eyebrow--rose { color: var(--rose); }

.lede {
    font-size: var(--step-1);
    line-height: 1.55;
    color: var(--muted);
    max-width: var(--measure);
    font-weight: 300;
}

.section-head {
    max-width: 62ch;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--center {
    margin-inline: auto;
    text-align: center;
}
.section-head h2 + .lede { margin-top: 1.25rem; }

/* Hand-painted style divider echoing the sign's border */
.rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-block: 1.5rem;
}
.rule::before, .rule::after {
    content: "";
    height: 1px;
    width: clamp(40px, 12vw, 110px);
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.rule span { color: var(--gold-deep); font-size: 0.9rem; line-height: 1; }

.section-head--center .rule { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
    --btn-bg: var(--rose);
    --btn-fg: var(--white);
    --btn-border: var(--rose);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    background: var(--btn-bg);
    color: var(--btn-fg);
    border: 1px solid var(--btn-border);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--dur) var(--ease),
                color var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                transform 0.25s var(--ease);
}

.btn:hover {
    background: var(--rose-deep);
    border-color: var(--rose-deep);
    transform: translateY(-2px);
}

.btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--ink);
    --btn-border: currentColor;
}
.btn--ghost:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

.btn--light {
    --btn-bg: transparent;
    --btn-fg: var(--cream);
    --btn-border: rgba(253, 246, 233, 0.45);
}
.btn--light:hover {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.btn--gold {
    --btn-bg: var(--gold);
    --btn-fg: var(--ink);
    --btn-border: var(--gold);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--ink); }

.btn--sm { padding: 0.7rem 1.4rem; font-size: 0.72rem; }
.btn--block { width: 100%; }

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

/* Understated text link with an animated underline */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--rose);
    padding-bottom: 3px;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size var(--dur) var(--ease), gap 0.25s var(--ease);
}
.link-arrow:hover { gap: 0.85rem; background-size: 0 1px; }
.link-arrow svg { width: 14px; height: 14px; }

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 246, 233, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-stuck {
    border-bottom-color: var(--line);
    box-shadow: 0 4px 30px -18px rgba(20, 35, 42, 0.4);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 104px;
}

.brand { display: block; flex-shrink: 0; }

/* The logo is the hand painted shopfront sign. Its decorative border takes up
   roughly a third of the height, so it needs noticeably more room than a plain
   wordmark before "STREET FOOD" becomes readable. */
.brand img { height: clamp(58px, 7vw, 84px); width: auto; }
.brand__fallback {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--rose);
    letter-spacing: -0.02em;
    text-decoration: none;
    line-height: 1.1;
}
.brand__fallback small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    color: var(--teal-deep);
    text-transform: uppercase;
    font-weight: 600;
}

.nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 2.25rem); }

.nav__link {
    position: relative;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding-block: 0.5rem;
    color: var(--ink);
    transition: color 0.3s var(--ease);
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1.5px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: var(--rose); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__link.is-active { color: var(--rose); }

.header__actions { display: flex; align-items: center; gap: 0.6rem; }
.header__actions .btn { padding-inline: 1.25rem; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}
.nav-toggle__bars { position: relative; width: 24px; height: 14px; }
.nav-toggle__bars span {
    position: absolute;
    left: 0;
    width: 100%; height: 1.5px;
    background: var(--ink);
    transition: transform 0.4s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Two header buttons plus five nav items need more room than one button did,
   so the mobile menu takes over earlier than the usual 1000px. */
@media (max-width: 1180px) {
    .nav-toggle { display: flex; }
    .header__actions .btn { display: none; }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 90;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        background: var(--cream);
        padding: 6rem var(--gutter) 3rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-1rem);
        transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
        overflow-y: auto;
    }
    .nav.is-open { opacity: 1; visibility: visible; transform: none; }
    .nav__link {
        font-family: var(--font-display);
        font-size: var(--step-3);
        letter-spacing: -0.01em;
        text-transform: none;
        font-weight: 500;
        padding-block: 0.5rem;
    }
    .nav__link::after { display: none; }

    .nav__cta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-top: 1.75rem;
    }
}

@media (min-width: 1181px) {
    .nav__cta { display: none; }
}

/* --------------------------------------------------------------------------
   7. Hero — built for video, currently running stills
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: min(80svh, 720px);
    padding-block: clamp(4rem, 9vh, 6.5rem);
    overflow: hidden;
    background: var(--ink);
    isolation: isolate;
}

.hero--short {
    min-height: min(42svh, 380px);
    align-items: center;
    text-align: center;
}

/* Split hero: heading on the left, a form card on the right. Used on the
   contact page so people can write to us without scrolling. */
.hero--split {
    align-items: center;
    min-height: 0;
    padding-block: clamp(3rem, 7vh, 5rem);
}
.hero--split .hero__content { max-width: none; }

.hero__split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 900px) {
    .hero__split { grid-template-columns: 1fr; }
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero__media img,
.hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Cross-fading still frames. Swap the whole block for <video> later —
   see the comment in index.php. */
.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.6s var(--ease), transform 8s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }

.hero__scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to top, rgba(12, 22, 27, 0.92) 0%, rgba(12, 22, 27, 0.55) 38%, rgba(12, 22, 27, 0.25) 70%, rgba(12, 22, 27, 0.45) 100%);
}

.hero__content { position: relative; color: var(--cream); max-width: 720px; }
.hero--short .hero__content { margin-inline: auto; max-width: 820px; }

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
    content: "";
    width: 34px; height: 1px;
    background: var(--gold);
}
.hero--short .hero__eyebrow::before { display: none; }

.hero__title {
    font-size: var(--step-5);
    color: var(--cream);
    line-height: 1.02;
}
.hero__title em {
    font-style: italic;
    color: var(--gold);
}

.hero__text {
    margin-top: 1.25rem;
    font-size: var(--step-1);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(253, 246, 233, 0.85);
    max-width: 50ch;
}
.hero--short .hero__text { margin-inline: auto; }

/* Slide indicator dots */
.hero__dots {
    position: absolute;
    right: var(--gutter);
    bottom: clamp(2rem, 6vh, 3.5rem);
    display: flex;
    gap: 0.6rem;
    z-index: 2;
}
.hero__dot {
    width: 28px; height: 3px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: rgba(253, 246, 233, 0.32);
    cursor: pointer;
    transition: background 0.4s var(--ease), width 0.4s var(--ease);
}
.hero__dot.is-active { background: var(--gold); width: 44px; }

@media (max-width: 700px) { .hero__dots { display: none; } }

/* --------------------------------------------------------------------------
   8. Marquee strip — the "big flavours" band from the menu
   -------------------------------------------------------------------------- */
.marquee {
    background: var(--rose);
    color: var(--white);
    padding-block: 0.9rem;
    overflow: hidden;
    border-block: 1px solid var(--rose-deep);
}
.marquee__track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 34s linear infinite;
}
.marquee__track span {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3rem;
}
.marquee__track span::after { content: "◆"; font-size: 0.55rem; color: var(--gold); letter-spacing: 0; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   9. Cards & feature blocks
   -------------------------------------------------------------------------- */
.card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-2);
}
.card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }

.card__body { padding: clamp(1.5rem, 3vw, 2rem); }
.card__body h3 { margin-bottom: 0.6rem; }
.card__body p { color: var(--muted); font-size: var(--step--1); line-height: 1.7; }
.card__body .link-arrow { margin-top: 1.25rem; }

/* Full-card click target without nesting interactive elements */
.card__link::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* Alternating image + text feature rows */
.feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.feature__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 5 / 4;
    background: var(--cream-2);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }

/* Gold hairline frame, echoing the menu's border */
.feature__media::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(253, 246, 233, 0.4);
    border-radius: 4px;
    pointer-events: none;
}

.feature--reverse .feature__media { order: 2; }
@media (max-width: 800px) { .feature--reverse .feature__media { order: 0; } }

/* Stat / promise row */
.promises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
}
.promise {
    background: var(--cream);
    padding: clamp(2rem, 4vw, 3rem) 1.5rem;
    text-align: center;
}
.promise__icon {
    display: grid;
    place-items: center;
    width: 46px; height: 46px;
    margin: 0 auto 1.25rem;
    color: var(--teal-deep);
}
.promise__icon svg { width: 100%; height: 100%; stroke-width: 1.2; }
.promise h3 {
    font-size: var(--step-0);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.promise p { font-size: var(--step--1); color: var(--muted); }

/* --------------------------------------------------------------------------
   10. Menu page
   -------------------------------------------------------------------------- */
.menu-nav {
    position: sticky;
    top: 104px; /* clears the sticky site header */
    z-index: 50;
    background: rgba(253, 246, 233, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.menu-nav__inner {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-block: 0.85rem;
}
.menu-nav__inner::-webkit-scrollbar { display: none; }
.menu-nav__link {
    flex-shrink: 0;
    padding: 0.55rem 1.15rem;
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--muted);
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
}
.menu-nav__link:hover { color: var(--rose); border-color: var(--line); }
.menu-nav__link.is-active {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

.menu-category { padding-block: clamp(3rem, 7vw, 5.5rem); }
.menu-category + .menu-category { border-top: 1px solid var(--line); }

.menu-category__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.menu-section + .menu-section { margin-top: clamp(3rem, 6vw, 4.5rem); }

.menu-section__title {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 0.5rem;
}
.menu-section__title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.menu-section__note {
    font-size: var(--step--1);
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    column-gap: clamp(2rem, 6vw, 5rem);
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem 1.5rem;
    align-items: baseline;
    padding-block: 1.1rem;
    border-bottom: 1px dotted var(--line);
}

.menu-item__name {
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 500;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.menu-item__price {
    font-family: var(--font-display);
    font-size: var(--step-1);
    font-weight: 500;
    color: var(--rose);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.menu-item__desc {
    grid-column: 1 / -1;
    font-size: var(--step--1);
    color: var(--muted);
    line-height: 1.6;
    max-width: 52ch;
}

.tag {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding-inline: 5px;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    cursor: help;
}
.tag--veg       { background: #e8f4e5; color: #3d7a2e; }
.tag--vegan     { background: #ddf0e4; color: #1f6b42; }
.tag--spicy     { background: var(--rose-soft); color: var(--rose-deep); }
.tag--signature { background: #fdf1d4; color: var(--gold-deep); }
.tag--nuts      { background: #f3ece2; color: #7a5c39; }

.menu-key {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.74rem;
    color: var(--muted);
}
.menu-key li { display: flex; align-items: center; gap: 0.45rem; }

.allergen-note {
    text-align: center;
    font-size: var(--step--1);
    color: var(--muted);
    max-width: 60ch;
    margin-inline: auto;
}

/* --------------------------------------------------------------------------
   11. Dish showcase (homepage favourites)
   -------------------------------------------------------------------------- */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.dish {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--ink-2);
    isolation: isolate;
}
.dish img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.dish::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 22, 27, 0.9) 5%, rgba(12, 22, 27, 0.15) 55%, transparent 80%);
}
.dish:hover img { transform: scale(1.07); }

.dish__body {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--cream);
}
.dish__name {
    font-family: var(--font-display);
    font-size: var(--step-1);
    line-height: 1.15;
    margin-bottom: 0.35rem;
}
.dish__desc {
    font-size: 0.8rem;
    color: rgba(253, 246, 233, 0.75);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}
.dish__price {
    font-family: var(--font-display);
    font-size: var(--step-0);
    color: var(--gold);
}

/* Placeholder shown until a real photo is dropped in. Deliberately obvious,
   so an unfinished image slot is never mistaken for a design choice. */
.img-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    background:
        repeating-linear-gradient(45deg, var(--teal-soft) 0 12px, #dcf0f3 12px 24px);
    color: var(--teal-deep);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

/* In a hero the label would sit on top of the headline, so it is dropped and
   replaced with a dark wash that the white type still reads against. */
.hero .img-placeholder {
    background: linear-gradient(140deg, var(--ink) 0%, var(--teal-deep) 55%, var(--ink-2) 100%);
    font-size: 0;
}

/* --------------------------------------------------------------------------
   12. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1rem; }

.form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
    gap: 1rem;
}

.field { display: grid; gap: 0.35rem; }

.field label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
}
.field label .req { color: var(--rose); }
.field label .opt {
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: none;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.72rem 0.9rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.92rem;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
    appearance: none;
}
.field textarea { min-height: 96px; resize: vertical; }

.field select {
    /* Some browsers render an unstyled select in a washed out grey, so state
       the colour rather than inheriting it. */
    color: var(--ink);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%234a5f68' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 12px;
    padding-right: 2.75rem;
    cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--rose);
    box-shadow: 0 0 0 3px var(--rose-soft);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: #c62828;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.field__error {
    font-size: 0.72rem;
    color: #c62828;
    min-height: 0;
}
.field__error:empty { display: none; }

.field__hint { font-size: 0.72rem; color: var(--muted); line-height: 1.5; }

/* Honeypot — hidden from people, visible to bots */
.hp {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.form__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
}
.form__consent input {
    width: 18px; height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--rose);
    cursor: pointer;
}

.form-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.35rem, 3vw, 2.25rem);
    box-shadow: var(--shadow);
}

/* Sits on the dark hero on the contact page. */
.form-panel--hero {
    box-shadow: var(--shadow-lg);
    text-align: left;
}
.form-panel--hero .form-panel__head { margin-bottom: 1.25rem; }
.form-panel--hero .form-panel__head h2 {
    font-size: var(--step-2);
    color: var(--ink);
}
.form-panel--hero .form-panel__head p {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.alert {
    padding: 1.1rem 1.35rem;
    border-radius: var(--radius);
    border-left: 3px solid;
    font-size: 0.9rem;
    line-height: 1.6;
}
.alert--error   { background: #fdeaea; border-color: #c62828; color: #8e1f1f; }
.alert--success { background: #e8f5e9; border-color: #2e7d32; color: #1b5e20; }
.alert--info    { background: var(--teal-soft); border-color: var(--teal); color: var(--teal-deep); }

/* Party-size / time pill pickers */
.pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill-group input { position: absolute; opacity: 0; pointer-events: none; }
.pill-group label {
    display: grid;
    place-items: center;
    min-width: 46px;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.pill-group label:hover { border-color: var(--rose); color: var(--rose); }
.pill-group input:checked + label {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
}
.pill-group input:focus-visible + label { outline: 2px solid var(--rose); outline-offset: 2px; }

.btn .spinner {
    width: 15px; height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn[aria-busy="true"] { pointer-events: none; opacity: 0.75; }

/* --------------------------------------------------------------------------
   13. Booking page layout
   -------------------------------------------------------------------------- */
.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}
@media (max-width: 900px) {
    .booking-layout { grid-template-columns: 1fr; }
}

.booking-aside {
    position: sticky;
    top: 100px;
    background: var(--ink);
    color: var(--cream);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2rem);
}
@media (max-width: 900px) { .booking-aside { position: static; } }

.booking-aside h3 {
    color: var(--cream);
    font-size: var(--step-2);
    margin-bottom: 1.25rem;
}
.booking-aside dl { display: grid; gap: 1.1rem; }
.booking-aside dt {
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.booking-aside dd { font-size: 0.85rem; color: rgba(253, 246, 233, 0.8); line-height: 1.6; }
.booking-aside dd a { color: inherit; }
.booking-aside dd address { font-style: normal; }

/* Hours read as a small table: day on the left, time right aligned, one
   hairline between rows. */
.hours-list { display: grid; }
.hours-list li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.82rem;
    padding-block: 0.42rem;
}
.hours-list li + li { border-top: 1px solid rgba(253, 246, 233, 0.09); }
.hours-list .day {
    color: rgba(253, 246, 233, 0.55);
    letter-spacing: 0.02em;
}
.hours-list .time {
    color: var(--cream);
    font-variant-numeric: tabular-nums;
}
/* Today's row is the one people are actually looking for. */
.hours-list li[data-today] .day,
.hours-list li[data-today] .time { color: var(--gold); font-weight: 500; }

.step-badge {
    display: inline-grid;
    place-items: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    margin-right: 0.75rem;
    flex-shrink: 0;
}
.form-step__title {
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1.35rem;
}
.form-step + .form-step {
    margin-top: 2.25rem;
    padding-top: 2.25rem;
    border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   14. Blog
   -------------------------------------------------------------------------- */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 0.9rem;
}
.post-card__meta time { color: var(--muted); font-weight: 400; letter-spacing: 0.06em; }
.post-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }

.post-card h3 { font-size: var(--step-2); }

/* Featured (first) post spans the full width on wide screens */
.post-card--featured { grid-column: 1 / -1; }
@media (min-width: 900px) {
    .post-card--featured { display: grid; grid-template-columns: 1.1fr 1fr; }
    .post-card--featured .card__media { aspect-ratio: auto; height: 100%; min-height: 380px; }
    .post-card--featured .card__body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: clamp(2rem, 4vw, 3.5rem);
    }
    .post-card--featured h3 { font-size: var(--step-3); }
}

/* Article body */
.article {
    max-width: 72ch;
    margin-inline: auto;
}
.article > * + * { margin-top: 1.25rem; }
.article h2 { font-size: var(--step-3); margin-top: 2.5rem; }
.article h3 { font-size: var(--step-2); margin-top: 2rem; }
.article p { font-size: 1rem; line-height: 1.75; color: var(--ink-2); }
.article ul { display: grid; gap: 0.75rem; padding-left: 1.25rem; }
.article ul li { position: relative; padding-left: 1rem; line-height: 1.75; }
.article ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.7em;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--rose);
}
.article blockquote {
    margin-block: 2.5rem;
    padding-left: clamp(1.25rem, 3vw, 2rem);
    border-left: 2px solid var(--gold);
    font-family: var(--font-display);
    font-size: var(--step-2);
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
}
.article a { color: var(--rose); }
.article figure { margin-block: 2.5rem; }
.article figure img { border-radius: var(--radius-lg); width: 100%; }
.article figcaption {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
}

/* --------------------------------------------------------------------------
   15. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
    /* Let each card hug its content. Stretching them all to match the seven
       row opening hours card leaves the others mostly empty. */
    align-items: start;
}

.contact-card {
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
}
.contact-card__icon {
    display: grid;
    place-items: center;
    width: 52px; height: 52px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal-deep);
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
/* :not(.btn) matters here. Without it this rule beats .btn on specificity and
   paints the Order Online label muted grey on a pink background. */
.contact-card p,
.contact-card a:not(.btn) { font-size: 0.9rem; color: var(--muted); text-decoration: none; }
.contact-card address { font-style: normal; line-height: 1.6; }
.contact-card a:not(.btn):hover { color: var(--rose); }
.contact-card__note { margin-top: 0.5rem; font-size: 0.78rem !important; }

/* Hours on a light card rather than the dark aside. */
.hours-list--light { text-align: left; margin-top: 0.25rem; }
.hours-list--light li + li { border-top-color: var(--line); }
.hours-list--light .day { color: var(--muted); }
.hours-list--light .time { color: var(--ink); }
.hours-list--light li[data-today] .day,
.hours-list--light li[data-today] .time { color: var(--rose); }

/* Quick facts under the contact hero headline. */
.hero__facts {
    display: grid;
    gap: 0.9rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(253, 246, 233, 0.18);
}
.hero__facts li { display: grid; gap: 0.15rem; }
.hero__facts a { color: var(--cream); text-decoration: none; font-size: 0.95rem; }
.hero__facts a:hover { color: var(--gold); }
.hero__facts address { font-style: normal; }
.hero__fact-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Text beside the map rather than a centred block above it. */
.map-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}
@media (max-width: 860px) {
    .map-layout { grid-template-columns: 1fr; }
}

.map-embed {
    border: 0;
    width: 100%;
    height: clamp(300px, 40vh, 420px);
    border-radius: var(--radius-lg);
    filter: grayscale(0.25) contrast(1.05);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
/* Compact by design: four tight columns, small type, one hairline rule.
   A footer is wayfinding, not a second homepage. */
.site-footer {
    background: var(--ink);
    color: rgba(253, 246, 233, 0.66);
    padding-block: clamp(2.5rem, 5vw, 3.5rem) 0;
    font-size: 0.83rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.9fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }

.footer__brand .brand__fallback { font-size: 1.15rem; }
.footer__brand .brand__fallback small { font-size: 0.5rem; }
.footer__brand img { height: 58px; width: auto; }
.footer__brand p {
    max-width: 30ch;
    margin-top: 0.85rem;
    line-height: 1.6;
    font-size: 0.82rem;
}

/* Ordering is a primary action, so it gets a solid button in the footer
   rather than sitting buried in a list of text links. */
.footer__order {
    margin-top: 1.1rem;
    padding: 0.65rem 1.3rem;
}
.footer__order svg { width: 11px; height: 11px; }
.footer__order:hover { transform: translateY(-2px); }

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.footer ul { display: grid; gap: 0.4rem; }
.footer a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
.footer a:hover { color: var(--gold); }
.footer address { font-style: normal; line-height: 1.6; }

.footer__hours li {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    font-size: 0.8rem;
}
.footer__hours .day { color: rgba(253, 246, 233, 0.46); }

.socials { display: flex; gap: 0.5rem; margin-top: 1.1rem; }
.socials a {
    display: grid;
    place-items: center;
    width: 34px; height: 34px;
    border: 1px solid rgba(253, 246, 233, 0.2);
    border-radius: 50%;
    transition: all 0.35s var(--ease);
}
.socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}
.socials svg { width: 15px; height: 15px; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem 1.5rem;
    padding-block: 1.1rem;
    border-top: 1px solid rgba(253, 246, 233, 0.1);
    font-size: 0.73rem;
    color: rgba(253, 246, 233, 0.42);
}
.footer-bottom ul { display: flex; gap: 1.25rem; }

/* --------------------------------------------------------------------------
   17. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    .hero__slide { transform: none; }
}

/* --------------------------------------------------------------------------
   18. Print — a clean takeaway menu
   -------------------------------------------------------------------------- */
@media print {
    .site-header, .topbar, .site-footer, .menu-nav,
    .hero, .marquee, .btn, .btn-row { display: none !important; }

    body { background: #fff; color: #000; font-size: 11pt; }
    .section { padding-block: 0.5rem; }
    .menu-category { break-inside: avoid; padding-block: 1rem; }
    .menu-item { break-inside: avoid; padding-block: 0.45rem; }
    .menu-item__price { color: #000; }
    a { text-decoration: none; }
}
