/* Lino Kiosk — seaside kiosk demo. Self-contained, no third-party requests. */
:root {
  --sea: #0e4d5c;
  --sea-deep: #082e38;
  --sea-2: #14657a;
  --sun: #f4a300;
  --coral: #e2603f;
  --ink: #14232a;
  --muted: #4c6068;
  --sand: #faf6ef;
  --sand-2: #f0e9dd;
  --card: #ffffff;
  --line: #e4ddd0;
  --shadow: 0 8px 30px rgba(8, 46, 56, 0.10);
  --radius: 16px;
  --maxw: 1120px;
  --header-h: 68px;
  --menu-nav-h: 56px;
  --menu-jump-h: 72px;
  --mobile-bar-h: 68px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 8px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: var(--sea-2); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.container-narrow { max-width: 760px; }

/* Grid/flex children default to min-width:auto (= min-content), which lets an
   image's intrinsic width blow a track past the viewport. Reset it so tracks
   can shrink and the page never overflows horizontally on mobile. */
.story-grid > *, .visit-grid > *, .menu-grid > *, .review-grid > *,
.pick-grid > *, .when-grid > *,
.gallery-grid > *, .footer-grid > *, .header-inner > * { min-width: 0; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--sea); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: .95rem; }
.btn-primary { background: var(--sun); color: #3d2a00; border-color: var(--sun); box-shadow: 0 4px 14px rgba(244,163,0,.35); }
.btn-primary:hover { background: #ffb521; }
.btn-ghost { background: transparent; color: var(--sea); border-color: var(--sea); }
.btn-ghost:hover { background: var(--sea); color: #fff; }
.btn-light { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-light:hover { background: #fff; color: var(--sea-deep); border-color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,239,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 16px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-logo {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  display: block; object-fit: contain;
}
.brand-logo-full {
  display: block; width: 176px; height: auto;
  background: #f7efe0; padding: 14px 18px; border-radius: 16px;
}
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px; background: var(--sea);
  color: var(--sun); font-weight: 800; font-size: 1.5rem;
  display: grid; place-items: center; flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.08; min-width: 0; }
.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.14rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-text small { font-family: var(--font); font-weight: 600; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.brand-footer .brand-name { color: #fff; }
.main-nav { display: flex; gap: 6px; margin-left: auto; }
.main-nav a { color: var(--ink); text-decoration: none; font-weight: 600; padding: 8px 12px; border-radius: 8px; }
.main-nav a:hover { background: var(--sand-2); color: var(--sea); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg { position: relative; z-index: 0; width: 100%; aspect-ratio: 16 / 9; max-height: min(72vh, 680px); background: var(--sea-deep); }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,46,56,.28) 0%, rgba(8,46,56,.52) 55%, rgba(8,46,56,.80) 100%);
  pointer-events: none;
}
.hero-inner {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(32px, 6vw, 80px) 20px;
}
.section[id] { scroll-margin-top: 0; }
.hero-panel {
  max-width: 680px;
  background: rgba(8,46,56,.58);
  backdrop-filter: blur(6px);
  padding: clamp(20px, 4vw, 32px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 48px rgba(0,0,0,.30);
}
.hero-lead {
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sun);
}
.hero-badge {
  display: inline-block; background: rgba(244,163,0,.2); color: #ffd67e;
  border: 1px solid rgba(244,163,0,.5); padding: 6px 14px; border-radius: 999px;
  font-weight: 700; font-size: .82rem; letter-spacing: .02em; margin-bottom: 18px;
}
.hero h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.45); margin-bottom: .45em; }
.hero-sub { font-size: clamp(1.02rem, 2vw, 1.18rem); color: #fff; max-width: 34em; text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-facts { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.hero-meta {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0; padding: 0;
}
.hero-meta li {
  font-size: .78rem; font-weight: 700; color: var(--sea-deep);
  background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px; padding: 7px 13px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.hero-rating { margin: 12px 0 0; font-size: .88rem; }
.hero-rating a { color: #ffe08a; font-weight: 700; text-decoration: none; }
.hero-rating a:hover { color: #fff; text-decoration: underline; }

/* ---------- sections ---------- */
.section { padding: clamp(52px, 8vw, 92px) 0; }
.section-alt { background: var(--sand-2); }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 800; color: var(--coral); margin: 0 0 .4rem; }
.section-note { color: var(--muted); max-width: 60ch; margin-top: -.2rem; }
.muted { color: var(--muted); }

/* story */
.story-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.story-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 18px 0 0; }
.story-badges li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-weight: 600; font-size: .9rem; }

/* signature picks */
.pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.pick-card {
  margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.pick-card figure { margin: 0; aspect-ratio: 4/3; background: var(--sea-deep); overflow: hidden; }
.pick-card img { width: 100%; height: 100%; object-fit: cover; }
.pick-card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.pick-card h3 { margin: 0 0 6px; color: var(--sea); font-size: 1.12rem; }
.pick-card p { margin: 0; color: var(--muted); font-size: .95rem; flex: 1; }
.pick-card footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--sand-2); }
.pick-price { font-weight: 800; color: var(--sea); font-size: 1.05rem; }
.pick-badge { background: rgba(244,163,0,.15); color: #9a6200; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; border-radius: 999px; }

/* when to visit */
.when-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.when-card { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.when-card h3 { color: var(--sea); margin-bottom: 8px; font-size: 1.05rem; }
.when-card p { margin: 0; color: var(--muted); font-size: .96rem; }
.when-time { display: inline-block; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--coral); margin-bottom: 8px; }

/* menu extras */
.menu-tag {
  display: inline-block; margin-left: 8px; vertical-align: middle;
  background: rgba(244,163,0,.18); color: #9a6200; font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em; padding: 2px 8px; border-radius: 999px;
}
.menu-item dt .menu-tag { margin-left: 6px; }
.story-figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); width: 100%; aspect-ratio: 16 / 9; max-height: clamp(200px, 28vw, 360px); }
.story-figure picture { display: block; width: 100%; height: 100%; }
.story-figure img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* menu — accordion categories + jump nav */
.menu-jump { display: none; margin: 20px 0 8px; }
.menu-jump-field {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 6px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(247,251,252,.98) 100%);
  border: 1px solid rgba(14, 77, 92, .16);
  border-radius: 14px;
  box-shadow:
    0 10px 28px rgba(8, 46, 56, .08),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.menu-jump-field:focus-within {
  border-color: rgba(14, 77, 92, .34);
  box-shadow:
    0 0 0 3px rgba(244, 163, 0, .28),
    0 12px 30px rgba(8, 46, 56, .12),
    inset 0 1px 0 rgba(255, 255, 255, .95);
}
.menu-jump-icon {
  margin-left: 4px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  flex: none;
  color: var(--sea);
  background: rgba(14, 77, 92, .08);
  border: 1px solid rgba(14, 77, 92, .08);
  border-radius: 11px;
}
.menu-jump-copy { min-width: 0; padding: 2px 0; }
.menu-jump-label {
  display: block;
  margin: 0 0 2px;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--coral);
}
.menu-jump-select {
  width: 100%; min-height: 0;
  padding: 0 8px 0 0;
  border: 0; background: transparent;
  font: inherit; font-weight: 700; font-size: 1.02rem; line-height: 1.25;
  color: var(--sea-deep);
  appearance: none; -webkit-appearance: none;
  box-shadow: none;
  cursor: pointer;
}
.menu-jump-select:focus { outline: none; }
.menu-jump-chevron {
  width: 40px; height: 40px;
  margin-right: 2px;
  display: grid; place-items: center;
  flex: none;
  color: #fff;
  background: linear-gradient(180deg, var(--sea-2) 0%, var(--sea) 100%);
  border-radius: 11px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  pointer-events: none;
  transition: transform .2s ease;
}
.menu-jump-field:focus-within .menu-jump-chevron { transform: translateY(1px); }

@supports (appearance: base-select) {
  .menu-jump-select,
  .menu-jump-select::picker(select) {
    appearance: base-select;
  }
  .menu-jump-select {
    padding-right: 0;
  }
  .menu-jump-select::picker(select) {
    margin-top: 8px;
    padding: 8px;
    border: 1px solid rgba(14, 77, 92, .14);
    border-radius: 14px;
    background: var(--card);
    box-shadow: 0 18px 40px rgba(8, 46, 56, .16);
  }
  .menu-jump-select option {
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--sea-deep);
  }
  .menu-jump-select option:checked {
    background: rgba(244, 163, 0, .16);
    color: var(--sea-deep);
  }
  .menu-jump-select option:hover {
    background: rgba(14, 77, 92, .08);
  }
  .menu-jump-chevron { display: none; }
}
.menu-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  position: sticky; top: var(--header-h, 68px); z-index: 20;
  background: var(--sand); padding: 10px 0;
  margin: 0 0 6px;
}
.section-alt .menu-nav { background: var(--sand-2); }
.menu-nav a {
  text-decoration: none; font-weight: 700; font-size: .82rem;
  color: var(--sea); background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 14px; white-space: nowrap;
}
.menu-nav a:hover { background: var(--sea); color: #fff; border-color: var(--sea); }
#menu { scroll-margin-top: 0; }
.menu-cat { scroll-margin-top: var(--menu-nav-h); }
.menu-grid { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.menu-board { margin-top: 22px; }
.menu-cat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 0; box-shadow: var(--shadow); overflow: hidden; }
.menu-cat summary {
  color: var(--sea); padding: 18px 22px; margin: 0;
  border-bottom: 2px solid transparent; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
  font-size: 1.15rem; font-weight: 700;
}
.menu-cat[open] summary { border-bottom-color: var(--sand-2); }
.menu-cat summary::-webkit-details-marker { display: none; }
.menu-cat summary::after { content: "+"; color: var(--coral); font-size: 1.4rem; font-weight: 400; line-height: 1; }
.menu-cat[open] summary::after { content: "–"; }
.menu-cat .menu-list { padding: 4px 22px 18px; }
.menu-cat h3 { display: none; }
.cat-note { font-size: .8rem; font-weight: 700; color: var(--coral); text-transform: none; letter-spacing: 0; }
.menu-list { margin: 0; }
.menu-item { display: flex; align-items: baseline; gap: 8px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: 0; }
.menu-item dt { margin: 0; font-weight: 600; flex: 1; }
.menu-item dt span { display: block; font-weight: 400; font-size: .84rem; color: var(--muted); font-style: italic; }
.menu-item dd { margin: 0; font-weight: 700; color: var(--sea); white-space: nowrap; }

/* gallery — tiles are pre-composited 4:3; dark frame matches blurred backdrop edges */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; margin-top: 28px; }
.gallery-item { display: block; padding: 0; border: 0; background: var(--sea-deep); cursor: pointer; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); min-width: 0; aspect-ratio: 4/3; }
.gallery-item picture { display: block; width: 100%; height: 100%; }
.gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.03); }

/* reviews */
.rating-summary { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin: 8px 0 26px; }
.rating-score { font-size: 2.6rem; font-weight: 800; color: var(--sea); line-height: 1; }
.rating-stars { color: var(--sun); font-size: 1.5rem; letter-spacing: 2px; }
.rating-meta { color: var(--muted); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.review-card p { font-size: 1.02rem; }
.review-card footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 8px; padding-top: 10px; border-top: 1px solid var(--sand-2); }
.rc-author { font-weight: 700; }
.rc-stars { color: var(--sun); letter-spacing: 1px; }
.review-source { margin-top: 22px; }

/* visit */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 28px; align-items: stretch; }
.visit-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.info-list { margin: 0 0 20px; }
.info-list > div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--sand-2); }
.info-list > div:last-child { border-bottom: 0; }
.info-list dt { font-weight: 800; color: var(--sea); text-transform: uppercase; font-size: .72rem; letter-spacing: .08em; padding-top: 3px; }
.info-list dd { margin: 0; }
.visit-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.visit-note { margin: 16px 0 0; font-size: .9rem; color: var(--muted); }
.visit-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--card); border: 1px solid var(--line); }
.map-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.map-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8eaf0;
  --map-pin-x: 40%;
  --map-pin-y: 58%;
}
.map-img {
  display: block; width: 100%; height: auto; aspect-ratio: 4 / 3;
  object-fit: cover; object-position: center center;
  transition: transform 0.35s ease;
}
.map-marker {
  position: absolute;
  left: var(--map-pin-x);
  top: var(--map-pin-y);
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 6px 14px rgba(8, 46, 56, 0.28));
}
.map-marker-label {
  margin-bottom: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sea);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.map-marker-pin {
  position: relative;
  width: 22px;
  height: 22px;
  background: var(--coral);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.map-marker-pin::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(226, 96, 63, 0.45);
  border-radius: 50%;
  animation: map-pin-pulse 2.4s ease-out infinite;
}
@keyframes map-pin-pulse {
  0% { transform: scale(0.35); opacity: 0.9; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .map-marker-pin::after { animation: none; opacity: 0.35; transform: scale(1); }
}
.map-link:hover .map-img { transform: scale(1.02); }
.map-pill {
  display: block; margin: 0; padding: 14px 18px;
  background: var(--sun); color: #3d2a00; font-weight: 700;
  text-align: center; font-size: .95rem;
  border-top: 1px solid rgba(61, 42, 0, 0.08);
}
.map-link:hover .map-pill { background: #ffb521; }
.map-attrib {
  margin: 0; padding: 8px 14px 10px;
  font-size: 0.68rem; color: var(--muted);
  background: var(--card); border-top: 1px solid var(--sand-2);
}
.map-attrib a { color: var(--sea-2); text-decoration: none; font-weight: 600; }
.map-attrib a:hover { text-decoration: underline; }

/* faq */
.faq-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; }
.faq-item summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--sea); font-size: 1.5rem; font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding-bottom: 16px; margin: 0; color: var(--muted); }

/* cta band */
.cta-band { background: linear-gradient(120deg, var(--sea-deep), var(--sea)); color: #fff; padding: clamp(48px, 7vw, 84px) 0; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-inner { max-width: 640px; }
.cta-band p { color: #d9e6e9; font-size: 1.1rem; }
.cta-band .hero-ctas { justify-content: center; }

/* footer */
.site-footer { background: var(--sea-deep); color: #cfdde0; padding: 56px 0 90px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 30px; }
.brand-footer .brand-mark { background: rgba(255,255,255,.1); }
.brand-footer .brand-text, .brand-footer { color: #fff; }
.footer-blurb { color: #a9c0c5; max-width: 30ch; margin-top: 12px; }
.site-footer h3 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.site-footer nav { display: flex; flex-direction: column; gap: 8px; }
.site-footer a { color: #cfdde0; text-decoration: none; }
.site-footer a:hover { color: var(--sun); }
.footer-contact p { color: #a9c0c5; }
.footer-legal { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.footer-copy { text-align: center; color: #7f9aa0; font-size: .82rem; margin: 40px auto 0; max-width: 70ch; padding: 0 20px; }

/* mobile bar — floating pill, shown ≤760px */
.mobile-bar { display: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,46,56,.94); display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 16px; right: 20px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.15); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* legal / doc pages */
.doc { padding: 60px 0 80px; }
.doc h1 { color: var(--sea); }
.doc h2 { font-size: 1.3rem; margin-top: 1.8em; }
.doc-updated { color: var(--muted); font-size: .9rem; }
.doc-note { background: var(--sand-2); border-left: 4px solid var(--sun); padding: 14px 18px; border-radius: 8px; }
.doc-back { display: inline-block; margin-top: 30px; font-weight: 700; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .story-grid, .visit-grid { grid-template-columns: 1fr; }
  .review-grid, .pick-grid, .when-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 961px) {
  .menu-cat { scroll-margin-top: var(--menu-nav-h); }

  .menu-nav {
    position: sticky;
    top: var(--header-h);
    z-index: 20;
    margin: 0;
    padding: 12px 22px;
    background: var(--card);
    border: 1px solid var(--line);
    border-bottom: 1px solid var(--sand-2);
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .menu-body {
    background: var(--card);
    border: 1px solid var(--line);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .menu-grid {
    margin-top: 0;
    gap: 0;
  }

  .menu-cat {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid var(--sand-2);
  }

  .menu-cat:first-child { border-top: 0; }
}
@media (max-width: 960px), (max-height: 640px) and (min-width: 961px) {
  /* Stack hero on tablet / short viewports: overlay panel was taller than the image area and got clipped. */
  .hero {
    overflow: visible;
    display: flex;
    flex-direction: column;
    background: var(--sea-deep);
  }
  .hero::after { display: none; }
  .hero-bg {
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
    max-height: min(34vh, 240px);
    min-height: 150px;
  }
  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8,46,56,.15) 0%, rgba(8,46,56,.55) 100%);
    pointer-events: none;
  }
  .hero-inner {
    position: relative;
    inset: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: 18px 20px 28px;
  }
  .hero-panel { max-width: none; }
  .hero h1 { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .menu-jump {
    display: block;
    position: sticky; top: var(--header-h); z-index: 20;
    background: var(--sand); padding: 0 0 10px; margin-bottom: 8px;
  }
  .menu-jump-field { min-height: 58px; }
  .menu-nav { display: none; }
  .menu-cat { scroll-margin-top: var(--menu-jump-h); }
}
@media (max-width: 760px) {
  .brand-logo { width: 36px; height: 36px; }
  .brand-name { font-size: 1.05rem; }
  .brand-text small { font-size: .58rem; letter-spacing: .06em; }
  .brand-logo-full { width: 150px; }
  .header-actions { margin-left: auto; }
  .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--sand);
    border-bottom: 1px solid var(--line); padding: 8px 16px 16px;
    box-shadow: var(--shadow); display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 10px; border-radius: 8px; border-bottom: 1px solid var(--line); }
  .main-nav a:last-child { border-bottom: 0; }
  .review-grid, .pick-grid, .when-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  body {
    padding-bottom: calc(var(--mobile-bar-h) + max(10px, min(env(safe-area-inset-bottom, 0px), 12px)) + 10px);
  }
  .mobile-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 0 14px max(10px, min(env(safe-area-inset-bottom, 0px), 12px));
    pointer-events: none;
  }
  .mobile-bar-inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(14, 77, 92, 0.18);
    border-radius: 999px;
    box-shadow: 0 10px 36px rgba(8, 46, 56, 0.2), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  }
  .mobile-bar-link {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 48px;
    min-height: 48px;
    padding: 6px 4px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    transition: background 0.15s ease, transform 0.15s ease;
  }
  .mobile-bar-link:active { background: var(--sand-2); transform: scale(0.96); }
  .mobile-bar-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(14, 77, 92, 0.08);
    color: var(--sea);
  }
  .mobile-bar-icon svg { display: block; }
  .mobile-bar-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--sea-deep);
  }
  .mobile-bar-primary {
    flex: 0 1 auto;
    min-width: 96px;
    padding: 9px 20px;
    margin: 0 2px;
    color: #3d2a00 !important;
    background: linear-gradient(180deg, #fbb020 0%, var(--sun) 100%);
    box-shadow: 0 5px 16px rgba(244, 163, 0, 0.38);
  }
  .mobile-bar-primary .mobile-bar-icon {
    background: rgba(61, 42, 0, 0.12);
    color: #3d2a00;
  }
  .mobile-bar-primary:active {
    background: linear-gradient(180deg, #f4a300 0%, #e89600 100%);
    box-shadow: 0 2px 8px rgba(244, 163, 0, 0.28);
  }
  .mobile-bar-primary .mobile-bar-label { font-size: 0.78rem; font-weight: 800; color: #3d2a00; }
}

.brand-mark-wide { font-size: .72rem; letter-spacing: -.02em; }
