/* ==========================================================================
   BOJO Resort — style.css
   Luxury seaside restaurant & resort, SH8 Orikum · Radhimë · Albanian Riviera
   --------------------------------------------------------------------------
   Contents
   1. Design tokens          6. Hero & page headers    11. Forms
   2. Base & reset           7. Sections & layouts     12. Footer
   3. Typography             8. Cards & bands          13. Reveal animations
   4. Buttons & links        9. Gallery & lightbox     14. Utilities & media
   5. Header & navigation   10. Menu (restaurant)
   ========================================================================== */

/* 1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette */
  --navy-950: #0A1826;
  --navy-900: #0E2233;
  --navy-800: #16334A;
  --navy-700: #22455F;
  --ivory:    #FAF7F0;
  --ivory-2:  #F3EDE1;
  --sand:     #E7DCC7;
  --sand-2:   #D9C9AA;
  --gold:     #C2A05E;
  --gold-2:   #D8BE8C;
  --gold-ink: #8A6C33;   /* darker gold for small text on light bg */
  --olive:    #6F7352;
  --stone:    #8B8D85;
  --ink:      #22303B;
  --ink-2:    #52616C;

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --section: clamp(5.5rem, 11vw, 10rem);
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 3px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .21, 1);
  --dur: .45s;

  /* Header */
  --header-h: 86px;
  --mobile-bar-h: 66px;
}

/* 2. Base & reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Keep in-page anchors clear of the fixed header */
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
  /* Light-only palette: keep native controls (date/time pickers, selects,
     scrollbars) in light mode even when the OS prefers dark. */
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

figure { margin: 0; }
address { font-style: normal; }

hr {
  border: 0;
  height: 1px;
  background: var(--sand-2);
  margin: 2rem 0;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible,
.site-header :focus-visible,
.lightbox :focus-visible { outline-color: var(--gold-2); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: .75rem 1.25rem;
  background: var(--navy-950);
  color: var(--ivory);
  font-size: .85rem;
  letter-spacing: .08em;
  text-decoration: none;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* 3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  color: var(--navy-900);
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.2; }
h4 {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin: 0 0 .75rem;
}

p { margin: 0 0 1.25rem; max-width: 65ch; }
.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--gold);
}
.on-dark .eyebrow { color: var(--gold-2); }

.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--ivory); }
.on-dark p { color: rgba(250, 247, 240, .82); }

.note {
  font-size: .85rem;
  color: var(--ink-2);
  font-style: italic;
}

/* 4. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;
  padding: .8rem 1.9rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
/* Faster, cleaner taps: remove the 300ms double-tap delay and the grey
   flash on touch, since every interactive element has its own hover/active
   and focus-visible styling. */
.btn, .link-line, .lang-btn, .filter-btn, .nav-toggle,
.gallery-item, .lightbox-btn, .faq-item summary, .exp-tile, .ig-item, .card {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1em; height: 1em; flex: none; }

.btn-gold { background: var(--gold); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-2); }

.btn-navy { background: var(--navy-900); color: var(--ivory); }
.btn-navy:hover { background: var(--navy-800); }

.btn-outline-light {
  border-color: rgba(250, 247, 240, .55);
  color: var(--ivory);
  background: transparent;
}
.btn-outline-light:hover { background: var(--ivory); color: var(--navy-950); border-color: var(--ivory); }

.btn-outline-dark {
  border-color: rgba(14, 34, 51, .4);
  color: var(--navy-900);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--navy-900); color: var(--ivory); border-color: var(--navy-900); }

.link-line {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy-900);
  padding-bottom: .35rem;
  background: linear-gradient(var(--gold), var(--gold)) left bottom / 2.25rem 1px no-repeat;
  transition: background-size var(--dur) var(--ease);
}
.link-line:hover { background-size: 100% 1px; }
.on-dark .link-line { color: var(--ivory); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

/* Inline text links */
.prose a, p a {
  color: var(--gold-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--gold);
  transition: color var(--dur) var(--ease);
}
.prose a:hover, p a:hover { color: var(--navy-900); }
.on-dark p a { color: var(--gold-2); }
.on-dark p a:hover { color: var(--ivory); }

/* 5. Header & navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}
/* Soft top scrim keeps the transparent nav legible over bright hero imagery,
   and fades out once the solid scrolled header takes over. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 150px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(6, 15, 26, .55), rgba(6, 15, 26, 0));
  opacity: 1;
  transition: opacity .35s var(--ease);
}
.site-header.is-scrolled::before { opacity: 0; }
.site-header .header-inner {
  max-width: calc(var(--container) + 4rem);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: height .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10, 24, 38, .88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(250, 247, 240, .09);
}
.site-header.is-scrolled .header-inner { height: 68px; }

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.brand .brand-logo {
  height: 56px;
  width: auto;
  transition: height .35s var(--ease);
}
.site-header.is-scrolled .brand-logo { height: 42px; }

.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav ul {
  display: flex;
  gap: clamp(1.1rem, 2.2vw, 2.1rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a:not(.btn) {
  position: relative;
  display: inline-block;
  padding: .5rem 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(250, 247, 240, .85);
  transition: color var(--dur) var(--ease);
}
.primary-nav a:not(.btn):hover { color: var(--ivory); }
.primary-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: .1rem;
  height: 1px;
  background: var(--gold);
  transition: right var(--dur) var(--ease);
}
.primary-nav a:not(.btn):hover::after,
.primary-nav a[aria-current="page"]::after { right: 0; }
.primary-nav a[aria-current="page"] { color: var(--ivory); }
.primary-nav .btn { min-height: 42px; padding: .55rem 1.4rem; }

/* Language switcher (EN · SQ · IT) */
.lang-switch { display: inline-flex; align-items: center; }
.lang-btn {
  min-height: 40px;
  padding: .35rem .5rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, .55);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.lang-btn + .lang-btn { border-left: 1px solid rgba(250, 247, 240, .22); }
.lang-btn:hover { color: var(--ivory); }
.lang-btn.is-active { color: var(--gold-2); }
/* Larger variant inside the mobile menu */
.lang-switch-menu { margin-bottom: 1.5rem; }
.lang-switch-menu .lang-btn {
  font-size: .82rem;
  padding: .45rem .95rem;
  color: rgba(250, 247, 240, .68);
}

/* Hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 48px;
  height: 48px;
  margin-right: -10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background: var(--ivory);
  transition: transform .35s var(--ease), top .35s var(--ease), opacity .2s;
}
.nav-toggle span:nth-child(1) { top: 19px; }
.nav-toggle span:nth-child(2) { top: 27px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 23px; transform: rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 1rem) var(--gutter) 3rem;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  overscroll-behavior: contain;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s var(--ease), visibility 0s .35s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transition-delay: 0s; }
.mobile-menu ul { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.mobile-menu li + li { margin-top: .35rem; }
.mobile-menu ul a {
  display: inline-block;
  padding: .45rem 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  color: var(--ivory);
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.mobile-menu ul a:hover,
.mobile-menu ul a[aria-current="page"] { color: var(--gold-2); }
.mobile-menu.is-open ul a { opacity: 1; transform: none; }
.mobile-menu.is-open li:nth-child(1) a { transition-delay: .08s; }
.mobile-menu.is-open li:nth-child(2) a { transition-delay: .13s; }
.mobile-menu.is-open li:nth-child(3) a { transition-delay: .18s; }
.mobile-menu.is-open li:nth-child(4) a { transition-delay: .23s; }
.mobile-menu.is-open li:nth-child(5) a { transition-delay: .28s; }
.mobile-menu.is-open li:nth-child(6) a { transition-delay: .33s; }
.mobile-menu .menu-meta {
  border-top: 1px solid rgba(250, 247, 240, .15);
  padding-top: 1.5rem;
  font-size: .9rem;
  color: rgba(250, 247, 240, .7);
}
.mobile-menu .menu-meta a { color: var(--gold-2); text-decoration: none; }

body.menu-open { overflow: hidden; }

/* Sticky mobile reservation bar */
.mobile-cta-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  display: none;
  gap: .6rem;
  padding: .55rem var(--gutter) calc(.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 24, 38, .94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(250, 247, 240, .1);
}
.mobile-cta-bar .btn {
  flex: 1;
  min-height: 46px;
  padding: .6rem .5rem;
  font-size: .74rem;
  letter-spacing: .1em;
  white-space: nowrap;
}
.mobile-cta-bar .btn:first-child { flex: 0 0 32%; }

/* 6. Hero & page headers
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--ivory);
  isolation: isolate;
}
.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img,
.page-hero-media img,
.hero-media video,
.page-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(10, 24, 38, .88) 0%, rgba(10, 24, 38, .38) 42%, rgba(10, 24, 38, .18) 70%, rgba(10, 24, 38, .45) 100%);
}
.hero-content {
  width: 100%;
  max-width: calc(var(--container) + 4rem);
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) var(--gutter) clamp(4.5rem, 10vh, 7.5rem);
}
/* Soft shadow keeps hero text legible over bright photography */
.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-sub { text-shadow: 0 1px 24px rgba(6, 15, 26, .38); }
.hero-content h1 {
  color: var(--ivory);
  max-width: 15ch;
  margin-bottom: 1.25rem;
}
.hero-content .hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  color: rgba(250, 247, 240, .88);
  max-width: 52ch;
  margin-bottom: 2.25rem;
}
.hero .eyebrow { color: var(--gold-2); }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 2.5rem;
  padding: .55rem 1.1rem;
  border: 1px solid rgba(250, 247, 240, .28);
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(250, 247, 240, .92);
  text-decoration: none;
  background: rgba(10, 24, 38, .35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.rating-badge:hover { border-color: var(--gold-2); background: rgba(10, 24, 38, .55); }
.rating-badge .stars { color: var(--gold-2); letter-spacing: .12em; font-size: .9rem; }
.rating-badge strong { font-weight: 700; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, .7);
  text-decoration: none;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 3.2rem;
  background: linear-gradient(to bottom, var(--gold-2), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sub-page hero */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(420px, 62vh, 620px);
  color: var(--ivory);
  isolation: isolate;
}
.page-hero .hero-content { padding-bottom: clamp(3rem, 7vh, 4.5rem); }
.page-hero h1 { color: var(--ivory); font-size: clamp(2.4rem, 5.5vw, 4rem); }
.page-hero .hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(250, 247, 240, .85);
  max-width: 56ch;
  margin-bottom: 0;
}

/* 7. Sections & layouts
   -------------------------------------------------------------------------- */
.container {
  max-width: calc(var(--container) + 4rem);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: 880px; margin-inline: auto; }

.section { padding-block: var(--section); }
.section-tight { padding-block: calc(var(--section) * .62); }
.bg-ivory-2 { background: var(--ivory-2); }
.bg-sand { background: var(--sand); }
.bg-navy { background: var(--navy-900); }
.bg-navy-deep { background: linear-gradient(170deg, var(--navy-900), var(--navy-950)); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center p { margin-inline: auto; }

/* Split (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  /* Own stacking context so the z-index:-1 gold offset frame sits behind the
     image but above the section background (otherwise it disappears). */
  isolation: isolate;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.split-media.landscape img { aspect-ratio: 4 / 3; }
.split-media::after {
  content: "";
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  opacity: .5;
  pointer-events: none;
  z-index: -1;
}
.split.reverse .split-media::after { inset: 1.1rem 1.1rem -1.1rem -1.1rem; }
.split-body .lead { margin-bottom: 1.5rem; }

/* Feature list (checkmark-free, refined) */
.feature-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.feature-list li {
  display: flex;
  gap: .8rem;
  align-items: baseline;
  color: var(--ink-2);
}
.feature-list li::before {
  content: "";
  flex: none;
  width: 1.1rem;
  height: 1px;
  background: var(--gold);
  transform: translateY(-.3em);
}
.on-dark .feature-list li { color: rgba(250, 247, 240, .82); }

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats .stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.1;
}
.stats .stat span {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.on-dark .stats .stat strong { color: var(--ivory); }
.on-dark .stats .stat span { color: var(--gold-2); }

/* 8. Cards & bands
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.card {
  background: var(--ivory);
  border: 1px solid var(--sand-2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(14, 34, 51, .28);
}
.card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card-body { padding: 1.75rem 1.75rem 2rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .6rem; }
.card-body p { font-size: .95rem; color: var(--ink-2); margin-bottom: 1.25rem; }
.card-body .link-line { margin-top: auto; align-self: flex-start; }

/* Showcase card — image-led with a single caption (no body copy) */
.card.showcase { margin: 0; }
.card.showcase .card-body { padding: 1.05rem 1.35rem 1.25rem; }
.card.showcase h3 { margin: 0; font-size: 1.3rem; }
.card.showcase p { font-size: .9rem; color: var(--ink-2); margin: .4rem 0 0; }
.on-dark .card.showcase { background: rgba(250, 247, 240, .04); border-color: rgba(250, 247, 240, .14); }
.on-dark .card.showcase h3 { color: var(--ivory); }
.on-dark .card.showcase p { color: rgba(250, 247, 240, .72); }
.card.showcase img { aspect-ratio: 4 / 5; }
.card.showcase.landscape img { aspect-ratio: 3 / 2; }

/* Experiences quick-grid (icon-free tiles that link into sections/pages) */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.exp-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(220px, 26vw, 320px);
  text-decoration: none;
  color: var(--ivory);
}
.exp-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
  z-index: -2;
}
.exp-tile::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(6, 15, 26, .82) 6%, rgba(6, 15, 26, .28) 55%, rgba(6, 15, 26, .12) 100%);
  transition: background .5s var(--ease);
}
.exp-tile:hover img { transform: scale(1.05); }
.exp-tile:hover::after { background: linear-gradient(to top, rgba(6, 15, 26, .88) 6%, rgba(6, 15, 26, .42) 60%, rgba(6, 15, 26, .2) 100%); }
.exp-tile-body {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(1.1rem, 2.4vw, 1.75rem);
}
.exp-tile-body h3 { color: var(--ivory); font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin: 0 0 .25rem; }
.exp-tile-body p { color: rgba(250, 247, 240, .82); font-size: .92rem; margin: 0; max-width: 34ch; }
.exp-tile .tile-cue {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .85rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2);
}

/* Instagram preview grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(.5rem, 1.4vw, 1rem);
}
.ig-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.ig-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10, 24, 38, 0);
  transition: background .4s var(--ease);
}
.ig-item:hover img { transform: scale(1.06); }
.ig-item:hover::after { background: rgba(10, 24, 38, .22); }
.ig-item .ig-mark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.85);
  width: 30px; height: 30px;
  color: var(--ivory);
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.ig-item:hover .ig-mark { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Reel videos (lazy, in-view autoplay) */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.6rem, 1.4vw, 1.1rem);
}
.reel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 9 / 16;
  background: var(--navy-900);
  isolation: isolate;
}
.reel video,
.reel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel .reel-cap {
  position: absolute; inset: auto 0 0; z-index: 2;
  padding: 2rem .95rem .85rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ivory);
  background: linear-gradient(to top, rgba(10, 24, 38, .8), transparent);
}

/* Full-width CTA band */
.cta-band {
  position: relative;
  isolation: isolate;
  text-align: center;
  color: var(--ivory);
}
.cta-band h2 { color: var(--ivory); max-width: 18ch; margin-inline: auto; }
.cta-band p { margin-inline: auto; }
.cta-band .cta-row { justify-content: center; margin-top: 2.25rem; }

/* Info rows (location/contact) */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.info-tile {
  padding: 2rem 1.9rem;
  background: var(--ivory);
  border: 1px solid var(--sand-2);
  border-radius: var(--radius);
}
.info-tile h3 { font-size: 1.3rem; margin-bottom: .75rem; }
.info-tile p { font-size: .95rem; color: var(--ink-2); margin-bottom: .75rem; }
.info-tile .icon {
  width: 42px; height: 42px;
  color: var(--gold-ink);
  margin-bottom: 1.1rem;
}
.info-tile a.big-link {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy-900);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: color var(--dur) var(--ease);
}
.info-tile a.big-link:hover { color: var(--gold-ink); }

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: .65rem 0;
  border-bottom: 1px solid var(--sand-2);
  font-weight: 400;
  color: var(--ink-2);
}
.hours-table td:last-child { text-align: right; color: var(--ink); }

/* Map */
.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--sand-2);
}
.map-frame img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 44vw, 540px);
  border: 0;
}
.map-frame .map-actions {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* 9. Gallery & lightbox
   -------------------------------------------------------------------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.filter-btn {
  padding: .55rem 1.3rem;
  min-height: 42px;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: transparent;
  border: 1px solid var(--sand-2);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--navy-900); }
.filter-btn[aria-pressed="true"] {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.9rem, 2vw, 1.5rem);
}
.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  width: 100%;
}
.gallery-item.is-hidden { display: none; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .gallery-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.25rem 1.25rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: left;
  color: var(--ivory);
  background: linear-gradient(to top, rgba(10, 24, 38, .75), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption { opacity: 1; }
.gallery-item.tall img { aspect-ratio: 3 / 4; }
@media (min-width: 761px) {
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.wide img { aspect-ratio: 8 / 4.7; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(10, 24, 38, .96);
  overscroll-behavior: contain;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 78vh;
  width: auto;
  border-radius: var(--radius);
}
.lightbox figcaption {
  margin-top: 1rem;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, .75);
}
.lightbox-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(250, 247, 240, .3);
  border-radius: 50%;
  background: rgba(10, 24, 38, .5);
  color: var(--ivory);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.lightbox-btn:hover { border-color: var(--gold-2); background: var(--navy-800); }
.lightbox-btn svg { width: 20px; height: 20px; }
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* 10. Menu (restaurant)
   -------------------------------------------------------------------------- */
.menu-section {
  max-width: 760px;
  margin-inline: auto;
}
.menu-section + .menu-section { margin-top: clamp(3rem, 6vw, 4.5rem); }
.menu-section-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.menu-section-title h3 { margin: 0; }
.menu-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sand-2);
}
.menu-item { padding-block: 1rem; }
.menu-item + .menu-item { border-top: 1px solid rgba(217, 201, 170, .5); }
.menu-item .menu-item-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy-900);
  margin-bottom: .15rem;
}
.menu-item .menu-item-desc {
  font-size: .92rem;
  color: var(--ink-2);
  margin: 0;
}

/* 11. Forms
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-900);
}
.form-field label .optional { color: var(--stone); font-weight: 500; text-transform: none; letter-spacing: .02em; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: .8rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--sand-2);
  border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 160, 94, .22);
}
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] { border-color: #A4472F; }
.form-error {
  display: none;
  font-size: .82rem;
  color: #A4472F;
}
.form-field.has-error .form-error { display: block; }
.form-status {
  margin-top: 1.25rem;
  font-size: .95rem;
}
.form-status.success { color: var(--olive); }
.form-status.error { color: #A4472F; }
.form-actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* 12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(250, 247, 240, .78);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(2.5rem, 5vw, 4rem);
}
.footer-brand img { width: 190px; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .92rem; max-width: 34ch; color: rgba(250, 247, 240, .65); }
.site-footer h4 { color: var(--gold-2); font-size: .72rem; margin-bottom: 1.1rem; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-list a {
  color: rgba(250, 247, 240, .78);
  text-decoration: none;
  font-size: .92rem;
  transition: color var(--dur) var(--ease);
}
.footer-list a:hover { color: var(--gold-2); }
.footer-list li { font-size: .92rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(250, 247, 240, .1);
  font-size: .8rem;
  color: rgba(250, 247, 240, .64);
}
.footer-bottom a { color: rgba(250, 247, 240, .74); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-2); }

/* 13. Reveal animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue::after { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* 14. Utilities & media queries
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1020px) {
  .primary-nav ul { display: none; }
  .primary-nav .btn { display: none; }
  .nav-toggle { display: block; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1021px) {
  .mobile-menu { display: none; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media::after,
  .split.reverse .split-media::after { inset: .8rem -.8rem -.8rem .8rem; }
  .split-media img { aspect-ratio: 4 / 3; }
  .card-grid, .info-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .reels-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img, .gallery-item.tall img { aspect-ratio: 1 / 1; }
  .stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px)); }
  .hero-content .cta-row .btn { flex: 1 1 100%; }
  /* Scroll cue is redundant on mobile (sticky reserve bar anchors the bottom)
     and can collide with the rating badge on short viewports. */
  .scroll-cue { display: none; }
  .map-frame img { aspect-ratio: 4 / 3; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}

@media (max-width: 430px) {
  .gallery-grid { gap: .6rem; }
  .brand .brand-logo { height: 46px; }
  .site-header.is-scrolled .brand-logo { height: 38px; }
}

/* 15. Assurance band & FAQ (v4 conversion + trust)
   -------------------------------------------------------------------------- */
/* Reassurance grid — practical booking-decision info, honest signals only */
.assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
}
.assurance-item { text-align: center; padding: 0 .35rem; }
.assurance-item .icon {
  width: 40px; height: 40px;
  margin: 0 auto 1.1rem;
  color: var(--gold-ink);
}
.on-dark .assurance-item .icon { color: var(--gold-2); }
.assurance-item h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.assurance-item p { font-size: .92rem; color: var(--ink-2); margin: 0 auto; max-width: 28ch; }
.on-dark .assurance-item p { color: rgba(250, 247, 240, .78); }

/* Google-rating trust line under the assurance grid */
.assurance-review {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .65rem 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 3.75rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--sand-2);
  text-align: center;
}
.on-dark .assurance-review { border-top-color: rgba(250, 247, 240, .16); }
.assurance-review .rev-score {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--navy-900);
}
.on-dark .assurance-review .rev-score { color: var(--ivory); }
.assurance-review .rev-stars { color: var(--gold); letter-spacing: .12em; font-size: 1.05rem; }
.on-dark .assurance-review .rev-stars { color: var(--gold-2); }
.assurance-review .rev-meta { font-size: .92rem; color: var(--ink-2); }
.on-dark .assurance-review .rev-meta { color: rgba(250, 247, 240, .72); }

/* FAQ — native <details> accordion (keyboard + screen-reader friendly) */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--sand-2); }
.faq-item:first-child { border-top: 1px solid var(--sand-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--navy-900);
  transition: color var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover,
.faq-item[open] summary { color: var(--gold-ink); }
.faq-item summary:focus-visible { outline-offset: 4px; }
.faq-icon {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-answer { padding: 0 0 1.6rem; }
.faq-answer p { margin: 0 0 .75rem; color: var(--ink-2); max-width: 70ch; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Guest testimonials — real, attributed reviews (uses .card-grid for layout) */
.quote-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--sand-2);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.35rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.quote-card::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: .7;
  color: var(--gold);
  opacity: .6;
}
.quote-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.45;
  color: var(--navy-900);
}
.quote-card figcaption {
  margin-top: auto;
  padding-top: .35rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.quote-card .q-name { font-weight: 700; letter-spacing: .01em; color: var(--ink); }
.quote-card .q-meta {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-ink);
}

/* Real menu — price rows with a fine-dining dotted leader */
.menu-epigraph {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0 auto;
  max-width: 42ch;
}
.menu-epigraph cite {
  display: block;
  font-style: normal;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-top: .85rem;
}
.menu-item-head { display: flex; align-items: baseline; gap: .6rem; }
.menu-item-head .menu-item-name { margin: 0; }
.menu-leader {
  flex: 1 1 auto;
  align-self: center;
  height: 0;
  border-bottom: 1px dotted var(--sand-2);
  transform: translateY(1px);
}
.menu-item-price {
  flex: none;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-ink);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-item .menu-item-desc { margin-top: .15rem; }
.menu-note {
  font-size: .82rem;
  font-style: italic;
  color: var(--ink-2);
  margin: .75rem 0 0;
}
/* Fresh fish — market-price list (names only, no prices) */
.market-list {
  columns: 2;
  column-gap: clamp(1.5rem, 4vw, 3rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.market-list li {
  break-inside: avoid;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(217, 201, 170, .5);
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy-900);
}
@media (max-width: 520px) { .market-list { columns: 1; } }

/* Menu page — sticky category sub-nav */
.menu-tabs {
  position: sticky;
  top: 66px;
  z-index: 80;
  background: rgba(250, 247, 240, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-2);
}
.menu-tabs-inner {
  max-width: calc(var(--container) + 4rem);
  margin: 0 auto;
  padding: .6rem var(--gutter);
  display: flex;
  gap: .4rem;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs-inner::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: none;
  min-height: 42px;
  padding: .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  touch-action: manipulation;
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.menu-tab:hover { color: var(--navy-900); border-color: var(--sand-2); }
.menu-tab.is-active { background: var(--navy-900); border-color: var(--navy-900); color: var(--ivory); }
#food, #sushi, #drinks { scroll-margin-top: calc(var(--header-h) + 76px); }

.menu-qty {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-left: .55rem;
  white-space: nowrap;
}
/* Two-column list for the long drinks menu */
.menu-grid-2 { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 5vw, 4rem); }
.drink-row {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .72rem 0;
  border-bottom: 1px solid rgba(217, 201, 170, .5);
}
.drink-row .d-name { font-family: var(--serif); font-size: 1.12rem; color: var(--navy-900); margin: 0; }
@media (max-width: 640px) { .menu-grid-2 { grid-template-columns: 1fr; } }

@media (max-width: 900px) { .assurance { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .assurance { grid-template-columns: 1fr; gap: 2rem; }
  .assurance-item p { max-width: 34ch; }
}
