:root {
  --stone: #f4efe7;
  --stone-2: #e8dfd1;
  --ink: #221d18;
  --ink-soft: #4c443b;
  --muted: #7d7367;
  --terra: #9c4a2f;
  --terra-dark: #7d3721;
  --gold: #b3873f;
  --line: rgba(34, 29, 24, 0.12);
  --shadow: 0 18px 50px rgba(34, 29, 24, 0.13);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
  --wrap: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.1rem; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
  font-weight: 400;
}

.stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.95rem; }
.stars--lg { font-size: 1.3rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.btn--solid { background: var(--terra); color: #fff; }
.btn--solid:hover { background: var(--terra-dark); transform: translateY(-2px); }

.btn--ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }

.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.7rem; }
.btn--block { display: flex; width: 100%; margin-top: 1.3rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
  padding: 0.55rem 0;
}

.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  transition: color 0.35s;
}

.brand__mark {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand__text em {
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav__links { display: flex; align-items: center; gap: 1.7rem; }

.nav__links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s, opacity 0.25s;
  opacity: 0.9;
}

.nav__links a:hover { opacity: 1; color: var(--gold); }
.nav__links .btn { color: #fff; opacity: 1; }
.nav__links .btn:hover { color: #fff; }

.nav.is-stuck {
  background: rgba(244, 239, 231, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-stuck .brand,
.nav.is-stuck .nav__links a { color: var(--ink); }
.nav.is-stuck .nav__links a:hover { color: var(--terra); }
.nav.is-stuck .nav__links .btn { color: #fff; }
.nav.is-stuck .nav__toggle span { background: var(--ink); }

.nav__toggle {
  display: none;
  width: 42px;
  height: 34px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 6px 4px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 7rem 1.6rem 6rem;
}

.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 15, 12, 0.62) 0%, rgba(20, 15, 12, 0.36) 45%, rgba(20, 15, 12, 0.78) 100%);
}

.hero__body { position: relative; max-width: 780px; }

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__title {
  font-size: clamp(3.2rem, 9vw, 6.6rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero__lead {
  font-size: clamp(1rem, 2.1vw, 1.28rem);
  max-width: 34ch;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  margin-bottom: 2.4rem;
  font-size: 0.9rem;
}
.hero__rating strong { font-size: 1.05rem; }
.hero__rating-meta { color: rgba(255, 255, 255, 0.75); font-size: 0.8rem; }

.hero__actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 54px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.hero__scroll span {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 18px;
  background: #fff;
  animation: scrollDot 2.1s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(-20px); }
  100% { transform: translateY(56px); }
}

/* ---------- section heads ---------- */
.section-head { max-width: 640px; margin: 0 auto 3.4rem; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); margin-bottom: 1rem; }
.section-head__sub { color: var(--muted); margin: 0; }
.section-head--light h2 { color: #fff; }
.section-head--light .section-head__sub { color: rgba(255, 255, 255, 0.7); }
.section-head--light .eyebrow { color: var(--gold); }

/* ---------- strip ---------- */
.strip { background: #fff; border-bottom: 1px solid var(--line); }

.strip__list {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 3.4rem 1.6rem;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}

.strip__list li { text-align: center; }
.strip__ico { font-size: 1.7rem; display: block; margin-bottom: 0.8rem; }
.strip__list h3 { font-size: 1.25rem; margin-bottom: 0.45rem; }
.strip__list p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* ---------- story ---------- */
.story { padding: 6.5rem 1.6rem; }

.story__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.story__text h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: 1.6rem; }
.story__text .lead { font-size: 1.1rem; color: var(--ink-soft); }
.story__text p { color: var(--ink-soft); }
.story__text em { color: var(--terra); font-style: italic; }

.story__facts {
  list-style: none;
  padding: 1.8rem 0 0;
  margin: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}
.story__facts li { display: flex; flex-direction: column; gap: 0.2rem; }
.story__facts strong {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.story__facts span { font-family: var(--serif); font-size: 1.15rem; }

.story__media { display: grid; gap: 1.2rem; }
.story__img { margin: 0; overflow: hidden; border-radius: 3px; box-shadow: var(--shadow); }
.story__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.story__img:hover img { transform: scale(1.05); }
.story__img--tall { aspect-ratio: 4 / 3; }
.story__img--wide { aspect-ratio: 16 / 9; }

/* ---------- dishes ---------- */
.dishes { padding: 6.5rem 1.6rem; background: #fff; }

.dishes__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.dish {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1.9rem 1.6rem;
  background: var(--stone);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.dish:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.dish--star { background: linear-gradient(160deg, #fff, var(--stone-2)); }

.dish__count {
  display: inline-block;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  border: 1px solid rgba(156, 74, 47, 0.28);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  margin-bottom: 1rem;
}

.dish h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }

.dish__es {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.dish p:last-child { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.dish em { font-style: italic; color: var(--terra); }

.dishes__note {
  max-width: 620px;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--muted);
}

/* ---------- carta ---------- */
.carta { padding: 6.5rem 1.6rem; background: #221d18; }

.carta__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.carta__item {
  padding: 0;
  border: 0;
  background: #2c261f;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 3 / 4;
  position: relative;
}
.carta__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.5s, opacity 0.4s;
}
.carta__item:hover img { transform: scale(1.06); opacity: 1; }

.carta__disclaimer {
  max-width: 620px;
  margin: 2.4rem auto 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- gallery ---------- */
.gallery { padding: 6.5rem 1.6rem; }

.gallery__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery__item {
  padding: 0;
  border: 0;
  background: var(--stone-2);
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 1 / 1;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: 1 / 2; }

/* ---------- reviews ---------- */
.reviews { padding: 6.5rem 1.6rem; background: #2b241d; color: #fff; }

.reviews__score {
  max-width: 820px;
  margin: 0 auto 3.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.score { text-align: center; }
.score__num {
  display: block;
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.score__meta {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
}

.bars { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.bars li { display: grid; grid-template-columns: 2.2rem 1fr 2.6rem; align-items: center; gap: 0.9rem; }
.bars__label { font-size: 0.78rem; color: rgba(255, 255, 255, 0.7); }
.bars__track { height: 5px; background: rgba(255, 255, 255, 0.12); border-radius: 999px; overflow: hidden; }
.bars__track i { display: block; height: 100%; background: var(--gold); border-radius: 999px; }
.bars__val { font-size: 0.76rem; color: rgba(255, 255, 255, 0.5); text-align: right; }

.reviews__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.review {
  margin: 0;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s, transform 0.3s;
}
.review:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-4px); }

.review blockquote {
  margin: 0.9rem 0 1.3rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.review blockquote::before { content: "«"; color: var(--gold); margin-right: 0.15rem; }
.review blockquote::after { content: "»"; color: var(--gold); margin-left: 0.15rem; }

.review figcaption {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.review figcaption span { color: rgba(255, 255, 255, 0.4); text-transform: none; letter-spacing: 0; }

/* ---------- pets ---------- */
.pets { padding: 6.5rem 1.6rem; background: #fff; }

.pets__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pets__text h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 1.4rem; }
.pets__text p { color: var(--ink-soft); }

.pets__list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.7rem; }
.pets__list li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); font-size: 0.95rem; }
.pets__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terra);
}

.pets__img { margin: 0; overflow: hidden; border-radius: 3px; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.pets__img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- visit ---------- */
.visit { padding: 6.5rem 1.6rem 7rem; }

.visit__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.visit__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2.2rem 2rem;
}
.visit__card h3 {
  font-size: 1.45rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.hours { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours th, .hours td { padding: 0.5rem 0; text-align: left; font-weight: 300; vertical-align: top; }
.hours th { color: var(--muted); font-family: var(--sans); width: 38%; }
.hours td { color: var(--ink); }
.hours .is-long td { color: var(--terra); }

.contact { margin: 0; }
.contact dt {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.1rem;
}
.contact dt:first-child { margin-top: 0; }
.contact dd { margin: 0.3rem 0 0; font-size: 0.95rem; }
.contact a { color: var(--terra); text-decoration: none; border-bottom: 1px solid rgba(156, 74, 47, 0.3); }
.contact a:hover { border-color: var(--terra); }

.visit__tip { margin: 1.3rem 0 0; font-size: 0.82rem; color: var(--muted); }

.map { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 3px; background: var(--stone-2); }
.map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- footer ---------- */
.footer { background: #221d18; color: rgba(255, 255, 255, 0.75); padding: 4.5rem 1.6rem 2rem; }

.footer__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand { display: flex; align-items: center; gap: 1rem; color: #fff; }
.footer__brand strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
.footer__brand p { margin: 0.2rem 0 0; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__cols h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 400;
}
.footer__cols p { font-size: 0.9rem; margin: 0; line-height: 1.9; }
.footer__cols a { text-decoration: none; transition: color 0.25s; }
.footer__cols a:hover { color: var(--gold); }

.footer__legal {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__legal p { margin: 0; }
.footer__demo { max-width: 46ch; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 12, 10, 0.94);
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.25s;
  display: grid;
  place-items: center;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.24); }

.lightbox__close {
  top: 1.4rem;
  right: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 4px;
}
.lightbox__nav--prev { left: 1.4rem; }
.lightbox__nav--next { right: 1.4rem; }

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

body.is-locked { overflow: hidden; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .strip__list { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .dishes__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .visit__grid { grid-template-columns: 1fr 1fr; }
  .visit__card--map { grid-column: span 2; }
  .carta__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .story__grid, .pets__inner { gap: 3rem; }
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }

  .nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(244, 239, 231, 0.985);
    backdrop-filter: blur(12px);
    padding: 5.6rem 1.6rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    max-height: 100svh;
    overflow-y: auto;
  }
  .nav__links.is-open { transform: none; }

  .nav__inner { position: relative; }
  .brand, .nav__toggle { position: relative; z-index: 1; }
  .nav.is-nav-open .brand { color: var(--ink); }
  .nav.is-nav-open .nav__toggle span { background: var(--ink); }
  .nav__links a {
    color: var(--ink);
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
  }
  .nav__links .btn { margin-top: 1.2rem; border-bottom: 0; justify-content: center; }
  .nav.is-stuck .nav__links a { color: var(--ink); }

  .story__grid, .pets__inner { grid-template-columns: 1fr; }
  .story__media { order: -1; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__card--map { grid-column: auto; }
  .reviews__score { grid-template-columns: 1fr; gap: 1.8rem; padding: 1.8rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 620px) {
  .hero { padding: 6rem 1.2rem 5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .strip__list { grid-template-columns: 1fr; }
  .dishes__grid, .reviews__grid { grid-template-columns: 1fr; }
  .carta__grid, .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  .story__facts { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 1.6rem; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lightbox__nav--prev { left: 0.6rem; }
  .lightbox__nav--next { right: 0.6rem; }
  .story, .dishes, .carta, .gallery, .reviews, .pets, .visit { padding-top: 4.5rem; padding-bottom: 4.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media img { animation: none; transform: none; }
  .hero__scroll span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
