/* Triple A's Cafe — bespoke front-end.
   Palette taken from their original logo (Philippine-flag badge):
   blue #3b4ca8, red #ed1d24, yellow #f3ef15, near-black #272726, white.
   Var names kept from the first build (mango=blue, leaf=deep blue, chili=red, sun=yellow). */

:root {
  --cream: #f6f7fb;
  --paper: #ffffff;
  --ink: #272726;
  --soft: #5b5e6a;
  --line: #e2e5ef;
  --mango: #3b4ca8;
  --mango-deep: #2e3c87;
  --leaf: #2e3c87;
  --leaf-deep: #232e6b;
  --chili: #d4161c;
  --sun: #f3ef15;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(20, 26, 60, .10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
}

/* the hidden attribute must always win (cookie banner et al.) */
[hidden] { display: none !important; }

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

h1, h2, h3, .f-brand, .brand-text {
  font-family: 'Young Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.22rem; }
p + p { margin-top: .8em; }

a { color: var(--chili); text-underline-offset: 3px; }
a:hover { color: var(--mango-deep); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.kicker {
  font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; color: var(--chili); margin-bottom: .5rem;
}
.kicker.light { color: var(--sun); }

/* ── nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .in {
  max-width: 1200px; margin: 0 auto; padding: .55rem clamp(1rem, 3vw, 1.6rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand-logo { width: 46px; height: auto; flex: none; }
.brand-text { font-size: 1.25rem; }
.brand-text em { font-style: normal; color: var(--chili); }

.links { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.3rem); }
.links a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: .95rem;
  padding: .55rem .25rem; min-height: 44px; display: inline-flex; align-items: center;
  border-bottom: 3px solid transparent;
}
.links a:hover { color: var(--chili); }
.links a[aria-current="page"] { border-bottom-color: var(--mango); }
.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--leaf); color: #fff !important;
  padding: .55rem 1.05rem !important; border-radius: 999px;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--leaf-deep); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper); cursor: pointer;
}
.nav-toggle span { display: block; height: 2.5px; margin: 0 10px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .links {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem clamp(1rem, 4vw, 2rem) 1rem;
    box-shadow: var(--shadow);
  }
  .links.open { display: flex; }
  .links a { padding: .8rem .25rem; border-bottom: 1px solid var(--line); }
  .links a[aria-current="page"] { border-bottom-color: var(--mango); }
  .nav-cta { margin-top: .8rem; justify-content: center; }
}

/* ── buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--chili); color: #fff; text-decoration: none;
  font-weight: 800; font-size: 1rem; font-family: 'Nunito Sans', sans-serif;
  padding: .8rem 1.5rem; min-height: 48px; border: none; border-radius: 999px;
  cursor: pointer; transition: background .2s, transform .2s;
}
.btn:hover { background: #b01217; color: #fff; transform: translateY(-1px); }
.btn.ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--cream); }
.btn.ghost.light { color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.7); flex-direction: column; gap: .1rem; line-height: 1.3; padding: .8rem 1.3rem; text-align: center; }
.btn.ghost.light span { font-weight: 400; font-size: .82rem; opacity: .85; }
.btn.ghost.light:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn.sun { background: var(--sun); color: var(--ink); }
.btn.sun:hover { background: #ddda10; color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.btn-row.center { justify-content: center; }

/* ── hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 12, 24, .82) 0%, rgba(10, 12, 24, .55) 52%, rgba(10, 12, 24, .25) 100%);
}
.hero-in { position: relative; padding-top: clamp(4.5rem, 11vw, 8.5rem); padding-bottom: clamp(4.5rem, 11vw, 8rem); }
.hero .kicker { color: var(--sun); }
.hero h1 { max-width: 19ch; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero .lead { max-width: 52ch; margin-top: 1.1rem; font-size: 1.14rem; }
.hero .lead strong { color: var(--sun); }
.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; padding: 0; }
.hero-chips li {
  background: rgba(255, 253, 247, .14); border: 1px solid rgba(255, 253, 247, .35);
  backdrop-filter: blur(4px);
  padding: .35rem .95rem; border-radius: 999px; font-size: .88rem; font-weight: 700;
}

.bandi { line-height: 0; }
.bandi svg { width: 100%; height: 18px; display: block; }
.hero .bandi { position: absolute; left: 0; right: 0; bottom: 0; }
.bandi.flip svg { transform: none; }
.footer .bandi svg { transform: rotate(180deg); }

/* ── sections ────────────────────────────────────────────────────────────── */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section.slim { padding-top: clamp(1.5rem, 4vw, 2.5rem); }
.section.tint { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 640px; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.sec-head.split { max-width: none; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.center-note { text-align: center; margin-top: 2rem; color: var(--soft); }

.page-head { padding: clamp(2.4rem, 6vw, 4rem) 1rem clamp(1rem, 3vw, 1.6rem); max-width: 760px; margin: 0 auto; text-align: center; }
.page-head .lead { margin-top: 1rem; color: var(--soft); font-size: 1.12rem; }

/* ── value cards ─────────────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; }
.value-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow);
}
.value-card h3 { margin: .85rem 0 .45rem; }
.value-card p { color: var(--soft); font-size: .98rem; }
.v-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; font-size: 1.5rem; }
.v-icon::before { font-size: 1.45rem; }
.v-rice { background: #fbf9d8; } .v-rice::before { content: "🍚"; }
.v-calendar { background: #fde2e3; } .v-calendar::before { content: "🗓️"; }
.v-family { background: #e4e8f7; } .v-family::before { content: "❤️"; }
.v-anchor { background: #e3ecf3; } .v-anchor::before { content: "⚓"; }

/* ── steps ───────────────────────────────────────────────────────────────── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; counter-reset: step; padding: 0; }
.step { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; position: relative; }
.step-n {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--mango); color: #fff; font-family: 'Young Serif', serif; font-size: 1.2rem;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--soft); font-size: .98rem; }

/* ── dish cards ──────────────────────────────────────────────────────────── */
.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.3rem; }
.dish-grid.home { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.dish-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s;
}
a.dish-card:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(20, 26, 60, .16); color: var(--ink); }
.dish-photo { aspect-ratio: 4 / 3; overflow: hidden; background: #e9ebf4; }
.dish-photo img { width: 100%; height: 100%; object-fit: cover; }
.halo-photo { display: grid; place-items: center; background: linear-gradient(135deg, var(--sun), #fde2e3 60%, #e4e8f7); }
.halo-photo span { font-family: 'Young Serif', serif; font-size: 2rem; color: var(--chili); text-align: center; line-height: 1.1; }
.dish-body { padding: 1.2rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.dish-body h3 { font-size: 1.3rem; }
.dish-body > p { color: var(--soft); font-size: .97rem; flex: 1; }
.dish-more { font-weight: 800; color: var(--chili); font-size: .92rem; }
.dish-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.dish-tags span {
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: .18rem .6rem; color: var(--soft);
}
.dish-info summary {
  cursor: pointer; font-weight: 800; color: var(--leaf); font-size: .92rem;
  min-height: 44px; display: flex; align-items: center;
}
.dish-info[open] summary { color: var(--leaf-deep); }
.d-ing { font-size: .92rem; color: var(--soft); }
.d-all { font-size: .88rem; margin-top: .35rem; }
.allergen-note { margin-top: 2rem; text-align: center; color: var(--soft); font-size: .95rem; }

/* menu filters */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; justify-content: center; }
.chip {
  border: 1.5px solid var(--line); background: var(--paper); color: var(--ink);
  font-family: 'Nunito Sans', sans-serif; font-weight: 800; font-size: .92rem;
  border-radius: 999px; padding: .5rem 1.1rem; min-height: 44px; cursor: pointer;
  transition: background .18s, border-color .18s;
}
.chip:hover { border-color: var(--mango); }
.chip.on { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* ── halo band ───────────────────────────────────────────────────────────── */
.halo { background: linear-gradient(120deg, #ed1d24, #b01217); padding: clamp(3rem, 7vw, 4.5rem) 0; }
.halo-card { max-width: 620px; color: #fff; }
.halo-card h2 { color: #fff; margin-bottom: .6rem; }
.halo-card p { color: rgba(255,255,255,.92); }
.halo .btn-row, .halo .btn { margin-top: 1.4rem; }

/* ── story ───────────────────────────────────────────────────────────────── */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.story-photo img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%; }
.story-text h2 { margin-bottom: .9rem; }
.story-text p { color: var(--soft); }
@media (max-width: 800px) { .story-split { grid-template-columns: 1fr; } .story-photo { order: -1; } }

/* ── cruise band ─────────────────────────────────────────────────────────── */
.cruise { padding-top: 0; }
.cruise-card {
  background: var(--leaf); color: #fff; border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.8rem, 5vw, 3rem);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  box-shadow: var(--shadow);
}
.cruise-card h2 { color: #fff; margin-bottom: .7rem; }
.cruise-card p { color: rgba(255,255,255,.88); }
.cruise-links { display: flex; flex-direction: column; gap: .8rem; }
@media (max-width: 800px) { .cruise-card { grid-template-columns: 1fr; } }

/* ── visit ───────────────────────────────────────────────────────────────── */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.visit-list { list-style: none; padding: 0; margin: 1rem 0; }
.visit-list li { padding: .1rem 0; color: var(--soft); }
.visit-list li.strong, .visit-list li strong { color: var(--ink); font-weight: 800; }
.hours-note { background: #fbf9d8; border-radius: 12px; padding: .9rem 1.1rem; font-size: .95rem; }
.visit-photo img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
@media (max-width: 800px) { .visit-grid { grid-template-columns: 1fr; } }

/* ── team / about ────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.1rem; }
.team-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; }
.t-role { color: var(--chili); font-weight: 800; font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; margin: .3rem 0 .6rem; }
.team-card p:last-child { color: var(--soft); font-size: .97rem; }

/* faq */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: .7rem; }
.faq { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: .35rem 1.2rem; }
.faq summary { cursor: pointer; font-weight: 800; min-height: 48px; display: flex; align-items: center; font-size: 1.02rem; }
.faq p { padding: .2rem 0 1rem; color: var(--soft); }

/* ── catering ────────────────────────────────────────────────────────────── */
.cater-grid { display: grid; gap: 1.6rem; }
.cater-card {
  display: grid; grid-template-columns: 1fr 1.35fr; gap: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.cater-photo { min-height: 260px; }
.cater-photo img { width: 100%; height: 100%; object-fit: cover; }
.cater-body { padding: clamp(1.4rem, 3.5vw, 2.2rem); }
.cater-body h2 { margin-bottom: .6rem; }
.cater-body > p { color: var(--soft); }
.tick-list { list-style: none; padding: 0; margin: 1rem 0 1.3rem; display: grid; gap: .55rem; }
.tick-list li { padding-left: 1.7rem; position: relative; color: var(--soft); }
.tick-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--leaf); font-weight: 800; }
.tick-list strong { color: var(--ink); }
.small-note { font-size: .92rem; color: var(--soft); margin-bottom: 1.2rem; }
@media (max-width: 820px) { .cater-card { grid-template-columns: 1fr; } .cater-photo { max-height: 240px; } }

/* ── gallery ─────────────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .8rem; }
.g-item { border: none; padding: 0; background: none; cursor: zoom-in; border-radius: 14px; overflow: hidden; }
.g-item img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; transition: transform .25s; }
.g-item:hover img { transform: scale(1.04); }

.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(10, 12, 22, .93);
  display: flex; align-items: center; justify-content: center;
}
.lightbox img { max-width: min(92vw, 1100px); max-height: 86vh; border-radius: 10px; object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: none;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.7rem; cursor: pointer;
  display: grid; place-items: center; line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ── contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.contact-info h2, .contact-form h2 { margin-bottom: .8rem; }
.dock-h { margin: 1.8rem 0 .5rem; font-size: 1.05rem; }
.dock-links { list-style: none; padding: 0; display: grid; gap: .45rem; color: var(--soft); }
.contact-form {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 3.5vw, 2rem); box-shadow: var(--shadow);
}
.contact-form form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: .35rem; font-weight: 800; font-size: .93rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  font: inherit; font-weight: 400; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream);
  padding: .7rem .9rem; min-height: 48px; width: 100%;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--mango); outline-offset: 1px; border-color: var(--mango);
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .two-col { grid-template-columns: 1fr; } }

/* inline text links keep visual size but get a 44px hit area */
.center-note a, .dock-links a, .contact-info p a, .page-head .lead a, .allergen-note a,
.tick-list a, .prose a {
  display: inline-block; padding: .55rem 0; margin: -.45rem 0;
}

/* ── cta band ────────────────────────────────────────────────────────────── */
.cta-band { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band p { color: var(--soft); margin-top: .6rem; }

/* ── prose (privacy) ─────────────────────────────────────────────────────── */
.prose { max-width: 720px; }
.prose h2 { margin: 1.6rem 0 .5rem; font-size: 1.25rem; }
.prose p { color: var(--soft); }

/* ── flashes ─────────────────────────────────────────────────────────────── */
.flashes { padding-top: 1rem; }
.flash { border-radius: 12px; padding: .9rem 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.flash.success { background: #e3eee6; color: #214733; border: 1px solid #c4dccd; }
.flash.error { background: #fbe3dc; color: #8c2f1d; border: 1px solid #f0c4b8; }

/* ── footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--leaf-deep); color: #e9ecf6; margin-top: clamp(2rem, 6vw, 4rem); }
.fin {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: clamp(2rem, 5vw, 3.2rem); padding-bottom: 2rem;
}
.f-brand { font-size: 1.5rem; color: #fff; }
.f-brand em { font-style: normal; color: var(--sun); }
.f-tag { margin-top: .5rem; color: rgba(233, 236, 246, .85); }
.f-note { margin-top: .8rem; font-size: .9rem; color: rgba(233, 236, 246, .6); }
.footer h3 { color: var(--sun); font-size: .95rem; font-family: 'Nunito Sans', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .8rem; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .1rem; }
.footer a { color: #e9ecf6; text-decoration: none; }
.footer ul a, .fbase a { display: inline-flex; align-items: center; min-height: 44px; }
.footer a:hover { color: var(--sun); text-decoration: underline; }
.fbase {
  border-top: 1px solid rgba(233, 236, 246, .18);
  padding-top: 1.2rem; padding-bottom: 1.6rem;
  display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: space-between;
  font-size: .88rem; color: rgba(233, 236, 246, .65);
}
.fbase a { color: rgba(233, 236, 246, .85); }
@media (max-width: 800px) { .fin { grid-template-columns: 1fr; } }

/* ── cookie note ─────────────────────────────────────────────────────────── */
.cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 250;
  max-width: 560px; margin: 0 auto;
  background: var(--ink); color: var(--cream);
  border-radius: 14px; padding: 1rem 1.2rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.cookie p { flex: 1 1 260px; font-size: .92rem; }
.cookie .btn { min-height: 44px; padding: .55rem 1.2rem; }

/* ── reveal on scroll (opacity + translateY only — no X shift, no hscroll).
      Gated on html.js so content is never hidden if JS fails to load. ── */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .g-item img, .dish-card { transition: none; }
}

/* admin-set announcement banner */
.announce{background: var(--chili, #d4161c); color:#fff; text-align:center;
  padding:.55rem 1rem; font-weight:600; font-size:.95rem}
