/* =============================================================
   Café Cortes — Fuengirola
   Design system · luxury Mediterranean
   ============================================================= */

:root {
  /* ---- Colour ---- */
  --night:      #12100D;   /* deep charcoal — footers, overlays */
  --night-soft: #1D1A16;
  --ivory:      #F6F2EA;   /* page background */
  --ivory-warm: #EDE6D9;   /* alternating band */
  --stone:      #8C8375;   /* secondary text */
  --gold:       #C8A24A;   /* refined accent (rules, labels) */
  --sol:        #FFD500;   /* brand yellow from the logo — used sparingly */
  --line:       rgba(18,16,13,.14);
  --line-light: rgba(246,242,234,.18);

  /* ---- Type ---- */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* ---- Space ---- */
  --gutter:  clamp(1.25rem, 5vw, 5rem);
  --section: clamp(5rem, 11vw, 10rem);
  --header-h: 92px;

  --ease: cubic-bezier(.22,.8,.26,1);
  --slow: cubic-bezier(.16,1,.3,1);
}

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

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--night);
  font-family: var(--sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute; left: 1rem; top: -5rem; z-index: 300;
  background: var(--night); color: var(--ivory);
  padding: .8rem 1.4rem; text-decoration: none;
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase;
  transition: top .3s var(--ease);
}
.skip-link:focus { top: 1rem; }

.container { width: min(1440px, 100% - 2*var(--gutter)); margin-inline: auto; }
.container--narrow { width: min(900px, 100% - 2*var(--gutter)); margin-inline: auto; }

/* ---------------- Typography ---------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.005em;
  margin: 0 0 .5em;
}
.h-display { font-size: clamp(2.8rem, 7.5vw, 6.4rem); }
.h-xl      { font-size: clamp(2.3rem, 5.2vw, 4.4rem); }
.h-lg      { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.h-md      { font-size: clamp(1.45rem, 2.4vw, 2rem); }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.eyebrow--center { text-align: center; }

.lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.28rem); line-height: 1.8; color: #453F36; }
.muted { color: var(--stone); }
.on-dark .muted, .is-dark .muted { color: rgba(246,242,234,.62); }

.rule {
  width: 64px; height: 1px;
  background: var(--gold);
  margin: 0 0 2rem;
  border: 0;
}
.rule--center { margin-inline: auto; }

/* ---------------- Buttons ---------------- */
.btn {
  --btn-fg: var(--night);
  --btn-bg: transparent;
  --btn-bd: var(--night);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  overflow: hidden;
  transition: color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--btn-fill, var(--night));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .55s var(--slow);
  z-index: -1;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--solid { --btn-bg: var(--night); --btn-fg: var(--ivory); --btn-bd: var(--night); --btn-fill: var(--gold); }
.btn--solid:hover { color: var(--night); border-color: var(--gold); }

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--night); --btn-bd: var(--gold); --btn-fill: var(--night); }
.btn--gold:hover { color: var(--ivory); border-color: var(--night); }

.btn--outline { --btn-fill: var(--night); }
.btn--outline:hover { color: var(--ivory); }

.btn--light { --btn-fg: var(--ivory); --btn-bd: rgba(246,242,234,.55); --btn-fill: var(--ivory); }
.btn--light:hover { color: var(--night); border-color: var(--ivory); }

.btn--whatsapp { --btn-fg: var(--ivory); --btn-bd: rgba(246,242,234,.55); --btn-fill: #25D366; }
.btn--whatsapp:hover { color: #06301A; border-color: #25D366; }
.btn svg { width: 17px; height: 17px; }

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 120;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .5s var(--ease), background .5s var(--ease), box-shadow .5s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(18,16,13,.55), transparent);
  opacity: 1; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.site-header.is-solid {
  height: 72px;
  background: rgba(246,242,234,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-solid::before { opacity: 0; }
.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  width: min(1600px, 100% - 2*var(--gutter));
}
.brand { justify-self: start; display: inline-flex; align-items: center; }
.brand img {
  height: 46px; width: auto;
  transition: height .5s var(--ease), filter .5s var(--ease);
  filter: brightness(0) invert(1);
}
.site-header.is-solid .brand img { height: 38px; filter: none; }

.nav-list {
  display: flex; align-items: center;
  gap: clamp(1.3rem, 2.6vw, 2.8rem);
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  position: relative;
  text-decoration: none;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: .4rem 0;
  transition: color .4s var(--ease);
}
.site-header.is-solid .nav-list a { color: var(--night); }
.nav-list a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--slow);
}
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-list a[aria-current="page"] { color: var(--gold); }
.site-header.is-solid .nav-list a[aria-current="page"] { color: var(--gold); }

.header-cta { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.header-cta .btn { padding: .8rem 1.7rem; font-size: .72rem; }
.site-header:not(.is-solid) .header-cta .btn--header {
  --btn-fg: var(--night); --btn-bg: var(--ivory); --btn-bd: var(--ivory); --btn-fill: var(--gold);
}
.site-header.is-solid .header-cta .btn--header {
  --btn-fg: var(--ivory); --btn-bg: var(--night); --btn-bd: var(--night); --btn-fill: var(--gold);
}
.header-cta .btn--header:hover { color: var(--night); border-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: .6rem; color: var(--ivory);
}
.site-header.is-solid .nav-toggle { color: var(--night); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1080px) {
  .site-header .container { grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .header-cta { display: none; }
  .site-nav {
    position: fixed; inset: 0;
    background: var(--night);
    display: grid; place-content: center;
    text-align: center;
    clip-path: circle(0% at 92% 6%);
    transition: clip-path .8s var(--slow);
    pointer-events: none;
  }
  .site-nav.is-open { clip-path: circle(150% at 92% 6%); pointer-events: auto; }
  .nav-list { flex-direction: column; gap: 1.9rem; }
  .site-header .nav-list a,
  .site-header.is-solid .nav-list a {
    color: var(--ivory);
    font-family: var(--serif);
    font-size: clamp(1.9rem, 7vw, 2.9rem);
    letter-spacing: .02em;
    text-transform: none;
    opacity: 0; transform: translateY(20px);
    transition: opacity .5s var(--ease), transform .5s var(--ease);
  }
  .site-nav.is-open .nav-list a { opacity: 1; transform: none; }
  .site-nav.is-open .nav-list li:nth-child(1) a { transition-delay: .16s; }
  .site-nav.is-open .nav-list li:nth-child(2) a { transition-delay: .22s; }
  .site-nav.is-open .nav-list li:nth-child(3) a { transition-delay: .28s; }
  .site-nav.is-open .nav-list li:nth-child(4) a { transition-delay: .34s; }
  .site-nav.is-open .nav-list li:nth-child(5) a { transition-delay: .40s; }
  .site-nav.is-open .nav-list li:nth-child(6) a { transition-delay: .46s; }
  .nav-list .btn,
  .site-header .nav-list .btn { font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .2em; color: var(--ivory); }
  .nav-close {
    position: absolute; top: 1.6rem; right: var(--gutter);
    background: none; border: 0; color: var(--ivory); cursor: pointer; padding: .6rem;
  }
  .nav-close svg { width: 26px; height: 26px; }
}
@media (min-width: 1081px) { .nav-close { display: none; } }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
  padding: var(--header-h) var(--gutter) clamp(4rem, 9vw, 7rem);
}
.hero--page { min-height: 74svh; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(18,16,13,.62), rgba(18,16,13,.48) 45%, rgba(18,16,13,.78));
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-mark { width: min(420px, 74vw); margin: 0 auto 2.2rem; filter: brightness(0) invert(1); }
.hero-mark--gold { filter: none; }
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  margin: 0 auto 2.6rem;
  max-width: 22ch;
  color: rgba(246,242,234,.92);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 2.2rem;
  transform: translateX(-50%);
  z-index: 3;
  display: grid; justify-items: center; gap: .9rem;
  color: rgba(246,242,234,.8);
  font-size: .66rem; letter-spacing: .3em; text-transform: uppercase;
  text-decoration: none;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 54px;
  background: rgba(246,242,234,.6);
  animation: scroll-line 2.4s var(--ease) infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero entrance choreography */
.hero-inner > * { opacity: 0; transform: translateY(26px); animation: rise 1.2s var(--slow) forwards; }
.hero-inner > *:nth-child(1) { animation-delay: .25s; }
.hero-inner > *:nth-child(2) { animation-delay: .45s; }
.hero-inner > *:nth-child(3) { animation-delay: .62s; }
.hero-inner > *:nth-child(4) { animation-delay: .78s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------------- Sections ---------------- */
.section { padding-block: var(--section); }
.section--tight { padding-block: calc(var(--section) * .62); }
.section--warm { background: var(--ivory-warm); }
.section--dark { background: var(--night); color: var(--ivory); }
.section--dark .lead { color: rgba(246,242,234,.78); }
.section--dark .rule { background: var(--gold); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.6rem, 6vw, 4.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--split {
  max-width: none; display: grid;
  grid-template-columns: 1fr auto; gap: 2rem; align-items: end;
}
@media (max-width: 760px) { .section-head--split { grid-template-columns: 1fr; } }

/* ---------------- Media frames ---------------- */
.frame { position: relative; overflow: hidden; background: var(--ivory-warm); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--slow); }
.frame--portrait { aspect-ratio: 3/4; }
.frame--landscape { aspect-ratio: 16/10; }
.frame--square { aspect-ratio: 1; }
.frame--wide { aspect-ratio: 21/9; }

/* Placeholder — replace the inner div with an <img> */
.ph {
  position: absolute; inset: 0;
  display: grid; place-content: center; gap: .55rem;
  text-align: center; padding: 1rem;
  background:
    repeating-linear-gradient(-45deg, transparent 0 30px, rgba(18,16,13,.035) 30px 60px),
    linear-gradient(150deg, #E7DFD1, #D8CDB9);
  color: #6B6255;
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
}
.ph svg { width: 38px; height: 38px; margin-inline: auto; opacity: .5; }
.ph em { font-style: normal; opacity: .62; letter-spacing: .06em; text-transform: none; font-size: .72rem; }
.ph--dark { background: repeating-linear-gradient(-45deg, transparent 0 30px, rgba(246,242,234,.04) 30px 60px), linear-gradient(150deg, #22201B, #15130F); color: rgba(246,242,234,.6); }

/* Image reveal on scroll */
.reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.3s var(--slow); }
.reveal.in { clip-path: inset(0 0 0 0); }
.reveal img { transform: scale(1.12); }
.reveal.in img { transform: scale(1); }

/* Fade up on scroll */
.fade { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--slow), transform 1s var(--slow); transition-delay: var(--d, 0s); }
.fade.in { opacity: 1; transform: none; }

/* Parallax */
.parallax { will-change: transform; }

/* ---------------- About / split ---------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--offset { grid-template-columns: 1.05fr .95fr; }
.split--reverse .split-media { order: 2; }
@media (max-width: 900px) {
  .split, .split--offset { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
}

/* Three-column prose grid */
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.trio h3 { margin-bottom: .5rem; }
.trio p { margin: 0; }
@media (max-width: 860px) { .trio { grid-template-columns: 1fr; gap: 2.4rem; } }

/* ---------------- Experience cards ---------------- */
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.6vw, 1.6rem); }
@media (max-width: 900px) { .experience-grid { grid-template-columns: 1fr; } }

.exp-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
  color: var(--ivory);
  isolation: isolate;
  transition: transform .7s var(--slow), box-shadow .7s var(--slow);
}
@media (max-width: 900px) { .exp-card { aspect-ratio: 4/3; } }
.exp-card .frame { position: absolute; inset: 0; }
.exp-card-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(18,16,13,.82), rgba(18,16,13,.34) 60%, rgba(18,16,13,.28));
  transition: opacity .7s var(--slow);
}
.exp-card-body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: grid; gap: .6rem; justify-items: center; text-align: center;
}
.exp-card-title { font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.3rem); margin: 0; }
.exp-card-explore {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  opacity: 0; transform: translateY(10px);
  transition: opacity .6s var(--slow), transform .6s var(--slow);
}
.exp-card-explore .arrow { transition: transform .6s var(--slow); }
.exp-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px -30px rgba(18,16,13,.65); }
.exp-card:hover .exp-card-veil { opacity: .62; }
.exp-card:hover img { transform: scale(1.09); }
.exp-card:hover .exp-card-explore { opacity: 1; transform: none; }
.exp-card:hover .exp-card-explore .arrow { transform: translateX(6px); }
.exp-card:focus-visible { outline-offset: -4px; }
.exp-card:focus-visible .exp-card-explore { opacity: 1; transform: none; }

/* ---------------- Menu cards ---------------- */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 2.5vw, 2.4rem); }
@media (max-width: 980px) { .menu-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-card {
  display: grid; gap: 1.3rem;
  text-decoration: none;
  transition: transform .7s var(--slow);
}
.menu-card:hover { transform: translateY(-8px); }
.menu-card:hover img { transform: scale(1.06); }
.menu-card .frame { aspect-ratio: 4/5; }
.menu-card h3 { margin: 0; }
.menu-card .link-line {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
}
.menu-card .link-line .arrow { transition: transform .5s var(--ease); }
.menu-card:hover .link-line .arrow { transform: translateX(6px); }

/* Dish list (menu page) */
.dish-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2.5rem, 6vw, 5rem); }
@media (max-width: 820px) { .dish-columns { grid-template-columns: 1fr; } }
.dish {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .5s var(--slow);
}
.section--dark .dish { border-color: var(--line-light); }
.dish:hover { padding-left: .8rem; }
.dish-top { display: flex; align-items: baseline; gap: 1rem; }
.dish-name { font-family: var(--serif); font-size: 1.35rem; }
.dish-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-5px); }
.section--dark .dish-dots { border-color: var(--line-light); }
.dish-price { font-family: var(--serif); font-size: 1.25rem; color: var(--gold); white-space: nowrap; }
.dish-desc { margin: .35rem 0 0; font-size: .95rem; color: var(--stone); }
.section--dark .dish-desc { color: rgba(246,242,234,.6); }

.menu-tabs { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.tab {
  background: none; border: 1px solid var(--line);
  border-radius: 999px; padding: .65rem 1.6rem;
  font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--night); cursor: pointer;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}
.tab:hover { border-color: var(--gold); color: var(--gold); }
.tab.is-active { background: var(--night); border-color: var(--night); color: var(--ivory); }

/* ---------------- Visit ---------------- */
.visit-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: stretch; }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; margin: 0 0 2.4rem; padding: 0; display: grid; gap: 1.4rem; }
.info-list li { display: grid; gap: .2rem; }
.info-list dt, .info-key {
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.info-list a { text-decoration: none; }
.info-list a:hover { color: var(--gold); }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.section--dark .hours td { border-color: var(--line-light); }
.hours td:last-child { text-align: right; color: var(--stone); }
.section--dark .hours td:last-child { color: rgba(246,242,234,.62); }
.map-slot { position: relative; min-height: 460px; overflow: hidden; background: var(--ivory-warm); }
.map-slot iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; filter: grayscale(1) contrast(1.05); }

/* ---------------- Testimonials ---------------- */
.reviews { position: relative; }
.review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1.5rem;
  scrollbar-width: none;
}
.review-track::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) { .review-track { grid-auto-columns: minmax(0, 1fr); grid-auto-flow: column; overflow: visible; } }
.review {
  scroll-snap-align: start;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  display: grid; gap: 1.1rem; align-content: start;
}
.section--warm .review { background: #FBF8F2; }
.section--dark .review { background: var(--night-soft); border-color: var(--line-light); }
.stars { color: var(--gold); letter-spacing: .28em; font-size: .9rem; }
.review blockquote { margin: 0; font-family: var(--serif); font-size: 1.22rem; line-height: 1.55; font-style: italic; }
.review cite { font-style: normal; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); }
.review-nav { display: flex; gap: .8rem; justify-content: center; margin-top: 2rem; }
.review-nav button {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); background: none; cursor: pointer;
  display: grid; place-items: center; color: inherit;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}
.section--dark .review-nav button { border-color: var(--line-light); }
.review-nav button:hover { background: var(--night); color: var(--ivory); border-color: var(--night); }
.section--dark .review-nav button:hover { background: var(--ivory); color: var(--night); }
.review-nav svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .review-nav { display: none; } }

/* ---------------- Instagram ---------------- */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.5rem, 1vw, 1rem); }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; display: block; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--slow); }
.ig-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(18,16,13,.5);
  opacity: 0; transition: opacity .5s var(--ease);
}
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile:hover::after { opacity: 1; }
.ig-icon {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  color: var(--ivory);
  opacity: 0; transform: scale(.8);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.ig-tile:hover .ig-icon { opacity: 1; transform: none; }
.ig-icon svg { width: 26px; height: 26px; }

/* ---------------- Gallery (experience pages) ---------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.8rem, 1.6vw, 1.4rem); }
@media (max-width: 800px) { .gallery { grid-template-columns: 1fr 1fr; } }
.gallery .frame { aspect-ratio: 4/5; }
.gallery .frame:nth-child(3n+1) { aspect-ratio: 4/6; }
.gallery .frame:hover img { transform: scale(1.06); }

/* ---------------- CTA band ---------------- */
.cta {
  position: relative; overflow: hidden;
  text-align: center; color: var(--ivory);
  padding-block: clamp(5rem, 11vw, 9rem);
}
.cta .frame { position: absolute; inset: 0; }
.cta-veil { position: absolute; inset: 0; z-index: 1; background: rgba(18,16,13,.72); }
.cta .container { position: relative; z-index: 2; }

/* ---------------- Forms ---------------- */
.form { display: grid; gap: 1.4rem; }
.form-row { display: grid; gap: 1.4rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .5rem; }
.field label { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem;
  padding: .95rem 0;
  border: 0; border-bottom: 1px solid var(--line);
  background: transparent; color: inherit;
  border-radius: 0;
  transition: border-color .45s var(--ease);
}
.section--dark .field input, .section--dark .field select, .section--dark .field textarea { border-color: var(--line-light); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; }
.form-note { font-size: .85rem; color: var(--stone); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--night); color: var(--ivory); padding: clamp(4rem, 8vw, 6.5rem) 0 2.2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 54px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.6rem; }
.footer-brand p { color: rgba(246,242,234,.62); max-width: 34ch; font-size: .95rem; }
.site-footer h4 { font-family: var(--sans); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin: 0 0 1.4rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; font-size: .95rem; }
.footer-links a { text-decoration: none; color: rgba(246,242,234,.78); transition: color .4s var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-links span { color: rgba(246,242,234,.78); }
.socials { display: flex; gap: .9rem; margin-top: 2rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-light);
  display: grid; place-items: center; color: var(--ivory);
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease), transform .45s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--night); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 1.8rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .78rem; letter-spacing: .1em; color: rgba(246,242,234,.5);
}

/* ---------------- Page transition ---------------- */
.page-veil {
  position: fixed; inset: 0; z-index: 500;
  background: var(--night);
  pointer-events: none;
  transform-origin: bottom;
  animation: veil-out .9s var(--slow) forwards;
}
@keyframes veil-out { to { transform: scaleY(0); } }
.page-veil.is-leaving { animation: veil-in .55s var(--slow) forwards; transform-origin: top; }
@keyframes veil-in { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* ---------------- Reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fade { opacity: 1; transform: none; }
  .reveal { clip-path: none; }
  .reveal img { transform: none; }
  .hero-inner > * { opacity: 1; transform: none; }
  .page-veil { display: none; }
}

/* =============================================================
   Menu (data-driven) — matches site design language
   ============================================================= */
.m-app { max-width: 1080px; margin-inline: auto; }

/* Menu switcher */
.m-switch {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  margin-bottom: 1.6rem;
}
.m-switch-btn {
  background: none; border: 1px solid var(--line);
  border-radius: 999px; padding: .8rem 1.9rem;
  font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--night); cursor: pointer;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}
.m-switch-btn:hover { border-color: var(--gold); color: var(--gold); }
.m-switch-btn.is-active { background: var(--night); border-color: var(--night); color: var(--ivory); }

/* Legend */
.m-legend {
  border: 1px solid var(--line);
  margin: 0 auto 3rem; max-width: 760px;
}
.m-legend summary {
  cursor: pointer; list-style: none;
  padding: 1rem 1.4rem;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; justify-content: space-between;
}
.m-legend summary::-webkit-details-marker { display: none; }
.m-legend summary::after { content: "+"; font-size: 1.2rem; color: var(--stone); }
.m-legend[open] summary::after { content: "\2013"; }
.m-legend-body { padding: 0 1.4rem 1.4rem; display: grid; gap: 1rem; }
.m-legend-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.m-legend-allergens { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.m-legend-a { font-size: .82rem; color: var(--stone); }
.m-legend-a b { color: var(--night); font-weight: 400; }

.m-note {
  text-align: center; font-style: italic; font-family: var(--serif);
  font-size: 1.15rem; color: var(--gold); margin: 0 0 2.4rem;
}

/* Category (collapsible) */
.m-cat { border-top: 1px solid var(--line); }
.m-cat:last-child { border-bottom: 1px solid var(--line); }
.m-cat-btn {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.7rem .2rem;
  text-align: left; color: inherit;
}
.m-cat-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.1; }
.m-cat-sub { display: block; font-family: var(--sans); font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--stone); margin-top: .3rem; }
.m-cat-icon { position: relative; width: 16px; height: 16px; flex: none; }
.m-cat-icon::before, .m-cat-icon::after {
  content: ""; position: absolute; background: var(--gold);
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.m-cat-icon::before { inset: 7px 0; height: 2px; }
.m-cat-icon::after { inset: 0 7px; width: 2px; }
.m-cat-btn[aria-expanded="true"] .m-cat-icon::after { transform: scaleY(0); opacity: 0; }
.m-cat-body { padding-bottom: 2.4rem; }

.m-colheads {
  display: grid; grid-template-columns: 1fr auto auto; gap: 1.2rem;
  padding: 0 0 .8rem; border-bottom: 1px solid var(--line); margin-bottom: .5rem;
}
.m-colheads em { font-style: normal; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); min-width: 62px; text-align: right; }

.m-items { display: grid; gap: 0; }

/* Dish */
.m-item {
  display: grid; gap: .3rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .5s var(--slow);
}
.m-item:last-child { border-bottom: 0; }
.m-item:hover { padding-left: .6rem; }
.m-item.has-photo {
  grid-template-columns: 88px 1fr;
  gap: 1.3rem; align-items: start;
}
.m-item-photo {
  display: block; width: 88px; height: 88px;
  overflow: hidden; background: var(--ivory-warm);
  position: relative;
}
.m-item-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--slow); }
.m-item.has-photo:hover .m-item-photo img { transform: scale(1.08); }
.m-item-photo.is-empty { display: none; }
.m-item-photo.is-empty + .m-item-body,
.has-photo:has(.is-empty) { grid-column: 1 / -1; }

.m-item-top { display: flex; align-items: baseline; gap: .8rem; }
.m-item-name { font-family: var(--serif); font-size: 1.28rem; font-weight: 400; margin: 0; line-height: 1.25; }
.m-dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-5px); min-width: 20px; }
.m-price { font-family: var(--serif); font-size: 1.18rem; color: var(--gold); white-space: nowrap; }
.m-price--multi { display: inline-flex; gap: 1.1rem; }
.m-price--multi span { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.15; }
.m-price--multi em { font-style: normal; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }
.m-item-desc { margin: .15rem 0 0; font-size: .95rem; color: var(--stone); max-width: 62ch; }

.m-meta { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .5rem; align-items: center; }
.m-tag {
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .22rem .6rem; border-radius: 999px; border: 1px solid var(--line); color: var(--stone);
}
.m-tag--veg { border-color: #5B7A4B; color: #4A6B3B; }
.m-tag--spicy { border-color: #B4512F; color: #A5401F; }
.m-tag--gf { border-color: var(--gold); color: #9A7B2E; }
.m-allergen { font-size: .68rem; letter-spacing: .1em; color: var(--stone); opacity: .8; }

/* Salad builder */
.m-builder {
  margin-top: 1.8rem; padding: 1.8rem;
  background: var(--ivory-warm); border: 1px solid var(--line);
}
.m-builder-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: .3rem 1rem; margin-bottom: 1.4rem; }
.m-builder-sub { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--stone); }
.m-builder-head .m-price { margin-left: auto; }
.m-builder-steps { display: grid; gap: 1.2rem; }
.m-step { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.m-step-head { display: flex; align-items: baseline; gap: .8rem; margin-bottom: .3rem; }
.m-step-label { font-family: var(--serif); font-size: 1.1rem; }
.m-step-pick { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.m-step-opts { margin: 0; font-size: .92rem; color: var(--stone); }

@media (max-width: 560px) {
  .m-item.has-photo { grid-template-columns: 64px 1fr; gap: 1rem; }
  .m-item-photo { width: 64px; height: 64px; }
  .m-price--multi { gap: .7rem; }
}
/* Hide scrollbar - Chrome, Edge, Safari  */
html {
   Scrollbar-width: none;           / * Firefox  */
  -ms-overflow-style: none;         / * IE 10+  */
}
html::-webkit -scrollbar {
   display: none:        / * Chrome, safari, Edge  */
}
