/* ============================================================
   Riviera House — Coastal Cuisine & Craft Bar
   Ocean teal #187fad · warm sand neutrals · Fraunces + Inter
   ============================================================ */

:root {
  --teal: #187fad;
  --teal-deep: #0e6089;
  --navy: #10344a;
  --ink: #26333d;
  --ink-soft: #55646f;
  --sand: #f6f1e7;
  --sand-deep: #ece3d1;
  --shell: #fdfcf8;
  --gold: #b98d4f;          /* decorative rules/borders only */
  --bronze: #8a6434;        /* gold-toned TEXT (WCAG AA on sand & white) */
  --line: rgba(16, 52, 74, 0.12);
  --shadow: 0 18px 40px -18px rgba(16, 52, 74, 0.35);
  --radius: 14px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, "Helvetica Neue", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--shell);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: var(--teal-deep); }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
/* focus rings that stay visible on dark backgrounds */
.section.navy a:focus-visible,
.site-footer a:focus-visible,
.hero a:focus-visible,
.page-hero a:focus-visible,
.site-header:not(.scrolled):not(.solid) a:focus-visible,
.site-header:not(.scrolled):not(.solid) button:focus-visible {
  outline-color: #8fd0ef;
}

/* skip link for keyboard & screen-reader users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.8rem 1.4rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* honor OS-level "increase contrast" setting */
@media (prefers-contrast: more) {
  :root {
    --ink-soft: #3d4c56;
    --bronze: #6e4e24;
    --line: rgba(16, 52, 74, 0.35);
  }
  .section.navy .lede, .section.navy .stat span { color: #dce7ee; }
  .site-footer, .footer-contact, .site-footer .hours-time { color: #d5e1e9; }
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: 4.5rem 0; }
.section.sand { background: var(--sand); }
.section.navy { background: var(--navy); color: #e8eef2; }
.section.navy h2, .section.navy h3 { color: #fff; }

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.9rem;
}
.section.navy .eyebrow { color: #7fc3e4; }

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 2.7rem);
  margin-bottom: 0.4em;
}

.lede {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 58ch;
  text-wrap: pretty; /* avoids a lone word on the last line (where supported) */
}
.section.navy .lede { color: #c3d3dd; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal-deep); color: #fff; }
.btn-primary:hover { background: #0b4d6e; color: #fff; }
.btn-ghost { border-color: rgba(255, 255, 255, 0.7); color: #fff; background: rgba(16, 52, 74, 0.18); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
.btn-outline { border-color: var(--teal); color: var(--teal-deep); background: transparent; }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-sand { background: var(--sand); color: var(--navy); }
.btn-sand:hover { background: var(--sand-deep); color: var(--navy); }

/* ---------- header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: linear-gradient(to bottom, rgba(7, 26, 38, 0.72), rgba(7, 26, 38, 0.32) 60%, rgba(7, 26, 38, 0));
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header:not(.scrolled):not(.solid) .brand img {
  filter: drop-shadow(0 2px 10px rgba(7, 26, 38, 0.7));
}
.site-header .container {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
  padding-inline: 1.4rem;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 100px; width: auto; transition: opacity 0.25s ease, height 0.3s ease; }
.site-header.scrolled .brand img { height: 72px; }
@media (max-width: 820px) {
  .brand img, .site-header.scrolled .brand img { height: 66px; }
}
.brand .logo-dark { display: none; }

.site-header.scrolled,
.site-header.solid {
  background: rgba(253, 252, 248, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 26px -18px rgba(16, 52, 74, 0.5);
}
.site-header.scrolled .brand .logo-light,
.site-header.solid .brand .logo-light { display: none; }
.site-header.scrolled .brand .logo-dark,
.site-header.solid .brand .logo-dark { display: block; }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #fff;
  text-shadow: 0 1px 8px rgba(16, 52, 74, 0.5);
  transition: color 0.2s ease;
}
.site-nav a:hover { color: #bfe3f5; }
.site-header.scrolled .site-nav a,
.site-header.solid .site-nav a {
  color: var(--navy);
  text-shadow: none;
}
.site-header.scrolled .site-nav a:hover,
.site-header.solid .site-nav a:hover { color: var(--teal); }
.site-nav .btn { padding: 0.6rem 1.3rem; font-size: 0.88rem; }
.site-nav .btn-primary { color: #fff; text-shadow: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(16, 52, 74, 0.5);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.site-header.scrolled .nav-toggle span,
.site-header.solid .nav-toggle span { background: var(--navy); box-shadow: none; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.9rem;
    background: rgba(16, 52, 74, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .site-nav a { font-size: 1.25rem; color: #fff !important; text-shadow: none; }
  .site-nav .btn-primary { background: var(--teal); }
  body.nav-open .site-nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-toggle { position: relative; z-index: 70; }
  body.nav-open .nav-toggle span { background: #fff; box-shadow: none; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 92vh; /* fallback for browsers without svh units */
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(16, 52, 74, 0.42) 0%,
      rgba(16, 52, 74, 0.10) 34%,
      rgba(9, 32, 46, 0.38) 68%,
      rgba(9, 32, 46, 0.82) 100%);
}
.hero .container { padding-block: 5.5rem 4.5rem; }
.hero-badge { height: 84px; width: auto; margin-bottom: 1.4rem; opacity: 0.95; }
.hero h1 {
  font-family: "Italiana", var(--font-display);
  color: #fff;
  font-size: clamp(3.1rem, 10vw, 6.2rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 2px 26px rgba(7, 26, 38, 0.55);
  margin-bottom: 0.18em;
}
.hero .tagline {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.7rem, 2.4vw, 1.3rem);
  font-size: clamp(0.92rem, 2.4vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ecd9b0;
  text-shadow: 0 1px 3px rgba(7, 26, 38, 0.65), 0 2px 18px rgba(7, 26, 38, 0.8);
  margin-bottom: 2rem;
}
.hero .tagline::before,
.hero .tagline::after {
  content: "";
  height: 1px;
  width: clamp(26px, 7vw, 72px);
  background: linear-gradient(to right, rgba(236, 217, 176, 0), rgba(236, 217, 176, 0.85));
  flex-shrink: 0;
}
.hero .tagline::after {
  background: linear-gradient(to left, rgba(236, 217, 176, 0), rgba(236, 217, 176, 0.85));
}
@media (max-width: 560px) {
  /* deeper scrim behind the hero text so it never blends into the photo */
  .hero-media::after {
    background:
      linear-gradient(to bottom,
        rgba(16, 52, 74, 0.5) 0%,
        rgba(16, 52, 74, 0.2) 32%,
        rgba(9, 32, 46, 0.55) 62%,
        rgba(9, 32, 46, 0.9) 100%);
  }
  .hero h1 {
    text-shadow: 0 2px 10px rgba(7, 26, 38, 0.8), 0 8px 36px rgba(7, 26, 38, 0.7);
  }
  /* tagline: same refined style as desktop — thin, wide-tracked champagne */
  .hero .tagline {
    letter-spacing: 0.26em;
    font-size: 0.88rem;
    font-weight: 400;
    color: #f0deb6;
  }
  .hero .tagline::before,
  .hero .tagline::after { display: none; }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.6rem; }
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #dcebf4;
}
.hero-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9fb4bf;
}
.hero-status.is-open::before { background: #59d98c; box-shadow: 0 0 10px rgba(89, 217, 140, 0.8); }

/* ---------- split layouts ---------- */
.split {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split.reverse > .split-media { order: 2; }
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 2.6rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.section.navy .stat-row { border-top-color: rgba(255, 255, 255, 0.16); }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}
.section.navy .stat b { color: #fff; }
.stat span { font-size: 0.86rem; color: var(--ink-soft); }
.section.navy .stat span { color: #b7c9d4; }

/* ---------- menu cards ---------- */
.menu-cards {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  margin-top: 2.4rem;
}
.menu-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  text-decoration: none;
  min-width: 0; /* lets Safari shrink cards to fit their grid column */
}
.menu-card-media {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 1rem;
  background: var(--sand-deep);
}
/* the Little Foodie's "menu cover": CSS double-line frame that always
   hugs the card edges, whatever shape the card takes */
.menu-card-media--framed {
  position: relative;
  background: var(--shell);
  border: 2px solid var(--navy);
}
.menu-card-media--framed::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  pointer-events: none;
}
.menu-card-media--framed img { object-fit: contain; }
/* phones: two compact cards per row — same 3:4 photos and style as
   desktop, kept small so close-up dishes don't feel blown up */
@media (max-width: 820px) {
  .menu-cards {
    /* minmax(0,1fr) forces Safari to keep both columns inside the screen */
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 0.9rem;
  }
  .menu-card { min-width: 0; }
  .menu-card-media { width: 100%; }
  .menu-card h3 { font-size: 1.02rem; letter-spacing: 0.06em; }
  .menu-card-no { font-size: 0.6rem; }
  .menu-card p { font-size: 0.74rem; margin-bottom: 0.5rem; }
  .menu-card .card-cta {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    padding: 0.5rem 0.85rem;
    white-space: nowrap;
  }
  .menu-card-media { margin-bottom: 0.7rem; }
}
.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.6s ease;
}
.menu-card:hover .menu-card-media img,
.menu-card:focus-visible .menu-card-media img {
  transform: scale(1.06);
}
.menu-card-no {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--bronze);
  margin-bottom: 0.35rem;
}
.menu-card h3 {
  font-family: "Italiana", var(--font-display);
  font-weight: 400;
  font-size: 1.38rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy);
  /* Italiana has no bold weight — a hairline stroke thickens the
     letterforms while keeping their elegant shapes */
  -webkit-text-stroke: 0.7px currentColor;
  paint-order: stroke fill;
  margin-bottom: 0.3rem;
}
.menu-card h3::after {
  content: "";
  display: block;
  height: 1px;
  width: 30px;
  margin-top: 0.55rem;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-card:hover h3::after,
.menu-card:focus-visible h3::after { width: 100%; }
.menu-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 0.6rem;
}
.menu-card .card-cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.68rem 1.5rem;
  border: 1px solid var(--navy);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--navy);
  transition: background 0.35s ease, color 0.35s ease;
}
.menu-card .card-cta::after {
  content: "→";
  transition: transform 0.35s ease;
}
.menu-card:hover .card-cta,
.menu-card:focus-visible .card-cta {
  background: var(--navy);
  color: #fff;
}
.menu-card:hover .card-cta::after,
.menu-card:focus-visible .card-cta::after {
  transform: translateX(4px);
}
@media (max-width: 820px) {
  .menu-card .card-cta {
    font-size: 0.78rem;
    padding: 0.8rem 1.7rem;
  }
}
/* gentle stagger as the row reveals */
.menu-cards .reveal:nth-child(2) { transition-delay: 0.07s; }
.menu-cards .reveal:nth-child(3) { transition-delay: 0.14s; }
.menu-cards .reveal:nth-child(4) { transition-delay: 0.21s; }
.menu-cards .reveal:nth-child(5) { transition-delay: 0.28s; }
@media (prefers-reduced-motion: reduce) {
  .menu-card-media img, .menu-card h3::after, .menu-card .card-cta { transition: none; }
  .menu-cards .reveal { transition-delay: 0s; }
}

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2.4rem;
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure { margin: 0; border-radius: 10px; overflow: hidden; }
.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery figure:hover img { transform: scale(1.06); }
@media (min-width: 720px) {
  .gallery .tall img { aspect-ratio: 1 / 1.55; }
  .gallery .wide { grid-column: span 2; }
  .gallery .wide img { aspect-ratio: 2.05 / 1; }
}

/* ---------- hours & location ---------- */
.visit-grid {
  display: grid;
  gap: 2.4rem;
  margin-top: 2.4rem;
}
@media (min-width: 880px) { .visit-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.4rem; } }

.hours-list { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}
.hours-day { font-weight: 600; color: var(--navy); }
.hours-time { color: var(--ink-soft); }

.happy-hour {
  display: inline-block;
  background: var(--sand);
  border: 1px solid var(--sand-deep);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  margin-bottom: 1.6rem;
}

.visit-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.visit-contact a {
  color: var(--teal-deep);
  font-weight: 600;
  text-decoration: none;
}
.visit-contact a:hover { text-decoration: underline; }
.visit-contact .label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- private events: evening treatment with gold ---------- */
.events-luxe {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(203, 163, 95, 0.14), transparent 65%),
    radial-gradient(700px 500px at 0% 100%, rgba(24, 127, 173, 0.12), transparent 60%),
    linear-gradient(165deg, #0d2d42, var(--navy));
  color: #dce7ee;
}
.eyebrow-lux {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ecd9b0;
  margin-bottom: 1rem;
}
.eyebrow-lux::before,
.eyebrow-lux::after {
  content: "";
  height: 1px;
  width: clamp(24px, 6vw, 64px);
  flex-shrink: 0;
  background: linear-gradient(to right, rgba(236, 217, 176, 0), rgba(236, 217, 176, 0.8));
}
.eyebrow-lux::after {
  background: linear-gradient(to left, rgba(236, 217, 176, 0), rgba(236, 217, 176, 0.8));
}
.events-title {
  font-family: "Italiana", var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  -webkit-text-stroke: 0.5px currentColor;
  margin-bottom: 0.3em;
}
.events-luxe-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-top: 2.6rem;
}
@media (min-width: 880px) {
  .events-luxe-grid { grid-template-columns: 1.02fr 0.98fr; gap: 4.5rem; }
}
.events-photo {
  position: relative;
  margin: 0 14px 14px 0;
}
.events-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(203, 163, 95, 0.75);
  border-radius: 4px;
  transform: translate(14px, 14px);
  pointer-events: none;
}
.events-photo img {
  position: relative;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 26px 60px -24px rgba(0, 0, 0, 0.65);
}
.events-luxe-body .lede { color: #c3d3dd; }
.events-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem 2rem;
}
@media (min-width: 560px) { .events-list { grid-template-columns: 1fr 1fr; } }
.events-list li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #dce7ee;
}
.events-list li::before {
  content: "\2726";
  font-size: 0.6rem;
  color: #cba35f;
  flex-shrink: 0;
}
.gold-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.6rem 0 1.2rem;
}
.gold-divider span {
  height: 1px;
  flex: 0 1 70px;
  background: linear-gradient(to right, rgba(203, 163, 95, 0.7), rgba(203, 163, 95, 0));
}
.gold-divider span:first-child {
  background: linear-gradient(to left, rgba(203, 163, 95, 0.7), rgba(203, 163, 95, 0));
}
.gold-divider i {
  font-style: normal;
  font-size: 0.55rem;
  color: #cba35f;
}
.events-contact { color: #c3d3dd; margin-bottom: 1.3rem; }
.events-contact strong { color: #fff; }
.events-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* refined gold-hairline buttons */
.btn-lux {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.5rem;
  border: 1px solid rgba(203, 163, 95, 0.65);
  border-radius: 2px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ecd9b0;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn-lux:hover,
.btn-lux:focus-visible {
  background: linear-gradient(135deg, #d8b57c, #b98d4f);
  border-color: transparent;
  color: #10344a;
}
.btn-lux-solid {
  background: linear-gradient(135deg, #d8b57c, #b98d4f);
  border-color: transparent;
  color: #10344a;
}
.btn-lux-solid:hover,
.btn-lux-solid:focus-visible {
  background: linear-gradient(135deg, #e3c48e, #c89a58);
  color: #10344a;
}
.events-luxe a:focus-visible,
.events-luxe button:focus-visible { outline-color: #ecd9b0; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy);
  color: #c3d3dd;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.4rem;
  margin-bottom: 2.6rem;
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 3rem; } }
.site-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}
.site-footer a { color: #9fd1eb; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-brand img { height: 74px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.site-footer .hours-list li { border-bottom-color: rgba(255, 255, 255, 0.14); font-size: 0.92rem; }
.site-footer .hours-day { color: #fff; }
.site-footer .hours-time { color: #b7c9d4; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; font-size: 0.95rem; }
.social-row { display: flex; gap: 1.1rem; margin-top: 1.1rem; }
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.social-row a:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; text-decoration: none; }
.social-row svg { width: 19px; height: 19px; fill: #dcebf4; }
.footer-badge {
  display: block;
  height: 72px;
  width: auto;
  margin: 0 auto 1.6rem;
  opacity: 0.9;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.6rem;
  font-size: 0.84rem;
  color: #8ba2b0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  justify-content: space-between;
}

/* ============================================================
   Menus page
   ============================================================ */
.page-hero {
  position: relative;
  padding: 8.5rem 0 3.4rem;
  background: var(--navy);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.page-hero img.bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
}
.page-hero-badge { height: 68px; width: auto; margin-bottom: 1.1rem; opacity: 0.95; }
.page-hero h1 {
  font-family: "Italiana", var(--font-display);
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.2em;
}
.page-hero p { color: #c3d3dd; max-width: 58ch; margin: 0; }

.menu-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 248, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.menu-nav .container {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-block: 0.7rem;
  scrollbar-width: none;
}
.menu-nav .container::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex-shrink: 0;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.menu-nav a:hover { background: var(--sand); }
.menu-nav a.active { background: var(--teal-deep); color: #fff; }

.menu-section { padding: 3.6rem 0 1.5rem; scroll-margin-top: 4.5rem; }
.menu-section:nth-of-type(even) { background: var(--sand); }
.menu-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  margin-bottom: 0.4rem;
}
.menu-header h2 { font-size: clamp(1.9rem, 4.5vw, 2.5rem); margin: 0; }
.menu-note { color: var(--ink-soft); font-size: 0.95rem; max-width: 70ch; }

.menu-columns {
  margin-top: 2rem;
  display: grid;
  gap: 2.6rem;
}
@media (min-width: 880px) { .menu-columns { grid-template-columns: 1fr 1fr; gap: 3.4rem; } }

.menu-group { break-inside: avoid; margin-bottom: 0.6rem; }
.menu-group > h3 {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  padding-bottom: 0.5rem;
  margin-bottom: 1.1rem;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.menu-group > h3 .group-price {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bronze);
  white-space: nowrap;
}
.group-note {
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: -0.5rem 0 1.1rem;
}

.dish { margin-bottom: 1.05rem; }
.dish-head {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.dish-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--navy);
}
.dish-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(16, 52, 74, 0.35);
  transform: translateY(-4px);
  min-width: 1.2rem;
}
.dish-price {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  white-space: nowrap;
}
.dish-desc {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.dish-extra {
  display: block;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--bronze);
  margin-top: 0.15rem;
}

.menu-footnote {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-soft);
  max-width: 90ch;
}

.menu-download { white-space: nowrap; }

.menu-footnote--page {
  margin-bottom: 3rem;
  text-align: center;
}

.menu-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.menu-actions .btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }

.menu-sheet-link {
  display: block;
  margin: 1.6rem auto 2rem;
  max-width: 920px;
  border-radius: var(--radius);
}
.menu-sheet {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.menu-sheet-link:hover .menu-sheet { transform: scale(1.005); }
@media (prefers-reduced-motion: reduce) {
  .menu-sheet { transition: none; }
  .menu-sheet-link:hover .menu-sheet { transform: none; }
}

/* ---------- floating "Message Us" launcher ---------- */
.chat-launcher {
  position: fixed;
  right: calc(1.2rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}
.chat-toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(16, 52, 74, 0.55);
  transition: background 0.2s ease, transform 0.2s ease;
}
.chat-toggle:hover { background: var(--teal-deep); transform: translateY(-2px); }
.chat-toggle svg { width: 26px; height: 26px; fill: currentColor; }
.chat-toggle .icon-close { display: none; }
.chat-launcher.open .chat-toggle .icon-chat { display: none; }
.chat-launcher.open .chat-toggle .icon-close { display: block; }

.chat-panel {
  width: min(320px, calc(100vw - 2.4rem));
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.chat-launcher.open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.chat-panel-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.7rem;
}
.chat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.55rem 0;
  border-top: 1px dashed var(--line);
}
.chat-row-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.chat-row-btns { display: flex; gap: 0.45rem; flex-shrink: 0; }
.chat-btn {
  display: inline-block;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: filter 0.2s ease;
}
.chat-btn:hover { filter: brightness(1.1); }
.chat-btn-wa { background: #0f7040; }
.chat-btn-sms { background: var(--teal-deep); }
@media (prefers-reduced-motion: reduce) {
  .chat-panel, .chat-toggle { transition: none; }
}

/* ---------- gallery lightbox ---------- */
.gallery-zoom {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
body.lb-lock { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 26, 38, 0.93);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  margin: 0;
  max-width: min(92vw, 1100px);
  text-align: center;
}
.lb-stage img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 6px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.lb-stage figcaption {
  margin-top: 0.9rem;
  color: #c3d3dd;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(9, 32, 46, 0.5);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.lb-close { top: calc(1rem + env(safe-area-inset-top, 0px)); right: 1rem; font-size: 1.7rem; }
.lb-prev { left: 0.8rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 0.8rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lb-prev, .lb-next {
    top: auto;
    bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
    transform: none;
  }
  .lb-prev { left: 25%; }
  .lb-next { right: 25%; }
  .lb-stage img { max-height: 68vh; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox { transition: none; }
}

/* ---------- reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .menu-card img, .gallery img { transition: none; }
}

/* ---------- utility ---------- */
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.mt-2 { margin-top: 2rem; }
.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;
}
