/* =========================================================
   TAQUERIA ROLY'S — Michoacán family taqueria
   Art direction: warm editorial · masa-cream base · consommé red
   Palette: cream #F4E9D7 · red #B11226 · amber #E8B23A · brown #2E1A12 · lime #4C7A34
   ========================================================= */

:root {
  /* Brand palette */
  --red:        #B11226;   /* consommé red */
  --red-deep:   #7A1A1A;   /* deep chile */
  --amber:      #E8B23A;   /* golden masa */
  --amber-deep: #c8902a;
  --lime:       #4C7A34;   /* cilantro */
  --brown:      #2E1A12;   /* charred adobo / ink */

  /* Editorial warm base */
  --paper:      #F4E9D7;   /* masa cream — page base */
  --paper-2:    #efe1cb;
  --paper-3:    #e9d8bd;
  --panel:      #fbf4e8;
  --ink:        #2E1A12;   /* primary text */
  --ink-soft:   #5a463a;   /* muted body */
  --ink-faint:  #8a7665;   /* faint labels */
  --line:       rgba(46, 26, 18, .16);
  --line-soft:  rgba(46, 26, 18, .09);

  /* Type */
  --serif:   "Fraunces", Georgia, serif;
  --display: "Bebas Neue", "Fraunces", sans-serif;
  --sans:    "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
  --r: 4px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

::selection { background: var(--red); color: var(--paper); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Shared type ---------- */
.kicker.kicker {
  font-family: var(--sans);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  display: inline-flex; align-items: center; gap: .9rem;
}
.kicker::before {
  content: ""; width: 34px; height: 1px; background: var(--red); opacity: .6;
}

.section-head {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.015em;
  color: var(--ink);
}
.section-head--light { color: var(--paper); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: var(--r);
  cursor: pointer; border: 1px solid transparent;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  position: relative; will-change: transform;
}
.btn--lg { padding: 1.15rem 2.4rem; font-size: .84rem; }
.btn--red { background: var(--red); color: var(--paper); }
.btn--red:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn--amber { background: var(--amber); color: var(--brown); }
.btn--amber:hover { background: var(--amber-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
/* ghost over dark hero */
.hero .btn--ghost, .overlay .btn--ghost { color: var(--paper); border-color: rgba(244,233,215,.4); }
.hero .btn--ghost:hover, .overlay .btn--ghost:hover { border-color: var(--amber); color: var(--amber); }

.link-underline {
  display: inline-block; position: relative;
  font-family: var(--sans); font-weight: 600;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); padding-bottom: 4px; margin-top: 1.6rem;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--red);
  transform: scaleX(.35); transform-origin: left; transition: transform .5s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  border-bottom: 1px solid transparent;
  padding: 1.4rem 0;
}
.nav.is-solid {
  background: rgba(244, 233, 215, .9);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 30px rgba(46,26,18,.07);
  padding: .75rem 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav__brand { display: inline-flex; align-items: center; gap: .65rem; }
.nav__mark {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  overflow: hidden; background: #0b0b0b;
  box-shadow: 0 0 0 2px rgba(244,233,215,.55), 0 4px 14px rgba(0,0,0,.25);
  transition: transform .5s var(--ease);
}
.nav__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav__word {
  font-family: var(--display); font-size: 1.5rem; letter-spacing: .03em;
  color: var(--paper); transition: color .5s var(--ease);
  white-space: nowrap;
}
.nav.is-solid .nav__word { color: var(--brown); }
.nav.is-solid .nav__mark { transform: scale(.92); }

.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--paper); position: relative; padding: 4px 0; opacity: .9;
  transition: opacity .3s, color .3s;
}
.nav.is-solid .nav__links a { color: var(--ink); opacity: .8; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { opacity: 1; color: var(--amber); }
.nav.is-solid .nav__links a:hover { color: var(--red); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta .btn { padding: .7rem 1.5rem; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 1100;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--paper); transition: transform .4s var(--ease), opacity .3s, background .3s; }
.nav.is-solid .nav__toggle span { background: var(--brown); }

/* =========================================================
   OVERLAY (mobile)
   ========================================================= */
.overlay {
  position: fixed; inset: 0; z-index: 1050;
  background: var(--brown);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; text-align: center;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.overlay.is-open { opacity: 1; visibility: visible; }
.overlay::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(177,18,38,.35), transparent 62%);
  pointer-events: none;
}
.overlay__close {
  position: absolute; top: 1.5rem; right: 1.8rem; font-size: 2.6rem; line-height: 1;
  background: none; border: none; color: var(--paper); cursor: pointer;
}
.overlay__nav { display: flex; flex-direction: column; gap: 1.4rem; }
.overlay__nav a {
  font-family: var(--serif); font-size: 2.1rem; color: var(--paper);
  transition: color .3s; opacity: 0; transform: translateY(14px);
}
.overlay.is-open .overlay__nav a { animation: rise .6s var(--ease) forwards; }
.overlay.is-open .overlay__nav a:nth-child(1){animation-delay:.08s}
.overlay.is-open .overlay__nav a:nth-child(2){animation-delay:.14s}
.overlay.is-open .overlay__nav a:nth-child(3){animation-delay:.2s}
.overlay.is-open .overlay__nav a:nth-child(4){animation-delay:.26s}
.overlay.is-open .overlay__nav a:nth-child(5){animation-delay:.32s}
.overlay__nav a:hover { color: var(--amber); }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.overlay__actions { display: flex; flex-direction: column; gap: .9rem; width: min(300px, 80vw); }
.overlay__addr { color: var(--amber); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 116%; object-fit: cover; object-position: center 42%;
  transform: scale(1.12); will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(28,14,9,.72) 0%, rgba(28,14,9,.5) 36%, rgba(28,14,9,.84) 100%),
    radial-gradient(ellipse at 50% 46%, rgba(28,14,9,.18) 16%, rgba(28,14,9,.7) 100%);
}
.hero__content {
  position: relative; z-index: 2; padding: 0 var(--gutter);
  max-width: 920px; display: flex; flex-direction: column; align-items: center;
}
.hero__eyebrow {
  font-size: .76rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.4rem; font-weight: 600;
}
.hero__title {
  display: flex; flex-direction: column; align-items: center;
  line-height: .82; margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,.45));
}
.hero__title-script {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 5vw, 3rem); color: var(--amber);
  letter-spacing: .01em; margin-bottom: .15em;
  animation: heroIn .9s var(--ease) .1s both;
}
.hero__title-word {
  font-family: var(--display);
  font-size: clamp(4.5rem, 18vw, 11rem); color: var(--paper);
  letter-spacing: .02em; line-height: .85;
  animation: heroIn 1s var(--ease) .22s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__tagline {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.1rem, 2.6vw, 1.55rem); line-height: 1.45;
  color: var(--paper); max-width: 640px; margin-bottom: 2.2rem;
  opacity: .95;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero__cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .7rem;
  color: var(--paper);
}
.hero__cue-line {
  width: 1px; height: 46px; background: linear-gradient(var(--amber), transparent);
  animation: cueline 2.2s var(--ease) infinite;
}
@keyframes cueline { 0%,100%{transform:scaleY(.4);opacity:.4} 50%{transform:scaleY(1);opacity:1} }
.hero__cue-text { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--paper); opacity: .8; }

/* =========================================================
   STORY
   ========================================================= */
.story {
  padding: clamp(5rem, 12vh, 9rem) 0;
  max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter);
}
.story__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.story__head {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.06; letter-spacing: -.015em;
  margin-bottom: 2rem; color: var(--ink);
}
.story__head em { color: var(--red); font-style: italic; }
.story__text p { color: var(--ink-soft); margin-bottom: 1.3rem; font-size: 1.04rem; }
.story__text p em { color: var(--red-deep); font-style: italic; font-weight: 500; }

.story__media { position: relative; overflow: hidden; border-radius: var(--r); box-shadow: 0 30px 70px -30px rgba(46,26,18,.5); }
.story__img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; transform: scale(1.08); }
.story__cap {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 1.4rem 1.6rem;
  background: linear-gradient(transparent, rgba(28,14,9,.85));
  font-family: var(--serif); font-style: italic; color: var(--paper); font-size: 1.02rem;
}

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: clamp(3.5rem, 8vh, 6rem);
  padding-top: clamp(3rem, 6vh, 4.5rem); border-top: 1px solid var(--line);
}
.stat { text-align: center; }
.stat__num {
  display: block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem); line-height: 1; color: var(--red);
}
.stat__num--word { color: var(--lime); font-style: italic; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.04; }
.stat__label {
  display: block; margin-top: .7rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint);
}

/* =========================================================
   SIGNATURES
   ========================================================= */
.sig { padding: clamp(4rem, 9vh, 7rem) 0; background: var(--paper-2); }
.sig__intro { max-width: var(--maxw); margin: 0 auto 4rem; padding: 0 var(--gutter); }

.sig__row {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2.5rem, 6vh, 5rem) var(--gutter);
}
.sig__row--rev .sig__media { order: 2; }
.sig__media {
  position: relative; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 70px -34px rgba(46,26,18,.55);
}
.sig__media img {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1.12);
  transition: transform 1.2s var(--ease);
}
.sig__media:hover img { transform: scale(1.18); }
.sig__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 58%, rgba(177,18,38,.18));
}
.sig__index {
  font-family: var(--serif); font-size: 1rem; color: var(--amber-deep);
  letter-spacing: .2em; display: block; margin-bottom: 1rem; font-weight: 600;
}
.sig__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.05; margin-bottom: 1.2rem;
  color: var(--ink);
}
.sig__title .ltr { display: inline-block; }
.sig__desc { color: var(--ink-soft); font-size: 1.04rem; max-width: 42ch; }

/* =========================================================
   MENU
   ========================================================= */
.menu {
  padding: clamp(5rem, 11vh, 8rem) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(177,18,38,.14), transparent 55%),
    var(--brown);
  color: var(--paper);
}
.menu__head { max-width: 860px; margin: 0 auto; text-align: center; padding: 0 var(--gutter); }
.menu .kicker.kicker { color: var(--amber); }
.menu .kicker::before { background: var(--amber); }
.menu__note { color: rgba(244,233,215,.72); margin: 1.4rem auto 3.4rem; max-width: 62ch; }
.menu__note a { color: var(--amber); border-bottom: 1px solid rgba(232,178,58,.4); }
.menu__note a:hover { color: var(--paper); }

.menu__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.menu__group-title {
  font-family: var(--serif); font-weight: 500; font-size: 1.7rem; color: var(--amber);
  margin-bottom: 1.8rem; padding-bottom: .9rem; border-bottom: 1px solid rgba(244,233,215,.18);
  display: flex; align-items: baseline; justify-content: space-between;
}
.menu__group-title--sub { margin-top: 2.6rem; }

.m-item { margin-bottom: 1.5rem; }
.m-item__head { display: flex; align-items: baseline; gap: .5rem; }
.m-item__name {
  font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--paper);
  letter-spacing: .005em;
}
.m-tag {
  font-family: var(--sans); font-size: .58rem; font-weight: 700; font-style: normal;
  letter-spacing: .1em; text-transform: uppercase; color: var(--amber);
  border: 1px solid rgba(232,178,58,.5); border-radius: 3px; padding: 1px 5px;
  vertical-align: middle; margin-left: .4rem;
}
.m-leader {
  flex: 1; border-bottom: 1px dotted rgba(244,233,215,.4);
  transform: translateY(-4px); min-width: 18px;
}
.m-item__price {
  font-family: var(--serif); font-weight: 600; font-size: 1.18rem; color: var(--amber);
  white-space: nowrap;
}
.m-item__desc { color: rgba(244,233,215,.6); font-size: .92rem; margin-top: .35rem; line-height: 1.5; max-width: 46ch; }

.menu__legend { text-align: center; color: rgba(244,233,215,.6); font-size: .82rem; letter-spacing: .04em; margin-top: 3rem; }
.menu__legend .m-tag { margin: 0 .2rem 0 .1rem; }
.menu__mp { font-family: var(--serif); color: var(--amber); font-weight: 600; }

.menu__foot { display: flex; gap: 1rem; justify-content: center; margin-top: 3.5rem; flex-wrap: wrap; }
.menu__foot .btn--ghost { color: var(--paper); border-color: rgba(244,233,215,.3); }
.menu__foot .btn--ghost:hover { color: var(--amber); border-color: var(--amber); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { padding: clamp(4rem, 9vh, 7rem) 0; background: var(--paper); overflow: hidden; }
.gallery__head { max-width: var(--maxw); margin: 0 auto 3rem; padding: 0 var(--gutter); }
.gallery__swiper { padding-left: var(--gutter); }
.gallery__slide {
  width: clamp(280px, 42vw, 520px); aspect-ratio: 4 / 3;
  overflow: hidden; border-radius: var(--r);
  box-shadow: 0 24px 50px -30px rgba(46,26,18,.5);
}
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery__slide:hover img { transform: scale(1.07); }
.gallery__nav { display: flex; gap: .8rem; margin-top: 2rem; padding: 0 var(--gutter); }
.gallery__btn {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line);
  background: none; color: var(--ink); font-size: 1.1rem; cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s;
}
.gallery__btn:hover { background: var(--red); color: var(--paper); border-color: var(--red); }

/* =========================================================
   FEATURES
   ========================================================= */
.feat { padding: clamp(4.5rem, 10vh, 7rem) 0; background: var(--paper); }
.feat__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
}
.feat__item {
  background: var(--paper); padding: clamp(2rem, 4vw, 3rem);
  transition: background .5s var(--ease);
}
.feat__item:hover { background: var(--panel); }
.feat__ico {
  width: 38px; height: 38px; fill: none; stroke: var(--red);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1.3rem;
}
.feat__item h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin-bottom: .6rem; color: var(--ink); }
.feat__item p { color: var(--ink-soft); font-size: .94rem; }

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  padding: clamp(5rem, 11vh, 8rem) 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(232,178,58,.16), transparent 60%),
    var(--red-deep);
  text-align: center;
}
.reviews__head { margin-bottom: 3.5rem; padding: 0 var(--gutter); }
.reviews .kicker.kicker { color: var(--amber); justify-content: center; }
.reviews .kicker::before { background: var(--amber); }
.reviews__rating { margin-top: 1.1rem; color: var(--amber); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.reviews__swiper { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter) 3.5rem; }
.review { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; padding: 1rem; }
.review__stars { color: var(--amber); letter-spacing: .25em; font-size: 1.05rem; }
.review__quote {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.3rem); line-height: 1.35; color: var(--paper);
  max-width: 24ch;
}
.review__by { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); font-style: normal; }
.review__by span { color: rgba(244,233,215,.55); }
.reviews__dots { position: static !important; margin-top: 1rem; }
.reviews__dots .swiper-pagination-bullet { background: var(--paper); opacity: .4; }
.reviews__dots .swiper-pagination-bullet-active { background: var(--amber); opacity: 1; width: 22px; border-radius: 4px; }

/* =========================================================
   VISIT
   ========================================================= */
.visit { padding: clamp(4.5rem, 10vh, 7rem) 0; background: var(--paper-2); }
.visit__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: stretch;
}
.visit__block { margin-top: 2.2rem; }
.visit__block h3 {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--red);
  margin-bottom: .6rem; font-weight: 600;
}
.visit__block p { color: var(--ink); font-size: 1.06rem; line-height: 1.6; }
.visit__block a { transition: color .3s; border-bottom: 1px solid transparent; }
.visit__block a:hover { color: var(--red); }

.hours { width: 100%; max-width: 400px; border-collapse: collapse; }
.hours th, .hours td { padding: .68rem 0; text-align: left; border-bottom: 1px solid var(--line-soft); font-weight: 400; }
.hours th { color: var(--ink-soft); font-size: .94rem; }
.hours td { color: var(--ink); text-align: right; font-size: .95rem; }
.hours td.closed { color: var(--ink-faint); font-style: italic; }
.hours tr.is-now th, .hours tr.is-now td { color: var(--lime); font-weight: 600; }
.hours tr.is-now td::after { content: " · Open now"; color: var(--lime); font-size: .8em; }

.visit__cta { display: flex; gap: 1rem; margin-top: 2.6rem; flex-wrap: wrap; }

.visit__map { border-radius: var(--r); overflow: hidden; min-height: 460px; border: 1px solid var(--line); box-shadow: 0 26px 60px -34px rgba(46,26,18,.5); }
.visit__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; filter: saturate(1.04) contrast(1.02); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--brown); color: var(--paper); border-top: 4px solid var(--red); padding-top: clamp(3.5rem, 8vh, 5.5rem); }
.footer__grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) 3.5rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer__logo { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.3rem; }
.footer__mark {
  display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; background: #0b0b0b;
  box-shadow: 0 0 0 2px rgba(244,233,215,.45);
}
.footer__mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer__word { font-family: var(--display); font-size: 1.7rem; letter-spacing: .03em; color: var(--paper); }
.footer__tag { color: rgba(244,233,215,.6); font-size: .95rem; line-height: 1.6; max-width: 30ch; }
.footer__col h4 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.2rem; font-weight: 600; }
.footer__col a, .footer__col p { display: block; color: rgba(244,233,215,.7); font-size: .94rem; margin-bottom: .6rem; transition: color .3s; }
.footer__col a:hover { color: var(--amber); }
.footer__bar {
  border-top: 1px solid rgba(244,233,215,.12); padding: 1.6rem var(--gutter);
  max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer__bar p { color: rgba(244,233,215,.45); font-size: .8rem; letter-spacing: .04em; }

/* =========================================================
   MOBILE ACTION BAR
   ========================================================= */
.mbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  display: none; grid-template-columns: 1fr 1fr 1.3fr;
  background: rgba(46,26,18,.95); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(244,233,215,.14);
}
.mbar__btn {
  padding: 1rem; text-align: center; font-size: .76rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--paper); border-right: 1px solid rgba(244,233,215,.12);
  font-weight: 600;
}
.mbar__btn:last-child { border-right: none; }
.mbar__btn--primary { background: var(--red); color: var(--paper); }

/* =========================================================
   REVEAL
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.is-visible[data-reveal], [data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .story__grid { grid-template-columns: 1fr; }
  .story__media { max-height: 520px; }
  .visit__grid { grid-template-columns: 1fr; }
  .feat__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .sig__row { grid-template-columns: 1fr; gap: 1.8rem; padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .sig__row--rev .sig__media { order: 0; }
  .stats { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .menu__cols { grid-template-columns: 1fr; gap: 3rem; }
  .feat__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bar { flex-direction: column; text-align: center; }
  .mbar { display: grid; }
  body { padding-bottom: 56px; }
  .hero__cue { display: none; }
}

@media (max-width: 400px) {
  .stats { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__img { transform: scale(1.05) !important; }
  .hero__cue-line { animation: none; }
}
