/* ============================================
   Indian Springs — Hanmer Springs
   Core stylesheet — light theme
   ============================================
   Colours come from the Indian Spring wordmark:
   "INDIAN" #18b828 · "SPRING" #f8c028.

   No gradients are used anywhere. Every surface,
   rule and accent is a flat colour.
   ============================================ */

/* ---------- Tokens ---------- */
:root {
    /* Surfaces */
    --paper:      #ffffff;
    --paper-2:    #f6f5f1;   /* alternating bands */
    --paper-3:    #edece6;   /* wells and hovers */
    --line:       rgba(18, 21, 15, 0.16);
    --line-soft:  rgba(18, 21, 15, 0.09);

    /* Brand colours — used as fills and badges */
    --gold:       #f8bc24;
    --green:      #1fb82c;

    /* Darkened versions for text, so both clear WCAG AA on white */
    --gold-ink:   #96660a;
    --green-ink:  #0e7a1d;

    /* Heat/spice cue only — deliberately distinct from the gold */
    --paprika:    #b4521a;

    --ink:        #12150f;
    --text:       #12150f;
    --text-soft:  rgba(18, 21, 15, 0.74);
    --text-mute:  rgba(18, 21, 15, 0.54);

    /* Text placed over the hero photograph */
    --on-image:        #ffffff;
    --on-image-soft:   rgba(255, 255, 255, 0.82);

    --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --wrap:   1180px;
    --gutter: clamp(1.25rem, 5vw, 3rem);
    --radius: 4px;
    --radius-lg: 10px;

    --shadow:    0 1px 2px rgba(18, 21, 15, 0.05), 0 10px 30px -12px rgba(18, 21, 15, 0.14);
    --shadow-sm: 0 1px 2px rgba(18, 21, 15, 0.05);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --strip-h: 0px;
    --nav-h: 74px;
}

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

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.1; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

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

::selection { background: var(--gold); color: var(--ink); }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--ink); color: #fff;
    padding: 0.75rem 1.25rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

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

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section-tint { background: var(--paper-2); }

/* ---------- Type ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-ink);
    margin-bottom: 1.1rem;
}
/* Flat gold rules, so both brand colours appear without a gradient */
.eyebrow::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--gold);
}
.eyebrow.is-centred::after {
    content: '';
    width: 28px; height: 2px;
    background: var(--gold);
}

.display {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.015em;
}
.display em {
    font-style: italic;
    color: var(--green-ink);
}

.section-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head.is-centred { margin-inline: auto; text-align: center; }

.lede {
    font-size: 1.06rem;
    color: var(--text-soft);
    margin-top: 1.25rem;
}

/* ---------- Buttons ---------- */
.btn {
    --btn-bg: transparent;
    --btn-fg: var(--text);
    --btn-line: var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.7rem;
    background: var(--btn-bg);
    color: var(--btn-fg);
    border: 1px solid var(--btn-line);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
}
.btn:hover { transform: translateY(-2px); }

/* Gold fill with near-black text — 10.8:1 */
.btn-solid {
    --btn-bg: var(--gold);
    --btn-fg: var(--ink);
    --btn-line: var(--gold);
    box-shadow: var(--shadow-sm);
}
.btn-solid:hover { --btn-bg: #efaf0e; --btn-line: #efaf0e; }

.btn-ghost { --btn-line: var(--line); }
.btn-ghost:hover { --btn-line: var(--green-ink); --btn-fg: var(--green-ink); }

/* Ghost button sitting on the hero photograph */
.btn-on-image { --btn-fg: var(--on-image); --btn-line: rgba(255, 255, 255, 0.5); }
.btn-on-image:hover { --btn-fg: var(--ink); --btn-bg: #fff; --btn-line: #fff; }

.btn-sm { padding: 0.7rem 1.25rem; font-size: 0.75rem; }

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

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: var(--strip-h);
    left: 0; right: 0;
    z-index: 90;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: background 0.35s, border-color 0.35s, color 0.35s;

    /* Over the hero photo the nav is white; once solid it flips to ink */
    --hdr-fg: var(--on-image);
    --hdr-fg-soft: var(--on-image-soft);
    --hdr-line: rgba(255, 255, 255, 0.34);
}
.site-header.is-stuck,
body.nav-open .site-header {
    background: var(--paper);
    border-bottom-color: var(--line-soft);
    --hdr-fg: var(--text);
    --hdr-fg-soft: var(--text-soft);
    --hdr-line: var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
}
.brand-logo {
    height: 27px;
    width: auto;
    /* Only needed while the logo sits on the photograph */
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
    transition: filter 0.35s;
}
.site-header.is-stuck .brand-logo,
body.nav-open .site-header .brand-logo,
.site-footer .brand-logo { filter: none; }

.brand-sub {
    font-size: 0.56rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--hdr-fg-soft, var(--text-mute));
    padding-left: 0.15em;
}
.site-footer .brand-sub { color: var(--text-mute); }
.footer-brand .brand-logo { height: 38px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    position: relative;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--hdr-fg-soft);
    transition: color 0.25s;
    padding-block: 0.4rem;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--hdr-fg); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--hdr-line);
    border-radius: 50%;
    cursor: pointer;
}
.nav-toggle span {
    position: relative;
    width: 16px; height: 1.5px;
    background: var(--hdr-fg);
    transition: background 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 16px; height: 1.5px;
    background: var(--hdr-fg);
    transition: transform 0.3s var(--ease);
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after  { top: 5px; }

body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(5px) rotate(45deg); }
body.nav-open .nav-toggle span::after  { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: min(92vh, 860px);
    display: flex;
    align-items: flex-end;
    padding-top: calc(var(--strip-h) + var(--nav-h) + 3rem);
    padding-bottom: clamp(3rem, 7vw, 6rem);
    overflow: hidden;
    color: var(--on-image);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/spices.jpg');
    background-size: cover;
    background-position: center;
}
/* Flat scrim — no gradient — so the type stays legible on the photo */
.hero-veil {
    position: absolute;
    inset: 0;
    background: rgba(15, 18, 12, 0.58);
}
.hero-inner { position: relative; width: 100%; }

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(3rem, 9vw, 6.6rem);
    line-height: 0.96;
    letter-spacing: -0.02em;
    max-width: 15ch;
    color: var(--on-image);
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--on-image); }

.hero-lede {
    max-width: 44ch;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--on-image-soft);
    margin-top: 1.75rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.82rem;
    color: var(--on-image-soft);
    letter-spacing: 0.04em;
}
.hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.6; }

.hero-scroll {
    position: absolute;
    right: var(--gutter);
    bottom: clamp(3rem, 7vw, 6rem);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--on-image-soft);
    text-decoration: none;
    writing-mode: vertical-rl;
}
.hero-scroll::after {
    content: '';
    width: 2px; height: 52px;
    background: var(--gold);
}

/* ---------- Page header (inner pages) ---------- */
.page-head {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line-soft);
    padding-top: calc(var(--strip-h) + var(--nav-h) + clamp(3rem, 7vw, 5rem));
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.6rem, 7vw, 4.6rem);
    line-height: 1;
}
.page-title em { font-style: italic; color: var(--green-ink); }

/* ---------- Story / split ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}

.story-figure {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
}
.story-figure img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.story-figure:hover img { transform: scale(1.05); }

.story-badge {
    position: absolute;
    z-index: 2;
    right: 1.25rem;
    bottom: 1.25rem;
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 1rem 1.35rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.story-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.1rem;
    line-height: 1;
    color: var(--green-ink);
}
.story-badge span {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
}

/* Feature list */
.feature-list { display: grid; gap: 1.5rem; margin-top: 2.25rem; }
.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}
.feature-icon {
    width: 38px; height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--green-ink);
    flex-shrink: 0;
}
.feature-icon svg { width: 17px; height: 17px; }
.feature h3 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 0.2rem;
}
.feature p { font-size: 0.9rem; color: var(--text-mute); margin: 0; }

/* ---------- Dish cards (signature) ---------- */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 1.25rem;
}
.dish-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 2rem 1.85rem 1.75rem;
    overflow: hidden;
    transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
}
.dish-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--green);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.45s var(--ease);
}
.dish-card:hover {
    border-color: var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.dish-card:hover::before { transform: scaleY(1); }

.dish-cat {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.dish-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin: 0.6rem 0 0.65rem;
}
.dish-desc {
    font-size: 0.88rem;
    color: var(--text-mute);
    line-height: 1.6;
    flex: 1;
}
.dish-foot {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line-soft);
}
.dish-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-ink);
    margin-right: auto;
}

.grid-note { color: var(--text-mute); padding: 2rem; text-align: center; }

/* Tags */
.tag {
    display: inline-block;
    padding: 0.28rem 0.6rem;
    border: 1px solid currentColor;
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-ink);
    white-space: nowrap;
}
.tag-spice { color: var(--paprika); }

/* ---------- Reviews ---------- */
.reviews { background: var(--paper-2); }

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 2rem 1.85rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.95rem; }
.review-text {
    font-family: var(--font-display);
    font-size: 1.24rem;
    line-height: 1.5;
    color: var(--text);
    margin: 1.1rem 0 1.5rem;
    flex: 1;
}
.review-by {
    font-size: 0.78rem;
    color: var(--text-mute);
    letter-spacing: 0.04em;
}
.review-by strong { color: var(--text); font-weight: 600; }

/* ---------- Hours + map ---------- */
.visit-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.hours-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    box-shadow: var(--shadow-sm);
}
.hours-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-soft); display: flex; align-items: baseline; gap: 0.55rem; }
.hours-day em {
    font-style: normal;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
}
.hours-times { text-align: right; display: flex; flex-direction: column; gap: 0.2rem; }
.hours-slot { font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours-slot.is-closed { color: var(--text-mute); }
.hours-row.is-today { color: var(--text); font-weight: 500; }
.hours-row.is-today .hours-slot { color: var(--green-ink); }

.hours-note {
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line-soft);
    font-size: 0.8rem;
    color: var(--text-mute);
}

.map-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 12;
    background: var(--paper-3);
}
/* Google's own light map suits the theme — no filtering */
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

/* ---------- Contact cards ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
    gap: 1.25rem;
}
.contact-card {
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 1.85rem;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease);
}
.contact-card:hover { border-color: var(--line); box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card .feature-icon { margin-bottom: 1.1rem; }
.contact-card h3 {
    font-size: 0.68rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 0.55rem;
}
.contact-card p, .contact-card a {
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
    margin: 0;
    overflow-wrap: break-word;
    word-break: normal;
}
.contact-card a:hover { color: var(--green-ink); }

/* ---------- Menu page ---------- */
.menu-toolbar {
    position: sticky;
    top: calc(var(--strip-h) + var(--nav-h));
    z-index: 60;
    background: var(--paper);
    border-bottom: 1px solid var(--line-soft);
    padding-block: 0.9rem;
}
.menu-toolbar-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.menu-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
    min-width: 0;
    padding-bottom: 2px;
}
.menu-nav::-webkit-scrollbar { display: none; }

.menu-pill {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mute);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.menu-pill:hover { color: var(--text); border-color: var(--text-mute); }
.menu-pill.is-active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.menu-search {
    position: relative;
    flex-shrink: 0;
    width: min(230px, 40vw);
}
.menu-search input {
    width: 100%;
    padding: 0.6rem 0.9rem 0.6rem 2.2rem;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 50px;
    color: var(--text);
    font-size: 0.85rem;
    font-family: inherit;
}
.menu-search input::placeholder { color: var(--text-mute); }
.menu-search svg {
    position: absolute;
    left: 0.8rem; top: 50%;
    transform: translateY(-50%);
    width: 15px; height: 15px;
    color: var(--text-mute);
    pointer-events: none;
}

.menu-status { padding: 3rem 0; text-align: center; color: var(--text-mute); }
.menu-status.is-error { color: var(--paprika); }
.menu-status a { color: var(--green-ink); }

.menu-section { padding-top: clamp(2.75rem, 5vw, 4.25rem); scroll-margin-top: calc(var(--strip-h) + var(--nav-h) + 80px); }
.menu-section-head {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.5rem;
}
/* Flat gold accent under each category rule */
.menu-section-head::after {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    width: 68px; height: 3px;
    background: var(--gold);
}
.menu-section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: var(--text);
}
.menu-section-count {
    margin-left: auto;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
    white-space: nowrap;
}
.menu-section-desc { color: var(--text-mute); margin-top: -0.75rem; }

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 0.35rem 3.5rem;
}
.menu-item { padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.menu-item-head {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.34rem;
    font-weight: 600;
}
.menu-item-dots {
    flex: 1;
    height: 1px;
    min-width: 1.5rem;
    border-bottom: 1px dotted var(--line);
    transform: translateY(-3px);
}
.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 600;
    color: var(--gold-ink);
    font-variant-numeric: tabular-nums;
}
.menu-item-desc {
    font-size: 0.86rem;
    color: var(--text-mute);
    margin: 0.35rem 0 0;
    max-width: 52ch;
}
.menu-item-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }

.menu-empty { padding: 3rem 0; text-align: center; color: var(--text-mute); }

.menu-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line-soft);
    font-size: 0.8rem;
    color: var(--text-mute);
}
.menu-legend strong { color: var(--text); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
    text-align: center;
    background: var(--paper-2);
    border-block: 1px solid var(--line-soft);
}
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding-top: clamp(3.5rem, 6vw, 5rem);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-bottom: 3rem;
}
.footer-col h4 {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 1.15rem;
}
.footer-col p, .footer-col li {
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 0.6rem;
}
.footer-col a { text-decoration: none; transition: color 0.25s; }
.footer-col a:hover { color: var(--green-ink); }
.footer-brand .brand { margin-bottom: 1.25rem; }
.footer-tagline { max-width: 32ch; color: var(--text-mute); font-size: 0.88rem; }

.social-row { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.social-row a {
    width: 38px; height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text-soft);
    transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.social-row a:hover { color: var(--green-ink); border-color: var(--green-ink); transform: translateY(-3px); }
.social-row svg { width: 16px; height: 16px; }

.footer-hours .hours-row { padding: 0.42rem 0; font-size: 0.82rem; border-bottom: none; }
.footer-hours .hours-times { gap: 0; }
.footer-hours .hours-slot { font-size: 0.8rem; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-block: 1.5rem;
    border-top: 1px solid var(--line-soft);
    font-size: 0.76rem;
    color: var(--text-mute);
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--green-ink); }

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .split, .visit-grid { grid-template-columns: 1fr; }
    .story-figure { aspect-ratio: 16 / 10; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    :root { --nav-h: 64px; }

    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        inset: calc(var(--strip-h) + var(--nav-h)) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        padding: 0.5rem var(--gutter) 1.5rem;
        transform: translateY(-140%);
        transition: transform 0.5s var(--ease);
        max-height: calc(100vh - var(--strip-h) - var(--nav-h));
        overflow-y: auto;
        box-shadow: var(--shadow);
    }
    body.nav-open .nav-links { transform: none; }
    /* Inside the sheet the links always sit on paper, never on the photo */
    .nav-links a {
        color: var(--text-soft);
        padding: 1rem 0;
        border-bottom: 1px solid var(--line-soft);
        font-size: 0.95rem;
    }
    .nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); }
    .nav-links a::after { display: none; }

    .nav-actions .btn { padding: 0.7rem 1.05rem; font-size: 0.68rem; letter-spacing: 0.04em; }
    .brand-logo { height: 23px; }

    .hero { min-height: 86vh; }
    .hero-scroll { display: none; }

    .menu-toolbar-inner { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .menu-search { width: 100%; }
    .menu-list { grid-template-columns: 1fr; gap: 0; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }
}

@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;
    }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    .site-header, .status-strip, .menu-toolbar, .cta-band, .site-footer, .hero-scroll { display: none !important; }
    body { background: #fff; color: #000; }
    .menu-item-price { color: #000; }
    .menu-section-head::after { background: #000; }
}
