/* ============================================================
   Honey Cafe — "Nectar & Grain" design system
   Hand-written preset (loaded after style.css). No build step.
   honey-gold accents + charcoal on warm cream; Manrope + Work Sans.
   ============================================================ */

:root {
    /* ── Brand palette ─────────────────────────────── */
    --honey-gold:        #F5B800;   /* primary CTA / highlights */
    --honey-gold-dark:   #e0a800;
    --gold-deep:         #705d00;   /* links, secondary accents */
    --gold-soft:         #ffe16d;
    --cream:             #fff9ef;   /* page background */
    --cream-2:           #fdf8ee;   /* alt sections */
    --cream-3:           #f6edda;   /* containers */
    --surface:           #ffffff;   /* cards */
    --charcoal:          #1f1b10;   /* text + dark sections */
    --charcoal-soft:     #2a2418;
    --ink-muted:         #4d4732;   /* muted body text */
    --ink-faint:         #7e775f;   /* labels, captions */
    --line:              #e7ddc6;   /* borders */
    --line-strong:       #d0c6ab;
    --forest:            #2d4b31;
    --cream-on-dark:     #f9f0dd;
    --cream-on-dark-dim: #cfc7b2;

    /* ── Map base-framework tokens onto the brand ──── */
    --color-primary:      #705d00;
    --color-primary-dark: #5a4b00;
    --color-accent:       #F5B800;
    --color-text:         #1f1b10;
    --color-text-light:   #4d4732;
    --color-text-muted:   #7e775f;
    --color-bg:           #fff9ef;
    --color-bg-alt:       #fdf8ee;
    --color-bg-dark:      #1f1b10;
    --color-border:       #e7ddc6;

    --font-heading: 'Manrope', ui-sans-serif, system-ui, sans-serif;
    --font-body:    'Work Sans', ui-sans-serif, system-ui, sans-serif;

    --max-width: 1280px;
    --radius-sm: .375rem;
    --radius-md: .5rem;
    --radius-lg: .75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    --shadow-sm: 0 1px 2px rgba(31,27,16,.05);
    --shadow-md: 0 10px 30px rgba(31,27,16,.07);
    --shadow-lg: 0 20px 45px rgba(31,27,16,.12);

    --section-gap: 5rem;     /* 80px */
    --gutter: 1.5rem;
}

/* ── Material Symbols ──────────────────────────────── */
.ms {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ── Base ──────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}
body::selection, ::selection { background: var(--honey-gold); color: var(--charcoal); }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.15; color: var(--charcoal); margin: 0; }
a { color: var(--gold-deep); text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.section { padding: var(--section-gap) 0; }
.section--cream { background: var(--cream-2); }
.section--dark { background: var(--honey-gold); color: var(--charcoal); }
/* Honey-gold CTA bands: dark text + dark primary button for contrast on the gold */
.section--dark h2 { color: var(--charcoal) !important; }
.section--dark .eyebrow { color: var(--charcoal) !important; opacity: .75; }
.section--dark .btn-primary { background: var(--charcoal); color: var(--cream-on-dark); }
.section--dark .btn-primary:hover { background: #000; color: #fff; }
.section--dark .btn-outline-light { color: var(--charcoal); border-color: rgba(31,27,16,.4); }
.section--dark .btn-outline-light:hover { background: rgba(31,27,16,.1); color: var(--charcoal); }

/* Honeycomb texture */
.hexagon-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60L4.02 45v-30z' fill-opacity='0.03' fill='%23705d00'/%3E%3C/svg%3E");
}

/* ── Eyebrow + section heading ─────────────────────── */
.eyebrow {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--honey-gold-dark);
    display: block;
}
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head .eyebrow { margin-bottom: .5rem; }
.section-head h2 { font-size: 2rem; font-weight: 700; }
.section-head .rule { width: 5rem; height: 3px; background: var(--honey-gold); margin: 1rem auto 0; border-radius: 2px; }
.section-head p { color: var(--ink-muted); max-width: 40rem; margin: 1rem auto 0; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .5rem;
    padding: .8rem 1.6rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
    text-decoration: none;
    line-height: 1.2;
}
.btn .ms { font-size: 1.1rem; }
.btn-primary { background: var(--honey-gold); color: var(--charcoal); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--charcoal); }
.btn-dark { background: var(--charcoal); color: var(--cream-on-dark); }
.btn-dark:hover { background: var(--honey-gold); color: var(--charcoal); }
.btn-glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.22); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-uber { background: #06c167; color: #06281b; }
.btn-uber:hover { background: #05a559; color: #06281b; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-pill { border-radius: 9999px; }
.btn-lg { padding: 1rem 2rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

.link-arrow {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    color: var(--gold-deep);
}
.link-arrow .ms { font-size: 1rem; transition: transform .15s ease; }
.link-arrow:hover .ms { transform: translateX(4px); }

/* ============================================================
   Header / nav
   ============================================================ */
.hc-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,249,239,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s ease;
}
.hc-header.is-scrolled { box-shadow: var(--shadow-sm); }
.hc-header .container { display: flex; align-items: center; justify-content: space-between; height: 5.5rem; gap: 1.5rem; }
.hc-brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: var(--charcoal); }
.hc-brand img { height: 3.5rem; width: auto; }
.hc-wordmark { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; color: var(--charcoal); letter-spacing: -.01em; line-height: 1; white-space: nowrap; }
.hc-nav { display: flex; align-items: center; gap: 1.75rem; }
.hc-nav a {
    font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--ink-muted); position: relative; padding: .25rem 0; transition: color .15s ease;
}
.hc-nav a:hover { color: var(--gold-deep); }
.hc-nav a.active { color: var(--gold-deep); }
.hc-nav a.active::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold-deep);
}
/* "Menu" dropdown — each cafe has its own menu */
.hc-nav__drop { position: relative; display: inline-flex; align-items: center; }
.hc-nav__trigger {
    background: none; border: none; cursor: pointer; font-family: var(--font-body);
    font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--ink-muted); padding: .25rem 0; display: inline-flex; align-items: center; gap: .1rem;
    position: relative; transition: color .15s ease;
}
.hc-nav__trigger:hover, .hc-nav__drop.open .hc-nav__trigger, .hc-nav__trigger.active { color: var(--gold-deep); }
.hc-nav__trigger.active::after { content: ''; position: absolute; left: 0; right: 1.1rem; bottom: -2px; height: 2px; background: var(--gold-deep); }
.hc-nav__caret { font-size: 1.05rem; transition: transform .15s ease; }
.hc-nav__drop.open .hc-nav__caret { transform: rotate(180deg); }
.hc-nav__menu {
    position: absolute; top: 100%; left: 50%; min-width: 14rem;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); padding: .5rem;
    opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
    transition: opacity .16s ease, transform .16s ease; z-index: 60;
}
.hc-nav__drop.open .hc-nav__menu {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(6px);
}
.hc-nav__menu-label { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); padding: .35rem .75rem .5rem; }
.hc-nav__menu a {
    display: block; padding: .55rem .75rem; border-radius: var(--radius-md);
    font-size: .82rem !important; font-weight: 600 !important; letter-spacing: 0 !important;
    text-transform: none !important; color: var(--charcoal) !important;
}
.hc-nav__menu a:hover { background: var(--cream-3); color: var(--gold-deep) !important; }
.hc-nav__menu a.active::after { display: none; }
/* "Book a Table" CTA dropdown (right-aligned) */
.hc-book { position: relative; display: inline-flex; }
.hc-book__menu {
    position: absolute; top: 100%; right: 0; min-width: 15rem; text-align: left;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); padding: .5rem;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease; z-index: 60;
}
.hc-book.open .hc-book__menu { opacity: 1; visibility: visible; transform: translateY(6px); }
.hc-book__menu a { display: block; padding: .55rem .75rem; border-radius: var(--radius-md); font-size: .82rem; font-weight: 600; color: var(--charcoal); }
.hc-book__menu a:hover { background: var(--cream-3); color: var(--gold-deep); }
/* "Book a Table" on desktop; the shorter "Book" label shows on mobile. */
.hc-book-label-short { display: none; }

@media (max-width: 900px) {
    .hc-nav__drop { width: 100%; flex-direction: column; align-items: flex-start; }
    .hc-nav__caret { display: none; }
    .hc-nav__menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; background: transparent;
        padding: .35rem 0 0 1rem; min-width: 0;
    }
    .hc-nav__menu-label { padding: 0 0 .25rem; }
    .hc-nav__menu a { padding: .4rem 0; font-size: .85rem !important; }
}
.hc-actions { display: flex; align-items: center; gap: 1rem; }
.hc-actions .order-link { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-muted); }
.hc-actions .order-link:hover { color: var(--gold-deep); }
.hc-menu-toggle { display: none; background: none; border: none; color: var(--charcoal); cursor: pointer; padding: .25rem; }
.hc-menu-toggle .ms { font-size: 1.75rem; }

/* Branch sub-context strip — honey-gold so "where am I" is unmissable, and
   sticky under the .hc-header (5.5rem tall) so it follows the user down the page. */
.hc-branchbar {
    background: var(--honey-gold);
    color: var(--charcoal);
    position: sticky;
    top: 5.5rem;
    z-index: 40;
    border-bottom: 1px solid rgba(31,27,16,.15);
    box-shadow: 0 2px 6px rgba(31,27,16,.08);
}
.hc-branchbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3rem; flex-wrap: wrap; }
.hc-branchbar .crumbs { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; }
.hc-branchbar .crumbs a { color: var(--charcoal); opacity: .65; text-decoration: none; }
.hc-branchbar .crumbs a:hover { opacity: 1; text-decoration: underline; }
.hc-branchbar .crumbs .sep { color: var(--charcoal); opacity: .4; }
.hc-branchbar .crumbs strong { font-weight: 800; font-size: .95rem; letter-spacing: .01em; }
.hc-branchbar__pin { font-size: 1.05rem; line-height: 1; }
.hc-branchbar .branch-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.hc-branchbar .branch-links a {
    font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    color: var(--charcoal); text-decoration: none;
    background: rgba(255, 255, 255, .45);
    padding: .55rem .9rem;
    border-radius: 6px;
    min-height: 2.4rem;
    display: inline-flex; align-items: center;
    transition: background .15s ease, color .15s ease;
}
.hc-branchbar .branch-links a:hover { background: rgba(255, 255, 255, .8); }
.hc-branchbar .branch-links a.active {
    background: var(--charcoal); color: var(--honey-gold);
}
@media (max-width: 560px) {
    .hc-branchbar .container { padding-top: .5rem; padding-bottom: .5rem; }
    /* Single-row horizontal scroll so a long branch nav stays one line
       instead of wrapping into several rows under the sticky header. */
    .hc-branchbar .branch-links {
        width: 100%;
        gap: .4rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Bleed to viewport edges so links can scroll fully past the gutter.
           content-box is required: with the site's global border-box, width:100%
           would equal the container's content width (gutter already subtracted),
           and the negative margin would leave dead space on the right. content-box
           makes width:100% the content width, so border-box = content + 2×gutter
           and the track spans edge-to-edge with symmetric gutters at both ends. */
        box-sizing: content-box;
        margin: 0 calc(var(--gutter) * -1);
        padding: 0 var(--gutter);
    }
    .hc-branchbar .branch-links::-webkit-scrollbar { display: none; }
    .hc-branchbar .branch-links a { flex: 0 0 auto; }

    /* On branch pages, scrolling down hides the main header and lets the
       branch bar pin to the very top — reclaims vertical space on small
       screens. Scrolling back up reveals the header again (JS toggles
       body.nav-hidden, only when a .hc-branchbar is present). */
    .hc-header { transition: transform .3s ease, box-shadow .25s ease; }
    body.nav-hidden .hc-header { transform: translateY(-100%); }
    body.nav-hidden .hc-branchbar { top: 0; }
}

/* Subpage h1 — distinguish the location half ("@ Takapuna") from the function name. */
.page-hero__loc { font-weight: 600; font-style: italic; opacity: .8; }

/* ───────────────────────────────────────────────────────────
   Homepage gallery (photo wall + lightbox)
   ─────────────────────────────────────────────────────────── */
.gal-grid {
    list-style: none; padding: 0; margin: .5rem 0 0;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 900px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
.gal-tile { aspect-ratio: 1 / 1; }
.gal-thumb {
    width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer;
    background: var(--cream-3); border-radius: var(--radius-lg);
    overflow: hidden; display: block; position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gal-thumb:hover { box-shadow: 0 6px 20px rgba(31,27,16,.18); }
.gal-thumb:hover img { transform: scale(1.05); }
.gal-thumb:focus-visible { outline: 2px solid var(--honey-gold); outline-offset: 2px; }

/* Lightbox — fixed overlay, kept hidden until .open */
.gal-lb {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(20,16,8,.92);
    display: none; align-items: center; justify-content: center;
    padding: 2rem;
}
.gal-lb.open { display: flex; }
.gal-lb__img {
    max-width: min(100%, 1400px); max-height: 88vh;
    object-fit: contain; border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.gal-lb__close, .gal-lb__prev, .gal-lb__next {
    position: absolute; background: rgba(255,255,255,.12);
    color: #fff; border: 0; cursor: pointer;
    width: 3rem; height: 3rem; border-radius: 999px;
    font-size: 1.6rem; line-height: 1; display: flex;
    align-items: center; justify-content: center;
    transition: background .15s ease;
}
.gal-lb__close { top: 1.5rem; right: 1.5rem; font-size: 1.4rem; }
.gal-lb__prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.gal-lb__next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.gal-lb__close:hover, .gal-lb__prev:hover, .gal-lb__next:hover { background: rgba(255,255,255,.25); }
.gal-lb__counter {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600;
    background: rgba(0,0,0,.4); padding: .3rem .8rem; border-radius: 999px;
}
@media (max-width: 700px) {
    .gal-lb { padding: 1rem; }
    .gal-lb__close { top: .75rem; right: .75rem; }
    .gal-lb__prev  { left: .5rem; }
    .gal-lb__next  { right: .5rem; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,16,8,.72) 0%, rgba(20,16,8,.35) 55%, transparent 100%); }
.hero__inner { position: relative; z-index: 1; width: 100%; color: #fff; padding: 4rem 0; }
.hero__logo { width: 7rem; height: auto; margin-bottom: 2rem; filter: drop-shadow(0 6px 18px rgba(0,0,0,.4)); }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.02em; color: #fff; max-width: 16ch; }
.hero h1 .accent { color: var(--honey-gold); }
.hero__lead { font-size: 1.125rem; line-height: 1.7; max-width: 38rem; margin: 1.25rem 0 2rem; color: rgba(255,255,255,.9); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   Location cards
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.loc-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.loc-card__photo { display: block; margin: -1.75rem -1.75rem 1.5rem; aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.loc-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.loc-card:hover .loc-card__photo img { transform: scale(1.04); }
.loc-card__name { font-size: 1.25rem; font-weight: 700; line-height: 1.2; min-height: 2.4em; margin-bottom: 1rem; }
.loc-card__book { width: 100%; justify-content: center; }
.loc-card__divider { text-align: center; color: var(--line-strong); letter-spacing: .5em; margin: 1.5rem 0; user-select: none; }
.loc-card__info { display: grid; gap: 1rem; flex: 1; }
.loc-card__label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal); margin-bottom: .25rem; }
.loc-card__info p { font-size: .9rem; color: var(--ink-muted); margin: 0; }
.loc-card__more { margin-top: 1.75rem; width: 100%; }

/* ============================================================
   Menu teaser (bento)
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }
.bento__feature { grid-column: span 8; position: relative; border-radius: var(--radius-2xl); overflow: hidden; min-height: 25rem; }
.bento__feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.bento__feature:hover img { transform: scale(1.05); }
.bento__feature .overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; background: linear-gradient(to top, rgba(20,16,8,.85), rgba(20,16,8,.1) 55%, transparent); color: #fff; }
.bento__feature .overlay h3 { color: #fff; font-size: 2rem; font-weight: 700; margin: .5rem 0; }
.bento__feature .overlay p { max-width: 30rem; color: rgba(255,255,255,.85); }
.bento__side { grid-column: span 4; display: flex; flex-direction: column; gap: var(--gutter); }
.bento__card-dark { background: var(--charcoal); color: var(--cream-on-dark); border-radius: var(--radius-2xl); padding: 1.75rem; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.bento__card-dark h4 { color: #fff; font-size: 1.5rem; font-weight: 700; margin-top: .5rem; }
.bento__card-dark p { color: var(--cream-on-dark-dim); margin: 1rem 0; }
.bento__card-light { background: var(--surface); border-radius: var(--radius-2xl); padding: 1.75rem; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1.25rem; }
.bento__icon { width: 4rem; height: 4rem; flex-shrink: 0; border-radius: 9999px; background: var(--cream-3); display: grid; place-items: center; color: var(--gold-deep); }
.bento__icon .ms { font-size: 1.75rem; }
.bento__card-light h4 { font-size: 1.25rem; font-weight: 700; }
.bento__card-light p { color: var(--ink-faint); font-size: .95rem; margin: .25rem 0 0; }

/* ============================================================
   Rewards (Honey Hive)
   ============================================================ */
.rewards-panel { position: relative; overflow: hidden; background: var(--charcoal); border-radius: var(--radius-2xl); min-height: 24rem; display: flex; align-items: center; }
.rewards-panel__combs { position: absolute; top: 0; right: 0; width: 50%; height: 100%; opacity: .1; pointer-events: none; }
.rewards-panel__combs .row { display: flex; gap: .5rem; transform: rotate(-12deg) translate(2rem, -1rem); }
.rewards-panel__combs .hex { width: 5rem; height: 5.6rem; background: var(--honey-gold); flex-shrink: 0; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
.rewards-panel__body { position: relative; z-index: 1; padding: 3.5rem; max-width: 40rem; }
.rewards-panel__body .eyebrow { color: var(--honey-gold); letter-spacing: .2em; margin-bottom: 1rem; }
.rewards-panel__body h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.1; }
.rewards-panel__body p { color: var(--cream-on-dark-dim); font-size: 1.05rem; margin: 1.25rem 0 2rem; }
.rewards-panel__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter { background: var(--cream-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.newsletter__inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.newsletter__inner h2 { font-size: 2rem; font-weight: 700; margin: .5rem 0 .75rem; }
.newsletter__inner > p { color: var(--ink-muted); margin-bottom: 2rem; }
.newsletter form { background: var(--surface); border-radius: var(--radius-2xl); box-shadow: var(--shadow-sm); padding: 1.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; text-align: left; }
.newsletter .full { grid-column: 1 / -1; }
.field-floaty label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .35rem; }
.field-floaty input { width: 100%; border: none; border-bottom: 1px solid var(--line-strong); background: transparent; padding: .5rem 0; font: inherit; color: var(--charcoal); }
.field-floaty input:focus { outline: none; border-color: var(--honey-gold); }

/* ============================================================
   Footer
   ============================================================ */
.hc-footer { background: var(--charcoal); color: var(--cream-on-dark-dim); padding-top: var(--section-gap); }
.hc-footer .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.hc-footer h5 { color: var(--honey-gold); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.hc-footer .brand-name { font-family: var(--font-heading); color: var(--honey-gold); font-size: 1.5rem; font-weight: 800; display: block; margin-bottom: 1rem; }
.hc-footer .footer-logo { height: 5.5rem; width: auto; display: block; margin-bottom: 1.25rem; }
.hc-footer p { color: var(--cream-on-dark-dim); font-size: .95rem; line-height: 1.7; }
.hc-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.hc-footer ul a { color: inherit; font-size: inherit; }
.hc-footer ul a:hover { opacity: .7; }
.hc-footer .socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.hc-footer .socials a { width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--cream-on-dark-dim); transition: background .2s ease, color .2s ease; }
.hc-footer .socials a:hover { background: var(--honey-gold); color: var(--charcoal); }
.hc-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.hc-footer .footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.hc-footer .footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.5); margin: 0; }
.hc-footer .footer-bottom a { color: inherit; }
.hc-footer .footer-bottom a:hover { opacity: .7; }
.hc-stripe { display: flex; height: .5rem; }
.hc-stripe span { flex: 1; }
.hc-stripe span:nth-child(odd) { background: var(--honey-gold); }
.hc-stripe span:nth-child(even) { background: var(--gold-deep); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .loc-grid { grid-template-columns: repeat(2, 1fr); }
    .bento__feature { grid-column: 1 / -1; min-height: 20rem; }
    .bento__side { grid-column: 1 / -1; flex-direction: row; }
    .bento__side > * { flex: 1; }
}
/* Header collapses to a hamburger below 900px: the full nav + "Honey Cafe"
   wordmark + "Book a Table" button don't fit on tablet portrait (~768px)
   without flex-squeezing the brand (wordmark overflows onto the nav) and
   wrapping the Book button onto 2–3 lines. */
@media (max-width: 900px) {
    .hc-nav, .hc-actions .order-link { display: none; }
    .hc-menu-toggle { display: inline-flex; }
    /* "Book a Table" shortens to a compact "Book" pill next to the logo. */
    .hc-actions .btn-pill { padding: .55rem 1rem; font-size: .72rem; }
    .hc-actions .btn-pill .hc-book-label-full { display: none; }
    .hc-actions .btn-pill .hc-book-label-short { display: inline; }
    .hc-header.nav-open .hc-nav {
        display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--cream); border-bottom: 1px solid var(--line);
        padding: 1.25rem var(--gutter);
    }
}
@media (max-width: 760px) {
    :root { --section-gap: 3.5rem; }
    .loc-grid { grid-template-columns: 1fr; }
    .bento__side { flex-direction: column; }
    .newsletter form { grid-template-columns: 1fr; }
    .hc-footer .footer-grid { grid-template-columns: 1fr 1fr; }
    .rewards-panel__body { padding: 2.25rem; }
    .hero { min-height: 78vh; }
}
@media (max-width: 480px) {
    .hc-footer .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ============================================================
   Interior pages (locations / our-story / rewards / contact /
   branch-home / menu / booking) — shared building blocks
   ============================================================ */

/* Page header band */
.page-hero { background: var(--cream-2); border-bottom: 1px solid var(--line); text-align: center; padding: 3.5rem 0; }
.page-hero .eyebrow { margin-bottom: .6rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -.02em; }
.page-hero p { color: var(--ink-muted); max-width: 42rem; margin: 1rem auto 0; font-size: 1.05rem; }
.page-hero.hexagon-bg { background-color: var(--cream-2); }

/* Branch hero (image-backed) */
.branch-hero { position: relative; overflow: hidden; min-height: 22rem; display: flex; align-items: flex-end; color: #fff; }
.branch-hero__bg { position: absolute; inset: 0; z-index: 0; }
.branch-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,8,.85) 0%, rgba(20,16,8,.35) 55%, rgba(20,16,8,.25) 100%); }
.branch-hero__inner { position: relative; z-index: 1; padding: 3rem 0; width: 100%; }
.branch-hero .eyebrow { color: var(--honey-gold); }
.branch-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; margin: .35rem 0; }
.branch-hero__meta { display: flex; flex-wrap: wrap; gap: 1.25rem; color: rgba(255,255,255,.9); font-size: .95rem; margin-top: .5rem; }
.branch-hero__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.branch-hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* Detail blocks (hours / address / phone / email) */
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1.5rem; }
.detail { display: flex; gap: .9rem; }
.detail__icon { flex-shrink: 0; width: 2.75rem; height: 2.75rem; border-radius: 9999px; background: var(--cream-3); color: var(--gold-deep); display: grid; place-items: center; }
.detail__icon .ms { font-size: 1.4rem; }
.detail__label { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .15rem; }
.detail__value { color: var(--charcoal); font-weight: 500; white-space: pre-line; }
.detail__value a { color: var(--charcoal); }
.detail__value a:hover { color: var(--gold-deep); }

/* Two-column layout: main + aside (booking / contact) */
.layout-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.aside-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.aside-card .detail + .detail { margin-top: 1.25rem; }

/* Custom contact form (Name + Phone, Email, Message) */
.hc-cform .field { margin-bottom: 1.1rem; }
.hc-cform .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hc-cform label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .4rem; }
.hc-cform input, .hc-cform textarea { width: 100%; padding: .75rem .9rem; border: 1px solid var(--line-strong); border-radius: var(--radius-md); background: #fff; font: inherit; color: var(--charcoal); }
.hc-cform textarea { resize: vertical; min-height: 7rem; }
.hc-cform input:focus, .hc-cform textarea:focus { outline: none; border-color: var(--honey-gold); box-shadow: 0 0 0 3px rgba(245,184,0,.2); }
@media (max-width: 560px) { .hc-cform .row2 { grid-template-columns: 1fr; } }

/* Prose (our-story) */
.prose { max-width: 44rem; margin: 0 auto; color: var(--ink-muted); font-size: 1.075rem; line-height: 1.8; }
.prose h2 { font-size: 1.6rem; font-weight: 700; color: var(--charcoal); margin: 2.5rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 1.25rem; }
.prose .lead { font-size: 1.25rem; color: var(--charcoal); font-weight: 500; line-height: 1.7; }

/* Menu list */
.menu-wrap { max-width: 52rem; margin: 0 auto; }
.menu-cat { margin-bottom: 2.75rem; }
.menu-cat__title { display: flex; align-items: center; gap: 1rem; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.25rem; }
.menu-cat__title::after { content: ''; flex: 1; height: 1px; background: var(--line-strong); }
.menu-item { display: flex; justify-content: space-between; gap: 1.5rem; padding: .9rem 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item__name { font-weight: 700; color: var(--charcoal); }
.menu-item__desc { color: var(--ink-muted); font-size: .92rem; margin-top: .2rem; }
.menu-item__price { font-family: var(--font-heading); font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
.tag { display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--gold-deep); background: var(--cream-3); border-radius: 9999px; padding: .15rem .55rem; margin-left: .4rem; vertical-align: middle; }

/* Reward steps / tier cards */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 1.75rem; text-align: center; box-shadow: var(--shadow-sm); }
.step__num { width: 3rem; height: 3rem; margin: 0 auto 1rem; border-radius: 9999px; background: var(--honey-gold); color: var(--charcoal); display: grid; place-items: center; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; }
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.step p { color: var(--ink-muted); font-size: .95rem; }

/* Note / placeholder callout (for empty menus etc.) */
.note { background: var(--cream-3); border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); padding: 1.5rem; color: var(--ink-muted); text-align: center; }

@media (max-width: 900px) {
    .layout-split { grid-template-columns: 1fr; gap: 2rem; }
    .step-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Locations directory (/locations)
   ============================================================ */
.loc-search { position: relative; max-width: 34rem; margin: 2rem auto 0; }
.loc-search .ms { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); color: var(--ink-faint); }
.loc-search input { width: 100%; padding: 1rem 1.25rem 1rem 3rem; border: none; border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); font: inherit; color: var(--charcoal); }
.loc-search input:focus { outline: none; box-shadow: 0 0 0 3px rgba(245,184,0,.3); }

.locx-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.locx-card { background: var(--surface); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .3s ease, transform .3s ease; display: flex; flex-direction: column; }
.locx-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.locx-photo { position: relative; height: 16rem; overflow: hidden; background: var(--cream-3); }
.locx-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.locx-card:hover .locx-photo img { transform: scale(1.05); }
.locx-status { position: absolute; top: 1rem; right: 1rem; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .75rem; border-radius: 9999px; backdrop-filter: blur(6px); }
.locx-status--open    { background: rgba(45,75,49,.16); color: var(--forest); }
.locx-status--closing { background: rgba(245,184,0,.22); color: #8a6d00; }
.locx-status--closed  { background: rgba(31,27,16,.12); color: var(--ink-muted); }
.locx-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.locx-head { margin-bottom: .25rem; }
.locx-name { font-size: 1.35rem; font-weight: 700; }
.locx-addr { color: var(--ink-faint); font-size: .9rem; margin-top: .2rem; }
.locx-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.25rem; padding: 1.25rem 0; border-top: 1px solid var(--line); }
.locx-label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .25rem; }
.locx-meta p { font-size: .9rem; color: var(--charcoal); margin: 0; word-break: break-word; }
.locx-meta a { color: var(--charcoal); }
.locx-meta a:hover { color: var(--gold-deep); }
.locx-actions { display: flex; gap: .75rem; margin-top: auto; padding-top: 1.25rem; }
.locx-actions .btn { flex: 1; justify-content: center; }

.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: #fff; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.why-card { display: flex; flex-direction: column; align-items: center; }
.why-icon { width: 4rem; height: 4rem; border-radius: var(--radius-lg); background: var(--gold-soft); color: var(--gold-deep); display: grid; place-items: center; margin-bottom: 1.5rem; transform: rotate(3deg); transition: transform .25s ease; }
.why-icon .ms { font-size: 1.9rem; }
.why-card:nth-child(2) .why-icon { transform: rotate(-3deg); }
.why-card:nth-child(3) .why-icon { transform: rotate(6deg); }
.why-card:hover .why-icon { transform: rotate(0); }
.why-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p { color: var(--ink-muted); max-width: 22rem; }

@media (max-width: 860px) {
    .locx-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 520px) {
    .locx-actions { flex-direction: column; }
}

/* ============================================================
   Branch detail page (/<branch>)
   ============================================================ */
.bhero { position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.bhero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.bhero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,8,.5), rgba(20,16,8,.55)); }
.bhero__inner { position: relative; z-index: 1; padding: 4rem 0; width: 100%; }
.bhero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.02em; text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.bhero__lead { max-width: 38rem; margin: 1.25rem auto 2rem; font-size: 1.125rem; line-height: 1.7; color: rgba(255,255,255,.92); }
.bhero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 3rem; align-items: center; }
.about-text .eyebrow { margin-bottom: .5rem; }
.about-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.about-text p { color: var(--ink-muted); margin-bottom: 1rem; line-height: 1.8; }
.about-map { position: relative; height: 24rem; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--cream-3); }
.about-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.about-map__pin { position: absolute; bottom: 1rem; right: 1rem; background: var(--surface); color: var(--gold-deep); font-size: .75rem; font-weight: 700; padding: .5rem .9rem; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

.menu-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.menu-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.menu-col__title { font-size: 1.25rem; font-weight: 700; color: var(--gold-deep); padding-bottom: .75rem; border-bottom: 2px solid var(--line); margin-bottom: 1.25rem; }
.menu-preview-item { padding: .75rem 0; }
.menu-preview-item + .menu-preview-item { border-top: 1px dashed var(--line); }
.menu-preview-item__row { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.menu-preview-item__name { font-weight: 700; color: var(--charcoal); }
.menu-preview-item__price { font-family: var(--font-heading); font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
.menu-preview-item__desc { color: var(--ink-muted); font-size: .9rem; margin: .25rem 0 0; }

/* Branch-home menu teaser (categories + featured highlights, not the full menu) */
.menu-teaser-intro { text-align: center; color: var(--ink-muted); max-width: 36rem; margin: 0 auto 1.5rem; }
.menu-teaser-cats { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.menu-teaser-cat { background: var(--surface); border: 1px solid var(--line); border-radius: 9999px; padding: .5rem 1.1rem; font-weight: 700; font-size: .8rem; letter-spacing: .02em; color: var(--gold-deep); }
.menu-hi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: var(--gutter); max-width: 52rem; margin: 2.5rem auto 0; }
.menu-hi { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.menu-hi:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-hi__photo { height: 11rem; background: var(--cream-3); }
.menu-hi__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.menu-hi__body { padding: 1.25rem; }
.menu-hi__head { display: flex; justify-content: space-between; gap: .75rem; align-items: baseline; }
.menu-hi__name { font-size: 1.1rem; font-weight: 700; }
.menu-hi__price { font-family: var(--font-heading); font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
.menu-hi__desc { color: var(--ink-muted); font-size: .9rem; margin: .35rem 0 0; line-height: 1.55; }

.info-hours { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius-2xl); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--surface); }
.info-hours__details { padding: 2.5rem; background: var(--cream-3); display: flex; flex-direction: column; gap: 1.5rem; }
.info-hours__details h2 { font-size: 1.6rem; font-weight: 700; }
.info-hours__hours { padding: 2.5rem; }
.info-hours__head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.info-hours__head .ms { color: var(--forest); }
.info-hours__head h3 { font-size: 1.25rem; font-weight: 700; }
.info-hours__head .locx-status { margin-left: auto; position: static; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .75rem 0; border-bottom: 1px solid var(--line); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; color: var(--ink-muted); font-weight: 500; white-space: nowrap; }
.hours-note { margin-top: 1.25rem; padding: .75rem 1rem; background: var(--cream-3); border-radius: var(--radius-md); font-size: .85rem; color: var(--ink-faint); font-style: italic; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .menu-cols { grid-template-columns: 1fr; }
    .info-hours { grid-template-columns: 1fr; }
}

/* ============================================================
   Menu page (/<branch>/menu)
   ============================================================ */
.menu-hero { padding: 4rem 0 2.5rem; text-align: center; background: var(--cream-2); border-bottom: 1px solid var(--line); }
.menu-hero .eyebrow { color: var(--honey-gold-dark); margin-bottom: .6rem; }
.menu-hero h1 { font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.02em; }
.menu-hero__sub { color: var(--ink-muted); max-width: 38rem; margin: 1rem auto 1.5rem; font-size: 1.05rem; }
.menu-hero__sub strong { color: var(--charcoal); border-bottom: 2px solid var(--honey-gold); }
.menu-hero__download { margin-top: 1.5rem; }
.menu-hero__toggle { display: inline-flex; gap: .25rem; margin-top: 1.25rem; background: var(--cream-3); border-radius: 9999px; padding: .25rem; }
.menu-hero__toggle a { padding: .4rem 1.1rem; border-radius: 9999px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-muted); }
.menu-hero__toggle a.is-active { background: var(--charcoal); color: var(--cream-on-dark); }
.menu-pdf-embed { width: 100%; height: 82vh; min-height: 34rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--cream-3); display: block; }
.menu-pages { display: flex; flex-direction: column; gap: 1.5rem; max-width: 62rem; margin: 0 auto; }
.menu-page { width: 100%; height: auto; display: block; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.menu-pages__note { text-align: center; color: var(--ink-muted); margin-top: 1.5rem; }
.menu-hero__actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* ── Awards & recognition band (branch page) ──────────────── */
.awards__grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.award { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: .9rem; box-shadow: var(--shadow-sm); }
.award img { display: block; height: 260px; width: auto; max-width: 100%; border-radius: 6px; }
@media (max-width: 560px) { .award img { height: auto; width: 100%; max-width: 18rem; } }

/* ── Gift voucher page ────────────────────────────────────── */
.gv-steps { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; margin: 0; padding: 0; }
.gv-steps li { display: flex; gap: 1rem; align-items: flex-start; }
.gv-steps__num { flex: 0 0 auto; width: 2.25rem; height: 2.25rem; border-radius: 9999px; background: var(--honey-gold); color: var(--charcoal); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.gv-steps h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .25rem; }
.gv-steps p { color: var(--ink-muted); }
.gv-note { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); color: var(--ink-muted); font-size: .9rem; }
.giftup-wrap { display: flex; flex-direction: column; justify-content: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 1rem; box-shadow: var(--shadow-sm); min-height: 26rem; }
.giftup-wrap .giftup-embed { width: 100%; }
.giftup-loading, .giftup-fallback { text-align: center; padding: 2rem 1.25rem; color: var(--ink-muted); }
.giftup-loading .ms { font-size: 2rem; color: var(--honey-gold); opacity: .85; }
.giftup-loading p { margin-top: .5rem; }
.giftup-fallback .ms { font-size: 2.25rem; color: var(--honey-gold-dark); }
.giftup-fallback p { margin-top: .5rem; color: var(--charcoal); font-weight: 600; }
.giftup-fallback__sub { font-weight: 400 !important; color: var(--ink-muted) !important; max-width: 26rem; margin: .35rem auto 1.25rem; }

/* ── Gift card promo band (branch home) ───────────────────── */
.gift-band { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 1.75rem 2rem; box-shadow: var(--shadow-sm); }
.gift-band__text { display: flex; align-items: center; gap: 1rem; }
.gift-band__text .ms { font-size: 2.5rem; color: var(--honey-gold-dark); flex: 0 0 auto; }
.gift-band__text h3 { font-size: 1.25rem; font-weight: 700; }
.gift-band__text p { color: var(--ink-muted); margin-top: .15rem; }
@media (max-width: 560px) { .gift-band { flex-direction: column; align-items: flex-start; } }

/* ── Social icon links (branch contact + footer) ──────────── */
.socials { display: flex; gap: .6rem; margin-top: .65rem; }
.socials a { width: 2.4rem; height: 2.4rem; border-radius: 9999px; display: grid; place-items: center; background: var(--cream-3); color: var(--gold-deep); transition: background .2s ease, color .2s ease; }
.socials a:hover { background: var(--honey-gold); color: var(--charcoal); }
.socials svg { width: 1.2rem; height: 1.2rem; display: block; }

/* ── Location note (e.g. "inside the Central City Library") ── */
.bhero__loc { display: inline-flex; align-items: center; gap: .35rem; margin-top: .65rem; color: var(--honey-gold); font-weight: 700; font-size: 1rem; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.bhero__loc .ms { font-size: 1.2rem; }
.loc-note { display: block; margin-top: .2rem; color: var(--honey-gold-dark); font-weight: 700; font-size: .85rem; }
.menu-chips { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.menu-chip { display: inline-flex; align-items: center; gap: .4rem; font-size: .68rem; font-weight: 700; letter-spacing: .05em; padding: .4rem .9rem; border-radius: 9999px; }
.menu-chip .ms { font-size: 1rem; }
.menu-chip--loc, .menu-chip--open { background: rgba(45,75,49,.12); color: var(--forest); }
.menu-chip--closing { background: rgba(245,184,0,.22); color: #8a6d00; }
.menu-chip--closed { background: rgba(31,27,16,.1); color: var(--ink-muted); }

.menu-nav { position: sticky; top: 5.5rem; z-index: 30; background: rgba(255,249,239,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.menu-nav .container { display: flex; gap: 1.75rem; overflow-x: auto; padding-top: .9rem; padding-bottom: .9rem; scrollbar-width: none; }
.menu-nav .container::-webkit-scrollbar { display: none; }
.menu-nav a { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-muted); white-space: nowrap; padding-bottom: .25rem; border-bottom: 2px solid transparent; transition: color .15s ease; }
.menu-nav a:hover { color: var(--gold-deep); }
.menu-nav a.active { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }

.menu-cat { scroll-margin-top: 9rem; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.menu-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.menu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.menu-card--wide { grid-column: 1 / -1; display: grid; grid-template-columns: 16rem 1fr; padding: 0; overflow: hidden; }
.menu-card__photo { background: var(--cream-3); }
.menu-card__photo img { width: 100%; height: 100%; min-height: 13rem; object-fit: cover; display: block; }
.menu-card--wide .menu-card__body { padding: 1.5rem; align-self: center; }
.menu-card__head { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; margin-bottom: .5rem; }
.menu-card__name { font-size: 1.15rem; font-weight: 700; }
.menu-card__price { font-family: var(--font-heading); font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
.menu-card__desc { color: var(--ink-muted); font-size: .95rem; line-height: 1.6; margin-bottom: .75rem; }
.menu-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; }

@media (max-width: 720px) {
    .menu-grid { grid-template-columns: 1fr; }
    .menu-card--wide { grid-template-columns: 1fr; }
}

/* ── Franchise page (/franchise) ──────────────────────── */
.frq-hero {
    position: relative;
    padding: clamp(4rem, 10vw, 7rem) 0;
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.frq-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--frq-hero-img) center/cover no-repeat;
    opacity: .9;
}
.frq-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg, var(--cream) 30%, rgba(255,249,239,.65) 55%, rgba(255,249,239,0) 85%);
}
.frq-hero .container { position: relative; z-index: 1; }
.frq-hero__inner { max-width: 38rem; }
.frq-hero__inner .eyebrow { color: var(--gold-deep); margin-bottom: .9rem; }
.frq-hero__inner h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
.frq-hero__inner p { color: var(--ink-muted); font-size: 1.1rem; line-height: 1.7; margin: 1.25rem 0 2rem; }
.frq-hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.frq-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.frq-card {
    background: var(--surface, #fff);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}
.frq-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.frq-card__icon {
    width: 3.5rem; height: 3.5rem; border-radius: var(--radius-lg);
    background: rgba(245,184,0,.14); color: var(--gold-deep);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
    transition: background .25s ease, color .25s ease;
}
.frq-card__icon .ms { font-size: 1.75rem; }
.frq-card:hover .frq-card__icon { background: var(--honey-gold); color: var(--charcoal); }
.frq-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .65rem; }
.frq-card p { color: var(--ink-muted); line-height: 1.6; }

.frq-support { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.frq-support__media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.frq-support__intro h2 { font-size: 2rem; font-weight: 700; margin: .4rem 0 .75rem; }
.frq-support__intro p { color: var(--ink-muted); line-height: 1.7; }
.frq-support__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem 1.5rem; margin-top: 2.25rem; }
.frq-feature { display: flex; gap: .9rem; }
.frq-feature .ms { color: var(--gold-deep); font-size: 1.5rem; flex-shrink: 0; }
.frq-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.frq-feature p { font-size: .9rem; color: var(--ink-muted); line-height: 1.5; }

.frq-stats { background: var(--surface, #fff); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); overflow: hidden; }
.frq-stats__head { text-align: center; padding: 2.5rem 2rem; border-bottom: 1px solid var(--line); }
.frq-stats__head h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: .35rem; }
.frq-stats__head p { color: var(--ink-muted); }
.frq-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.frq-stat { padding: 2.75rem 2rem; text-align: center; }
.frq-stat + .frq-stat { border-left: 1px solid var(--line); }
.frq-stat__label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; }
.frq-stat__value { font-size: 1.5rem; font-weight: 800; font-family: var(--font-heading); color: var(--charcoal); margin-bottom: .5rem; }
.frq-stat p { font-size: .9rem; color: var(--ink-muted); line-height: 1.5; }

.frq-steps { list-style: none; max-width: 52rem; margin: 0 auto; padding: 0; position: relative; }
.frq-steps::before { content: ''; position: absolute; left: 1.5rem; top: .5rem; bottom: .5rem; width: 2px; background: rgba(245,184,0,.35); }
.frq-step { display: flex; gap: 1.5rem; align-items: flex-start; }
.frq-step + .frq-step { margin-top: 2.25rem; }
.frq-step__num {
    flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 50%;
    background: var(--honey-gold); color: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem;
    box-shadow: var(--shadow-sm); position: relative; z-index: 1;
}
.frq-step__body { padding-top: .35rem; }
.frq-step__body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .35rem; }
.frq-step__body p { color: var(--ink-muted); line-height: 1.6; }

.frq-statement {
    position: relative; overflow: hidden;
    background: var(--forest); color: var(--cream-on-dark);
    border-radius: var(--radius-xl); padding: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
}
.frq-statement__mark { position: absolute; top: -1rem; right: 1rem; font-size: 9rem; opacity: .12; line-height: 1; }
.frq-statement__quote { position: relative; font-family: var(--font-heading); font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 600; font-style: italic; line-height: 1.5; max-width: 46rem; margin: 0 auto; }
.frq-statement__by { display: block; margin-top: 1.5rem; color: var(--honey-gold); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .8rem; }

.frq-form-wrap { max-width: 46rem; }
.frq-form { background: var(--surface, #fff); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); padding: clamp(1.5rem, 4vw, 3rem); }
.frq-form select { width: 100%; padding: .75rem .9rem; border: 1px solid var(--line-strong); border-radius: var(--radius-md); background: #fff; font: inherit; color: var(--charcoal); }
.frq-form select:focus { outline: none; border-color: var(--honey-gold); box-shadow: 0 0 0 3px rgba(245,184,0,.2); }
.frq-form .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.frq-form__note { text-align: center; color: var(--ink-muted); font-size: .85rem; margin-top: 1rem; }

@media (max-width: 900px) {
    .frq-cards { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; }
    .frq-support { grid-template-columns: 1fr; }
    .frq-support__media { order: -1; }
    .frq-stats__grid { grid-template-columns: 1fr; }
    .frq-stat + .frq-stat { border-left: none; border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
    .frq-support__grid { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────────────────────
   Branch reviews (curated Google reviews) — modules/reviews
   ─────────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem; margin-top: .5rem; }
.review-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 1.6rem 1.6rem 1.4rem; display: flex; flex-direction: column; gap: .85rem; box-shadow: 0 6px 24px rgba(31, 27, 16, .05); }
.review-card__stars { display: flex; gap: .1rem; color: var(--honey-gold); }
.review-card__stars .ms { font-size: 1.2rem; }
.review-card__text { margin: 0; font-size: .98rem; line-height: 1.6; color: var(--charcoal); }
.review-card__by { display: flex; flex-direction: column; gap: .1rem; margin-top: auto; }
.review-card__name { font-weight: 700; }
.review-card__date { font-size: .8rem; color: var(--ink-muted); }
.review-card__src { position: absolute; top: 1.5rem; right: 1.6rem; font-size: .68rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-muted); }
.reviews-cta { text-align: center; margin-top: 2rem; }
