/* ══════════════════════════════════════════════════════════════
   Turquaz — Apple-grade Responsive Stylesheet
   Mobile-first · Fluid Typography · Viewport-safe
   Brand Palette: #2a4192 · #3c5c8d
   ══════════════════════════════════════════════════════════════ */

:root {
  --brand-deep: #2a4192;
  --brand-mid: #3c5c8d;
  --brand-light: #4f72a8;
  --brand-surface: #1e3264;
  --brand-dark: #162550;
  --accent: #c9a96e;
  --ivory: #f5f3ef;
  --charcoal: #1a1a1a;
  --muted: #c8c4bb;

  --space-1: clamp(0.75rem, 0.66rem + 0.45vw, 1.1rem);
  --space-2: clamp(1rem, 0.75rem + 1.2vw, 1.6rem);
  --space-3: clamp(1.4rem, 1rem + 2vw, 2.4rem);
  --space-4: clamp(2.2rem, 1.6rem + 3vw, 4rem);
  --space-5: clamp(3.4rem, 2rem + 5vw, 6rem);
  --section-space: clamp(4rem, 8vw, 9rem);

  --ease-lux: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-soft: 600ms var(--ease-lux);
  --transition-slow: 1200ms var(--ease-lux);

  --container: min(1200px, 90vw);
  --radius: 16px;
  --dish-media-height: 11rem;
  --gallery-card-height: 15rem;
}

/* ─── Reset ─── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  color: var(--ivory);
  background: linear-gradient(180deg, #111d3a, var(--brand-dark) 50%, #0f1b33);
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 0;
}

.section {
  padding: var(--section-space) 0;
  position: relative;
  overflow: hidden;
}

/* ─── Typography ─── */

h1, h2, h3, blockquote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.02em;
  margin: 0;
}

h2 {
  font-size: clamp(1.8rem, 2vw + 1.2rem, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: color-mix(in srgb, var(--accent), var(--ivory) 35%);
  margin: 0 0 var(--space-1);
}

.signature-line {
  display: inline-block;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 35%, transparent 100%);
  margin: var(--space-2) 0;
}

/* ─── Grain overlay ─── */

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.14) 0.8px, transparent 0);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ══════════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color 500ms var(--ease-lux), backdrop-filter 500ms var(--ease-lux);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(22, 37, 80, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(201, 169, 110, 0.12);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.brand,
.brand-foot {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.04em;
  z-index: 101;
}

/* Desktop nav links */
.nav-links {
  display: none;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.88);
  transition: color 300ms var(--ease-lux);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links-cta {
  display: none;
}

.btn-nav-desktop {
  display: none;
}

.nav-desktop-actions {
  display: none;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 400ms var(--ease-lux), opacity 300ms var(--ease-lux);
  transform-origin: center;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav overlay */
@media (max-width: 1023.98px) {
  .site-header.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--mobile-nav-top, 64px);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - var(--mobile-nav-top, 64px));
    z-index: 99;
    background: rgba(22, 37, 80, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    padding: 1.25rem 1.25rem 2rem;
    overflow-y: auto;
    animation: fadeIn 400ms var(--ease-lux);
  }

  .site-header.menu-open .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 500ms var(--ease-lux) forwards;
  }

  .site-header.menu-open .nav-links li:nth-child(1) { animation-delay: 80ms; }
  .site-header.menu-open .nav-links li:nth-child(2) { animation-delay: 140ms; }
  .site-header.menu-open .nav-links li:nth-child(3) { animation-delay: 200ms; }
  .site-header.menu-open .nav-links li:nth-child(4) { animation-delay: 260ms; }
  .site-header.menu-open .nav-links li:nth-child(5) { animation-delay: 320ms; }
  .site-header.menu-open .nav-links li:nth-child(6) { animation-delay: 380ms; }
  .site-header.menu-open .nav-links li:nth-child(7) { animation-delay: 440ms; }

  .site-header.menu-open .nav-links a {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
    letter-spacing: 0.12em;
    padding: 0.95rem 0.25rem;
    display: block;
    text-align: center;
  }

  .site-header.menu-open .nav-links .nav-links-cta {
    display: block;
    margin-top: 1rem;
  }

  .site-header.menu-open .nav-links .nav-links-cta .btn {
    width: 100%;
    min-width: 200px;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.75rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition-soft);
  cursor: pointer;
  font-family: inherit;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.btn-nav,
.btn-primary {
  border-color: color-mix(in srgb, var(--accent), #fff 12%);
  color: var(--ivory);
  background: transparent;
}

.btn-primary:hover,
.btn-nav:hover {
  background: linear-gradient(120deg, rgba(201, 169, 110, 0.9), rgba(178, 144, 80, 0.92));
  color: var(--brand-dark);
}

.btn-text {
  padding-inline: 0;
  border-bottom: 1px solid rgba(248, 245, 240, 0.5);
  color: rgba(248, 245, 240, 0.86);
  min-height: auto;
}

.btn-text:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.btn-solid {
  margin-top: var(--space-2);
  width: 100%;
  max-width: 360px;
  border-color: color-mix(in srgb, var(--accent), #7a6234 30%);
  background: linear-gradient(135deg, var(--accent), #a88b4e);
  color: var(--brand-dark);
  font-weight: 500;
  border-radius: 8px;
}

.btn-solid:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100dvh;
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero.jpeg") center / cover no-repeat;
  transform-origin: center;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(24, 40, 78, 0.46) 0%, rgba(24, 40, 78, 0.25) 45%, rgba(24, 40, 78, 0.1) 75%, rgba(24, 40, 78, 0.3) 100%),
    linear-gradient(180deg, rgba(13, 23, 43, 0.5), rgba(13, 23, 43, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 1rem 2rem;
  width: 100%;
}

.hero-emblem {
  width: min(70vw, 52vh, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1.5px solid rgba(248, 245, 240, 0.7);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 12% 8%;
  margin-inline: auto;
  position: relative;
}

.hero-emblem::before {
  content: "";
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  border: 1px solid rgba(248, 245, 240, 0.5);
}

.hero-kicker {
  margin: 0 0 var(--space-1);
  font-size: clamp(0.56rem, 1.8vw, 0.88rem);
  letter-spacing: 0.15em;
  color: rgba(248, 245, 240, 0.9);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.hero-title {
  font-size: clamp(2.4rem, 8vw, 6.8rem);
  font-weight: 500;
  line-height: 0.88;
  margin: 0 0 var(--space-1);
  text-transform: lowercase;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.hero-est {
  margin: 0;
  font-size: clamp(0.8rem, 1vw, 1.15rem);
  letter-spacing: 0.08em;
  color: rgba(248, 245, 240, 0.78);
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.35rem);
  margin: var(--space-2) auto var(--space-3);
  color: color-mix(in srgb, var(--ivory), var(--accent) 15%);
  text-wrap: balance;
  max-width: 38ch;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════ */

.about {
  background:
    radial-gradient(circle at 20% 18%, rgba(201, 169, 110, 0.06), transparent 35%),
    linear-gradient(180deg, var(--brand-dark) 0%, #132147 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: center;
}

.about-image-wrap {
  min-height: 50vh;
  max-height: 60vh;
  overflow: hidden;
}

.about-image-wrap img {
  height: 100%;
  min-height: 63vh;
  box-shadow: 0 24px 48px rgba(1, 8, 12, 0.25);
}

.about-content {
  max-width: 52ch;
}

.about-content p {
  color: rgba(248, 245, 240, 0.86);
  font-size: clamp(0.92rem, 0.8rem + 0.3vw, 1.05rem);
}

.about-content p + p {
  margin-top: var(--space-2);
}

/* ══════════════════════════════════════════════════════════════
   DISHES
   ══════════════════════════════════════════════════════════════ */

.section-head {
  display: grid;
  gap: var(--space-1);
  margin-bottom: clamp(1rem, 3vw, var(--space-4));
}

.dishes {
  background: linear-gradient(180deg, #132147 0%, var(--brand-dark) 100%);
  padding: clamp(2rem, 4vw, 4.5rem) 0;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: clamp(0.4rem, 1vw, 1.5rem);
}

.dish {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 600ms var(--ease-lux), box-shadow 600ms var(--ease-lux);
}

.dish:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.dish-img-wrap {
  flex: 0 0 var(--dish-media-height);
  overflow: hidden;
  min-height: var(--dish-media-height);
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: auto;
}

.dish-feature .dish-img-wrap {
  aspect-ratio: auto;
}

.dish-wide .dish-img-wrap {
  aspect-ratio: auto;
}

.dish img {
  height: 100%;
  transform: scale(1);
  transition: transform 1200ms var(--ease-lux);
}

.dish:hover img {
  transform: scale(1.05);
}

.gallery-item img {
  height: 100%;
  transform: scale(1);
  transition: transform 1200ms var(--ease-lux), filter 1200ms var(--ease-lux);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 65, 146, 0.04), rgba(22, 37, 80, 0.4));
  opacity: 0;
  transition: opacity var(--transition-soft);
}

.gallery-item:hover::after {
  opacity: 1;
}

.dish figcaption {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
}

.dish figcaption span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.85rem, 0.7vw + 0.5rem, 1.65rem);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.15;
}

.dish figcaption .dish-desc {
  display: none;
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  color: rgba(245, 243, 239, 0.6);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   EXPERIENCE
   ══════════════════════════════════════════════════════════════ */

.experience {
  background: linear-gradient(130deg, var(--brand-mid) 0%, var(--brand-surface) 100%);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: center;
}

.experience-copy > p {
  max-width: 46ch;
  color: rgba(248, 245, 240, 0.84);
  font-size: clamp(0.92rem, 0.8rem + 0.3vw, 1.05rem);
}

.experience-actions {
  margin-top: var(--space-2);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.experience-image {
  position: relative;
}

.experience-image::before {
  content: "";
  position: absolute;
  inset: 5% 10% 5% -5%;
  border: 1px solid rgba(201, 169, 110, 0.25);
  pointer-events: none;
}

.experience-image img {
  min-height: 50vh;
  max-height: 70vh;
  box-shadow: 0 30px 48px rgba(1, 8, 12, 0.3);
}

/* ══════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════ */

.gallery {
  overflow: clip;
  background: linear-gradient(180deg, #152348 0%, #111d3a 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1vw + 0.4rem, 1.2rem);
}

.gallery-item {
  position: relative;
  min-height: var(--gallery-card-height);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.gallery-item {
  border-radius: var(--radius);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 110, 0);
  z-index: 3;
  transition: border-color var(--transition-soft);
}

.gallery-item:hover::before {
  border-color: rgba(201, 169, 110, 0.5);
}

.cursor-glow {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0));
  border: 1px solid rgba(201, 169, 110, 0.35);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 280ms var(--ease-lux), opacity 280ms var(--ease-lux);
  opacity: 0;
  z-index: 35;
  display: none;
}

/* ══════════════════════════════════════════════════════════════
   RESERVATION
   ══════════════════════════════════════════════════════════════ */

.reservation {
  text-align: center;
  background: linear-gradient(180deg, #111d3a 0%, #0d1730 100%);
}

.reservation-wrap {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
}

.reservation-form {
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

.booking-picker {
  width: 100%;
  display: grid;
  gap: 0.9rem;
  text-align: left;
  padding: 0.8rem 0 1rem;
}

.booking-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent), var(--ivory) 40%);
}

.booking-window-note {
  margin: -0.2rem 0 0.1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(248, 245, 240, 0.72);
}

.reservation-date-nav {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 0.5rem;
  align-items: center;
}

.date-arrow {
  width: 44px;
  min-height: 44px;
  padding: 0;
  font-size: 1rem;
}

.date-picker-btn {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  font-size: 0.75rem;
  padding-inline: 0.9rem;
}

.reservation-date-nav .btn-nav {
  border-color: color-mix(in srgb, var(--accent), #fff 12%);
  background: linear-gradient(120deg, rgba(201, 169, 110, 0.88), rgba(168, 139, 78, 0.9));
  color: var(--brand-dark);
}

.reservation-date-nav .btn-nav:hover {
  border-color: color-mix(in srgb, var(--accent), #fff 12%);
  background: linear-gradient(120deg, rgba(201, 169, 110, 0.95), rgba(168, 139, 78, 0.95));
  color: var(--brand-dark);
}

.hidden-date-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.meal-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.meal-chip {
  border: 1px solid rgba(201, 169, 110, 0.22);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(245, 243, 239, 0.86);
  min-height: 44px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-family: inherit;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition-soft);
  -webkit-tap-highlight-color: transparent;
}

.meal-chip:hover {
  border-color: rgba(201, 169, 110, 0.6);
  background: rgba(201, 169, 110, 0.08);
}

.meal-chip.is-active {
  border-color: color-mix(in srgb, var(--accent), #f0deb0 20%);
  background: rgba(201, 169, 110, 0.15);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}

.slot-chip {
  border: 1px solid rgba(201, 169, 110, 0.22);
  background: rgba(255, 255, 255, 0.02);
  color: var(--ivory);
  padding: 0.55rem 0.4rem;
  min-height: 44px;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition-soft);
  -webkit-tap-highlight-color: transparent;
}

.slot-chip.is-active {
  border-color: color-mix(in srgb, var(--accent), #f0deb0 20%);
  background: rgba(201, 169, 110, 0.15);
}

.slot-chip:hover {
  border-color: rgba(201, 169, 110, 0.6);
  background: rgba(201, 169, 110, 0.08);
}

.slot-chip[data-state="open"] {
  border-color: rgba(128, 183, 150, 0.4);
}

.slot-chip[data-state="limited"] {
  border-color: rgba(201, 169, 110, 0.65);
}

.slot-chip[data-state="full"] {
  border-color: rgba(198, 94, 94, 0.4);
  color: rgba(248, 245, 240, 0.4);
  background: rgba(109, 32, 32, 0.12);
  cursor: not-allowed;
}

.slot-chip:disabled {
  pointer-events: none;
}

.slot-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.65);
}

.slot-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot-open { background: rgba(128, 183, 150, 0.86); }
.dot-limited { background: rgba(184, 154, 79, 0.9); }
.dot-full { background: rgba(198, 94, 94, 0.8); }

.reservation-form label {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.reservation-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(248, 245, 240, 0.28);
  background: transparent;
  color: var(--ivory);
  padding: 1rem 0.2rem 0.5rem;
  font: inherit;
  font-size: 16px; /* Prevents iOS zoom */
  transition: border-color var(--transition-soft), box-shadow var(--transition-soft);
}

.reservation-form input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent), #e5d2a0 28%);
  box-shadow: 0 8px 24px -16px rgba(201, 169, 110, 0.6);
}

.reservation-form label span {
  position: absolute;
  inset: 1rem auto auto 0.2rem;
  color: rgba(248, 245, 240, 0.6);
  font-size: 0.9rem;
  transition: transform 300ms var(--ease-lux), font-size 300ms var(--ease-lux), color 300ms var(--ease-lux);
  pointer-events: none;
}

.reservation-form input:focus + span,
.reservation-form input:not(:placeholder-shown) + span {
  transform: translateY(-1rem);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent), var(--ivory) 24%);
}

.reservation-message {
  margin: 0.3rem 0 0;
  min-height: 1.4rem;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--accent), var(--ivory) 20%);
}

.reservation-message.error {
  color: rgba(231, 122, 122, 0.9);
}

.reservation-message.success {
  color: rgba(138, 198, 161, 0.92);
}

.reservation-large-party-note {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--accent), var(--muted) 30%);
  margin: 0.1rem 0 0.5rem;
  line-height: 1.5;
}

.reservation-large-party-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════════
   RESERVATION CALENDAR MODAL
   ══════════════════════════════════════════════════════════════ */

.reservation-calendar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(10, 16, 36, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity 300ms var(--ease-lux);
}

.reservation-calendar-backdrop.hidden {
  display: none;
}

.reservation-calendar-backdrop.fade-out {
  opacity: 0;
}

.reservation-calendar {
  width: min(420px, 100%);
  background: linear-gradient(170deg, #1a2c5c 0%, var(--brand-dark) 100%);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  padding: clamp(1.4rem, 4vw, 2rem);
  position: relative;
  overflow: hidden;
  animation: modalIn 500ms var(--ease-lux) both;
}

.reservation-calendar-backdrop.is-loading .reservation-calendar-close,
.reservation-calendar-backdrop.is-loading .reservation-calendar-nav,
.reservation-calendar-backdrop.is-loading .reservation-calendar-day {
  pointer-events: none;
}

.reservation-calendar-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  color: rgba(248, 245, 240, 0.66);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color 300ms var(--ease-lux);
}

.reservation-calendar-close:hover {
  color: var(--ivory);
}

.reservation-calendar-toolbar {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.reservation-calendar-title {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 500;
  text-align: center;
}

.reservation-calendar-nav {
  width: 40px;
  min-height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ivory);
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-soft);
}

.reservation-calendar-nav:hover:not(:disabled) {
  border-color: rgba(201, 169, 110, 0.56);
  background: rgba(201, 169, 110, 0.12);
}

.reservation-calendar-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reservation-calendar-selected,
.reservation-calendar-hint {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(248, 245, 240, 0.72);
}

.reservation-calendar-selected {
  margin: 0 0 0.9rem;
}

.reservation-calendar-hint {
  margin: 0.9rem 0 0;
}

.reservation-calendar-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  padding: 2rem;
  background: rgba(11, 20, 44, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.reservation-calendar-backdrop.is-loading .reservation-calendar-loader {
  opacity: 1;
}

.reservation-calendar-spinner {
  width: 28px;
  height: 28px;
  border-color: rgba(245, 243, 239, 0.22);
  border-top-color: var(--accent);
}

.reservation-calendar-loader-text {
  font-size: 0.84rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.88);
}

.reservation-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.reservation-calendar-weekday {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent), var(--muted) 40%);
  padding-bottom: 0.15rem;
}

.reservation-calendar-day {
  min-height: 44px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ivory);
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-soft);
}

.reservation-calendar-day:hover:not(:disabled):not(.is-empty) {
  border-color: rgba(201, 169, 110, 0.6);
  background: rgba(201, 169, 110, 0.12);
}

.reservation-calendar-day.is-selected {
  border-color: color-mix(in srgb, var(--accent), #f0deb0 18%);
  background: linear-gradient(120deg, rgba(201, 169, 110, 0.95), rgba(168, 139, 78, 0.92));
  color: var(--brand-dark);
}

.reservation-calendar-day.is-today {
  box-shadow: inset 0 0 0 1px rgba(79, 114, 168, 0.9);
}

.reservation-calendar-day:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.reservation-calendar-day.is-empty {
  visibility: hidden;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */

.site-footer {
  background: #0c1629;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: var(--space-3) 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}

.muted {
  color: rgba(248, 245, 240, 0.65);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.6;
}

.brand-foot + .muted {
  padding-top: 0.3rem;
}

.muted a {
  transition: color 300ms var(--ease-lux);
}

.muted a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  border: 1px solid rgba(201, 169, 110, 0.35);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  color: color-mix(in srgb, var(--accent), var(--ivory) 18%);
  transition: var(--transition-soft);
  -webkit-tap-highlight-color: transparent;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a[aria-label="Facebook"] svg,
.footer-social a[aria-label="TikTok"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-social a:hover {
  background: rgba(201, 169, 110, 0.12);
}

.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;
}

.admin-shortcut {
  position: static;
  z-index: auto;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin: 0 auto max(1.1rem, env(safe-area-inset-bottom));
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 8px;
  background: rgba(22, 37, 80, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: color-mix(in srgb, var(--accent), var(--ivory) 20%);
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: var(--transition-soft);
}

.admin-shortcut:hover {
  border-color: rgba(201, 169, 110, 0.8);
  background: rgba(201, 169, 110, 0.15);
}

/* ══════════════════════════════════════════════════════════════
   SUCCESS MODAL
   ══════════════════════════════════════════════════════════════ */

.success-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(10, 16, 36, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity 400ms var(--ease-lux);
}

.success-modal-backdrop.hidden {
  display: none;
}

.success-modal-backdrop.fade-out {
  opacity: 0;
}

.success-modal {
  width: min(440px, 100%);
  background: linear-gradient(170deg, #1a2c5c 0%, var(--brand-dark) 100%);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(0) scale(1);
  animation: modalIn 500ms var(--ease-lux) both;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.success-modal-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--brand-deep) 0%, var(--brand-mid) 45%, var(--accent) 100%);
}

.success-modal-body {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
}

.success-modal-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--accent);
}

.success-modal-check svg {
  width: 100%;
  height: 100%;
}

.success-modal-check circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: circleIn 600ms 200ms var(--ease-lux) forwards;
}

.success-modal-check path {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: checkIn 400ms 600ms var(--ease-lux) forwards;
}

@keyframes circleIn {
  to { stroke-dashoffset: 0; }
}

@keyframes checkIn {
  to { stroke-dashoffset: 0; }
}

.success-modal-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--ivory);
}

.success-modal-lead {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
}

.success-modal-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  text-align: left;
  padding: 1rem 1.2rem;
  margin: 0 0 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.14);
  border-radius: 12px;
  font-size: 0.82rem;
}

.success-modal-details .detail-label {
  color: var(--muted);
}

.success-modal-details .detail-value {
  color: var(--ivory);
  font-weight: 500;
}

.success-modal-email-note {
  font-size: 0.76rem;
  color: color-mix(in srgb, var(--accent), var(--muted) 40%);
  margin: 0 0 1.2rem;
}

.success-modal-hold-note {
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--accent), var(--ivory) 50%);
  margin: 0.6rem 0 0.4rem;
  line-height: 1.5;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 8px;
  background: rgba(201, 169, 110, 0.06);
}

.success-modal-close {
  width: 100%;
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════════════════════════════
   BUTTON SPINNER
   ══════════════════════════════════════════════════════════════ */

.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(22, 37, 80, 0.3);
  border-top-color: var(--brand-dark);
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
}

.btn-spinner.hidden {
  display: none;
}

.btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn.is-loading .btn-label {
  display: none;
}

.btn.is-loading .btn-spinner {
  display: inline-block;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT MODAL
   ══════════════════════════════════════════════════════════════ */

.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(10, 16, 36, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity 400ms var(--ease-lux);
}

.contact-modal-backdrop.hidden {
  display: none;
}

.contact-modal-backdrop.fade-out {
  opacity: 0;
}

.contact-modal {
  width: min(500px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(170deg, #1a2c5c 0%, var(--brand-dark) 100%);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  position: relative;
  animation: modalIn 500ms var(--ease-lux) both;
}

.contact-modal h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500;
  margin: 0 0 0.4rem;
  color: var(--ivory);
}

.contact-modal .signature-line {
  margin: 0.6rem 0 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

.contact-form label {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(248, 245, 240, 0.28);
  background: transparent;
  color: var(--ivory);
  padding: 1rem 0.2rem 0.5rem;
  font: inherit;
  font-size: 16px;
  transition: border-color var(--transition-soft), box-shadow var(--transition-soft);
  resize: vertical;
}

.contact-form textarea {
  min-height: 80px;
  line-height: 1.6;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent), #e5d2a0 28%);
  box-shadow: 0 8px 24px -16px rgba(201, 169, 110, 0.6);
}

.contact-form label span {
  position: absolute;
  inset: 1rem auto auto 0.2rem;
  color: rgba(248, 245, 240, 0.6);
  font-size: 0.9rem;
  transition: transform 300ms var(--ease-lux), font-size 300ms var(--ease-lux), color 300ms var(--ease-lux);
  pointer-events: none;
}

.contact-form input:focus + span,
.contact-form input:not(:placeholder-shown) + span,
.contact-form textarea:focus + span,
.contact-form textarea:not(:placeholder-shown) + span {
  transform: translateY(-1rem);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent), var(--ivory) 24%);
}

.select-label {
  width: 100%;
  max-width: 560px;
}

.select-label select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(248, 245, 240, 0.28);
  background: transparent;
  color: var(--ivory);
  padding: 0.85rem 0.2rem 0.5rem;
  font: inherit;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--transition-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='rgba(248,245,240,0.5)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
}

.select-label select:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent), #e5d2a0 28%);
}

.select-label select option {
  background: var(--brand-dark);
  color: var(--ivory);
}

.contact-message {
  margin: 0.3rem 0 0;
  min-height: 1.4rem;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--accent), var(--ivory) 20%);
}

.contact-message.error {
  color: rgba(231, 122, 122, 0.9);
}

.contact-message.success {
  color: rgba(138, 198, 161, 0.92);
}

/* ══════════════════════════════════════════════════════════════
   CATERING POPUP
   ══════════════════════════════════════════════════════════════ */

.catering-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(10, 16, 36, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity 400ms var(--ease-lux);
}

.catering-popup-backdrop.hidden {
  display: none;
}

.catering-popup-backdrop.fade-out {
  opacity: 0;
}

.catering-popup {
  width: min(440px, 100%);
  background: linear-gradient(170deg, #1a2c5c 0%, var(--brand-dark) 100%);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  position: relative;
  animation: modalIn 500ms var(--ease-lux) both;
}

.catering-popup-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: none;
  border: none;
  color: rgba(248, 245, 240, 0.6);
  font-size: 1.6rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  transition: color 300ms var(--ease-lux);
}

.catering-popup-close:hover {
  color: var(--ivory);
}

.catering-popup h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500;
  margin: 0 0 0.6rem;
  color: var(--ivory);
}

.catering-popup-lead {
  font-size: 0.88rem;
  color: rgba(248, 245, 240, 0.75);
  margin: 0 0 1.2rem;
  line-height: 1.6;
}

.catering-ezcater-btn {
  gap: 0.6rem;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}

.ezcater-logo {
  width: auto;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.catering-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.2rem 0;
  color: rgba(248, 245, 240, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catering-divider::before,
.catering-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 169, 110, 0.2);
}

.catering-popup-custom {
  font-size: 0.85rem;
  color: rgba(248, 245, 240, 0.7);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.catering-contact-btn {
  width: 100%;
  margin-top: 0;
}

/* ══════════════════════════════════════════════════════════════
   CANCEL MODAL
   ══════════════════════════════════════════════════════════════ */

.cancel-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(10, 16, 36, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity 400ms var(--ease-lux);
}

.cancel-modal-backdrop.hidden {
  display: none;
}

.cancel-modal-backdrop.fade-out {
  opacity: 0;
}

.cancel-modal {
  width: min(420px, 100%);
  background: linear-gradient(170deg, #1a2c5c 0%, var(--brand-dark) 100%);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  animation: modalIn 500ms var(--ease-lux) both;
}

.cancel-modal-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--brand-deep) 0%, var(--brand-mid) 45%, var(--accent) 100%);
}

.cancel-modal-body {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
}

.cancel-modal-panel.hidden {
  display: none;
}

.cancel-modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
}

.cancel-modal-icon svg {
  width: 100%;
  height: 100%;
}

.cancel-icon-warning { color: var(--accent); }
.cancel-icon-success { color: #6abf7b; }
.cancel-icon-error   { color: #d85c55; }
.cancel-icon-info    { color: #7aa6d4; }

.cancel-modal-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 500;
  margin: 0 0 0.4rem;
  color: var(--ivory);
}

.cancel-modal-lead {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 1.4rem;
}

.cancel-modal-lead a {
  color: var(--accent);
  text-decoration: none;
}

.cancel-modal-lead a:hover {
  text-decoration: underline;
}

.cancel-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cancel-btn-keep {
  width: 100%;
  border-radius: 8px;
}

.cancel-btn-confirm {
  width: 100%;
  border-radius: 8px;
  padding: 0.75rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  min-height: 48px;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 92, 85, 0.55);
  background: rgba(216, 92, 85, 0.1);
  color: #e8817b;
  transition: var(--transition-soft);
}

.cancel-btn-confirm:hover {
  background: rgba(216, 92, 85, 0.2);
  border-color: #d85c55;
  color: #f09590;
}

.cancel-modal-done {
  width: 100%;
  max-width: 260px;
  margin-top: 0;
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS — Reveal & Stagger
   ══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 900ms var(--ease-lux), transform 900ms var(--ease-lux);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mask-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1300ms var(--ease-lux), opacity 900ms var(--ease-lux), transform 900ms var(--ease-lux);
}

.mask-reveal.is-visible {
  clip-path: inset(0 0 0 0);
}

.stagger-char {
  opacity: 0;
  display: inline-block;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-lux), transform 700ms var(--ease-lux);
}

.reveal.is-visible .stagger-char,
.stagger-char.in {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   BREAKPOINT — 480px+ (Larger phones)
   ══════════════════════════════════════════════════════════════ */

@media (min-width: 480px) {
  :root {
    --dish-media-height: 12.5rem;
    --gallery-card-height: 16.5rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dish-feature,
  .dish-wide {
    grid-column: span 2;
  }

  .dish figcaption {
    padding: var(--space-2);
  }

  .dish figcaption span {
    font-size: clamp(1.2rem, 1vw + 0.8rem, 1.65rem);
  }

  .dish figcaption .dish-desc {
    display: block;
  }

  .hero-emblem {
    width: min(65vw, 58vh, 480px);
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   BREAKPOINT — 768px+ (Tablets)
   ══════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  :root {
    --dish-media-height: 14rem;
    --gallery-card-height: 18rem;
  }

  .nav {
    min-height: 72px;
  }

  .hero-emblem {
    width: min(56vh, 80vw, 540px);
    padding: 11% 10%;
  }

  .about-grid {
    grid-template-columns: 1.6fr 1fr;
  }

  .about-image-wrap {
    min-height: 56vh;
    max-height: none;
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience-image {
    margin-left: clamp(0rem, 2vw, 1.5rem);
  }

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

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

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }


/* ══════════════════════════════════════════════════════════════
   BREAKPOINT — 1024px+ (Desktop)
   ══════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  :root {
    --dish-media-height: 15rem;
    --gallery-card-height: 19rem;
  }

  .nav {
    min-height: 80px;
  }

  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
  }

  .nav-links-cta {
    display: none;
  }

  .nav-desktop-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-desktop-actions .btn-nav-desktop {
    display: inline-flex;
  }

  .hero-emblem {
    width: min(68vh, 72vw, 640px);
  }

  .hero-content {
    padding-top: clamp(4rem, 6vh, 5.5rem);
  }

  .about-grid {
    grid-template-columns: 61.8fr 38.2fr;
    gap: clamp(1.4rem, 3vw, 3.2rem);
  }

  .about-image-wrap {
    min-height: min(64vh, 700px);
  }

  .dish-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .dish-feature {
    grid-column: span 2;
  }

  .dish-wide {
    grid-column: span 2;
  }

  .experience-grid {
    grid-template-columns: 1fr minmax(260px, 0.92fr);
    gap: clamp(1.2rem, 3vw, 4rem);
  }

  .experience-image::before {
    inset: 0 18% 8% -12%;
  }

  .experience-image img {
    min-height: 60vh;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 1vw + 0.4rem, 1.2rem);
  }

  .cursor-glow {
    display: block;
  }
}

/* ══════════════════════════════════════════════════════════════
   BREAKPOINT — 1280px+ (Large desktop)
   ══════════════════════════════════════════════════════════════ */

@media (min-width: 1280px) {
  .hero-emblem {
    width: min(74vh, 80vw, 720px);
  }

  .hero-title {
    font-size: clamp(4rem, 9.6vw, 7.4rem);
  }

  .about-image-wrap {
    min-height: min(68vh, 530px);
  }

  .dish-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════════ */

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

  .reveal,
  .stagger-char,
  .mask-reveal {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* ─── Safe area support for notched devices ─── */

@supports (padding: max(0px)) {
  .nav {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .site-footer {
    padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
  }
}
