/* ============================================================
   Alareesha — ivory & gold editorial build, Lunel structure
   Palette (from the brand emblem + terrace photo):
   --paper  #FAF6ED  warm ivory base
   --cream  #F1E8D6  section alternate
   --ink    #262119  near-black text
   --stone  #6E6455  muted copy
   --gold   #C9992B  brand mustard-gold (accent only)
   --gold-d #A87C1D  darker gold for small text on ivory
   ============================================================ */

:root {
  --paper: #FAF6ED;
  --cream: #F1E8D6;
  --ink: #262119;
  --stone: #6E6455;
  --gold: #C9992B;
  --gold-d: #A87C1D;
  --line: rgba(38, 33, 25, 0.14);
  --font-display: "Frank Ruhl Libre", "Times New Roman", serif;
  --font-body: "Assistant", "Arial Hebrew", Arial, sans-serif;
  --font-arabic: "Aref Ruqaa", serif;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold-d);
  outline-offset: 3px;
}

[hidden] { display: none !important; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.7rem var(--pad-x);
  background: rgba(250, 246, 237, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  gap: 1.8rem;
  margin-inline-start: auto;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 160ms ease;
}

.site-nav a:hover { border-bottom-color: var(--gold); }

.header-cta {
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
  direction: ltr;
}

.header-cta:hover { background: var(--ink); color: var(--paper); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

/* ---------- hero ---------- */

.hero { position: relative; padding: 0; }

.hero-photo {
  width: 100%;
  height: clamp(360px, 58vw, 660px);
  object-fit: cover;
  object-position: center 30%;
}

/* ---------- shared section bits ---------- */

section { padding: clamp(4rem, 9vw, 7.5rem) var(--pad-x); }

.eyebrow {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--gold-d);
  margin-bottom: 0.9rem;
}

.split {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 300;
}

.split b { font-weight: 900; }
.split span { color: var(--stone); }

.section-head { max-width: 40rem; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }

.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.section-sub { color: var(--stone); margin-top: 1rem; }

/* ---------- story: card overlaps the hero, Lunel-style ---------- */

.story {
  position: relative;
  padding-top: 0;
  margin-top: -5.5rem;
}

.ghost-word {
  position: absolute;
  bottom: -2rem;
  inset-inline-start: -0.5rem;
  font-family: var(--font-arabic);
  font-size: clamp(7rem, 20vw, 15rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 153, 43, 0.3);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 6fr 6fr;
  align-items: start;
  gap: 0;
}

.story-card {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -30px rgba(38, 33, 25, 0.4);
  padding: clamp(1.8rem, 3.5vw, 3rem);
  margin-inline-end: -4rem;
}

.story-card p + p { margin-top: 1rem; }

.story-card h2 { margin-bottom: 1.2rem; }

.story-card .btn { display: inline-block; margin-top: 1.4rem; }

.story-note {
  color: var(--stone);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1.4rem !important;
}

.story-photo { position: relative; z-index: 1; margin-top: 7rem; }

.story-photo img {
  width: 100%;
  height: clamp(320px, 38vw, 500px);
  object-fit: cover;
  /* keep the lit pergola garden in frame */
  object-position: center 65%;
}

/* ---------- menu ---------- */

.menu { padding-inline: 0; }

.menu .section-head { padding-inline: var(--pad-x); }

/* direction:ltr anchors the over-wide track to the LEFT edge — in the page's
   RTL flow it would right-align and the animation would slide it out of view */
.menu-marquee {
  overflow: hidden;
  direction: ltr;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: menu-scroll 55s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-track img {
  height: clamp(200px, 26vw, 320px);
  width: auto;
  display: block;
  margin-inline-end: 10px;
}

@keyframes menu-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .menu-marquee { overflow-x: auto; }
}

.menu-cta {
  text-align: center;
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
  padding-inline: var(--pad-x);
}

.menu-cta .btn { display: inline-block; margin-inline: 0.35rem; }

/* ---------- seating: events-style cards ---------- */

.seating {
  background: var(--cream);
  padding-inline: 0;
  padding-bottom: 0;
}

.seating .section-head { padding-inline: var(--pad-x); }

/* full-bleed strip: four equal quarters, photo fills each one */
.seating-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.seat-card {
  position: relative;
  overflow: hidden;
  height: clamp(380px, 34vw, 540px);
}

.seat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.seat-card:hover .seat-img { transform: scale(1.05); }

.seat-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 3.2rem 1.4rem 1.4rem;
  background: linear-gradient(to top, rgba(20, 16, 10, 0.82), rgba(20, 16, 10, 0.45) 55%, transparent);
  color: var(--paper);
}

.seat-body::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  background: var(--gold);
  margin-bottom: 0.8rem;
}

.seat-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.seat-card p { color: rgba(250, 246, 237, 0.85); font-size: 0.95rem; }

/* ---------- booking ---------- */

.booking { background: var(--cream); }

/* invite card — the only thing visible until the wizard opens */
.booking-invite {
  max-width: 30rem;
  margin-inline: auto;
  text-align: center;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 20px 45px -28px rgba(38, 33, 25, 0.35);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.4rem, 4vw, 2.4rem);
}

.booking-invite-emblem {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.booking-invite h2 { margin-bottom: 0.6rem; }

.booking-invite-text { color: var(--stone); margin-bottom: 0.4rem; }

.booking-invite-meta {
  color: var(--stone);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.booking-invite-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.booking-open { min-width: 14rem; }

.booking-invite-actions .btn-pill-line { min-width: 14rem; text-align: center; }

/* wizard modal */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 3vw, 2rem);
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 10, 0.55);
}

.booking-modal-card {
  position: relative;
  width: min(46rem, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 18px;
}

.booking-modal-close {
  position: absolute;
  top: 0.9rem;
  inset-inline-end: 0.9rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}

.booking-modal-close:hover { border-color: var(--gold); }

body.modal-open { overflow: hidden; }

@media (prefers-reduced-motion: no-preference) {
  .booking-modal-card { animation: modal-in 250ms ease; }
  @keyframes modal-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
}

.booking-form {
  background: var(--paper);
  padding: clamp(1.8rem, 4vw, 3rem);
}

.b-step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 0.5rem;
  padding-inline-end: 3rem; /* clearance from the × close button */
}

.b-progress-seg {
  display: flex;
  gap: 6px;
  margin-bottom: 1.6rem;
}

.b-progress-seg span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(38, 33, 25, 0.1);
  transition: background 250ms ease;
}

.b-progress-seg span.is-on { background: var(--gold); }

.b-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}

.b-hint {
  color: var(--stone);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
}

.b-error {
  color: #A3392B;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.8rem;
}

/* guests stepper */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0.6rem 0;
}

.stepper-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}

.stepper-btn:hover { border-color: var(--gold); }

.stepper-btn:disabled { opacity: 0.35; cursor: default; }

.stepper-display { text-align: center; min-width: 4.5rem; }

.stepper-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.1;
}

.stepper-unit { color: var(--stone); font-size: 0.85rem; }

/* time slot grid */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.slot {
  padding: 0.6rem 0.4rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  cursor: pointer;
  direction: ltr;
  transition: border-color 140ms ease, background 140ms ease;
}

.slot:hover { border-color: var(--gold); }

.slot.is-selected {
  background: var(--gold);
  border-color: var(--gold-d);
  color: var(--ink);
}

.slot:disabled {
  opacity: 0.35;
  cursor: default;
  text-decoration: line-through;
}

.b-step { display: none; }

.b-step.is-active { display: block; }

@media (prefers-reduced-motion: no-preference) {
  .b-step.is-active { animation: step-in 300ms ease; }
  @keyframes step-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
  }
}

.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  resize: vertical;
}

.form-field textarea:focus-visible {
  outline: 2px solid var(--gold-d);
  outline-offset: 1px;
}

.optional-tag {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--stone);
}

/* confirmation card — soft rounded look, reference-style */
.b-done {
  text-align: center;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 20px 45px -28px rgba(38, 33, 25, 0.35);
  padding: clamp(1.8rem, 4vw, 2.6rem) clamp(1.2rem, 3vw, 2rem);
}

.b-done-mark {
  display: inline-grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: rgba(201, 153, 43, 0.16);
  color: var(--gold-d);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.b-done h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.b-done-num {
  color: var(--stone);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}

.b-done-num strong { color: var(--ink); }

.b-done-box {
  background: rgba(241, 232, 214, 0.6);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  margin: 0 auto 1.3rem;
  max-width: 22rem;
  text-align: start;
}

.b-done-box p {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0;
  font-weight: 600;
}

.b-done-box svg {
  width: 19px;
  height: 19px;
  color: var(--gold-d);
  flex: none;
}

.b-done-venue {
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.b-done-venue-name {
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
}

.b-done-text {
  color: var(--stone);
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}

.b-done-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 0.75rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.btn-pill-solid {
  background: var(--gold);
  border: 1.5px solid var(--gold);
  color: var(--ink);
}

.btn-pill-solid:hover { background: var(--gold-d); border-color: var(--gold-d); color: var(--paper); }

.btn-pill-line {
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--ink);
}

.btn-pill-line:hover { border-color: var(--gold); }

.b-nav {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.b-nav .b-next,
.b-nav .booking-submit { flex: 1; }

.b-nav .b-back { flex: 0 0 auto; padding-inline: 2rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 3rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

/* iOS renders empty date fields blank — keep them sized and start-aligned */
.form-field input[type="date"] {
  display: block;
  text-align: start;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus-visible,
.form-field select:focus-visible {
  outline: 2px solid var(--gold-d);
  outline-offset: 1px;
}

.area-fieldset {
  border: 0;
  margin-top: 1.6rem;
}

.area-fieldset legend {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.area-card {
  position: relative;
  display: block;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}

.area-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: opacity 140ms ease;
}

.area-card:not(:has(input:checked)) .area-img { opacity: 0.88; }

.area-body {
  display: block;
  padding: 0.75rem 1rem 0.9rem;
}

.area-card:hover { border-color: var(--gold); }

.area-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.area-card:has(input:checked) {
  border-color: var(--gold-d);
  background: rgba(201, 153, 43, 0.1);
}

.area-card:has(input:focus-visible) {
  outline: 2px solid var(--gold-d);
  outline-offset: 2px;
}

.area-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.area-note {
  display: block;
  color: var(--stone);
  font-size: 0.88rem;
  margin-top: 0.1rem;
}

.area-card:has(input:checked) .area-title { color: var(--gold-d); }

.booking-submit {
  width: 100%;
  margin-top: 1.6rem;
}

.booking-note {
  text-align: center;
  color: var(--stone);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.booking-note a { color: var(--ink); text-decoration-color: var(--gold); text-underline-offset: 3px; }

/* ---------- rating ---------- */

.rating {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}

.rating-stars {
  color: var(--gold);
  letter-spacing: 0.35em;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.rating-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
}

.rating-text strong { font-weight: 900; }

.rating-sub {
  color: rgba(250, 246, 237, 0.65);
  margin-top: 0.6rem;
  font-size: 0.98rem;
}

/* ---------- map ---------- */

.map { padding: 0; }

.map iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 38vw, 460px);
  border: 0;
}

/* ---------- buttons ---------- */

.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 1.6rem;
  border-radius: 2px;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.btn-solid {
  background: var(--gold);
  color: var(--ink);
  border: 1.5px solid var(--gold);
}

.btn-solid:hover { background: var(--gold-d); border-color: var(--gold-d); color: var(--paper); }

.btn-line {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn-line:hover { background: var(--ink); color: var(--paper); }

/* ---------- footer: brand / nav / contact / hours ---------- */

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: clamp(2.8rem, 6vw, 4.5rem) var(--pad-x) 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.footer-emblem {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 0.9rem;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.footer-name [lang="ar"] { font-family: var(--font-arabic); color: var(--gold-d); }

.footer-line { color: var(--stone); font-size: 0.9rem; margin-top: 0.3rem; }

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold-d);
  margin-bottom: 0.9rem;
}

.footer-col p { margin-bottom: 0.4rem; }

.footer-col a {
  color: var(--ink);
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

.footer-col a:hover { color: var(--gold-d); }

nav.footer-col a {
  display: block;
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0;
}

.footer-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-actions .btn { font-size: 0.95rem; padding: 0.6rem 1.2rem; flex: 1; }

/* brand icon buttons: WhatsApp green / Waze cyan */
.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
}

.btn-social svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.btn-wa {
  background: #25D366;
  border: 1.5px solid #25D366;
}

.btn-wa:hover { background: #1DA851; border-color: #1DA851; }

.btn-waze {
  background: #33CCFF;
  border: 1.5px solid #33CCFF;
}

.btn-waze:hover { background: #1FA9DB; border-color: #1FA9DB; }

.footer-hours {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
}

.footer-hint { color: var(--stone); font-size: 0.9rem; margin-top: 0.6rem; }

.footer-credit {
  text-align: center;
  color: var(--stone);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ---------- reveal motion ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .story { margin-top: -3rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { margin-inline-end: 0; }
  .story-photo { margin-top: 0; }
  .seating-grid { grid-template-columns: 1fr 1fr; }
  .seat-card { height: clamp(280px, 38vw, 380px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { gap: 1rem; }
  .header-cta { margin-inline-start: auto; }
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad-x) 1rem;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

  .hero-photo { height: 300px; object-position: 63% 20%; }

  .story { margin-top: -1.5rem; }

  .seating-grid { grid-template-columns: 1fr 1fr; }
  .seat-card { height: 240px; }

  /* menu CTAs side by side on phones */
  .menu-cta {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
  }
  .menu-cta .btn {
    flex: 1;
    max-width: 14rem;
    margin-inline: 0;
    font-size: 0.95rem;
    padding-inline: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-actions { max-width: 22rem; }
}
