/* ==========================================================================
   MEALS AND MINE CAFE — styles.css
   Design system + all section styling. Mobile-first, accessible.
   Palette: warm charcoal / espresso, cream, gold, fresh sage (veg accent).
   ========================================================================== */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS (CSS custom properties)
   Swap these to re-theme the whole site.
---------------------------------------------------------------------------- */
:root {
  /* Color palette */
  --charcoal:      #171310;   /* espresso-black background */
  --charcoal-soft: #221c17;   /* raised surfaces */
  --cream:         #f6efe3;   /* primary light text / bg */
  --cream-dim:     #cdc3b2;   /* muted text on dark */
  --gold:          #d4a34a;   /* primary accent */
  --gold-bright:   #eec46e;   /* highlight / glow */
  --sage:          #8ea36a;   /* vegetarian-fresh secondary accent */
  --tomato:        #d1553b;   /* warm fast-food pop */
  --line:          rgba(246, 239, 227, 0.12); /* hairline borders on dark */

  /* Typographic scale (fluid via clamp) */
  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.95rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --step-1:  clamp(1.3rem, 1.1rem + 1vw, 1.7rem);
  --step-2:  clamp(1.9rem, 1.4rem + 2.4vw, 3rem);
  --step-3:  clamp(2.8rem, 1.8rem + 5vw, 5.5rem);
  --step-hero: clamp(3.2rem, 1.5rem + 9vw, 10rem);

  /* Fonts */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  /* Spacing / layout */
  --gutter: clamp(1.2rem, 5vw, 6rem);
  --section-y: clamp(4rem, 10vw, 9rem);
  --maxw: 1320px;
  --radius: 18px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;
}

/* ----------------------------------------------------------------------------
   2. RESET / BASE
---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth; /* fallback if Lenis absent */
}
/* Lenis takes over smooth scroll when active; disable native to avoid conflict */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--cream);
  background: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.02; letter-spacing: -0.01em; }

/* Subtle film grain overlay across the whole site (premium texture) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ----------------------------------------------------------------------------
   3. UTILITIES
---------------------------------------------------------------------------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.lede { color: var(--cream-dim); max-width: 56ch; font-size: var(--step-1); font-family: var(--font-body); font-weight: 300; }

.text-gold { color: var(--gold); }
.text-sage { color: var(--sage); }

/* Accessibility helpers */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 10000;
  background: var(--gold); color: var(--charcoal); padding: 0.7rem 1.2rem;
  border-radius: 8px; font-weight: 700; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

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

/* ----------------------------------------------------------------------------
   4. BUTTONS + MAGNETIC CTA
---------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--charcoal);
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: 100px; font-weight: 700; font-size: var(--step--1);
  letter-spacing: 0.02em;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  will-change: transform;
}
.btn:hover { box-shadow: 0 12px 40px -8px rgba(212, 163, 74, 0.6); }
.btn .btn__label { position: relative; z-index: 1; transition: color 0.4s; }
/* sheen sweep on hover */
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.7s var(--ease-out);
}
.btn:hover::after { transform: translateX(120%); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--cream);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--gold); box-shadow: none; }
.btn--lg { padding: 1.1rem 2rem; font-size: var(--step-0); }

.btn svg { width: 1em; height: 1em; }

/* ----------------------------------------------------------------------------
   5. CUSTOM CURSOR (desktop, pointer-fine only)
---------------------------------------------------------------------------- */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
    width: 40px; height: 40px; border: 1px solid var(--gold);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    display: block; mix-blend-mode: difference;
  }
  .cursor-dot {
    position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
    width: 6px; height: 6px; background: var(--gold-bright); border-radius: 50%;
    transform: translate(-50%, -50%); display: block;
  }
  .cursor.is-hover { width: 68px; height: 68px; background: rgba(212,163,74,0.15); }
  body.has-cursor { cursor: none; }
  body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* ----------------------------------------------------------------------------
   6. NAVIGATION
---------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background-color 0.5s var(--ease-out), padding 0.5s var(--ease-out), backdrop-filter 0.5s;
}
.nav.is-scrolled { padding-block: 0.75rem; }
/* Blur/tint live on a pseudo-element, NOT the nav itself: putting backdrop-filter
   on the nav would make it the containing block for its position:fixed mobile
   drawer, breaking the drawer's off-screen hide. Keep it off the nav element. */
.nav.is-scrolled::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(23, 19, 16, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav__brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; z-index: 1001; }
.nav__brand b { color: var(--gold); font-weight: 600; }
.nav__links { display: none; gap: 2.2rem; align-items: center; }
.nav__links a { font-size: var(--step--1); font-weight: 600; letter-spacing: 0.02em; position: relative; color: var(--cream-dim); transition: color 0.3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease-out); }
.nav__links a:hover, .nav__links a.is-active { color: var(--cream); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta { display: none; }

.nav__toggle {
  display: flex; flex-direction: column; gap: 5px; z-index: 1001;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--cream); transition: transform 0.4s var(--ease-out), opacity 0.3s; }
.nav.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--charcoal);
  display: flex; flex-direction: column; justify-content: center; gap: 0.5rem;
  padding: var(--gutter);
  transform: translateY(-100%); transition: transform 0.6s var(--ease-out);
}
.nav.menu-open .nav__drawer { transform: translateY(0); }
.nav__drawer a { font-family: var(--font-display); font-size: clamp(2rem, 9vw, 3.5rem); color: var(--cream); padding-block: 0.3rem; }
.nav__drawer a:hover { color: var(--gold); }
.nav__drawer .btn { margin-top: 1.5rem; align-self: flex-start; }

@media (min-width: 900px) {
  .nav__links, .nav__cta { display: flex; }
  .nav__toggle, .nav__drawer { display: none; }
}

/* ----------------------------------------------------------------------------
   7. HERO (3D)
---------------------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; z-index: 0; }
.hero__canvas canvas { display: block; width: 100% !important; height: 100% !important; }
/* Static fallback shown if WebGL unavailable or reduced-motion */
.hero__fallback {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 120% at 70% 20%, #3a2c1c 0%, var(--charcoal) 60%),
              url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=70") center/cover;
  opacity: 0; transition: opacity 0.6s;
}
.hero.no-webgl .hero__fallback { opacity: 1; }
.hero::before { /* readability veil */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(23,19,16,0.55) 0%, rgba(23,19,16,0.25) 40%, rgba(23,19,16,0.85) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: 8rem 4rem; }
.hero__title {
  font-size: var(--step-hero); line-height: 0.92; letter-spacing: -0.03em;
  max-width: 16ch;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__tag { margin-top: 1.6rem; max-width: 42ch; color: var(--cream-dim); font-size: var(--step-1); font-weight: 300; }
.hero__actions { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badges { margin-top: 3rem; display: flex; gap: 2rem; flex-wrap: wrap; color: var(--cream-dim); font-size: var(--step--1); }
.hero__badges b { color: var(--cream); font-family: var(--font-display); font-size: 1.4rem; display: block; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-dim);
}
.hero__scroll span { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2s var(--ease-out) infinite; }
@keyframes scrollpulse { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ----------------------------------------------------------------------------
   8. REVEAL ANIMATION PRIMITIVES (IntersectionObserver adds .is-in)
---------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ----------------------------------------------------------------------------
   9. ABOUT
---------------------------------------------------------------------------- */
.about { background: var(--cream); color: var(--charcoal); border-radius: 40px 40px 0 0; margin-top: -40px; position: relative; z-index: 5; }
.about .eyebrow { color: var(--tomato); }
.about .eyebrow::before { background: var(--tomato); }
.about__grid { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about__title { font-size: var(--step-3); color: var(--charcoal); max-width: 14ch; margin-block: 1.2rem 0; }
.about__body { font-size: var(--step-1); font-weight: 300; color: #4a4136; max-width: 60ch; }
.about__body strong { font-weight: 600; color: var(--charcoal); }
.about__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.about__stat { border-top: 2px solid var(--gold); padding-top: 0.8rem; }
.about__stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 3.4rem); color: var(--charcoal); line-height: 1; }
.about__stat .lbl { font-size: var(--step--1); color: #6b6152; letter-spacing: 0.02em; }
.about__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; position: relative; }
.about__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.about__media:hover img { transform: scale(1.06); }
@media (min-width: 860px) {
  .about__grid { grid-template-columns: 1.1fr 0.9fr; }
  .about__stats { grid-template-columns: repeat(4, 1fr); }
}

/* ----------------------------------------------------------------------------
   10. SERVICES
---------------------------------------------------------------------------- */
.services { background: var(--cream); color: var(--charcoal); }
.services__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 3rem; }
.services__head h2 { font-size: var(--step-3); color: var(--charcoal); max-width: 12ch; }
.services__grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service {
  position: relative; padding: 2rem 1.8rem 2.2rem; border-radius: var(--radius);
  background: #fff; border: 1px solid rgba(23,19,16,0.06);
  overflow: hidden; isolation: isolate;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), color 0.5s;
}
.service::before { /* gold wash fills up on hover */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(160deg, var(--charcoal), var(--charcoal-soft));
  transform: translateY(101%); transition: transform 0.55s var(--ease-out);
}
.service:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(23,19,16,0.5); color: var(--cream); }
.service:hover::before { transform: translateY(0); }
.service:hover .service__num { color: var(--gold); }
.service:hover .service__desc { color: var(--cream-dim); }
.service__num { font-family: var(--font-display); font-size: 0.9rem; color: var(--gold); letter-spacing: 0.1em; transition: color 0.5s; }
.service__icon { font-size: 2rem; margin: 0.6rem 0 1rem; display: block; }
.service__title { font-size: var(--step-1); margin-bottom: 0.5rem; }
.service__desc { font-size: var(--step--1); color: #6b6152; transition: color 0.5s; }

/* ----------------------------------------------------------------------------
   11. MENU HIGHLIGHTS (3D tilt cards)
---------------------------------------------------------------------------- */
.menu { background: var(--charcoal); color: var(--cream); }
.menu__head { text-align: center; margin-bottom: 3.5rem; display: grid; justify-items: center; gap: 1rem; }
.menu__head h2 { font-size: var(--step-3); }
.menu__grid { display: grid; gap: 1.6rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .menu__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .menu__grid { grid-template-columns: repeat(3, 1fr); } }

.dish {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--charcoal-soft); border: 1px solid var(--line);
  transform-style: preserve-3d; transition: transform 0.3s var(--ease-out), box-shadow 0.5s;
  will-change: transform;
}
.dish:hover { box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8); }
.dish__media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); transform: translateZ(0); }
.dish:hover .dish__media img { transform: scale(1.08); }
.dish__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--sage); color: #14170d; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 100px;
}
.dish__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.4rem; transform: translateZ(40px); }
.dish__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish__name { font-family: var(--font-display); font-size: var(--step-1); }
.dish__price { font-family: var(--font-display); color: var(--gold); font-size: var(--step-1); white-space: nowrap; }
.dish__desc { font-size: var(--step--1); color: var(--cream-dim); }
.dish__glow { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; transition: opacity 0.4s;
  background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), rgba(212,163,74,0.18), transparent 60%); }
.dish:hover .dish__glow { opacity: 1; }
.menu__cta { text-align: center; margin-top: 3rem; }

/* ----------------------------------------------------------------------------
   12. GALLERY (interactive grid + lightbox)
---------------------------------------------------------------------------- */
.gallery { background: var(--charcoal); color: var(--cream); }
.gallery__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 2.5rem; }
.gallery__head h2 { font-size: var(--step-3); }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.9rem; grid-auto-flow: dense; }
@media (min-width: 720px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.gallery__item {
  position: relative; overflow: hidden; border-radius: 14px; aspect-ratio: 1; cursor: pointer;
  background: var(--charcoal-soft);
}
.gallery__item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery__item.wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 719px) { .gallery__item.wide { grid-column: span 2; aspect-ratio: 2/1; } .gallery__item.tall { aspect-ratio: 1; grid-row: auto; } }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out), filter 0.5s; }
.gallery__item:hover img { transform: scale(1.1); filter: brightness(0.75); }
.gallery__item::after {
  content: "＋"; position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2rem; color: var(--cream); opacity: 0; transition: opacity 0.4s;
}
.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center;
  background: rgba(12, 10, 8, 0.94); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; padding: var(--gutter);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 12px; box-shadow: 0 40px 120px rgba(0,0,0,0.7); }
.lightbox__close, .lightbox__nav { position: absolute; color: var(--cream); font-size: 2rem; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); transition: background 0.3s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.1); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 1.2rem; }
.lightbox__nav.next { right: 1.2rem; }
.lightbox__caption { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: var(--cream-dim); font-size: var(--step--1); }

/* ----------------------------------------------------------------------------
   13. EXPERIENCE / CINEMATIC SCROLL
---------------------------------------------------------------------------- */
.experience { position: relative; background: #100d0a; color: var(--cream); overflow: clip; }
.experience__pin { min-height: 100svh; display: grid; place-items: center; text-align: center; position: relative; }
.experience__bg { position: absolute; inset: 0; z-index: 0; }
.experience__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; transform: scale(1.15); }
.experience__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, transparent 20%, #100d0a 85%); }
.experience__steps { position: relative; z-index: 2; padding: var(--section-y) var(--gutter); }
.experience__step { min-height: 70svh; display: grid; place-items: center; }
.experience__step p { font-family: var(--font-display); font-size: var(--step-2); max-width: 20ch; margin-inline: auto; line-height: 1.15; }
.experience__step .k { color: var(--gold); font-style: italic; }

/* ----------------------------------------------------------------------------
   14. TESTIMONIALS (carousel)
---------------------------------------------------------------------------- */
.reviews { background: var(--cream); color: var(--charcoal); overflow: hidden; }
.reviews__head { text-align: center; margin-bottom: 3rem; }
.reviews__head h2 { font-size: var(--step-3); color: var(--charcoal); }
.reviews__track { display: flex; gap: 1.4rem; transition: transform 0.7s var(--ease-out); }
.review {
  flex: 0 0 100%; background: #fff; border-radius: var(--radius); padding: 2.4rem 2rem;
  border: 1px solid rgba(23,19,16,0.07); display: flex; flex-direction: column; gap: 1.2rem;
}
@media (min-width: 720px) { .review { flex-basis: calc(50% - 0.7rem); } }
@media (min-width: 1040px) { .review { flex-basis: calc(33.333% - 0.94rem); } }
.review__stars { color: var(--gold); letter-spacing: 0.2em; }
.review__quote { font-family: var(--font-display); font-size: var(--step-1); color: var(--charcoal); line-height: 1.3; }
.review__who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review__who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review__who .name { font-weight: 700; }
.review__who .role { font-size: var(--step--1); color: #6b6152; }
.reviews__controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.reviews__btn { width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(23,19,16,0.2); display: grid; place-items: center; font-size: 1.3rem; transition: background 0.3s, color 0.3s; }
.reviews__btn:hover { background: var(--charcoal); color: var(--cream); }

/* ----------------------------------------------------------------------------
   15. LOCATION & HOURS
---------------------------------------------------------------------------- */
.location { background: var(--charcoal); color: var(--cream); }
.location__grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .location__grid { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.location__info h2 { font-size: var(--step-3); margin-block: 1rem 1.5rem; }
.location__list { display: grid; gap: 1.3rem; margin-top: 1.5rem; }
.location__row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.location__row .ico { color: var(--gold); font-size: 1.3rem; }
.location__row .label { font-size: var(--step--1); color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.hours { margin-top: 0.6rem; display: grid; gap: 0.3rem; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; color: var(--cream-dim); }
.hours .today { color: var(--cream); font-weight: 600; }
.map {
  border-radius: var(--radius); overflow: hidden; min-height: 320px; position: relative;
  background: linear-gradient(135deg, #241d16, #14100c);
  border: 1px solid var(--line); display: grid; place-items: center; text-align: center;
}
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.3) contrast(1.05); }
.map__placeholder { padding: 2rem; color: var(--cream-dim); }
.map__placeholder .pin { font-size: 2.4rem; color: var(--gold); }

/* ----------------------------------------------------------------------------
   16. FOOTER
---------------------------------------------------------------------------- */
.footer { background: #100d0a; color: var(--cream-dim); padding-block: clamp(3rem, 8vw, 6rem) 2rem; }
.footer__top { display: grid; gap: 2.5rem; }
@media (min-width: 820px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer__brand { font-family: var(--font-display); font-size: 2rem; color: var(--cream); }
.footer__brand b { color: var(--gold); }
.footer__tag { margin-top: 1rem; max-width: 32ch; }
.footer h4 { font-family: var(--font-body); font-size: var(--step--1); letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer__col a { display: block; padding-block: 0.35rem; color: var(--cream-dim); transition: color 0.3s, transform 0.3s; }
.footer__col a:hover { color: var(--cream); transform: translateX(4px); }
.footer__socials { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer__socials a { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.footer__socials a:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: var(--step--1); }
.footer__newsletter { display: flex; gap: 0.5rem; margin-top: 1rem; }
.footer__newsletter input { flex: 1; background: var(--charcoal-soft); border: 1px solid var(--line); border-radius: 100px; padding: 0.8rem 1.2rem; color: var(--cream); font: inherit; font-size: var(--step--1); }
.footer__newsletter input:focus { border-color: var(--gold); outline: none; }
.footer__newsletter button { padding: 0.8rem 1.3rem; background: var(--gold); color: var(--charcoal); border-radius: 100px; font-weight: 700; }

/* Marquee (services ticker accent) */
.marquee { overflow: hidden; white-space: nowrap; border-block: 1px solid var(--line); background: var(--charcoal); }
.marquee__track { display: inline-flex; gap: 3rem; padding-block: 1rem; animation: marquee 28s linear infinite; will-change: transform; }
.marquee__track span { font-family: var(--font-display); font-size: clamp(1.3rem, 4vw, 2.4rem); color: var(--cream); opacity: 0.8; display: inline-flex; align-items: center; gap: 3rem; }
.marquee__track span::after { content: "✦"; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------------------
   17. PAGE HEADER (secondary pages)
---------------------------------------------------------------------------- */
.pagehead { min-height: 56svh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.pagehead__bg { position: absolute; inset: 0; z-index: 0; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; transform: scale(1.1); }
.pagehead::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(23,19,16,0.5), rgba(23,19,16,0.9)); }
.pagehead__inner { position: relative; z-index: 2; padding-block: 4rem; }
.pagehead h1 { font-size: var(--step-hero); line-height: 0.95; }
.pagehead p { color: var(--cream-dim); font-size: var(--step-1); max-width: 46ch; margin-top: 1rem; font-weight: 300; }

/* Full menu (menu.html) */
.menupage { background: var(--cream); color: var(--charcoal); }
.menucat { margin-bottom: 3.5rem; }
.menucat h2 { font-size: var(--step-2); color: var(--charcoal); border-bottom: 2px solid var(--gold); padding-bottom: 0.6rem; margin-bottom: 1.5rem; display: flex; justify-content: space-between; align-items: baseline; }
.menucat h2 small { font-family: var(--font-body); font-size: var(--step--1); color: var(--tomato); letter-spacing: 0.1em; text-transform: uppercase; }
.menuitem { display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1.5rem; padding-block: 1rem; border-bottom: 1px dashed rgba(23,19,16,0.15); align-items: baseline; }
.menuitem__name { font-family: var(--font-display); font-size: var(--step-1); color: var(--charcoal); }
.menuitem__name .veg { color: var(--sage); font-size: 0.8em; }
.menuitem__price { font-family: var(--font-display); font-size: var(--step-1); color: var(--gold); }
.menuitem__desc { grid-column: 1 / -1; font-size: var(--step--1); color: #6b6152; max-width: 60ch; }

/* Reservation form */
.reserve { background: var(--cream); color: var(--charcoal); }
.reserve__grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .reserve__grid { grid-template-columns: 1fr 1fr; } }
.form { display: grid; gap: 1.2rem; }
.form__row { display: grid; gap: 1.2rem; }
@media (min-width: 560px) { .form__row.two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: var(--step--1); font-weight: 600; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  font: inherit; padding: 0.9rem 1.1rem; border-radius: 12px; border: 1px solid rgba(23,19,16,0.2);
  background: #fff; color: var(--charcoal); transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,163,74,0.2); outline: none; }
.form__note { font-size: var(--step--1); color: #6b6152; }
.form__success { display: none; padding: 1rem 1.2rem; border-radius: 12px; background: rgba(142,163,106,0.18); border: 1px solid var(--sage); color: #3f4a29; }
.form__success.show { display: block; }

/* ----------------------------------------------------------------------------
   18. REDUCED MOTION — disable heavy animation
---------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__scroll span { animation: none; }
  .marquee__track { animation: none; }
  .cursor, .cursor-dot { display: none !important; }
  body.has-cursor { cursor: auto; }
}
