/* ══════════════════════════════════════════════════════
   PLATTERS & CO. — MOBILE-FIRST STYLESHEET v2
   Modelled after Celavi Dubai · All measurements in rem
══════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --gold: #b8924a;
  --gold-light: #d4a96a;
  --gold-dark: #8a6835;
  --dark: #0e0c09;
  --dark-2: #161310;
  --dark-3: #1e1a14;
  --cream: #f5f0e8;
  --cream-2: #ede7d9;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.85);
  --text-dim: rgba(255, 255, 255, 0.50);
  --dark-text: rgba(14, 12, 9, 0.85);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;

  --nav-h: 72px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);


  --space-xs: 0.75rem;
  --space-sm: 1.25rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  background: var(--dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (min-width: 900px) {
  body {
    font-weight: 300;
  }
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

input,
select,
textarea {
  font-family: var(--font-sans);
  background: none;
  border: none;
  outline: none;
  width: 100%;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 900px) {
  .container {
    padding: 0 3rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1320px;
    padding: 0 4rem;
  }
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal--right {
  transform: translateX(32px);
}

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

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  /* touch target */
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 146, 74, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn--outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn--outline:hover {
  background: var(--gold-dark);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-light:hover {
  background: var(--gold);
  color: var(--dark);
}

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

/* ══════════════════════════════════════════════════════
   NAVIGATION — Celavi-style
══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.is-scrolled {
  background: rgba(14, 12, 9, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 146, 74, 0.12);
}

/* ── Bar ── */
.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 1.25rem;
  position: relative;
}

@media (min-width: 600px) {
  .nav__bar {
    padding: 0 2rem;
  }
}

/* ── Logo ── */
.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0;
}

.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

@media (min-width: 900px) {
  .nav__logo img {
    height: 52px;
  }
}

/* ── Hamburger ── */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

.nav__ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

.nav__hamburger.is-open .nav__ham-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger.is-open .nav__ham-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open .nav__ham-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Quick links (desktop only) ── */
.nav__quick {
  display: none;
}

@media (min-width: 900px) {
  .nav__quick {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav__quick-link {
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
  }

  .nav__quick-link:hover {
    color: var(--gold);
  }

  .nav__quick-link--cta {
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    transition: all 0.3s;
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  .nav__quick-link--cta:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
  }
}

/* ── Mega menu ── */
.nav__mega {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1050;
  display: flex;
  /* always in layout */
  align-items: stretch;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  /* hides & blocks pointer events */
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
  overflow-y: auto;
}

.nav__mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav__mega-inner {
  display: flex;
  width: 100%;
  min-height: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 5rem 1.5rem 3rem;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav__mega-inner {
    flex-direction: row;
    align-items: center;
    padding: 6rem 4rem 4rem;
  }
}

/* Links column */
.nav__mega-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  overflow-y: auto;
  max-height: 70svh;
  padding-right: 0.5rem;
}

@media (min-width: 600px) {
  .nav__mega-links {
    flex-direction: row;
    gap: 3rem;
    max-height: none;
    overflow-y: visible;
  }
}

@media (min-width: 768px) {
  .nav__mega-links {
    flex-direction: column;
    gap: 2rem;
  }
}

.nav__mega-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav__mega-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184, 146, 74, 0.2);
}

.nav__mega-link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.nav__mega-link:hover {
  color: var(--white);
  transform: translateX(6px);
}

/* Preview image */
.nav__mega-preview {
  display: none;
}

@media (min-width: 768px) {
  .nav__mega-preview {
    display: block;
    width: 380px;
    flex-shrink: 0;
    height: 520px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
  }
}

.nav__mega-preview-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: background-image 0s, transform 0.6s var(--ease);
}

/* Close button */
.nav__mega-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s, transform 0.3s;
  z-index: 1100;
}

.nav__mega-close svg {
  width: 24px;
  height: 24px;
}

.nav__mega-close:hover {
  color: var(--white);
  transform: rotate(90deg);
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero__slide.is-active {
  opacity: 1;
  animation: hero-zoom 10s ease-out forwards;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(14, 12, 9, 0.55) 0%,
      rgba(14, 12, 9, 0.70) 50%,
      rgba(14, 12, 9, 0.80) 100%);
}

/* ── Centred content ── */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem;
  width: 100%;
  gap: 0;
}

.hero__eyebrow {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.25rem;
  animation: fade-up 1s 0.2s var(--ease-out) both;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  animation: fade-up 1s 0.35s var(--ease-out) both;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  animation: fade-up 1s 0.5s var(--ease-out) both;
}

/* Quick-action links (Our Menu | Reservations | Contact) */
.hero__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  animation: fade-up 1s 0.65s var(--ease-out) both;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__link {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.hero__link:hover {
  color: var(--white);
}

.hero__sep {
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

/* ── Mobile: stack links vertically, hide separators ── */
@media (max-width: 899px) {
  .hero__links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .hero__sep {
    display: none;
  }

  .hero__link {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
  }
}

/* Social icons */
.hero__social {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
  animation: fade-up 1s 0.8s var(--ease-out) both;
}

.hero__social-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s, border-color 0.3s;
  backdrop-filter: blur(4px);
}

.hero__social-icon:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.hero__social-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Down arrow - placed absolutely at the bottom edge */
.hero__arrow {
  position: absolute;
  bottom: -5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  animation: fade-up-arrow 1s 0.95s var(--ease-out) both, arrow-bounce-arrow 2.5s 2s ease-in-out infinite;
  transition: color 0.3s;
  z-index: 3;
}

.hero__arrow:hover {
  color: var(--white);
}

.hero__arrow svg {
  width: 38px;
  height: 38px;
}

@keyframes arrow-bounce-arrow {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 6px);
  }
}

@keyframes fade-up-arrow {
  from {
    opacity: 0;
    transform: translate(-50%, 24px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}



@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

/* ══════════════════════════════════════════════════════
   SECTIONS — shared
══════════════════════════════════════════════════════ */
.section {
  padding: var(--space-lg) 0;
}

@media (min-width: 900px) {
  .section {
    padding: var(--space-xl) 0;
  }
}

.section--dark {
  background: var(--dark-2);
}

.section--light {
  background: var(--cream);
}

.section--cream {
  background: var(--cream-2);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

/* ─── Typography helpers ─── */
.eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow--dark {
  color: var(--gold-dark);
}

.heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

@media (min-width: 900px) {
  .heading {
    font-size: clamp(2rem, 5.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
  }
}

.heading--dark {
  color: var(--dark);
}

.heading em {
  font-style: italic;
  color: var(--gold-light);
}

.heading--dark em {
  color: var(--gold-dark);
}

.divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 1.5rem auto;
}

.divider--dark {
  background: var(--gold-dark);
  margin: 1.5rem 0;
}

.split__text .divider {
  margin: 1.5rem 0;
}

.body-text {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

@media (min-width: 900px) {
  .body-text {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.85;
  }
}

.body-text--dark {
  color: var(--dark-text);
}

.body-text--centre {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════
   SPLIT LAYOUT
══════════════════════════════════════════════════════ */
.split {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .split>* {
    flex: 1;
  }

  .split--reverse {
    flex-direction: row-reverse;
  }
}

/* Media stack */
.media-stack {
  position: relative;
}

.media-stack img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}

.media-stack__badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  width: 90px;
  height: 90px;
  background: var(--gold-dark);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.4;
  color: var(--white);
}

/* Media frame */
.media-frame {
  position: relative;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}

.media-frame::after {
  content: '';
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   THE SPACE GRID
══════════════════════════════════════════════════════ */
.space-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .space-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

.space-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.space-card--tall {
  grid-row: 1 / 3;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.7s var(--ease);
  display: block;
}

@media (min-width: 600px) {
  .space-card img {
    aspect-ratio: unset;
    min-height: 250px;
  }
}

.space-card:hover img {
  transform: scale(1.04);
}

.space-card__caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 12, 9, 0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0.7;
  transition: opacity 0.4s;
}

.space-card:hover .space-card__caption {
  opacity: 1;
}

.space-card__caption h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
}

.space-card__caption p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
}

/* ══════════════════════════════════════════════════════
   CUISINE GRID
══════════════════════════════════════════════════════ */
.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 600px) {
  .cuisine-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .cuisine-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.cuisine-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.cuisine-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}

.cuisine-item:hover img {
  transform: scale(1.06);
}

.cuisine-item p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(14, 12, 9, 0.85), transparent);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

.cuisine-cta {
  text-align: center;
  margin-top: var(--space-md);
}

/* ══════════════════════════════════════════════════════
   MENU IFRAME
══════════════════════════════════════════════════════ */
.menu-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 74, 0.2);
  background: var(--dark-3);
}

.menu-iframe {
  display: block;
  width: 100%;
  height: 80svh;
  min-height: 500px;
  border: none;
}

/* ══════════════════════════════════════════════════════
   OUR PEOPLE
══════════════════════════════════════════════════════ */
.ceo-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(14, 12, 9, 0.07);
  border: 1px solid rgba(184, 146, 74, 0.2);
  border-radius: 4px;
}

.ceo-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184, 146, 74, 0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ceo-avatar svg {
  width: 40px;
  height: 40px;
}

.ceo-card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
}

.ceo-card span {
  font-size: 0.75rem;
  color: rgba(14, 12, 9, 0.5);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════
   LOCATIONS
══════════════════════════════════════════════════════ */
.location-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .location-card {
    flex-direction: row;
  }
}

.location-card__img {
  flex: 1;
  min-height: 240px;
  overflow: hidden;
}

.location-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
  transition: transform 0.6s var(--ease);
}

.location-card:hover .location-card__img img {
  transform: scale(1.04);
}

.location-card__info {
  flex: 1;
  padding: 2rem 1.5rem;
}

.location-card__info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.location-card__info>p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.loc-details {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.loc-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

@media (min-width: 900px) {
  .loc-details li {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
  }
}

.loc-details li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.loc-details li a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.3s;
}

.loc-details li a:hover {
  color: var(--gold);
}

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

@media (min-width: 480px) {
  .loc-actions {
    flex-direction: row;
  }
}

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.map-embed iframe {
  display: block;
}

/* ══════════════════════════════════════════════════════
   EVENTS
══════════════════════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.event-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.event-card__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.event-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(14, 12, 9, 0.6);
  margin-bottom: 1.5rem;
}

.event-link {
  font-size: 0.675rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.event-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════
   CONTACT / RESERVATIONS
══════════════════════════════════════════════════════ */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: inherit;
  transition: opacity 0.3s;
}

.contact-item:hover {
  opacity: 0.75;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.contact-item>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .contact-item span {
    font-size: 0.9rem;
    font-weight: 300;
  }
}

/* ─── Form ─── */
.res-form {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1.75rem 1.25rem;
}

@media (min-width: 600px) {
  .res-form {
    padding: 2.5rem;
  }
}

.res-form__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 0;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  transition: border-color 0.3s;
  min-height: 48px;
  -webkit-appearance: none;
}

@media (min-width: 900px) {

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    font-weight: 300;
  }
}

.form-group select option {
  background: var(--dark-2);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
  resize: none;
}

.res-form__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

@media (min-width: 900px) {
  .res-form__note {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.25);
  }
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(184, 146, 74, 0.12);
  padding: 3rem 1.25rem;
}

@media (min-width: 600px) {
  .footer {
    padding: 3.5rem 2rem;
  }
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer__logo img {
  height: 44px;
  width: auto;
  opacity: 0.8;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}

.footer__nav a {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.3s;
}

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

.footer__social a svg {
  width: 16px;
  height: 16px;
}

.footer__copy {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.7;
}



/* hero__link as button — inherit link appearance */
button.hero__link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.25rem 0;
  transition: color 0.3s;
  min-height: 44px;
}

button.hero__link:hover {
  color: var(--white);
}

/* btn--outline on dark bg variant */
.section--light .btn--outline {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.section--light .btn--outline:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════
   MENU MODAL
══════════════════════════════════════════════════════ */
.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  /* hidden until opened */
  align-items: flex-start;
  /* full-height panel on mobile */
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.menu-modal.is-open {
  display: flex;
  pointer-events: all;
  opacity: 1;
}

/* Backdrop */
.menu-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Panel */
.menu-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100svh;
  max-height: 100svh;
  background: var(--dark-2);
  border-radius: 0;
  border: none;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  overflow: hidden;
}

.menu-modal.is-open .menu-modal__panel {
  transform: translateY(0);
}

@media (min-width: 700px) {
  .menu-modal {
    align-items: center;
  }

  .menu-modal__panel {
    width: 90%;
    max-width: 1000px;
    height: 90svh;
    max-height: 90svh;
    border-radius: 12px;
    border: 1px solid rgba(184, 146, 74, 0.18);
    transform: scale(0.96) translateY(20px);
  }

  .menu-modal.is-open .menu-modal__panel {
    transform: scale(1) translateY(0);
  }
}

/* Header */
.menu-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(184, 146, 74, 0.15);
  flex-shrink: 0;
}

.menu-modal__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.menu-modal__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: color 0.3s, background 0.3s;
}

.menu-modal__close svg {
  width: 20px;
  height: 20px;
}

.menu-modal__close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Iframe body */
.menu-modal__body {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.menu-modal__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 65svh;
  border: none;
  background: var(--dark-2);
}

.toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease-out);
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Prevent scroll overflow lock utility */
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
}