/* ==========================================================================
   R&R Event Catering — public stylesheet
   A flat, printed, poster-like system: two neutrals plus the logo gold.
   No gradients, no glass, no blur. The only shadow is a hard offset.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand — sampled straight from the logo */
    --gold:        #d59c10;
    --gold-bright: #e8b437;
    --gold-deep:   #a8790a;

    /* Neutrals */
    --black:    #000000;
    --ink:      #16181c;
    --ink-soft: #3a3d44;
    --muted:    #6e6a63;
    --rule:     #e3ddcd;
    --cream:    #f7f3e9;
    --cream-2:  #fffdf6;
    --white:    #ffffff;

    /* Semantic — light is the default theme */
    --bg:            var(--cream);
    --bg-panel:      var(--white);
    --bg-inset:      var(--cream-2);
    --bg-invert:     var(--black);
    --text:          var(--ink);
    --text-soft:     var(--ink-soft);
    --text-muted:    var(--muted);
    --text-invert:   var(--white);
    --border:        var(--rule);
    --border-strong: var(--ink);
    --accent:        var(--gold);
    --accent-ink:    var(--gold-deep);   /* gold that stays legible on cream */
    --on-accent:     var(--black);

    --ok-bg:   #edf7ee;  --ok-line:   #2f7d3b;
    --warn-bg: #fdf5e3;  --warn-line: #b07d09;
    --bad-bg:  #fdeeee;  --bad-line:  #b4302c;

    /* Type */
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body:    "Cormorant", Georgia, "Times New Roman", serif;

    --step--1: clamp(0.94rem, 0.90rem + 0.20vw, 1.02rem);
    --step-0:  clamp(1.09rem, 1.03rem + 0.30vw, 1.22rem);
    --step-1:  clamp(1.30rem, 1.20rem + 0.50vw, 1.50rem);
    --step-2:  clamp(1.60rem, 1.40rem + 1.00vw, 2.10rem);
    --step-3:  clamp(2.10rem, 1.70rem + 1.90vw, 3.10rem);
    --step-4:  clamp(2.70rem, 1.90rem + 3.60vw, 5.00rem);
    --step-5:  clamp(3.20rem, 2.00rem + 5.60vw, 7.00rem);

    /* Space — 4px base */
    --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
    --s-5: 20px;  --s-6: 24px;  --s-7: 32px;  --s-8: 40px;
    --s-9: 48px;  --s-10: 64px; --s-11: 80px; --s-12: 96px; --s-13: 128px;

    --radius:      7px;
    --radius-pill: 9999px;
    --shadow-hard: 4px 4px 0 rgba(0, 0, 0, 0.25);

    --wrap: 1200px;
    --header-h: 84px;
}

:root[data-theme="dark"] {
    --bg:            #0b0b0c;
    --bg-panel:      #131417;
    --bg-inset:      #191a1e;
    --bg-invert:     #000000;
    --text:          #f4f1ea;
    --text-soft:     #cbc6bb;
    --text-muted:    #8e8a81;
    --text-invert:   #ffffff;
    --border:        #2c2d32;
    --border-strong: #4a4b52;
    --accent:        var(--gold);
    --accent-ink:    var(--gold-bright);
    --on-accent:     var(--black);

    --ok-bg:   #14251a;  --ok-line:   #5cbb6d;
    --warn-bg: #2a220f;  --warn-line: #e0ab24;
    --bad-bg:  #2a1414;  --bad-line:  #e07470;

    --shadow-hard: 4px 4px 0 rgba(213, 156, 16, 0.28);
}

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

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--step-0);
    font-weight: 500;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--s-9) 0; }

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

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

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--black); color: var(--gold); padding: var(--s-4) var(--s-6);
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--s-6); }
.wrap--narrow { max-width: 820px; }
.wrap--mid { max-width: 1000px; }

.section { padding-block: var(--s-12); }
.section--tight { padding-block: var(--s-10); }

/* Full-bleed dark slab — the alternating rhythm of the page */
.section--dark { background: var(--bg-invert); color: var(--text-invert); }
.section--dark .lede,
.section--dark .section-head p { color: #b9b5ac; }
.section--panel { background: var(--bg-panel); }

.grid { display: grid; gap: var(--s-7); }

@media (min-width: 720px) {
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   4. Type helpers
   -------------------------------------------------------------------------- */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-ink);
    margin: 0 0 var(--s-4);
}
.section--dark .eyebrow { color: var(--gold); }

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

.lede { font-size: var(--step-1); line-height: 1.55; color: var(--text-soft); }
.small { font-size: var(--step--1); }
.muted { color: var(--text-muted); }
.gold { color: var(--accent-ink); }
.center { text-align: center; }

.section-head { max-width: 720px; margin-bottom: var(--s-9); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: var(--s-4); }

/* Decorative gold rule under a heading */
.flourish { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-5); }
.section-head--center .flourish { justify-content: center; }
.flourish::before, .flourish::after { content: ""; height: 1px; width: 56px; background: var(--accent); }
.flourish span { color: var(--accent); font-size: 0.8rem; letter-spacing: .3em; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
    padding: 16px 30px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--on-accent);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease, color .14s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }
.btn:active { transform: translate(0, 0); box-shadow: none; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--outline { background: transparent; border-color: currentColor; color: var(--text); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--accent-ink); padding-inline: 0; }
.btn--ghost:hover { box-shadow: none; transform: none; text-decoration: underline; text-underline-offset: 6px; }
.btn--sm { padding: 10px 18px; font-size: 0.78rem; letter-spacing: .14em; }
.btn--lg { padding: 20px 42px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }
.section--dark .btn--outline { color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.btn-row--center { justify-content: center; }

/* --------------------------------------------------------------------------
   6. Decorative bands (the diner ribbon + the marquee strip)
   -------------------------------------------------------------------------- */
.ribbon {
    height: 22px;
    background-image:
        linear-gradient(45deg, var(--accent) 25%, transparent 25%, transparent 75%, var(--accent) 75%),
        linear-gradient(45deg, var(--accent) 25%, transparent 25%, transparent 75%, var(--accent) 75%);
    background-color: var(--black);
    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
}

.marquee {
    background: var(--accent);
    color: var(--black);
    overflow: hidden;
    padding-block: var(--s-4);
    border-block: 1px solid var(--black);
}
.marquee__track {
    display: flex; width: max-content; gap: var(--s-8);
    animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
    display: inline-flex; align-items: center; gap: var(--s-8);
    font-family: var(--font-display);
    font-size: 1.05rem; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
}
.marquee__track span::after { content: "\2726"; font-size: .8rem; opacity: .7; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

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

/* --------------------------------------------------------------------------
   7. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 60;
    background: var(--black);
    border-bottom: 1px solid #1d1d1f;
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between; gap: var(--s-6);
    min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: var(--s-3); text-decoration: none; flex-shrink: 0; }
.brand img { width: 58px; height: auto; }
.brand__text { display: none; line-height: 1.05; }
@media (min-width: 560px) { .brand__text { display: block; } }
.brand__name {
    font-family: var(--font-display); font-size: 1.12rem; color: var(--gold);
    letter-spacing: .1em; text-transform: uppercase;
}
.brand__sub { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: #8a857c; }

.nav { display: none; }
@media (min-width: 1000px) { .nav { display: flex; align-items: center; gap: var(--s-6); } }
.nav a {
    text-decoration: none; color: #e6e2da;
    font-size: .88rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
    padding-block: var(--s-2); border-bottom: 2px solid transparent;
    transition: color .14s ease, border-color .14s ease;
}
.nav a:hover { color: var(--gold); }
.nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }

.header-tools { display: flex; align-items: center; gap: var(--s-3); }

.theme-toggle {
    width: 42px; height: 42px; display: grid; place-items: center;
    background: transparent; color: var(--gold);
    border: 1px solid #35322c; border-radius: var(--radius);
    cursor: pointer; transition: background-color .14s ease, border-color .14s ease;
}
.theme-toggle:hover { background: #17150f; border-color: var(--gold); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
    width: 42px; height: 42px; display: grid; place-items: center;
    background: transparent; border: 1px solid #35322c; border-radius: var(--radius);
    cursor: pointer; padding: 0;
}
@media (min-width: 1000px) { .nav-toggle { display: none; } }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--gold); }
.nav-toggle span + span { margin-top: 4px; }

.header-cta { display: none; }
@media (min-width: 1180px) { .header-cta { display: inline-flex; } }

/* Mobile drawer */
.mobile-nav {
    display: none;
    background: var(--black); border-bottom: 1px solid #1d1d1f;
    padding: var(--s-4) 0 var(--s-8);
}
.mobile-nav.is-open { display: block; }
@media (min-width: 1000px) { .mobile-nav.is-open { display: none; } }
.mobile-nav a {
    display: block; padding: var(--s-4) 0; text-decoration: none; color: #e6e2da;
    font-size: 1rem; letter-spacing: .16em; text-transform: uppercase;
    border-bottom: 1px solid #1b1b1d;
}
.mobile-nav a[aria-current="page"] { color: var(--gold); }
.mobile-nav .btn { margin-top: var(--s-6); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative; background: var(--black); color: var(--white);
    padding-block: clamp(80px, 12vw, 128px);
    overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; filter: saturate(.85); }
.hero__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.88) 100%);
}
.hero__inner { position: relative; max-width: 900px; }
.hero__inner--center { margin-inline: auto; text-align: center; }
.hero h1 { font-size: var(--step-5); color: var(--white); margin-bottom: var(--s-6); }
.hero .lede { color: #ded9d0; max-width: 640px; }
.hero__inner--center .lede { margin-inline: auto; }
.hero .btn-row { margin-top: var(--s-8); }

.hero__facts {
    display: flex; flex-wrap: wrap; gap: var(--s-8);
    margin-top: var(--s-10); padding-top: var(--s-7); border-top: 1px solid #2a2823;
}
.hero__inner--center .hero__facts { justify-content: center; }
.hero__fact strong {
    display: block; font-family: var(--font-display); font-size: var(--step-2); color: var(--gold); line-height: 1;
}
.hero__fact span { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: #9b968d; }

/* Compact hero for interior pages */
.page-hero { background: var(--black); color: var(--white); position: relative; overflow: hidden; padding-block: var(--s-11); }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.85)); }
.page-hero__inner { position: relative; max-width: 760px; }
.page-hero h1 { font-size: var(--step-4); color: var(--white); margin-bottom: var(--s-4); }
.page-hero .lede { color: #ded9d0; }

.crumbs { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: #8a857c; margin-bottom: var(--s-5); }
.crumbs a { color: var(--gold); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex; flex-direction: column;
}
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-inset); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.card__title { font-family: var(--font-display); font-size: var(--step-1); }
.card__price { color: var(--accent-ink); font-weight: 700; font-size: var(--step-1); font-family: var(--font-display); }
.card__row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4); }
.card__text { color: var(--text-soft); font-size: var(--step--1); line-height: 1.6; }

/* Numbered feature blocks */
.feature { border-top: 2px solid var(--accent); padding-top: var(--s-5); }
.feature__num {
    font-family: var(--font-display); font-size: var(--step-2); color: var(--accent);
    display: block; line-height: 1; margin-bottom: var(--s-3);
}
.feature h3 { margin-bottom: var(--s-3); font-size: var(--step-1); }
.feature p { color: var(--text-soft); font-size: var(--step--1); }
.section--dark .feature p { color: #b9b5ac; }

/* Split text + image */
.split { display: grid; gap: var(--s-9); align-items: center; }
@media (min-width: 900px) {
    .split { grid-template-columns: 1fr 1fr; gap: var(--s-11); }
    .split--wide-media { grid-template-columns: 1fr 1.2fr; }
}
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.split--flip .split__text { order: 2; }

/* --------------------------------------------------------------------------
   10. Menu listing
   -------------------------------------------------------------------------- */
.menu-nav { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-bottom: var(--s-10); }
.menu-nav a {
    text-decoration: none; padding: 10px 20px;
    border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
    font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    transition: background-color .14s ease, color .14s ease;
}
.menu-nav a:hover, .menu-nav a.is-active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

.category-head {
    display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
    gap: var(--s-4); padding-bottom: var(--s-4);
    border-bottom: 2px solid var(--border-strong); margin-bottom: var(--s-7);
}
.category-head h2 { font-size: var(--step-2); }

.cap-pill {
    display: inline-block; padding: 6px 16px; border-radius: var(--radius-pill);
    background: var(--accent); color: var(--on-accent);
    font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap;
}

/* Dotted-leader price list, the way a printed menu sets it */
.dish-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-5); }
@media (min-width: 860px) { .dish-list { grid-template-columns: 1fr 1fr; gap: var(--s-5) var(--s-10); } }
.dish { display: flex; gap: var(--s-4); align-items: flex-start; }
.dish__thumb { width: 76px; height: 76px; flex-shrink: 0; border-radius: var(--radius); object-fit: cover; background: var(--bg-inset); }
.dish__main { flex: 1; min-width: 0; }
.dish__line { display: flex; align-items: baseline; gap: var(--s-2); }
.dish__name { font-family: var(--font-display); font-size: var(--step-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dish__dots { flex: 1; border-bottom: 1px dotted var(--border-strong); opacity: .5; transform: translateY(-4px); min-width: 20px; }
.dish__price { font-family: var(--font-display); font-size: var(--step-1); color: var(--accent-ink); white-space: nowrap; }
.dish__desc { color: var(--text-muted); font-size: var(--step--1); line-height: 1.55; margin-top: 2px; }

/* --------------------------------------------------------------------------
   11. Gallery (polaroid treatment)
   -------------------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--s-7); }
.polaroid {
    background: var(--white); padding: 10px 10px 0; border-radius: 2px; margin: 0;
    box-shadow: var(--shadow-hard); border: 0; cursor: pointer; display: block; width: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}
.polaroid:nth-child(3n) { transform: rotate(-1.4deg); }
.polaroid:nth-child(3n+1) { transform: rotate(1.1deg); }
.polaroid:nth-child(4n) { transform: rotate(-0.6deg); }
.polaroid:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 8px 8px 0 rgba(0,0,0,.28); z-index: 2; }
.polaroid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.polaroid figcaption {
    padding: var(--s-4) var(--s-1) var(--s-5); text-align: center; color: var(--ink);
    font-family: var(--font-display); font-size: .98rem; line-height: 1.3;
}
.polaroid figcaption small { display: block; color: var(--muted); font-family: var(--font-body); font-size: .8rem; margin-top: 2px; }

.lightbox {
    position: fixed; inset: 0; z-index: 200; display: none;
    align-items: center; justify-content: center; padding: var(--s-6);
    background: rgba(0,0,0,.92);
}
.lightbox.is-open { display: flex; flex-direction: column; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 80vh; object-fit: contain; }
.lightbox__cap { color: #d9d5cc; text-align: center; margin-top: var(--s-4); font-family: var(--font-display); }
.lightbox__close {
    position: absolute; top: var(--s-6); right: var(--s-6);
    width: 46px; height: 46px; border-radius: var(--radius);
    background: transparent; border: 1px solid #4a4740; color: var(--gold);
    font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: var(--radius);
    background: rgba(0,0,0,.5); border: 1px solid #4a4740; color: var(--gold);
    font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.lightbox__nav--prev { left: var(--s-5); }
.lightbox__nav--next { right: var(--s-5); }

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */
.quote { border-left: 3px solid var(--accent); padding-left: var(--s-6); }
.quote p { font-family: var(--font-display); font-size: var(--step-1); line-height: 1.5; font-style: italic; margin-bottom: var(--s-4); }
.quote cite { font-style: normal; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.stars { color: var(--accent); letter-spacing: .2em; margin-bottom: var(--s-3); }

/* --------------------------------------------------------------------------
   13. Forms
   -------------------------------------------------------------------------- */
.field { margin-bottom: var(--s-5); }
.field > label, .field-label {
    display: block; margin-bottom: var(--s-2);
    font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted);
}
.field .req { color: var(--accent-ink); }

.input, .select, .textarea {
    width: 100%; padding: 14px 16px;
    background: var(--bg-panel); color: var(--text);
    border: 1px solid var(--border-strong); border-radius: var(--radius);
    font-family: var(--font-body); font-size: 1.02rem; font-weight: 500;
    transition: border-color .14s ease, box-shadow .14s ease;
}
.textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23d59c10' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; background-size: 11px;
    padding-right: 42px;
}
.input:focus, .select:focus, .textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(213,156,16,.22);
}
.input::placeholder, .textarea::placeholder { color: var(--text-muted); opacity: .8; }
.input[aria-invalid="true"], .textarea[aria-invalid="true"], .select[aria-invalid="true"] { border-color: var(--bad-line); }

.field-hint { font-size: .84rem; color: var(--text-muted); margin-top: var(--s-2); }
.field-error { font-size: .86rem; color: var(--bad-line); margin-top: var(--s-2); font-weight: 600; }

.field-row { display: grid; gap: 0 var(--s-5); }
@media (min-width: 640px) { .field-row--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .field-row--3 { grid-template-columns: repeat(3, 1fr); } }

.form-panel {
    background: var(--bg-panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--s-8);
}
@media (min-width: 720px) { .form-panel { padding: var(--s-9); } }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* --------------------------------------------------------------------------
   14. Alerts
   -------------------------------------------------------------------------- */
.alert {
    padding: var(--s-4) var(--s-5); border-left: 3px solid var(--accent);
    background: var(--bg-inset); border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: var(--s-6); font-size: var(--step--1);
}
.alert strong { display: block; margin-bottom: 2px; }
.alert--ok { background: var(--ok-bg); border-left-color: var(--ok-line); }
.alert--error { background: var(--bad-bg); border-left-color: var(--bad-line); }
.alert--warn { background: var(--warn-bg); border-left-color: var(--warn-line); }
.alert ul { margin: var(--s-2) 0 0; padding-left: 1.1em; }

/* --------------------------------------------------------------------------
   15. Booking builder
   -------------------------------------------------------------------------- */
.booking-layout { display: grid; gap: var(--s-8); align-items: start; }
@media (min-width: 1040px) { .booking-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: var(--s-9); } }

.steps { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-9); }
.steps__item {
    display: flex; align-items: center; gap: var(--s-3);
    padding: 10px 18px; border: 1px solid var(--border); border-radius: var(--radius-pill);
    font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted);
}
.steps__item.is-active { border-color: var(--accent); color: var(--text); background: var(--bg-panel); }
.steps__item.is-done { border-color: var(--ok-line); color: var(--ok-line); }
.steps__num {
    width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
    background: var(--border); color: var(--text); font-size: .72rem;
}
.steps__item.is-active .steps__num { background: var(--accent); color: var(--on-accent); }
.steps__item.is-done .steps__num { background: var(--ok-line); color: #fff; }

.step-panel { display: none; }
.step-panel.is-active { display: block; }

.pick-head {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: var(--s-4); margin-bottom: var(--s-5);
    padding-bottom: var(--s-3); border-bottom: 2px solid var(--border-strong);
}
.pick-head h3 { font-size: var(--step-2); }
.pick-count {
    font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    padding: 6px 14px; border-radius: var(--radius-pill);
    background: var(--bg-inset); border: 1px solid var(--border); color: var(--text-muted); white-space: nowrap;
}
.pick-count.is-full { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

.pick-grid { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fill, minmax(228px, 1fr)); margin-bottom: var(--s-10); }

.pick { position: relative; }
.pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.pick__box {
    display: flex; flex-direction: column; height: 100%; cursor: pointer;
    background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; transition: border-color .14s ease, box-shadow .14s ease;
}
.pick__box:hover { border-color: var(--accent); }
.pick__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-inset); }
.pick__media img { width: 100%; height: 100%; object-fit: cover; }
.pick__body { padding: var(--s-4) var(--s-5) var(--s-5); display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pick__name { font-family: var(--font-display); font-size: 1.14rem; line-height: 1.25; }
.pick__desc { font-size: .86rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.pick__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); margin-top: var(--s-2); }
.pick__price { font-family: var(--font-display); font-size: 1.2rem; color: var(--accent-ink); }
.pick__add {
    font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--text-muted); display: flex; align-items: center; gap: 6px;
}
.pick__tick {
    width: 20px; height: 20px; border: 1px solid var(--border-strong); border-radius: 4px;
    display: grid; place-items: center; font-size: .8rem; color: transparent; line-height: 1;
}
.pick input:checked + .pick__box { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.pick input:checked + .pick__box .pick__tick { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.pick input:checked + .pick__box .pick__add { color: var(--accent-ink); }
.pick input:focus-visible + .pick__box { outline: 3px solid var(--accent); outline-offset: 3px; }
.pick.is-locked .pick__box { opacity: .42; cursor: not-allowed; }
.pick.is-locked .pick__box:hover { border-color: var(--border); }

/* Sticky running total */
.summary { position: sticky; top: calc(var(--header-h) + var(--s-5)); }
.summary__inner { background: var(--bg-panel); border: 1px solid var(--border-strong); border-radius: var(--radius); overflow: hidden; }
.summary__head { background: var(--black); color: var(--white); padding: var(--s-5) var(--s-6); }
.summary__head h3 { font-size: var(--step-1); color: var(--white); }
.summary__head p { margin: 0; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.summary__body { padding: var(--s-5) var(--s-6); max-height: 42vh; overflow-y: auto; }
.summary__empty { color: var(--text-muted); font-size: .92rem; }
.summary__group { margin-bottom: var(--s-4); }
.summary__group h4 {
    font-size: .7rem; font-family: var(--font-body); font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: var(--s-2);
}
.summary__line { display: flex; justify-content: space-between; gap: var(--s-3); font-size: .95rem; padding: 3px 0; }
.summary__line span:last-child { color: var(--text-muted); white-space: nowrap; }
.summary__foot { padding: var(--s-5) var(--s-6); border-top: 1px solid var(--border); background: var(--bg-inset); }
.summary__row { display: flex; justify-content: space-between; gap: var(--s-3); font-size: .95rem; padding: 4px 0; }
.summary__total {
    display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-3);
    margin-top: var(--s-3); padding-top: var(--s-3); border-top: 1px solid var(--border);
}
.summary__total span { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); }
.summary__total strong { font-family: var(--font-display); font-size: var(--step-2); color: var(--text); }

/* Review step */
.review-block { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s-6); margin-bottom: var(--s-5); }
.review-block h4 {
    font-size: .76rem; font-family: var(--font-body); font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--s-4);
}
.review-grid { display: grid; gap: var(--s-4); }
@media (min-width: 620px) { .review-grid { grid-template-columns: 1fr 1fr; } }
.review-item span { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); }
.review-item strong { font-weight: 600; font-size: 1.05rem; }

/* Confirmation / invoice */
.invoice { background: var(--bg-panel); border: 1px solid var(--border-strong); border-radius: var(--radius); overflow: hidden; }
.invoice__head {
    background: var(--black); color: var(--white); padding: var(--s-8);
    display: flex; flex-wrap: wrap; gap: var(--s-6); justify-content: space-between; align-items: flex-start;
}
.invoice__head h2 { color: var(--white); font-size: var(--step-2); }
.invoice__ref { text-align: right; }
.invoice__ref span { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.invoice__ref strong { font-family: var(--font-display); font-size: var(--step-2); }
.invoice__body { padding: var(--s-8); }

.invoice-table { width: 100%; border-collapse: collapse; }
.invoice-table th {
    text-align: left; padding: var(--s-3) 0; border-bottom: 2px solid var(--border-strong);
    font-family: var(--font-body); font-size: .72rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted);
}
.invoice-table td { padding: var(--s-3) 0; border-bottom: 1px solid var(--border); }
.invoice-table td:last-child, .invoice-table th:last-child { text-align: right; }
.invoice-table .cat-row td {
    padding-top: var(--s-6); border-bottom: 0;
    font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-ink);
}

.totals { margin-top: var(--s-7); margin-left: auto; max-width: 380px; }
.totals__row { display: flex; justify-content: space-between; padding: var(--s-2) 0; }
.totals__grand {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-top: var(--s-3); padding: var(--s-5) var(--s-6);
    background: var(--accent); color: var(--on-accent); border-radius: var(--radius);
}
.totals__grand span { font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.totals__grand strong { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; }

.status-tag {
    display: inline-flex; align-items: center; gap: 7px; padding: 6px 15px; border-radius: var(--radius-pill);
    font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    background: var(--warn-bg); color: var(--warn-line); border: 1px solid currentColor;
}
.status-tag--approved { background: var(--ok-bg); color: var(--ok-line); }
.status-tag--rejected { background: var(--bad-bg); color: var(--bad-line); }
.status-tag--cancelled { background: var(--bg-inset); color: var(--text-muted); }

/* --------------------------------------------------------------------------
   16. Contact
   -------------------------------------------------------------------------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-6); }
.contact-list li { display: flex; gap: var(--s-4); }
.contact-list .ico {
    width: 42px; height: 42px; flex-shrink: 0; display: grid; place-items: center;
    border: 1px solid var(--accent); border-radius: var(--radius); color: var(--accent-ink);
}
.contact-list .ico svg { width: 19px; height: 19px; }
.contact-list h3 {
    font-size: .76rem; font-family: var(--font-body); font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px;
}
.contact-list a { color: var(--accent-ink); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.section--dark .contact-list h3 { color: #8a857c; }
.section--dark .contact-list a, .section--dark .contact-list .ico { color: var(--gold); }

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
    cursor: pointer; list-style: none; padding: var(--s-5) var(--s-8) var(--s-5) 0; position: relative;
    font-family: var(--font-display); font-size: var(--step-1);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    color: var(--accent); font-size: 1.5rem; line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding-bottom: var(--s-5); color: var(--text-soft); font-size: var(--step--1); max-width: 70ch; }

/* --------------------------------------------------------------------------
   18. CTA strip
   -------------------------------------------------------------------------- */
.cta-strip { background: var(--accent); color: var(--black); padding-block: var(--s-11); text-align: center; }
.cta-strip h2 { font-size: var(--step-3); margin-bottom: var(--s-4); }
.cta-strip p { max-width: 620px; margin-inline: auto; margin-bottom: var(--s-7); font-size: var(--step-1); }
.cta-strip .btn { background: var(--black); color: var(--gold); }
.cta-strip .btn--outline { background: transparent; color: var(--black); border-color: var(--black); }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--black); color: #b9b5ac; padding-block: var(--s-11) var(--s-8); font-size: var(--step--1); }
.footer-grid { display: grid; gap: var(--s-9); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1040px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.site-footer h3 {
    font-family: var(--font-body); font-size: .76rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s-5);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.site-footer a { color: #b9b5ac; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer img.footer-logo { width: 96px; margin-bottom: var(--s-5); }
.footer-bottom {
    margin-top: var(--s-9); padding-top: var(--s-6); border-top: 1px solid #26241f;
    display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between;
    font-size: .82rem; color: #6e6a63;
}
.socials { display: flex; gap: var(--s-3); }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #35322c; border-radius: var(--radius); color: var(--gold); }
.socials a:hover { background: var(--gold); color: var(--black); }
.socials svg { width: 17px; height: 17px; }

/* --------------------------------------------------------------------------
   20. Print — the confirmation page doubles as a paper invoice
   -------------------------------------------------------------------------- */
@media print {
    .site-header, .mobile-nav, .site-footer, .ribbon, .marquee, .no-print, .cta-strip { display: none !important; }
    body { background: #fff; color: #000; font-size: 12pt; }
    .invoice { border: 1px solid #000; }
    .invoice__head { background: #fff !important; color: #000 !important; border-bottom: 2px solid #000; }
    .invoice__head h2, .invoice__ref strong { color: #000 !important; }
    .totals__grand { background: #fff !important; color: #000 !important; border: 2px solid #000; }
    .section { padding-block: 0; }
    a { text-decoration: none; color: #000; }
}

/* --------------------------------------------------------------------------
   21. Food hygiene rating
   The FSA badge has its own fixed colours — green and black are part of the
   scheme's identity and must not be restyled into the site palette.
   -------------------------------------------------------------------------- */
.hygiene {
    display: grid; gap: var(--s-8); align-items: center;
}
@media (min-width: 860px) { .hygiene { grid-template-columns: 320px minmax(0, 1fr); gap: var(--s-10); } }

.hygiene__cert {
    background: var(--white); padding: var(--s-4); border-radius: var(--radius);
    box-shadow: var(--shadow-hard); border: 1px solid var(--border);
}
.hygiene__cert img { width: 100%; height: auto; border-radius: 3px; }

.hygiene__score {
    display: inline-flex; align-items: stretch; border-radius: var(--radius);
    overflow: hidden; border: 2px solid #000; margin-bottom: var(--s-5);
}
.hygiene__score b {
    background: #72b043; color: #000;
    font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
    padding: 10px 18px; display: grid; place-items: center;
}
.hygiene__score span {
    background: #000; color: #fff; display: grid; place-items: center;
    padding: 10px 18px; font-size: .78rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
}

.hygiene__meta {
    list-style: none; margin: var(--s-6) 0 0; padding: 0;
    display: grid; gap: var(--s-3); font-size: var(--step--1);
}
.hygiene__meta li { display: flex; gap: var(--s-4); }
.hygiene__meta strong {
    min-width: 132px; color: var(--text-muted); font-weight: 700;
    font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; padding-top: 3px;
}
.section--dark .hygiene__meta strong { color: #8a857c; }

/* Compact badge for the footer */
.hygiene-badge {
    display: inline-flex; align-items: center; gap: var(--s-3);
    padding: 8px 14px; border: 1px solid #35322c; border-radius: var(--radius);
    text-decoration: none; font-size: .78rem; line-height: 1.2;
}
.hygiene-badge:hover { border-color: var(--gold); }
.hygiene-badge b {
    background: #72b043; color: #000; width: 28px; height: 28px;
    display: grid; place-items: center; border-radius: 4px;
    font-family: var(--font-display); font-size: 1.05rem;
}
.hygiene-badge span { color: #b9b5ac; }
.hygiene-badge span em { display: block; font-style: normal; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; font-size: .68rem; }

/* --------------------------------------------------------------------------
   22. Reviews
   -------------------------------------------------------------------------- */
.reviews-head {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: var(--s-5); margin-bottom: var(--s-9);
}
.reviews-score {
    display: flex; align-items: center; gap: var(--s-4);
    padding: var(--s-4) var(--s-6); background: var(--bg-panel);
    border: 1px solid var(--border); border-radius: var(--radius);
}
.reviews-score__num { font-family: var(--font-display); font-size: var(--step-3); line-height: 1; }
.reviews-score__stars { color: var(--accent); letter-spacing: .12em; font-size: 1.05rem; }
.reviews-score__meta { font-size: .8rem; color: var(--text-muted); }

.review {
    background: var(--bg-panel); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--s-6);
    display: flex; flex-direction: column; gap: var(--s-3);
}
.review__top { display: flex; align-items: center; gap: var(--s-3); }
.review__avatar {
    width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%;
    display: grid; place-items: center; background: var(--accent); color: var(--on-accent);
    font-family: var(--font-display); font-size: 1.2rem; line-height: 1;
}
.review__who { min-width: 0; }
.review__name { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.2; }
.review__when { font-size: .76rem; color: var(--text-muted); }
.review__stars { color: var(--accent); letter-spacing: .1em; font-size: .95rem; }
.review__body { color: var(--text-soft); font-size: var(--step--1); line-height: 1.65; }
.review__source {
    margin-top: auto; padding-top: var(--s-3); border-top: 1px solid var(--border);
    font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted);
    display: flex; align-items: center; gap: 7px;
}

/* Shown while there are no published reviews yet */
.reviews-empty {
    text-align: center; max-width: 560px; margin-inline: auto;
    padding: var(--s-9) var(--s-6);
    border: 1px dashed var(--border-strong); border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   23. WhatsApp click-to-chat
   WhatsApp green is the platform's own colour and stays fixed in both themes,
   the same reasoning as the FSA badge — people recognise it by its colour.
   -------------------------------------------------------------------------- */
:root { --wa: #25d366; --wa-dark: #128c7e; }

.wa {
    position: fixed; right: 20px; bottom: 20px; z-index: 150;
    display: flex; flex-direction: column; align-items: flex-end; gap: var(--s-3);
}
@media (min-width: 720px) { .wa { right: 28px; bottom: 28px; } }

.wa__launcher {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 20px; border: 0; border-radius: var(--radius-pill);
    background: var(--wa); color: #fff; cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
    font-family: var(--font-body); font-size: .92rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    transition: transform .14s ease, background-color .14s ease;
}
.wa__launcher:hover { background: var(--wa-dark); transform: translateY(-2px); }
.wa__launcher svg { width: 24px; height: 24px; flex-shrink: 0; }

/* On small screens the launcher collapses to a circle */
@media (max-width: 560px) {
    .wa__launcher { padding: 15px; }
    .wa__launcher-label { display: none; }
}

.wa__panel {
    width: min(330px, calc(100vw - 40px));
    background: var(--bg-panel); color: var(--text);
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; box-shadow: 0 14px 40px rgba(0, 0, 0, .3);
}
.wa__panel[hidden] { display: none; }

.wa__head {
    display: flex; align-items: center; gap: var(--s-3);
    background: var(--wa-dark); color: #fff; padding: var(--s-4) var(--s-5);
}
.wa__avatar {
    width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%;
    background: rgba(255, 255, 255, .2); display: grid; place-items: center;
}
.wa__avatar svg { width: 21px; height: 21px; }
.wa__head strong { display: block; font-family: var(--font-display); font-size: 1.02rem; line-height: 1.2; }
.wa__head small { font-size: .74rem; opacity: .85; }
.wa__close {
    margin-left: auto; background: transparent; border: 0; color: #fff;
    font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 0 2px;
}

.wa__body { padding: var(--s-5); }
.wa__bubble {
    background: var(--bg-inset); border: 1px solid var(--border);
    border-radius: 3px 12px 12px 12px; padding: var(--s-4);
    font-size: .95rem; line-height: 1.55; margin-bottom: var(--s-4);
}
.wa__topics { display: grid; gap: var(--s-2); margin-bottom: var(--s-4); }
.wa__topic {
    display: block; padding: 10px 14px; text-decoration: none;
    border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
    font-size: .88rem; text-align: center;
    transition: background-color .14s ease, color .14s ease, border-color .14s ease;
}
.wa__topic:hover { background: var(--wa); border-color: var(--wa); color: #fff; }

.wa__go {
    display: block; padding: 13px; border-radius: var(--radius);
    background: var(--wa); color: #fff; text-align: center; text-decoration: none;
    font-size: .86rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.wa__go:hover { background: var(--wa-dark); }
.wa__note { margin-top: var(--s-4); font-size: .76rem; line-height: 1.5; color: var(--text-muted); }

/* Keep the widget out of printed invoices */
@media print { .wa { display: none !important; } }
