/* ============================================
   PALMA — Premium Fine Dining Design System
   ============================================ */

@font-face {
  font-family: "Shine in Valentine";
  src: url("assets/fonts/Shine%20in%20Valentine.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bahnschrift";
  src: url("assets/fonts/BAHNSCHRIFT.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --- Design Tokens --- */
:root {
  /* Brand (accent only) */
  --sand: rgb(255, 201, 99);
  --teal: rgb(41, 178, 153);
  --golden-yellow: rgb(237, 164, 58);
  --seafoam: #CFF5EE;
  --ink: #101010;
  --white: #FFFFFF;
  --teal-dark: #158a7d;
  --ink-muted: #5c5c5c;

  /* Background palette */
  --bg-neutral: #f8f6f3;
  --bg-white: #ffffff;
  --bg-dark: #0d1f2d;
  --bg-sand: #f5efe6;

  /* Typography */
  --font-heading: "Shine in Valentine", Georgia, serif;
  --font-body: "Bahnschrift", system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;

  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Layout */
  --container-max: 1200px;
  --section-padding-mobile: 64px;
  --section-padding-desktop: 96px;
  --radius: 16px;
  --radius-sm: 8px;
  --nav-height: 4.5rem;

  /* Shadows */
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--ink);
  background: var(--bg-neutral);
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--teal-dark); }
a:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

button { font-family: inherit; cursor: pointer; }
button:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

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

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 48rem) { .container { padding-inline: 2rem; } }

.container--narrow { max-width: 42rem; }
.container--split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 56rem) {
  .container--split { grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
}

.section {
  padding-block: var(--section-padding-mobile);
  position: relative;
}
@media (min-width: 48rem) {
  .section { padding-block: var(--section-padding-desktop); }
}

/* Section backgrounds */
.section--neutral { background: var(--bg-neutral); }
.section--white { background: var(--bg-white); }

/* Palm watermark decoration — for light sections only */
.palm-bg {
  position: relative;
  overflow: hidden;
}
.palm-bg::before,
.palm-bg::after {
  content: '';
  position: absolute;
  width: min(45vw, 420px);
  height: min(60vw, 520px);
  background-image: url('assets/Palm%20SVG.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
}
.palm-bg::before {
  left: -12%;
  background-position: left center;
  transform: translateY(0%) scaleX(-1);
}
.palm-bg::after {
  right: -12%;
  background-position: right center;
  transform: translateY(-60%) scaleX(1);
}
.palm-bg > .container { position: relative; z-index: 1; }

.section--dark {
  background: var(--bg-dark);
  color: var(--white);
}
.section--sand { background: var(--bg-sand); }

/* ============================================
   Typography
   ============================================ */

.section__head {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: var(--leading-tight);
  margin: 0 0 0.5rem;
  color: var(--ink);
}
@media (min-width: 48rem) { .section__title { font-size: var(--text-4xl); } }

.section__title--light { color: var(--white); }
.section__title--h3 { font-size: var(--text-2xl); margin-bottom: 1rem; }

.section__subtitle {
  margin: 0;
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: var(--leading-normal);
}
.section--dark .section__subtitle { color: rgba(255,255,255,0.85); }

.intro__text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--ink-muted);
  text-align: center;
  margin: 0;
  font-style: italic;
}
@media (min-width: 48rem) { .intro__text { font-size: var(--text-xl); } }

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn--secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--secondary:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}

.btn--full { width: 100%; }

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/imgs/PalmsBg/IMG%20Jan%2024%202026.jpg");
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 36rem;
}

.hero__badge {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--ink-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: 999px;
}

.hero__title {
  margin: 0 0 0.5rem;
}
.hero__logo-img {
  max-width: min(260px, 70vw);
  height: auto;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.2));
}

.hero__subtitle {
  margin: 0 0 2rem;
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.95);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__ctas .btn--secondary {
  color: var(--white);
  border-color: var(--white);
}
.hero__ctas .btn--secondary:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* ============================================
   Cards
   ============================================ */

.card-grid {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 48rem) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.card-grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card__img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: var(--white);
  color: var(--teal);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: 4px;
}

.card__body { padding: 1.5rem; }

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.card__desc {
  margin: 0 0 0.75rem;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  line-height: var(--leading-normal);
}

.card__price {
  font-weight: 600;
  color: var(--golden-yellow);
  margin: 0;
}

.card--testimonial {
  padding: 2rem;
  text-align: center;
}

.card__stars {
  color: var(--golden-yellow);
  margin-bottom: 1rem;
  font-size: var(--text-lg);
  letter-spacing: 0.1em;
}

.card__quote {
  margin: 0 0 1rem;
  font-size: var(--text-base);
  font-style: italic;
  line-height: var(--leading-relaxed);
}

.card__cite {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  font-style: normal;
}

/* ============================================
   Gallery Highlight (dark section)
   ============================================ */

.gallery-highlight {
  position: relative;
  overflow: hidden;
}
.gallery-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.gallery-highlight__container {
  position: relative;
  z-index: 1;
  padding-inline: 1.5rem;
}
@media (min-width: 48rem) { .gallery-highlight__container { padding-inline: 2rem; } }

.gallery-highlight__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-highlight__header .section__title {
  margin-bottom: 0.5rem;
}

.gallery-highlight__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-weight: 400;
}

.gallery-highlight__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 56rem) {
  .gallery-highlight__inner {
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    max-width: var(--container-max);
    margin-inline: auto;
    align-items: center;
  }
}

.gallery-highlight__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 56rem) {
  .gallery-highlight__copy {
    align-items: flex-start;
    text-align: left;
  }
}

.gallery-highlight__words {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.3;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
@media (min-width: 56rem) {
  .gallery-highlight__words {
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
  }
}

.gallery-highlight__word {
  font: inherit;
  color: rgba(255,255,255,0.5);
  background: none;
  border: 0;
  padding: 0.25rem 0;
  cursor: pointer;
  transition: color var(--transition);
}
.gallery-highlight__word:hover { color: rgba(255,255,255,0.9); }
.gallery-highlight__word--active {
  color: var(--golden-yellow);
  position: relative;
}
@media (min-width: 56rem) {
  .gallery-highlight__word--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background: var(--golden-yellow);
  }
}

.gallery-highlight__slider { position: relative; }

.gallery-highlight__track {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.gallery-highlight__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-highlight__slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.gallery-highlight__img-wrap {
  width: 100%;
  height: 100%;
}
.gallery-highlight__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-highlight__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding-inline: 0.75rem;
  pointer-events: none;
  z-index: 2;
}

.gallery-highlight__arrow {
  pointer-events: auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.gallery-highlight__arrow:hover {
  background: rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.5);
}
.gallery-highlight__arrow:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.gallery-highlight__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.gallery-highlight__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.gallery-highlight__dot:hover {
  background: rgba(255,255,255,0.7);
}
.gallery-highlight__dot--active {
  background: var(--golden-yellow);
  transform: scale(1.2);
}

/* ============================================
   Menu
   ============================================ */

.menu-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-tabs__btn {
  padding: 0.75rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: 500;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--ink-muted);
  transition: color var(--transition), border-color var(--transition);
}
.menu-tabs__btn:hover { color: var(--ink); }
.menu-tabs__btn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.menu-panel[hidden] { display: none; }

.menu-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  max-width: 32rem;
  margin-inline: auto;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.menu-list__name { font-weight: 500; }
.menu-list__price {
  color: var(--golden-yellow);
  font-weight: 600;
  margin-left: 1rem;
}

.menu-download {
  text-align: center;
  margin: 0;
}

/* ============================================
   About
   ============================================ */

.about__lead {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  margin: 0 0 1.5rem;
}

.about__highlights {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.about__highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.about__highlights li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--teal);
}

.about__body {
  margin: 0;
  color: var(--ink-muted);
}

.about__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ============================================
   Gallery Grid
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 48rem) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ============================================
   Location
   ============================================ */

.location__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.location__grid.container--split {
  max-width: var(--container-max);
  margin-inline: auto;
}

.location__info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 56rem) {
  .location__info { text-align: left; align-items: flex-start; }
}

.location__address {
  font-style: normal;
  margin: 0 0 1rem;
}

.location__hours { margin: 0 0 1.5rem; }
.location__hours p { margin: 0 0 0.25rem; }

.map-placeholder {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
}
.map-placeholder span { font-weight: 600; }
.map-placeholder p { margin: 0.5rem 0 0; font-size: var(--text-sm); }

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.map-embed iframe,
.map-embed #map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================
   Events (dynamic section)
   ============================================ */

.events-section .section__head { margin-bottom: 2rem; }
.events-section__subtitle { color: rgba(255,255,255,0.85); }

.events-section__heading {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--golden-yellow);
  margin: 0 0 1rem;
}
.events-section__date {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

.events-section__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Featured event card */
.events-featured {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.events-featured__poster {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.events-featured__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-featured__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--golden-yellow);
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.events-featured__body {
  padding: 1.5rem;
}

.events-featured__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 2px;
}

.events-featured__time {
  font-size: var(--text-base);
  color: var(--golden-yellow);
  margin: 0 0 0.75rem;
}

.events-featured__desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  line-height: var(--leading-relaxed);
  margin: 0 0 1.25rem;
}

.events-featured .btn {
  width: 100%;
  justify-content: center;
}

.events-featured .btn--secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.events-featured .btn--secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* Weekly schedule list */
.events-schedule {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.events-schedule__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--white);
  margin: 0 0 1rem;
}

.events-schedule__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.events-schedule__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.9);
}
.events-schedule__item:last-child { border-bottom: 0; }

.events-schedule__day {
  min-width: 4.5rem;
  font-weight: 600;
  color: var(--golden-yellow);
}

.events-schedule__info {
  flex: 1;
}

/* Desktop: two-column layout */
@media (min-width: 64rem) {
  .events-section__container {
    max-width: var(--container-max);
    margin-inline: auto;
  }
  .events-section__grid {
    flex-direction: row;
    align-items: stretch;
    gap: 2.5rem;
  }
  .events-featured {
    flex: 1.2;
  }
  .events-schedule {
    flex: 0 0 320px;
    padding: 2rem;
  }
  .events-featured .btn {
    width: auto;
  }
}

/* Tablet: reduce spacing */
@media (min-width: 48rem) and (max-width: 63.99rem) {
  .events-section__grid { gap: 1.75rem; }
  .events-featured__body { padding: 1.75rem; }
}

.card--event .card__body { padding-bottom: 1.5rem; }
.card--event .card__desc { margin-bottom: 1rem; }
.card--event .btn { margin-top: 0; }

/* ============================================
   Order Online
   ============================================ */

.section--order-online {
  padding-block: calc(var(--section-padding-mobile) * 0.75);
}
@media (min-width: 48rem) {
  .section--order-online { padding-block: calc(var(--section-padding-desktop) * 0.75); }
}

.text-center { text-align: center; }

.order-online__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.section--order-online .btn--secondary {
  color: var(--white);
  border-color: var(--white);
}
.section--order-online .btn--secondary:hover {
  background: var(--white);
  color: var(--bg-dark);
  border-color: var(--white);
}

/* ============================================
   Reserve & Contact (legacy, kept for reference)
   ============================================ */

.reserve-contact__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 64rem) {
  .reserve-contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.reserve-block,
.contact-block {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section__head--left {
  text-align: left;
  margin-bottom: 1.5rem;
}

/* ============================================
   Reserve Form
   ============================================ */

.reserve-form__bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .reserve-form__bar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}

.reserve-form__field {
  flex: 1;
  min-width: 0;
}
.reserve-form__field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.reserve-form__field input,
.reserve-form__field select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
}
.reserve-form__field input:focus-visible,
.reserve-form__field select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-color: var(--teal);
}

.reserve-form__cta { flex-shrink: 0; display: flex; justify-content: center; margin-top: 1rem; }

.reserve-form__error {
  display: block;
  font-size: var(--text-xs);
  color: #c00;
  margin-top: 0.25rem;
}

.reserve-toast {
  padding: 1rem;
  background: var(--teal);
  color: var(--white);
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: 1rem;
}
.reserve-toast[hidden] { display: none; }

/* ============================================
   Contact
   ============================================ */

.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 48rem) {
  .contact-grid { grid-template-columns: 1fr 260px; }
}

.contact-info__card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.contact-info__card p { margin: 0 0 1rem; }
.contact-info__card p:last-child { margin-bottom: 0; }

.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 48rem) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  font-family: inherit;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-sm);
}
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-color: var(--teal);
}

.form-error {
  display: block;
  font-size: var(--text-xs);
  color: #c00;
  margin-top: 0.25rem;
}

.private-dining {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 56rem) {
  .private-dining { grid-template-columns: 1fr 1fr; }
}

.private-dining__visual img {
  width: 100%;
  border-radius: var(--radius);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.footer__logo { margin: 0 0 1rem; }
.footer__logo img { margin-inline: auto; }

.footer__copy {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
}

.footer__credit {
  margin: 1rem 0 0;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}
.footer__credit a {
  color: rgba(255,255,255,0.7);
}
.footer__credit a:hover {
  color: var(--teal);
}

/* ============================================
   Navbar
   ============================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* When modal is open: disable backdrop-filter so fixed positioning works correctly on mobile */
html.modal-open .navbar {
  backdrop-filter: none;
}

.navbar__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img { height: 2.25rem; width: auto; }

.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  width: 2rem;
  height: 2rem;
  justify-content: center;
}
@media (min-width: 56rem) { .navbar__toggle { display: none; } }

.navbar__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s;
}
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar__backdrop {
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  z-index: 49;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.navbar__backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 56rem) { .navbar__backdrop { display: none !important; } }

.navbar__nav {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--nav-height));
  z-index: 50;
  background: var(--white);
  padding: 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s, visibility 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.navbar__nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
@media (min-width: 56rem) {
  .navbar__nav {
    position: static;
    transform: none;
    visibility: visible;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    pointer-events: auto;
    background: transparent;
    max-height: none;
    overflow: visible;
  }
}

.navbar__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 56rem) {
  .navbar__list { flex-direction: row; margin: 0; gap: 1.5rem; }
}

.navbar__list a {
  color: var(--ink);
  font-weight: 500;
}
.navbar__list a:hover { color: var(--teal); }

.navbar__ctas { margin-bottom: 1rem; }
@media (min-width: 56rem) { .navbar__ctas { margin: 0; } }

.navbar__social {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
@media (min-width: 56rem) {
  .navbar__social { padding: 0; padding-left: 1rem; border-top: none; border-left: 1px solid rgba(0,0,0,0.08); }
}

.navbar__social a {
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__social a:hover { color: var(--teal); }

/* ============================================
   Event Modal
   ============================================ */

.event-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.9);
}

.event-modal.is-closed,
.event-modal[hidden] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.event-modal__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.event-modal__content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
}

.event-modal__img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
}

.event-modal__caption {
  margin: 1rem 0 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.9);
  text-align: center;
}

/* Event modal: mobile — full viewport, centered, no overflow */
@media (max-width: 767px) {
  .event-modal {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2rem 1rem;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    box-sizing: border-box;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    -webkit-overflow-scrolling: touch;
  }
  .event-modal__content {
    margin: auto;
    min-width: 0;
    width: 100%;
    max-width: calc(100vw - 2rem);
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
  }
  .event-modal__img {
    min-width: 0;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 55vh;
    display: block;
    object-fit: contain;
  }
  #event-modal-close {
    top: max(0.5rem, env(safe-area-inset-top, 0.5rem)) !important;
    right: max(0.5rem, env(safe-area-inset-right, 0.5rem)) !important;
  }
}

/* ============================================
   Lightbox
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0,0,0,0.9);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.lightbox__content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__prev { left: -3rem; }
.lightbox__events-featured__title { right: -3rem; }

.lightbox__caption {
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

/* ============================================
   Reveal (for JS scroll animations)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
