/* =========================================================
   Burger Club — Santa Ponça, Mallorca
   Bold "hype" aesthetic × Burger Club brand colours
   ========================================================= */

:root {
  /* Brand palette (from the Burger Club menu) */
  --cream: #fbf3e4;
  --cream-2: #f3e8d2;
  --black: #0e1416;      /* hero / true-black sections */
  --ink: #16242b;        /* dark teal-navy panels */
  --ink-2: #1f333c;
  --teal: #2fb8b6;       /* turquoise headings */
  --amber: #edbb46;      /* golden yellow */
  --pink: #ff6fa5;       /* hype pop */
  --lilac: #c9a7ff;
  --lime: #c8f560;
  --chili: #e4572e;      /* spicy */

  --text: #16242b;
  --muted: #5e6f74;

  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --border: 3px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.kicker {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--teal);
  margin: 0 0 .6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.02;
  margin: 0 0 .5rem;
  letter-spacing: -.01em;
}

.lead {
  font-size: 1.1rem;
  max-width: 60ch;
  color: var(--muted);
  margin: 0 0 2.2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 800;
  text-decoration: none;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  border: var(--border);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--amber); color: var(--ink); }
.btn-ghost { background: var(--cream); color: var(--ink); }
.btn-pill { background: var(--pink); color: var(--ink); }
.btn-uber { background: #06c167; color: var(--ink); }
.btn-icon { width: 1.4rem; height: 1.4rem; border-radius: 6px; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 3px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: var(--amber);
  border-bottom: 3px solid var(--ink);
  box-shadow: 0 6px 20px rgba(22, 36, 43, .22);
}
/* invert header contents on the yellow bar */
.site-header.scrolled .brand-text { color: var(--ink); text-shadow: none; }
.site-header.scrolled .nav a { color: var(--ink); text-shadow: none; }
.site-header.scrolled .nav a:hover { border-color: var(--ink); }
.site-header.scrolled .lang-toggle { border-color: var(--ink); }
.site-header.scrolled .lang-toggle button { color: var(--ink); }
.site-header.scrolled .lang-toggle button.is-active { background: var(--ink); color: var(--cream); }
.site-header.scrolled .burger { background: var(--ink); }
.site-header.scrolled .burger span { background: var(--cream); }
/* swap the burger-logo mark to its dark-blue version */
.brand .brand-logo--dark { display: none; }
.site-header.scrolled .brand-logo--light { display: none; }
.site-header.scrolled .brand-logo--dark { display: block; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
}
.brand-logo { height: 44px; width: auto; display: block; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: -.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}
.nav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--cream);
  padding: .3rem 0;
  border-bottom: 3px solid transparent;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}
.nav a:hover { border-color: var(--teal); }
.header-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-left: 1rem;
}
.lang-toggle {
  display: inline-flex;
  border: 3px solid var(--amber);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .82rem;
  padding: .45rem .7rem;
  cursor: pointer;
}
.lang-toggle button.is-active { background: var(--amber); color: var(--ink); }
.nav-cta { padding: .55rem 1rem; font-size: .9rem; border-color: var(--amber); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 40px;
  background: var(--amber);
  border: var(--border);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span {
  width: 20px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
body.nav-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (black, centered) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 78% 8%, rgba(255,111,165,.22), transparent 42%),
    radial-gradient(circle at 12% 86%, rgba(47,184,182,.20), transparent 42%),
    var(--black);
  color: var(--cream);
  border-bottom: 3px solid #000;
  padding: calc(70px + clamp(.6rem, 2vw, 1.4rem)) 0 clamp(1rem, 2.5vw, 1.6rem);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .kicker { color: var(--amber); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 10vw, 6.2rem);
  line-height: .88;
  letter-spacing: -.02em;
  margin: .1rem 0 .7rem;
  text-transform: uppercase;
}
.hero-title .title-line { display: block; }
.hero-title .t-teal { color: var(--teal); }
.hero-title .t-box {
  display: inline-block;
  margin-top: .12em;
  background: var(--amber);
  color: var(--ink);
  padding: 0 .18em;
  border: 3px solid #000;
  border-radius: 14px;
  box-shadow: 6px 6px 0 rgba(0,0,0,.5);
  transform: rotate(-2deg);
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 46ch;
  margin: 0 auto 1.3rem;
  color: rgba(251,243,228,.82);
}
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }

/* Three featured burgers — float on the hero, no card background */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: clamp(.8rem, 2vw, 1.4rem);
  align-items: end;
}
.hero-card {
  text-align: center;
  transition: transform .15s ease;
}
.hero-card:hover { transform: translateY(-6px); }
.hero-card-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: visible;
}
.hero-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.12);
  transform-origin: center bottom;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.6));
}
.hero-card-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  margin-top: .6rem;
  color: var(--cream);
}
.hero-card-foot h3 { font-family: var(--font-display); font-size: 1.05rem; margin: 0; line-height: 1.1; }

/* ---------- Marquee (seamless: two identical groups) ---------- */
.marquee {
  display: flex;
  background: var(--amber);
  color: var(--ink);
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  overflow: hidden;
  padding: .7rem 0;
}
.marquee__group {
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  animation: scroll 28s linear infinite;
}
.mq-dot { color: var(--chili); }
@keyframes scroll { to { transform: translateX(-100%); } }

/* ---------- About ---------- */
.about { padding: clamp(3rem, 7vw, 5.5rem) 0; overflow: hidden; }

/* Intro */
.about-intro {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.01em;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.about-intro .lead { margin-left: auto; margin-right: auto; }
.iv-sig {
  width: clamp(220px, 30vw, 360px);
  height: auto;
  display: block;
}
.est-stamp {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--ink);
  color: var(--cream);
  padding: .45rem .9rem;
  border-radius: 10px;
  transform: rotate(-3deg);
}

/* Staggered feature cards with header photos */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1rem;
}
/* Flip cards: hover (desktop) or tap (mobile) to flip and reveal a fact */
.feature {
  position: relative;
  border-radius: var(--radius);
  perspective: 1200px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s ease;
}
.feature:nth-child(1) { transform: rotate(-1.6deg); }
.feature:nth-child(2) { transform: translateY(26px) rotate(1.2deg); }
.feature:nth-child(3) { transform: rotate(-.8deg); }
.feature:focus-visible { outline: 3px dashed var(--teal); outline-offset: 6px; }

.flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.75,.2,1);
}
.feature.is-flipped .flip-inner { transform: rotateY(180deg); }
@media (hover: hover) {
  .feature:hover .flip-inner { transform: rotateY(180deg); }
}

/* the 3D faces only do backface-visibility — NOT overflow (Safari shows the
   backface through when overflow:hidden is on the same element). The visible
   clipping/border/shadow live on an inner .flip-surface. */
.flip-front, .flip-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-front { position: relative; }
.flip-back { position: absolute; inset: 0; transform: rotateY(180deg); }

.flip-surface {
  position: relative;
  height: 100%;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.flip-back .flip-surface { display: grid; align-content: center; }
.feature-pink  .flip-surface { background: var(--pink); }
.feature-yellow .flip-surface { background: var(--amber); }
.feature-teal  .flip-surface { background: var(--teal); }

.feature-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--ink);
}
.feature-body { padding: 1.4rem 1.5rem 1.6rem; }
.feature h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 .5rem; }
.feature p { margin: 0; font-weight: 500; }

.flip-cue {
  position: absolute; top: .7rem; right: .7rem; z-index: 3;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--cream); border: 2px solid var(--ink);
  font-size: 1rem; line-height: 1;
}
.flip-back .flip-tag {
  justify-self: start;
  font-weight: 800; text-transform: uppercase; letter-spacing: .07em; font-size: .68rem;
  background: var(--ink); color: var(--cream); padding: .2rem .55rem; border-radius: 6px;
  margin-bottom: .7rem;
}

/* ---------- Menu ---------- */
.menu {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.menu .kicker { color: var(--amber); }
.menu .lead { color: rgba(251,243,228,.75); }

.dishes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.dish {
  background: var(--cream);
  color: var(--ink);
  border: var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.dish h4 { font-family: var(--font-display); font-size: 1.05rem; margin: 0; line-height: 1.15; }
.dish-desc { margin: .5rem 0 0; font-size: .92rem; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .7rem; }
.tag {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .2rem .5rem;
  border-radius: 6px;
  border: 2px solid var(--ink);
}
.tag-signature { background: var(--lilac); }
.tag-spicy { background: var(--chili); color: var(--cream); }
.tag-veg { background: var(--lime); }
.tag-gf { background: var(--cream-2); }
.tag-new { background: var(--pink); }

.menu-download { text-align: center; margin-top: 2.4rem; }

/* ---------- Signature carousel (pinned scroll) ---------- */
.sig-scroll { position: relative; }            /* height set in JS (pin + travel) */
.sig-stage {
  position: sticky; top: 0;
  height: 100vh; min-height: 520px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.sig-intro {
  flex: 0 0 auto; position: relative; z-index: 7;
  padding-top: clamp(4.5rem, 10vh, 7rem);      /* clear the fixed header */
}
.sig-carousel {
  position: relative;
  flex: 1 1 auto; min-height: 0;
  overflow: hidden;
  user-select: none;
  outline: none;
}
.sig-carousel::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 70% at 50% 44%, rgba(47,184,182,.10), transparent 60%);
  pointer-events: none;
}
.sig-viewport {
  position: relative; z-index: 2;
  width: 100%; height: 100%;
  overflow: hidden;
  display: flex; align-items: center;
}
.sig-track {
  position: relative;
  display: flex; align-items: center; gap: 34px;
  will-change: transform;                       /* driven directly by scroll — no transition */
}
.sig-card { flex: 0 0 300px; display: grid; place-items: center; cursor: pointer; }
.sig-card-inner {
  transform-origin: center 58%;
  will-change: transform;
}
.sig-card img {
  width: 300px; height: auto; display: block;
  filter: drop-shadow(0 22px 26px rgba(0,0,0,.5));
  pointer-events: none;
}

.sig-nav {
  position: absolute; z-index: 8; top: 50%;
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid rgba(251,243,228,.35);
  background: rgba(14,20,22,.45); color: var(--cream);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.sig-nav:hover { background: rgba(14,20,22,.85); border-color: var(--amber); }
.sig-nav.prev { left: clamp(8px, 2vw, 26px); transform: translateY(-50%); }
.sig-nav.next { right: clamp(8px, 2vw, 26px); transform: translateY(-50%); }
@media (hover: none) { .sig-nav { display: none; } }

.sig-name {
  position: absolute; z-index: 5; left: 0; right: 0; bottom: 6%;
  text-align: center; pointer-events: none;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}
.sig-name.show { opacity: 1; transform: translateY(0); }
.sig-name h3 {
  font-family: var(--font-display); margin: 0; color: var(--cream);
  font-size: clamp(1.1rem, 3vw, 1.8rem); line-height: 1.1;
}
.sig-name .sub {
  display: block; margin-top: .4rem; font-size: .66rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .2em; color: var(--amber);
}

/* ingredient semicircle (raised, flattened ellipse) */
.sig-arc { position: absolute; z-index: 6; left: 50%; top: 36%; width: 0; height: 0; pointer-events: none; }
.sig-ing {
  position: absolute; left: 0; top: 0; opacity: 0;
  transform: translate(-50%, -50%) scale(.2);
  transition: transform .55s cubic-bezier(.2,.85,.25,1), opacity .45s ease;
  transition-delay: var(--sd, 0s);
}
.sig-arc.show .sig-ing {
  opacity: 1;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1);
}
.sig-ing-inner {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  animation: sigfloat 3.6s ease-in-out infinite; animation-delay: var(--fd, 0s);
}
@keyframes sigfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.sig-ing img {
  width: clamp(46px, 5.8vw, 76px); height: auto; display: block;
  filter: drop-shadow(0 8px 8px rgba(0,0,0,.45));
}
.sig-ing .lab {
  font-size: clamp(.52rem, 1.1vw, .64rem); font-weight: 800; text-transform: uppercase;
  letter-spacing: .03em; white-space: nowrap; color: var(--ink); background: var(--amber);
  border: 2px solid var(--ink); border-radius: 999px; padding: .1rem .45rem;
  box-shadow: 2px 2px 0 rgba(0,0,0,.35);
}
@media (prefers-reduced-motion: reduce) {
  .sig-ing, .sig-ing-inner { animation: none; transition: opacity .2s; }
  .sig-track { transition: none; }
}

/* ---------- Reviews / Testimonials ---------- */
.reviews { background: var(--cream-2); padding: clamp(3rem, 7vw, 5.5rem) 0; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 1.6rem;
}
.review-card {
  position: relative;
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.review-card:nth-child(1) { --rot: .8deg;  --fd: 0s; }
.review-card:nth-child(2) { --rot: -1deg;  --fd: .8s; }
.review-card:nth-child(3) { --rot: -.6deg; --fd: 1.5s; }
.review-card {
  --rot: 0deg;
  transform: rotate(var(--rot));
  animation: reviewFloat 4.5s ease-in-out infinite;
  animation-delay: var(--fd, 0s);
  transition: box-shadow .2s ease;
}
@keyframes reviewFloat {
  0%, 100% { transform: rotate(var(--rot)) translateY(0); }
  50%      { transform: rotate(var(--rot)) translateY(-9px); }
}
.review-card:hover { box-shadow: 9px 12px 0 var(--ink); }
.review-stars {
  color: var(--amber);
  font-size: 1.05rem;
  letter-spacing: 3px;
  -webkit-text-stroke: 1px var(--ink);
}
.review-quote { margin: 0; font-size: 1.02rem; line-height: 1.5; font-weight: 500; }
.review-foot { margin-top: auto; display: flex; flex-direction: column; gap: .1rem; }
.review-name { font-family: var(--font-display); font-size: 1rem; }
.review-tag {
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted);
}
@media (max-width: 860px) {
  .review-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .review-card,
  .review-card:nth-child(1),
  .review-card:nth-child(2),
  .review-card:nth-child(3) { --rot: 0deg; }
}

/* ---------- Place (parallax section breaker) ---------- */
.breaker {
  position: relative;
  min-height: clamp(360px, 58vh, 560px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  background-color: var(--ink);                  /* fallback before the photo loads */
  background-image:
    linear-gradient(rgba(14,20,22,.55), rgba(14,20,22,.66)),
    url("../img/restaurant.webp");
  background-size: cover;
  background-position: center 72%;
  background-repeat: no-repeat;
  background-attachment: fixed;                   /* parallax on desktop */
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
/* background-attachment: fixed is ignored / janky on touch — fall back to scroll */
@media (hover: none), (max-width: 720px) {
  .breaker { background-attachment: scroll; }
}
.breaker-inner { max-width: 760px; padding: clamp(1.5rem, 5vw, 3rem); }
.breaker .kicker { color: var(--amber); margin: 0; }
.breaker h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5vw, 3.2rem);
  line-height: 1.05; margin: .4rem 0 0;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.breaker .lead { margin: .8rem 0 0; color: rgba(251,243,228,.88); }

/* ---------- Takeaway & Delivery ---------- */
.order { padding: clamp(3rem, 7vw, 5rem) 0; }
.order-band {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.6rem 2rem;
  align-items: center;
  background: var(--pink);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.order-band .kicker { color: var(--ink); }
.order-band .section-title { margin-bottom: .4rem; }
.order-band .lead { color: var(--ink); margin: 0; max-width: 48ch; }
.order-cta { display: flex; flex-direction: column; gap: .7rem; }
.order-cta .btn { justify-content: center; }

/* ---------- Visit ---------- */
.visit { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}
.visit-list { list-style: none; padding: 0; margin: 0 0 1.8rem; }
.visit-list li {
  display: grid;
  gap: .15rem;
  padding: 1rem 0;
  border-bottom: 2px dashed rgba(22,36,43,.2);
}
.visit-label {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  color: var(--teal);
}
.visit-list a { font-weight: 700; }
.visit-map {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  border-top: 3px solid var(--ink);
  padding-top: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
}
.footer-logo { width: 112px; height: auto; display: block; margin-bottom: 1rem; }
.footer-brand p { margin: 0 0 .8rem; color: rgba(251,243,228,.7); }
.footer-by { font-weight: 700; }
.footer-by a { color: var(--amber); font-weight: 800; text-decoration: none; }
.footer-by a:hover { text-decoration: underline; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--amber);
  margin: 0 0 .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-col p { margin: 0 0 .6rem; color: rgba(251,243,228,.7); }
.footer-col a { color: var(--cream); }
.socials { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.socials a { font-weight: 700; text-decoration: none; }
.socials a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 2px solid rgba(251,243,228,.15);
  padding: 1.2rem 22px;
  font-size: .85rem;
  color: rgba(251,243,228,.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .3rem 1.2rem;
}
.footer-credit a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-credit a:hover { color: var(--amber); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .features { grid-template-columns: 1fr; }
  .feature,
  .feature:nth-child(1),
  .feature:nth-child(2),
  .feature:nth-child(3) { transform: none; }
  .visit-grid { grid-template-columns: 1fr; }
  .order-band { grid-template-columns: 1fr; }
  .order-cta { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 760px) {
  /* hero + ticker fill the screen */
  .hero-screen { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
  .hero {
    flex: 1 1 auto;
    display: flex; flex-direction: column; justify-content: center;
    padding-top: calc(70px + 2rem);              /* breathing room under the header */
  }
  .marquee { flex: 0 0 auto; }
  .hero-cards {
    grid-template-columns: repeat(3, 1fr);         /* keep all three in a row */
    gap: .55rem;
    align-items: start;
  }
  .hero-card-photo { aspect-ratio: 1 / 1; }
  .hero-card-foot { margin-top: .2rem; }
  .hero-card-foot h3 { font-size: .7rem; line-height: 1.15; }

  .site-header .container { padding-inline: 16px; } /* trim the gap right of the menu button */
  .header-actions { margin-left: auto; }            /* nav is fixed on mobile, so anchor actions right */

  .nav {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
  }
  body.nav-open .nav { max-height: 340px; padding: 1rem 22px; border-bottom: 3px solid #000; }
  .nav a { padding: .8rem 0; border-bottom: 2px solid rgba(251,243,228,.12); }
  .site-header.scrolled .nav a { color: var(--cream); }  /* dropdown stays dark -> keep links light */
  .burger { display: flex; }
  .nav-cta { display: none; }
  .dishes { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 420px) {
  .header-actions { gap: .4rem; }
  .lang-toggle button { padding: .45rem .55rem; font-size: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group { animation: none; }
  .review-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Sides ("On the Side") ---------- */
.sides {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.sides .kicker { color: var(--amber); }
.sides .lead { color: rgba(251, 243, 228, .75); margin-bottom: 1rem; }
.sides-inner {
  display: grid;
  grid-template-columns: minmax(240px, 330px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.sides-note {
  color: rgba(251, 243, 228, .6);
  font-size: .95rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  max-width: 34ch;
}

/* Right column: a grid of small flip "coins" */
.sides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}
.side-card {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  perspective: 1000px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.side-card:focus-visible { outline: 3px dashed var(--amber); outline-offset: 6px; border-radius: var(--radius); }
.side-flip {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2, .75, .2, 1);
}
.side-card.is-flipped .side-flip { transform: rotateY(180deg); }
@media (hover: hover) {
  .side-card:hover .side-flip { transform: rotateY(180deg); }
}
.side-face {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: grid;
  place-items: center;
}
.side-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .55));
}
.side-cue {
  position: absolute;
  top: 4px;
  right: 6px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(14, 20, 22, .6);
  color: var(--cream);
  font-size: .85rem;
  line-height: 1;
}
.side-back {
  transform: rotateY(180deg);
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--ink);
  text-align: center;
  padding: 1.1rem;
  align-content: center;
}
.side-back h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.05;
  margin: 0 0 .45rem;
}
.side-back p {
  margin: 0;
  font-weight: 500;
  font-size: .8rem;
  line-height: 1.38;
}
.side-card:nth-child(4n+1) .side-back { background: var(--amber); }
.side-card:nth-child(4n+2) .side-back { background: var(--pink); }
.side-card:nth-child(4n+3) .side-back { background: var(--teal); }
.side-card:nth-child(4n+4) .side-back { background: var(--lime); }

@media (prefers-reduced-motion: reduce) {
  .side-flip { transition: none; }
}
@media (max-width: 860px) {
  .sides-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .sides-note { max-width: none; }
  .sides-grid { max-width: 460px; }
}
