:root {
  --black: #090706;
  --dark: #110d0b;
  --paper: #eadbc3;
  --paper-ink: #21150f;
  --cream: #f1e5d5;
  --gold: #c89b55;
  --red: #711613;
  --line: rgba(194, 145, 77, 0.55);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8vw;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: "PT Serif", serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

figure,
p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--paper);
  color: var(--paper-ink);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 32vw 1fr auto 19vw;
  align-items: center;
  height: 9.5vw;
  padding: 1.2vw 3.8vw 0.8vw 0.9vw;
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.52), transparent);
  color: var(--cream);
  transition:
    height 420ms cubic-bezier(0.21, 1, 0.36, 1),
    background-color 420ms ease,
    color 300ms ease,
    box-shadow 420ms ease,
    border-color 420ms ease,
    padding 420ms cubic-bezier(0.21, 1, 0.36, 1);
  animation: header-arrive 700ms 40ms both cubic-bezier(0.21, 1, 0.36, 1);
}

.site-header.is-scrolled {
  background: rgba(8, 6, 5, 0.32);
  backdrop-filter: blur(8px);
}

.site-header.is-past-hero {
  height: 7.6vw;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(8, 6, 5, 0.92);
  border-bottom: 1px solid rgba(200, 155, 85, 0.2);
  box-shadow: 0 1.2vw 2.5vw rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.site-header.is-past-hero.is-light-theme {
  color: #261912;
  background: rgba(234, 219, 195, 0.94);
  border-bottom-color: rgba(67, 42, 23, 0.22);
  box-shadow: 0 1vw 2.2vw rgba(68, 43, 23, 0.14);
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 0;
}

.brand-logo {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: translateX(3.9vw) scale(0.845);
  transform-origin: left center;
  transition:
    transform 420ms cubic-bezier(0.21, 1, 0.36, 1),
    filter 300ms ease;
}

.site-header.is-past-hero .brand-logo {
  transform: translateX(3.9vw) scale(0.7475);
}

.site-header.is-light-theme .brand-logo {
  filter: brightness(0.2) sepia(0.35);
}

.footer-logo {
  width: 11.05vw;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.7vw;
  font-family: "Oswald", sans-serif;
  font-size: 1.42vw;
  letter-spacing: 0.035em;
  transition:
    color 300ms ease,
    transform 420ms cubic-bezier(0.21, 1, 0.36, 1);
}

.site-nav a,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22em;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  min-height: 4.35vw;
  padding: 0.8vw 1.65vw;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  font-family: "Oswald", sans-serif;
  font-size: 1.42vw;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 400ms ease-in-out,
    border-color 400ms ease-in-out,
    color 400ms ease-in-out,
    box-shadow 400ms ease-in-out;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0) scale(0.985);
  filter: brightness(1.08);
  transition-duration: 80ms;
}

.button-solid:hover,
.button-solid:focus-visible {
  background: #5f110e;
  box-shadow: 0 0.8vw 1.6vw rgba(70, 9, 7, 0.28), inset 0 1px rgba(255, 255, 255, 0.1);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: #c69a57;
  background: rgba(155, 108, 55, 0.42);
  color: #fff5e7;
}

.button svg {
  width: 1.45em;
  height: 1.45em;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
}

.button-solid {
  border-color: rgba(203, 91, 75, 0.62);
  background: linear-gradient(180deg, rgba(140, 41, 35, 0.92), rgba(105, 19, 15, 0.94));
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.button-outline {
  background: rgba(10, 8, 6, 0.38);
  color: #d5ab6a;
  backdrop-filter: blur(4px);
}

.header-cta {
  justify-self: end;
  width: 16.2vw;
  min-height: 3.65vw;
  padding-inline: 1vw;
  font-size: 1.3vw;
  transition:
    transform 420ms cubic-bezier(0.21, 1, 0.36, 1),
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.lang-switcher {
  position: relative;
  justify-self: end;
  margin-left: 1.2vw;
}

.lang-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(16, 10, 6, 0.42);
  backdrop-filter: blur(12px);
  color: rgba(255, 244, 229, 0.76);
  font: inherit;
  font-size: 0.9vw;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.lang-switcher-trigger:hover,
.lang-switcher-trigger:focus-visible {
  transform: translateY(-1px);
  color: #fff7ea;
  border-color: rgba(255, 255, 255, 0.32);
}

.lang-switcher-trigger[aria-expanded="true"] {
  background: rgba(16, 10, 6, 0.65);
  border-color: rgba(244, 221, 182, 0.28);
  color: #fff7ea;
}

.lang-switcher-chevron {
  width: 0.7em;
  height: 0.7em;
  transition: transform 200ms ease;
}

.lang-switcher-trigger[aria-expanded="true"] .lang-switcher-chevron {
  transform: rotate(180deg);
}

.lang-switcher-dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 100%;
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.6rem;
  background: rgba(16, 10, 6, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.3rem) scale(0.97);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease;
  z-index: 30;
}

.lang-switcher-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-switcher-dropdown li {
  padding: 0.5rem 0.9rem;
  border-radius: 0.4rem;
  color: rgba(255, 244, 229, 0.76);
  font: inherit;
  font-size: 0.85vw;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    color 150ms ease;
}

.lang-switcher-dropdown li:hover,
.lang-switcher-dropdown li:focus-visible {
  background: rgba(244, 221, 182, 0.12);
  color: #fff7ea;
}

.lang-switcher-dropdown li.is-active {
  background: rgba(244, 221, 182, 0.18);
  color: #fff7ea;
  box-shadow: inset 0 0 0 1px rgba(244, 221, 182, 0.28);
}

.site-header.is-past-hero .site-nav,
.site-header.is-past-hero .header-cta,
.site-header.is-past-hero .lang-switcher {
  transform: translateY(-0.18vw);
}

.hero {
  position: relative;
  height: 62vw;
  min-height: 46rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-sticky {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1);
  transform-origin: center top;
  will-change: transform;
}

.hero-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-video {
  display: none;
}

.hero-backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.04) brightness(0.82);
  opacity: 1;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.035), transparent 1px),
    radial-gradient(circle at 68% 64%, rgba(0, 0, 0, 0.035), transparent 1px);
  background-size: 3px 3px, 4px 4px;
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
}

@media (min-width: 821px) {
  .hero-video,
  .hero-backdrop img {
    object-position: right bottom;
  }
}

.hero-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 2, 2, 0.88) 0%, rgba(3, 2, 2, 0.72) 28%, rgba(3, 2, 2, 0.28) 54%, transparent 76%),
    radial-gradient(
      ellipse 50% 65% at 0% 25%,
      rgba(4, 4, 3, 0.88) 0%,
      rgba(4, 4, 3, 0.74) 30%,
      rgba(4, 4, 3, 0.44) 54%,
      rgba(4, 4, 3, 0.12) 75%,
      transparent 100%
    ),
    linear-gradient(180deg, rgba(3, 2, 2, 0.2) 0%, transparent 30%, transparent 88%, rgba(3, 2, 2, 0.12));
  opacity: var(--hero-gradient-opacity, 1);
  pointer-events: none;
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 30%;
  top: 43%;
  width: 42%;
  height: 29%;
  background:
    radial-gradient(ellipse at 54% 62%, rgba(244, 221, 192, 0.28), transparent 45%),
    radial-gradient(ellipse at 35% 50%, rgba(244, 221, 192, 0.17), transparent 52%);
  filter: blur(2.3vw);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.hero-sticky::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 30%;
  top: 1%;
  width: 17vw;
  height: 23vw;
  background: radial-gradient(circle, rgba(231, 167, 81, 0.2), rgba(174, 105, 38, 0.07) 38%, transparent 72%);
  filter: blur(1.1vw);
  mix-blend-mode: screen;
  animation: lantern-breathe 5.4s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-backdrop img {
    opacity: 1;
  }
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding: 14vw 4.8vw 3vw;
}

.hero-copy {
  width: min(42vw, 38rem);
}

.hero-copy > * {
  animation: hero-copy-in 850ms both cubic-bezier(0.21, 1, 0.36, 1);
}

.hero-copy > :nth-child(1) {
  animation-delay: 80ms;
}

.hero-copy > :nth-child(2) {
  animation-delay: 180ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 280ms;
}

.hero h1,
.classics h2,
.encuentro h2,
.localizacion h2,
.closing-cta h2 {
  margin: 0;
  font-family: "PT Serif", serif;
  font-weight: 600;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 {
  position: relative;
  font-size: clamp(3.4rem, 4.45vw, 4.9rem);
  line-height: 1.07;
  letter-spacing: 0.005em;
  opacity: var(--hero-copy-opacity, 1) !important;
  transform: translate3d(0, var(--hero-copy-shift, 0), 0) !important;
  will-change: transform, opacity;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1::after,
.classics h2::after,
.closing-signature::after {
  content: "";
  display: block;
  width: 7.2vw;
  height: 0.18vw;
  margin-top: 0.75vw;
  background: linear-gradient(90deg, #d5aa61 0%, #9a692c 70%, transparent 100%);
  transform: rotate(-3deg);
}

.hero-text {
  width: min(34vw, 32rem);
  margin-top: 1.05vw;
  color: rgba(242, 230, 214, 0.92);
  font-size: clamp(1.05rem, 1.44vw, 1.42rem);
  line-height: 1.52;
  text-wrap: pretty;
  opacity: var(--hero-copy-opacity, 1) !important;
  transform: translate3d(0, var(--hero-copy-shift, 0), 0) !important;
  will-change: transform, opacity;
}

.hero-actions {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2vw;
  margin-top: 2.65vw;
}

.hero-actions .button {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  visibility: visible;
  opacity: 1;
}

/* Safari can hide transparent backdrop-filter layers over the hero media. */
.hero-actions .button-outline {
  background: rgba(17, 13, 11, 0.84);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.steam-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-divider {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 1.35vw;
  fill: #f3e6cf;
  pointer-events: none;
}

.proof-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 14.85vw;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055), rgba(89, 51, 20, 0.04)),
    var(--paper);
  color: var(--paper-ink);
  box-shadow: 0 -0.3vw 1.2vw rgba(0, 0, 0, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.proof {
  position: relative;
  display: grid;
  grid-template-columns: 4.2vw 1fr;
  align-items: start;
  gap: 1.15vw;
  padding: 3.5vw 2.6vw;
  transition: filter 260ms ease;
}

.proof > * {
  transition: transform 260ms ease, color 260ms ease;
}

.proof:hover {
  filter: brightness(1.025);
}

.proof:hover > * {
  transform: translateY(-1px);
}

.proof + .proof::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.4vw;
  bottom: 2.4vw;
  width: 1px;
  background: rgba(64, 38, 19, 0.26);
}

.proof-icon {
  width: 3.4vw;
  height: 3.4vw;
  fill: none;
  stroke: #24170f;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-icon--filled {
  fill: #24170f;
  stroke: none;
}

.proof strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.9vw;
  line-height: 0.96;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.proof p {
  margin-top: 1vw;
  color: rgba(33, 21, 15, 0.79);
  font-size: 1.15vw;
  line-height: 1.45;
}

.classics {
  display: grid;
  grid-template-columns: 25.4vw 1fr;
  gap: 0.75vw;
  min-height: 34vw;
  padding: 1.5vw 1.1vw;
  background:
    radial-gradient(circle at 13% 20%, rgba(160, 105, 45, 0.08), transparent 28%),
    #0d0a08;
  border-top: 1px solid rgba(201, 152, 82, 0.32);
  border-bottom: 1px solid rgba(201, 152, 82, 0.45);
}

.classics-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1vw 2.45vw;
}

.section-kicker {
  margin-bottom: 1.1vw;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 1.42vw;
  line-height: 1;
  letter-spacing: 0.055em;
}

.classics h2 {
  font-size: 2.8vw;
  line-height: 0.95;
}

.classics h2::after {
  width: 5.6vw;
  margin-top: 1.05vw;
}

.classics-copy > p:not(.section-kicker) {
  margin-top: 2vw;
  color: rgba(242, 230, 214, 0.82);
  font-size: 1.15vw;
  line-height: 1.55;
}

.classics-copy .button {
  align-self: flex-start;
  min-height: 3.8vw;
  margin-top: 2.1vw;
}

.classics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7vw;
  min-width: 0;
}

.dish-gallery {
  grid-column: 1 / -1;
  margin-top: 1.8vw;
  padding-top: 2vw;
  border-top: 1px solid rgba(201, 152, 82, 0.32);
}

.dish-gallery-heading {
  display: flex;
  align-items: baseline;
  gap: 1.2vw;
  margin-bottom: 1.15vw;
}

.dish-gallery-heading .section-kicker {
  margin: 0;
}

.dish-gallery-heading h3 {
  margin: 0;
  color: var(--cream);
  font-family: "PT Serif", serif;
  font-size: 1.8vw;
  line-height: 1;
}

.dish-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7vw;
  min-width: 0;
  counter-reset: dish-card;
}

.dish-card {
  position: relative;
  grid-template-rows: 17.7vw auto;
  align-content: start;
  isolation: isolate;
  counter-increment: dish-card;
  box-shadow: 0 0.6vw 1.5vw rgba(0, 0, 0, 0.16);
}

.dish-card::before {
  content: counter(dish-card, decimal-leading-zero);
  position: absolute;
  top: 0.85vw;
  left: 0.85vw;
  z-index: 3;
  display: grid;
  width: 2.1vw;
  height: 2.1vw;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(235, 205, 154, 0.72);
  background: rgba(18, 12, 8, 0.66);
  font-family: "Oswald", sans-serif;
  font-size: 0.72vw;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.dish-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 17.7vw;
  background:
    linear-gradient(180deg, rgba(8, 5, 3, 0.04) 20%, rgba(8, 5, 3, 0.12) 52%, rgba(8, 5, 3, 0.54) 100%),
    linear-gradient(115deg, rgba(231, 190, 116, 0.14), transparent 38%);
  pointer-events: none;
}

.dish-card img {
  display: block;
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  filter: saturate(0.92) contrast(1.05) brightness(0.94);
}

.dish-card .classic-card-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 44%),
    var(--paper);
}

.dish-card .classic-card-copy::before {
  content: "";
  width: 2.8rem;
  height: 2px;
  margin-bottom: 0.8vw;
  background: var(--gold);
}

.dish-card .classic-card-copy p {
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 0.82vw;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dish-gallery-grid .dish-card:nth-child(4n + 2),
.dish-gallery-grid .dish-card:nth-child(4n + 4) {
  margin-top: 0.75vw;
}

.dish-gallery-grid .dish-card:nth-child(4n + 4) {
  margin-top: 1.5vw;
}

@media (hover: hover) and (pointer: fine) {
  .classic-card.dish-card:hover {
    transform: translateY(-0.35vw);
    box-shadow: 0 1.2vw 2.4vw rgba(0, 0, 0, 0.3);
  }

  .classic-card.dish-card:hover img {
    filter: saturate(1.08) contrast(1.07) brightness(1.02);
    transform: scale(1.055);
  }
}

.classic-card {
  display: grid;
  grid-template-rows: 17.7vw auto;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045), rgba(91, 55, 25, 0.04)),
    var(--paper);
  color: var(--paper-ink);
  border: 1px solid rgba(205, 157, 91, 0.72);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    filter 280ms ease;
}

.classic-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.21, 1, 0.36, 1), filter 280ms ease;
}

.classic-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 1.3vw 2.4vw rgba(0, 0, 0, 0.28);
}

.classic-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.05) brightness(1.025);
}

.classic-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  padding: 1.35vw 1.25vw;
}

.classic-card h3 {
  margin: 0;
  font-family: "PT Serif", serif;
  font-size: 1.48vw;
  line-height: 1;
  text-transform: uppercase;
}

.classic-card p {
  margin-top: 0.75vw;
  color: rgba(33, 21, 15, 0.84);
  font-size: 0.98vw;
  line-height: 1.42;
}

.classic-card-price {
  display: block;
  margin-top: auto;
  padding-top: 1vw;
  color: var(--red);
  font-family: "Oswald", sans-serif;
  font-size: 0.82vw;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-section {
  padding: 5.2vw 4.8vw;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055), rgba(89, 51, 20, 0.04)),
    var(--paper);
  color: var(--paper-ink);
}

.menu-heading {
  display: grid;
  grid-template-columns: 38vw 1fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: 2.4vw;
}

.menu-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -3.8vw;
}

.menu-heading h2 {
  margin: 0;
  font-family: "PT Serif", serif;
  font-size: 3.2vw;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.menu-heading > p:not(.section-kicker) {
  color: rgba(33, 21, 15, 0.78);
  font-size: 1.15vw;
  line-height: 1.55;
}

.menu-heading > .button {
  align-self: start;
  justify-self: start;
  margin-top: -0.8vw;
}

.menu-group > p {
  margin: 0;
  padding: 0 1.5vw 1.5vw;
  color: rgba(33, 21, 15, 0.78);
  font-size: 1vw;
  line-height: 1.5;
}

.menu-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 1vw;
}

.menu-group {
  border: 1px solid rgba(117, 74, 35, 0.28);
  background: rgba(255, 252, 244, 0.7);
}

.menu-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5vw;
  min-height: 5.2vw;
  padding: 1.35vw 1.5vw;
}

.menu-group-heading span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2vw;
  line-height: 0.95;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.menu-group-heading small {
  display: block;
  margin-top: 0.35vw;
  color: rgba(33, 21, 15, 0.62);
  font-size: 0.92vw;
  line-height: 1.2;
}

.menu-list {
  margin: 0;
  padding: 0 1.5vw 1.4vw;
}

.menu-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2vw;
  padding: 0.72vw 0;
  border-top: 1px solid rgba(75, 46, 24, 0.14);
}

.menu-list dt,
.menu-list dd {
  margin: 0;
}

.menu-list dt {
  color: rgba(33, 21, 15, 0.9);
  font-size: 1vw;
  line-height: 1.32;
}

.menu-list dd {
  color: #2f1d13;
  font-family: "Oswald", sans-serif;
  font-size: 1.2vw;
  line-height: 1.1;
  white-space: nowrap;
}

.menu-list .is-unavailable dt,
.menu-list .is-unavailable dd {
  color: rgba(33, 21, 15, 0.45);
  text-decoration: line-through;
}

.menu-note {
  margin-top: 1.3vw;
  color: rgba(33, 21, 15, 0.68);
  font-size: 0.95vw;
  line-height: 1.45;
}

.local-guide {
  padding: clamp(5.5rem, 8vw, 9rem) 6vw clamp(6rem, 9vw, 10rem);
  background:
    radial-gradient(circle at 82% 12%, rgba(158, 89, 38, 0.08), transparent 28%),
    #f3e6cf;
  color: var(--paper-ink);
  border-top: 1px solid rgba(117, 74, 35, 0.22);
}

.local-guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.68fr);
  gap: 2.4rem 7vw;
  align-items: end;
}

.local-guide-intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.local-guide-intro h2,
.faq-block h3 {
  margin: 0;
  font-family: "PT Serif", serif;
  font-weight: 600;
  text-transform: uppercase;
  text-wrap: balance;
}

.local-guide-intro h2 {
  font-size: clamp(2.8rem, 4.2vw, 5.1rem);
  line-height: 0.98;
}

.local-guide-intro > p {
  max-width: 33rem;
  margin: 0;
  color: rgba(33, 21, 15, 0.78);
  font-size: clamp(1rem, 1.18vw, 1.35rem);
  line-height: 1.75;
}

.local-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  margin-top: clamp(4rem, 6.5vw, 7rem);
  counter-reset: local-guide-card;
}

.local-guide-card {
  position: relative;
  min-height: 17rem;
  padding: 1.5rem 1.25rem 0 0;
  border-top: 1px solid rgba(117, 74, 35, 0.42);
  counter-increment: local-guide-card;
}

.local-guide-card::before {
  content: "0" counter(local-guide-card);
  display: block;
  margin-bottom: 2rem;
  color: rgba(117, 74, 35, 0.72);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.local-guide-card h3 {
  max-width: 17rem;
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.faq-list h4 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.local-guide-card p,
.faq-list p {
  color: rgba(33, 21, 15, 0.78);
  line-height: 1.5;
}

.local-guide-card p {
  max-width: 25rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 1.05vw, 1.2rem);
  line-height: 1.72;
}

.faq-block {
  margin-top: clamp(5rem, 8vw, 9rem);
  padding: clamp(2rem, 3vw, 3.5rem) 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(117, 74, 35, 0.35);
}

.faq-block h3 {
  font-size: clamp(2rem, 2.6vw, 3.2rem);
  line-height: 1;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5vw;
  margin-top: 2.5rem;
}

.faq-list article {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(75, 46, 24, 0.16);
}

.faq-list h4 {
  font-size: clamp(1rem, 1.15vw, 1.25rem);
  line-height: 1.08;
}

.faq-list p {
  margin-top: 0.65vw;
  font-size: clamp(0.95rem, 1vw, 1.15rem);
  line-height: 1.65;
}

.encuentro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.82fr) minmax(0, 0.78fr);
  min-height: clamp(30rem, 34vw, 38rem);
  align-items: stretch;
  background: #100c0a;
  border-bottom: 1px solid rgba(201, 152, 82, 0.35);
}

.encuentro-media,
.encuentro-accent,
.localizacion-photo,
.map-panel {
  min-height: 100%;
  overflow: hidden;
}

.encuentro-media img,
.encuentro-accent img,
.encuentro-accent video,
.localizacion-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.encuentro-media img {
  object-position: 50% 54%;
  transform: translate3d(0, var(--interior-shift, 0), 0) scale(1.02);
  will-change: transform;
}

.encuentro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 2.5vw 3vw;
  background:
    radial-gradient(circle at 10% 50%, rgba(179, 111, 48, 0.08), transparent 40%),
    #110d0b;
}

.encuentro h2 {
  font-size: 2.08vw;
  line-height: 0.96;
  white-space: normal;
}

.encuentro-copy > p:not(.section-kicker) {
  width: 100%;
  max-width: 26rem;
  margin-top: 2vw;
  color: rgba(242, 230, 214, 0.84);
  font-size: 1.07vw;
  line-height: 1.55;
}

.script-note,
.closing-signature {
  color: var(--gold);
  font-family: "Great Vibes", cursive;
}

.script-note {
  margin-top: 1.7vw;
  font-size: 2.15vw;
  line-height: 1;
}

.encuentro-accent {
  position: relative;
  overflow: hidden;
}

.encuentro-video-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.encuentro-accent img {
  object-position: 92% center;
  transform: translate3d(0, var(--sidra-shift, 0), 0) scale(1.045);
  will-change: transform;
}

.encuentro-accent-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  transform: translate3d(0, var(--sidra-shift, 0), 0) scale(1.015);
  will-change: transform;
  filter: saturate(1.02) contrast(1.04) brightness(0.96);
  opacity: 0;
  transition: none;
}

.encuentro-accent-video.is-front {
  opacity: 1;
}

.encuentro-accent-video.is-back {
  z-index: 0;
}

.localizacion {
  display: grid;
  grid-template-columns: minmax(22rem, 0.92fr) minmax(0, 0.88fr) minmax(0, 1fr);
  min-height: 23.6vw;
  align-items: stretch;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05), rgba(92, 50, 17, 0.04)),
    var(--paper);
  color: var(--paper-ink);
}

.localizacion-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 2.4vw 4.2vw;
}

.localizacion-copy .section-kicker {
  display: none;
}

.localizacion h2 {
  font-size: 2.35vw;
  line-height: 1;
}

.localizacion-copy > p {
  margin-top: 1.35vw;
  font-size: 1.05vw;
  line-height: 1.52;
}

.localizacion-copy address {
  position: relative;
  margin-top: 1.8vw;
  padding-left: 2.1vw;
  font-size: 1.05vw;
  font-style: normal;
  line-height: 1.45;
}

.localizacion-copy address::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05vw;
  width: 1.25vw;
  height: 1.65vw;
  background: var(--paper-ink);
  clip-path: polygon(50% 100%, 10% 43%, 10% 25%, 25% 7%, 50% 0, 75% 7%, 90% 25%, 90% 43%);
}

.localizacion-copy .button {
  align-self: flex-start;
  min-height: 3.6vw;
  margin-top: 1.8vw;
  color: #5b3b20;
  background: transparent;
  border-color: rgba(107, 72, 39, 0.48);
}

.localizacion-photo img {
  object-position: center center;
}

.map-panel {
  position: relative;
  overflow: hidden;
  background: #d8c49c;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(0.45) saturate(0.72) contrast(1.05) brightness(0.94);
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 42%, transparent 0 26%, rgba(106, 58, 25, 0.12) 58%, rgba(35, 21, 13, 0.3) 100%),
    linear-gradient(rgba(255, 224, 163, 0.1), rgba(99, 55, 24, 0.12));
  pointer-events: none;
}

.hours-info {
  margin-top: 1.5vw;
  padding: 1.2vw;
  background: rgba(255, 252, 244, 0.6);
  border: 1px solid rgba(117, 74, 35, 0.24);
}

.hours-info p {
  margin: 0.3vw 0;
  font-size: 0.95vw;
  line-height: 1.4;
}

.hours-info strong {
  color: var(--paper-ink);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.reviews-section {
  padding: 5vw 4.8vw;
  background:
    radial-gradient(circle at 20% 80%, rgba(160, 105, 45, 0.08), transparent 28%),
    #0d0a08;
  border-top: 1px solid rgba(201, 152, 82, 0.32);
}

.reviews-heading {
  text-align: center;
  margin-bottom: 3vw;
}

.reviews-heading h2 {
  margin: 0;
  font-family: "PT Serif", serif;
  font-weight: 600;
  font-size: 3.2vw;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5vw;
}

.review-card {
  padding: 2vw;
  background: rgba(255, 252, 244, 0.06);
  border: 1px solid rgba(201, 152, 82, 0.25);
}

.review-stars {
  color: var(--gold);
  font-size: 1.5vw;
  letter-spacing: 0.1em;
}

.review-text {
  margin-top: 1.2vw;
  color: rgba(242, 230, 214, 0.88);
  font-size: 1.05vw;
  line-height: 1.55;
  font-style: italic;
}

.review-author {
  margin-top: 1.5vw;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 1.1vw;
  letter-spacing: 0.025em;
}

.closing-cta {
  display: grid;
  grid-template-columns: 30vw 42vw 1fr;
  align-items: center;
  min-height: 14.5vw;
  padding: 1.8vw 4.8vw;
  background:
    radial-gradient(circle at 50% 30%, rgba(201, 107, 73, 0.14), transparent 38%),
    linear-gradient(90deg, #641411, #741916 52%, #58110f);
  border-top: 1px solid rgba(207, 146, 78, 0.28);
}

.closing-copy h2 {
  font-size: 2.7vw;
  line-height: 0.95;
}

.closing-copy p {
  margin-top: 1.5vw;
  color: rgba(242, 230, 214, 0.82);
  font-size: 1.02vw;
}

.closing-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9vw;
}

.phone-line {
  display: flex;
  align-items: center;
  gap: 2.2vw;
}

.phone-line svg {
  width: 4.7vw;
  height: 4.7vw;
  padding: 1.2vw;
  fill: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.phone-number {
  color: #d8aa62;
  font-family: "PT Serif", serif;
  font-size: 4.9vw;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.025em;
}

.button-ghost {
  width: 20vw;
  min-height: 3.2vw;
}

.closing-signature {
  justify-self: end;
  font-size: 2.4vw;
  line-height: 0.93;
  text-align: center;
  transform: rotate(-2deg);
}

.closing-signature::after {
  width: 7vw;
  margin: 0.9vw auto 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 29vw 1fr 25vw;
  align-items: center;
  min-height: 7.8vw;
  padding: 0.7vw 4.7vw;
  background: #090706;
}

.footer-meta {
  position: relative;
  padding-left: 2.4vw;
  color: rgba(242, 230, 214, 0.8);
  font-size: 0.98vw;
  line-height: 1.35;
}

.footer-meta p {
  margin: 0.12vw 0;
}

.footer-meta p a {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}

.footer-meta::before {
  content: "⌖";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.7vw;
}

.footer-links {
  justify-self: center;
  display: grid;
  gap: 0.45vw;
  font-family: "PT Serif", serif;
  font-size: 0.98vw;
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  padding: 0.5vw 0 0.3vw;
  color: rgba(242, 230, 214, 0.5);
  font-size: 0.82vw;
  font-family: "PT Serif", serif;
}

.footer-social-icons,
.location-contact-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.footer-social-icons a,
.location-contact-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 230, 214, 0.7);
  transition: color 200ms ease, transform 200ms ease;
}

.footer-social-icons a:hover,
.footer-social-icons a:focus-visible,
.location-contact-icons a:hover,
.location-contact-icons a:focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
}

.location-contact-icons {
  margin-top: 1rem;
  gap: 1rem;
}

.location-contact-icons a {
  color: rgba(33, 21, 15, 0.7);
}

body.legal .location-contact-icons a {
  color: rgba(33, 21, 15, 0.7);
}

body.legal .location-contact-icons a:hover {
  color: var(--gold);
}

.legal-page {
  max-width: 52rem;
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}

.legal-page h1 {
  font-family: "PT Serif", serif;
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0 0 2rem;
}

.legal-page h2 {
  font-family: "PT Serif", serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  margin: 2rem 0 0.8rem;
}

.legal-page h3 {
  font-family: "PT Serif", serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  margin: 1.5rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  font-family: "PT Serif", serif;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.7;
  margin: 0.6rem 0;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.legal-page li {
  margin: 0.3rem 0;
}

body.legal {
  background: var(--paper);
  color: var(--paper-ink);
}

body.legal .site-header.is-past-hero.is-light-theme {
  color: #261912;
  background: rgba(234, 219, 195, 0.94);
  border-bottom-color: rgba(67, 42, 23, 0.22);
  box-shadow: 0 1vw 2.2vw rgba(68, 43, 23, 0.14);
}

body.legal .brand-logo {
  filter: brightness(0.2) sepia(0.35);
}

body.legal .site-nav {
  color: #261912;
}

body.legal .site-nav a {
  color: #261912;
}

body.legal .site-nav a::after {
  background: #261912;
}

body.legal .menu-toggle {
  color: #261912;
  border-color: rgba(67, 42, 23, 0.4);
  background: rgba(234, 219, 195, 0.65);
}

body.legal .legal-page h1 {
  color: var(--paper-ink);
}

body.legal .legal-page h2 {
  color: var(--paper-ink);
}

body.legal .legal-page h3 {
  color: var(--paper-ink);
}

body.legal .legal-page p,
body.legal .legal-page li {
  color: rgba(33, 21, 15, 0.85);
}

body.legal .site-footer {
  background: var(--black);
}

body.legal .footer-copy {
  color: rgba(242, 230, 214, 0.5);
}

.mobile-bar {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity 800ms var(--delay, 0ms) cubic-bezier(0.21, 1, 0.36, 1),
    transform 800ms var(--delay, 0ms) cubic-bezier(0.21, 1, 0.36, 1);
  will-change: opacity, transform;
}

.motion-ready .reveal.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes header-arrive {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 1;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lantern-breathe {
  from {
    opacity: 0.72;
    transform: scale(1);
  }
  to {
    opacity: 0.92;
    transform: scale(1.02);
  }
}

:focus-visible {
  outline: 2px solid #e4bc77;
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .encuentro,
  .localizacion {
    grid-template-columns: 1fr 1fr;
  }

  .encuentro-copy,
  .localizacion-copy {
    grid-column: 1 / -1;
    order: -1;
    padding: 2.4rem 2rem;
  }

  .encuentro-media,
  .encuentro-accent,
  .localizacion-photo,
  .map-panel {
    min-height: 24rem;
  }

  .encuentro h2,
  .localizacion h2 {
    font-size: 2.5rem;
  }

  .encuentro-copy > p:not(.section-kicker),
  .localizacion-copy > p {
    max-width: none;
    font-size: 1rem;
  }

  .script-note {
    margin-top: 1.1rem;
    font-size: 2rem;
  }

  .localizacion-copy address {
    margin-top: 1.2rem;
    font-size: 1rem;
  }

  .localizacion-copy .button {
    min-height: 3.25rem;
    margin-top: 1.2rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 5.5rem;
  }

  .site-header {
    position: absolute;
    grid-template-columns: minmax(0, 1fr) auto auto;
    column-gap: 0.55rem;
    height: 5.5rem;
    padding: 0.55rem 1rem;
  }

  .site-header.is-past-hero {
    height: 5.5rem;
    padding: 0.55rem 1rem;
  }

  .brand-logo {
    width: 10.5rem;
    height: auto;
    transform: none;
  }

  .site-header.is-past-hero .brand-logo {
    width: 10.5rem;
    height: auto;
    transform: none;
  }

  .brand {
    height: auto;
    min-width: 0;
    overflow: hidden;
  }

  .site-header.is-scrolled {
    height: 5.5rem;
    padding: 0.55rem 1rem;
  }

  .site-header.is-scrolled .brand-logo {
    width: 10.5rem;
    height: auto;
    transform: none;
  }

  .site-header.is-scrolled .site-nav,
  .site-header.is-scrolled .header-cta,
  .site-header.is-scrolled .lang-switcher {
    transform: none;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    border: 1px solid rgba(213, 171, 106, 0.55);
    border-radius: 0;
    background: rgba(8, 6, 5, 0.65);
    color: var(--cream);
    padding: 0.65rem 0.85rem;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.06em;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 5.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(8, 6, 5, 0.96);
    font-size: 1.15rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .lang-switcher {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
  }

  .lang-switcher-trigger {
    font-size: 0.72rem;
    padding: 0.4rem 0.6rem;
  }

  .lang-switcher-dropdown li {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
  }

  .hero {
    height: 100svh;
    min-height: 0;
    overflow: clip;
  }

  .hero-sticky {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100svh;
  }

  .hero-backdrop img {
    object-position: 60% center;
  }

  .steam-field {
    display: none;
  }

  .hero-sticky::after {
    background:
      linear-gradient(180deg, rgba(4, 3, 3, 0.36), rgba(4, 3, 3, 0.08) 28%, rgba(4, 3, 3, 0.94) 74%),
      linear-gradient(90deg, rgba(4, 3, 3, 0.62), transparent 78%);
  }

  .hero-inner {
    align-items: flex-start;
    padding: 10rem 1.1rem 0;
  }

  .hero-copy {
    width: 100%;
    max-width: 19rem;
  }

  .hero-copy > * {
    animation: none;
  }

  .hero h1 {
    max-width: 18rem;
    font-size: clamp(2.15rem, 9.4vw, 3.05rem);
    line-height: 1;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero h1::after {
    width: 5rem;
    height: 2px;
    margin-top: 0.7rem;
  }

  .hero-text {
    width: 100%;
    max-width: 18.5rem;
    margin-top: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.2rem;
    width: 100%;
    max-width: 17rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button {
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .button svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .proof-strip,
  .classics,
  .encuentro,
  .localizacion,
  .closing-cta,
  .site-footer {
    height: auto;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .proof {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    min-height: 8rem;
    padding: 1.6rem 1.25rem;
  }

  .proof + .proof::before {
    top: 0;
    right: 1.25rem;
    bottom: auto;
    left: 1.25rem;
    width: auto;
    height: 1px;
  }

  .proof-icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .proof strong {
    font-size: 1.35rem;
  }

  .proof p {
    margin-top: 0.4rem;
    font-size: 0.95rem;
  }

  .classics,
  .encuentro,
  .localizacion,
  .closing-cta,
  .site-footer {
    grid-template-columns: minmax(0, 1fr);
  }

  .classics {
    gap: 0.7rem;
    padding: 1rem;
  }

  .classics-copy {
    min-width: 0;
    padding: 2rem 1rem;
  }

  .section-kicker {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .classics h2,
  .encuentro h2,
  .localizacion h2,
  .closing-copy h2,
  .menu-heading h2,
  .local-guide-intro h2,
  .reviews-heading h2,
  .faq-block h3 {
    overflow-wrap: anywhere;
    font-size: 2.6rem;
    line-height: 1.02;
  }

  .classics-copy > p:not(.section-kicker),
  .encuentro-copy > p:not(.section-kicker),
  .localizacion-copy > p,
  .closing-copy p,
  .footer-meta {
    font-size: 0.95rem;
  }

  .classics-grid {
    grid-template-columns: 1fr;
    min-width: 0;
    gap: 0.8rem;
  }

  .dish-gallery {
    margin-top: 1rem;
    padding-top: 1.5rem;
  }

  .dish-gallery-heading {
    display: block;
    margin-bottom: 1rem;
  }

  .dish-gallery-heading h3 {
    margin-top: 0.45rem;
    font-size: 1.65rem;
  }

  .dish-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .dish-card::before {
    top: 0.9rem;
    left: 0.9rem;
    width: 2.2rem;
    height: 2.2rem;
    font-size: 0.78rem;
  }

  .dish-card::after {
    height: 14rem;
  }

  .dish-card .classic-card-copy::before {
    margin-bottom: 0.55rem;
  }

  .dish-card .classic-card-copy p {
    font-size: 0.82rem;
  }

  .dish-gallery-grid .dish-card:nth-child(4n + 2),
  .dish-gallery-grid .dish-card:nth-child(4n + 4) {
    margin-top: 0;
  }

  .classic-card {
    grid-template-rows: 14rem auto;
  }

  .classic-card-copy {
    min-height: 0;
    padding: 1rem;
  }

  .classic-card h3 {
    font-size: 1.45rem;
    line-height: 1.05;
  }

  .classic-card p {
    margin-top: 0.5rem;
    font-size: 0.93rem;
    line-height: 1.45;
  }

  .classic-card-price {
    padding-top: 0.85rem;
    font-size: 0.82rem;
  }

  .menu-section {
    padding: 3rem 1rem;
  }

  .menu-heading,
  .menu-groups {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }

  .menu-heading {
    gap: 1rem;
    margin-bottom: 1.4rem;
  }

  .menu-heading h2 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .menu-heading > p:not(.section-kicker),
  .menu-note {
    font-size: 0.95rem;
  }

  .menu-heading > .button {
    margin-top: 0;
  }

  .menu-groups {
    gap: 0.75rem;
  }

  .menu-group-heading {
    min-height: 4.6rem;
    padding: 1rem;
  }

  .menu-group-heading span {
    font-size: 1.55rem;
    line-height: 1.02;
  }

  .menu-group-heading small {
    margin-top: 0.25rem;
    font-size: 0.82rem;
  }

  .menu-group > p {
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
  }

  .menu-list {
    padding: 0 1rem 1rem;
  }

  .menu-list > div {
    gap: 1rem;
    padding: 0.75rem 0;
  }

  .menu-list dt {
    font-size: 0.95rem;
  }

  .menu-list dd {
    font-size: 1.05rem;
  }

  .local-guide {
    padding: 4.5rem 1.25rem 5.5rem;
  }

  .local-guide-intro,
  .local-guide-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .local-guide-intro {
    gap: 1.4rem;
  }

  .local-guide-intro .section-kicker {
    margin-bottom: 0;
  }

  .local-guide-intro h2 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .local-guide-intro > p,
  .local-guide-card p,
  .faq-list p {
    font-size: 0.95rem;
  }

  .local-guide-grid {
    gap: 2.75rem;
    margin-top: 3.5rem;
  }

  .local-guide-card {
    min-height: 0;
    padding: 1.25rem 0 0;
  }

  .local-guide-card::before {
    margin-bottom: 1.25rem;
  }

  .local-guide-card h3 {
    font-size: 1.45rem;
    line-height: 1.05;
  }

  .local-guide-card p {
    margin-top: 1rem;
    line-height: 1.72;
  }

  .faq-block {
    margin-top: 4.75rem;
    padding: 2rem 0 0;
  }

  .faq-block h3 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .faq-list {
    gap: 1.4rem;
    margin-top: 1.75rem;
  }

  .faq-list article {
    padding-top: 1rem;
  }

  .faq-list h4 {
    font-size: 1.15rem;
    line-height: 1.1;
  }

  .encuentro-media,
  .encuentro-accent,
  .localizacion-photo,
  .map-panel {
    min-height: 29rem;
  }

  .encuentro-copy,
  .localizacion-copy,
  .closing-copy {
    order: -1;
    padding: 2.4rem 1.25rem;
  }

  .closing-copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 8.7vw, 2.6rem);
    line-height: 1;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .encuentro h2 {
    white-space: normal;
  }

  .encuentro-copy > p:not(.section-kicker) {
    width: 100%;
    margin-top: 1.2rem;
  }

  .script-note {
    margin-top: 1.2rem;
    font-size: 2rem;
    line-height: 1.02;
  }

  .localizacion-copy address {
    margin-top: 1.2rem;
    padding-left: 1.8rem;
    font-size: 0.95rem;
  }

  .localizacion-copy address::before {
    width: 1rem;
    height: 1.35rem;
  }

  .closing-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.75rem;
    padding: 4rem 1.25rem 4.5rem;
  }

  .closing-copy {
    width: 100%;
    padding: 0;
  }

  .closing-copy p {
    max-width: 22rem;
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 1.62;
  }

  .closing-phone {
    width: 100%;
    align-items: stretch;
    gap: 1.15rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(207, 146, 78, 0.35);
  }

  .phone-line {
    gap: 0.8rem;
    align-self: center;
  }

  .phone-line svg {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.9rem;
  }

  .phone-number {
    font-family: "Oswald", sans-serif;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .button-ghost {
    width: 100%;
  }

  .closing-signature {
    align-self: flex-start;
    justify-self: auto;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(207, 146, 78, 0.35);
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.03;
    text-align: left;
  }

  .closing-signature::after {
    width: 4rem;
    margin: 0.8rem 0 0;
  }

  .reviews-section {
    padding: 3rem 1rem;
  }

  .reviews-heading h2 {
    font-size: 2.6rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-stars {
    font-size: 1.2rem;
  }

  .review-text {
    font-size: 0.95rem;
  }

  .review-author {
    font-size: 1rem;
    line-height: 1.08;
  }

  .hours-info {
    margin-top: 1rem;
    padding: 0.8rem;
  }

  .hours-info p {
    font-size: 0.9rem;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
    padding: 2rem 1.25rem 7.5rem;
  }

  .footer-logo {
    width: 7.8rem;
  }

  .footer-meta {
    padding-left: 0;
  }

  .footer-meta p,
  .footer-meta a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-meta::before {
    display: none;
  }

  .footer-links {
    justify-self: start;
    gap: 0.45rem;
    font-size: 0.95rem;
  }

  .footer-copy {
    font-size: 0.8rem;
  }

  .legal-page {
    padding: 6rem 1.25rem 4rem;
  }

  .mobile-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    background: rgba(8, 6, 5, 0.97);
    border-top: 1px solid rgba(200, 155, 85, 0.36);
  }

  .mobile-bar a {
    min-width: 0;
    width: 100%;
    min-height: 44px;
    padding: 0.7rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: clamp(0.84rem, 3.4vw, 0.98rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
    overflow-wrap: anywhere;
  }

  .mobile-bar a + a {
    border-left: 1px solid rgba(200, 155, 85, 0.3);
  }
}

/* Editorial modules used only by the indexable content pages. */
.content-page-utility {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 7.6vw));
  margin: 0 auto;
  border-right: 1px solid rgba(79, 48, 25, 0.22);
  border-left: 1px solid rgba(79, 48, 25, 0.22);
  background: rgba(255, 252, 244, 0.28);
}

.content-page-utility span {
  min-width: 0;
  padding: 1.05rem 1.25rem;
  border-right: 1px solid rgba(79, 48, 25, 0.22);
  color: #6e431e;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.content-page-utility span:last-child {
  border-right: 0;
}

.content-page-menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(79, 48, 25, 0.24);
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.content-page-menu-jump a {
  color: #6e431e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.content-page-menu-jump a:hover,
.content-page-menu-jump a:focus-visible {
  color: var(--red);
}

.content-page-featured-dishes {
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.content-page-dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.content-page-dish-card {
  min-width: 0;
  border-top: 2px solid var(--gold);
  background: rgba(255, 252, 244, 0.34);
}

.content-page-dish-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-page-dish-card > div {
  padding: 1.2rem 1.15rem 1.4rem;
}

.content-page-dish-card h3 {
  margin: 0;
}

.content-page-dish-card p {
  margin-top: 0.7rem;
}

.content-page-body .content-page-content--quiet {
  background: rgba(255, 252, 244, 0.2);
}

.content-page-body .site-footer {
  color: var(--cream);
}

.content-page-body .site-footer .footer-links,
.content-page-body .site-footer .footer-links a {
  color: rgba(242, 230, 214, 0.82);
}

.content-page-band .content-page-facts div {
  border-color: rgba(200, 155, 85, 0.3);
}

.content-page-band .content-page-facts dt,
.content-page-band .content-page-related a {
  color: var(--gold);
}

.content-page-band .content-page-facts a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.content-page-band .content-page-related a:hover,
.content-page-band .content-page-related a:focus-visible,
.content-page-band .content-page-facts a:hover,
.content-page-band .content-page-facts a:focus-visible {
  color: #fff7ea;
}

@media (max-width: 820px) {
  .content-page-utility {
    grid-template-columns: 1fr;
    width: min(100% - 2.5rem, 42rem);
  }

  .content-page-utility span,
  .content-page-utility span:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(79, 48, 25, 0.22);
  }

  .content-page-utility span:last-child {
    border-bottom: 0;
  }

  .content-page-menu-jump {
    gap: 0.8rem 1rem;
  }

  .content-page-dish-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-page-dish-card {
    display: grid;
    grid-template-columns: minmax(7.5rem, 0.8fr) minmax(0, 1.2fr);
  }

  .content-page-dish-card img {
    height: 100%;
    min-height: 10rem;
  }

  .content-page-dish-card > div {
    align-self: center;
    padding: 1rem;
  }
}

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

  .classic-card {
    grid-template-rows: 64vw auto;
  }

  .dish-card::after {
    height: 64vw;
  }
}

@media (max-width: 820px) and (max-height: 700px) {
  .hero-inner {
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
  }

  .hero-text {
    margin-top: 0.7rem;
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .hero-actions {
    gap: 0.5rem;
    margin-top: 0.9rem;
  }

  .hero-actions .button {
    min-height: 2.9rem;
    padding: 0.6rem 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .site-header,
  .hero-copy > *,
  .hero-sticky::before {
    animation: none !important;
  }

  .hero-backdrop {
    transform: scale(1.025) !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Indexable content pages share the restaurant's visual system without relying on the homepage scroll state. */
.content-page-body {
  min-width: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--paper-ink);
}

.content-page-site-header {
  position: fixed;
  background: rgba(8, 6, 5, 0.96);
  color: var(--cream);
}

.content-page-main {
  padding-top: 7.6vw;
}

.content-page-hero {
  background:
    linear-gradient(90deg, rgba(9, 7, 6, 0.96), rgba(28, 17, 11, 0.84)),
    url("./assets/restaurant-interior-hero.png") center / cover;
  color: var(--cream);
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 7rem);
}

.content-page-body[data-content-page="carta"] .content-page-hero {
  background-image: linear-gradient(90deg, rgba(9, 7, 6, 0.96), rgba(28, 17, 11, 0.62)), url("./assets/editorial-menu-spread.webp");
}

.content-page-body[data-content-page="especialidades"] .content-page-hero {
  background-image: linear-gradient(90deg, rgba(9, 7, 6, 0.95), rgba(28, 17, 11, 0.6)), url("./assets/editorial-hot-stone-steak.webp");
}

.content-page-body[data-content-page="menu-del-dia"] .content-page-hero {
  background-image: linear-gradient(90deg, rgba(9, 7, 6, 0.95), rgba(28, 17, 11, 0.62)), url("./assets/editorial-cider-table.webp");
}

.content-page-body[data-content-page="donde-comer-en-gijon"] .content-page-hero {
  background-image: linear-gradient(90deg, rgba(9, 7, 6, 0.89), rgba(28, 17, 11, 0.46)), url("./assets/source-terrace-clean-v2.webp");
}

.content-page-body[data-content-page="reservas"] .content-page-hero {
  background-image: linear-gradient(90deg, rgba(9, 7, 6, 0.92), rgba(28, 17, 11, 0.5)), url("./assets/sidra-pour.webp");
}

.content-page-shell {
  width: min(1180px, calc(100% - 7.6vw));
  margin: 0 auto;
}

.content-page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  margin-bottom: 2rem;
  color: rgba(242, 230, 214, 0.7);
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-page-breadcrumbs a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.content-page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: "PT Serif", serif;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 0.98;
  text-transform: uppercase;
}

.content-page-lead {
  max-width: 45rem;
  margin-top: 1.5rem;
  color: rgba(242, 230, 214, 0.9);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.6;
}

.content-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.content-page-anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(242, 230, 214, 0.28);
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.content-page-anchor-links a {
  color: rgba(242, 230, 214, 0.82);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.content-page-anchor-links a:hover,
.content-page-anchor-links a:focus-visible {
  color: #fff7ea;
}

.content-page-content {
  scroll-margin-top: 5rem;
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.content-page-content + .content-page-content,
.content-page-band + .content-page-band {
  border-top: 1px solid rgba(79, 48, 25, 0.2);
}

.content-page-content h2,
.content-page-band h2 {
  max-width: 42rem;
  margin: 0;
  font-family: "PT Serif", serif;
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.content-page-content h3,
.content-page-band h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.3rem, 1.7vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

.content-page-content p,
.content-page-band p,
.content-page-content li,
.content-page-band li {
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-page-intro {
  max-width: 48rem;
  margin-top: 1.2rem;
}

.content-page-feature-media {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.65fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
}

.content-page-feature-media--portrait {
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.3fr);
}

.content-page-feature-media figure {
  margin: 0;
}

.content-page-feature-media img {
  display: block;
  width: 100%;
  max-height: 34rem;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.content-page-feature-media--portrait img {
  max-height: 38rem;
  aspect-ratio: 4 / 5;
}

.content-page-feature-media figcaption {
  max-width: 28rem;
  margin-top: 0.8rem;
  color: var(--paper-ink);
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.content-page-band .content-page-feature-media figcaption {
  color: var(--paper-ink);
}

.content-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
  margin-top: 3.2rem;
}

.content-page-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-page-grid article {
  min-width: 0;
  padding-top: 1.2rem;
  border-top: 2px solid var(--gold);
}

.content-page-grid article p {
  margin-top: 0.75rem;
}

.content-page-band {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  background: var(--dark);
  color: var(--cream);
}

.content-page-menu-band {
  padding-top: 0;
  background: var(--paper);
  color: var(--paper-ink);
}

.content-page-band .content-page-kicker,
.content-page-kicker {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-page-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.content-page-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(200, 155, 85, 0.25);
}

.content-page-list strong {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.content-page-list span {
  flex: 0 0 auto;
  color: var(--gold);
  white-space: nowrap;
}

.content-page-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 3rem;
  max-width: 52rem;
  margin-top: 2rem;
}

.content-page-facts div {
  padding: 1rem 0;
  border-top: 1px solid rgba(79, 48, 25, 0.25);
}

.content-page-facts dt {
  color: #6e431e;
  font-family: "Oswald", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-page-facts dd {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.content-page-callout {
  margin-top: 2.5rem;
  padding: 1.5rem 1.6rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.25);
}

.content-page-callout p {
  margin: 0;
}

.content-page-table-wrap {
  width: 100%;
  margin-top: 2rem;
  overflow-x: auto;
}

.content-page-price-table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  font-size: 0.98rem;
  line-height: 1.5;
}

.content-page-price-table caption {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.content-page-price-table th,
.content-page-price-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(200, 155, 85, 0.3);
  text-align: left;
  vertical-align: top;
}

.content-page-price-table th {
  color: var(--gold);
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.content-page-price-table td:last-child {
  color: var(--gold);
  white-space: nowrap;
}

.content-page-price-table tr:last-child td {
  border-bottom: 0;
}

.content-page-menu-section + .content-page-menu-section {
  margin-top: 3.5rem;
}

.content-page-menu-section h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.8rem);
}

.content-page-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin-top: 2.5rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-page-related a {
  color: #6e431e;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.content-page-media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: 3rem;
}

.content-page-media-strip figure {
  margin: 0;
}

.content-page-media-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-page-media-strip figcaption {
  padding-top: 0.8rem;
  color: #6e431e;
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.content-page-trust {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--gold);
}

.content-page-trust h3 {
  margin-bottom: 1rem;
}

.content-page-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 2rem;
}

.content-page-trust-grid p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.content-page-trust-grid strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #6e431e;
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.content-page-faq {
  max-width: 54rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(79, 48, 25, 0.25);
}

.content-page-faq details {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(79, 48, 25, 0.25);
}

.content-page-faq summary {
  cursor: pointer;
  padding-right: 2rem;
  color: #4f3019;
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.025em;
  list-style-position: outside;
  text-transform: uppercase;
}

.content-page-faq details p {
  max-width: 48rem;
  margin: 0.75rem 0 0;
}

.content-page-steps {
  counter-reset: content-page-step;
  display: grid;
  gap: 1.5rem;
  max-width: 54rem;
  margin-top: 2.5rem;
}

.content-page-step {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.content-page-step::before {
  counter-increment: content-page-step;
  content: counter(content-page-step);
  display: grid;
  width: 2.25rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--gold);
  color: #6e431e;
  font-family: "Oswald", sans-serif;
}

.content-page-step h3 {
  margin: 0;
}

.content-page-step p {
  margin: 0.45rem 0 0;
}

.content-page-band .content-page-media-strip figcaption,
.content-page-band .content-page-trust-grid strong {
  color: var(--gold);
}

.content-page-band .content-page-faq,
.content-page-band .content-page-faq details {
  border-color: rgba(200, 155, 85, 0.3);
}

.content-page-band .content-page-faq summary,
.content-page-band .content-page-step::before {
  color: var(--cream);
}

.content-page-body .site-footer {
  background: var(--dark);
}

@media (max-width: 820px) {
  .content-page-site-header {
    position: fixed;
  }

  .content-page-main {
    padding-top: 5.5rem;
  }

  .content-page-shell {
    width: min(100% - 2.5rem, 42rem);
  }

  .content-page-hero {
    padding: 3rem 0 4rem;
  }

  .content-page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9.5vw, 3.5rem);
    overflow-wrap: anywhere;
  }

  .content-page-lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .content-page-actions,
  .content-page-actions .button {
    width: 100%;
  }

  .content-page-anchor-links {
    gap: 0.7rem 1rem;
  }

  .content-page-actions .button {
    min-height: 3.25rem;
  }

  .content-page-grid,
  .content-page-grid--two,
  .content-page-facts {
    grid-template-columns: 1fr;
  }

  .content-page-grid {
    gap: 2rem;
    margin-top: 2.2rem;
  }

  .content-page-feature-media,
  .content-page-feature-media--portrait {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .content-page-feature-media img,
  .content-page-feature-media--portrait img {
    max-height: none;
  }

  .content-page-media-strip,
  .content-page-trust-grid {
    grid-template-columns: 1fr;
  }

  .content-page-media-strip {
    gap: 1.5rem;
    margin-top: 2.2rem;
  }

  .content-page-media-strip img {
    aspect-ratio: 16 / 10;
  }

  .content-page-trust {
    margin-top: 2.5rem;
  }

  .content-page-faq {
    margin-top: 2rem;
  }

  .content-page-content p,
  .content-page-band p,
  .content-page-content li,
  .content-page-band li {
    font-size: 1rem;
    line-height: 1.62;
  }

  .content-page-list li {
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Keep the full menu visually connected to the homepage menu section. */
.content-page-body[data-content-page="carta"] .content-page-menu-band {
  padding: clamp(3.5rem, 5.2vw, 5.2rem) 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055), rgba(89, 51, 20, 0.04)),
    var(--paper);
  color: var(--paper-ink);
}

.content-page-body[data-content-page="carta"] .content-page-menu-band .content-page-feature-media {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.content-page-body[data-content-page="carta"] .content-page-menu-band > .content-page-shell > .content-page-menu-section,
.content-page-body[data-content-page="carta"] .content-page-menu-band .content-page-grid > .content-page-menu-section {
  margin-top: 0;
  border: 1px solid rgba(117, 74, 35, 0.28);
  background: rgba(255, 252, 244, 0.7);
}

.content-page-body[data-content-page="carta"] .content-page-menu-band > .content-page-shell > .content-page-menu-section {
  margin-bottom: 1rem;
}

.content-page-body[data-content-page="carta"] .content-page-menu-band .content-page-grid {
  gap: 1rem;
  margin-top: 0;
}

.content-page-body[data-content-page="carta"] .content-page-menu-section h2 {
  min-height: 5.2rem;
  margin: 0;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid rgba(117, 74, 35, 0.18);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.025em;
}

.content-page-body[data-content-page="carta"] .content-page-list {
  margin: 0;
  padding: 0 1.5rem 1.35rem;
}

.content-page-body[data-content-page="carta"] .content-page-list strong {
  font-family: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.content-page-body[data-content-page="carta"] .content-page-list li > span {
  flex: 0 0 auto;
  color: #2f1d13;
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  white-space: nowrap;
}

.content-page-body[data-content-page="carta"] .content-page-callout {
  margin-top: 1rem;
}

@media (max-width: 820px) {
  .content-page-body[data-content-page="carta"] .content-page-menu-band {
    padding: 3rem 0;
  }

  .content-page-body[data-content-page="carta"] .content-page-menu-band .content-page-feature-media {
    margin-bottom: 2rem;
  }

  .content-page-body[data-content-page="carta"] .content-page-menu-band > .content-page-shell > .content-page-menu-section {
    margin-bottom: 0.75rem;
  }

  .content-page-body[data-content-page="carta"] .content-page-menu-section h2 {
    min-height: 4.6rem;
    padding: 1rem;
    font-size: 1.55rem;
  }

  .content-page-body[data-content-page="carta"] .content-page-list {
    padding: 0 1rem 1rem;
  }

  .content-page-body[data-content-page="carta"] .content-page-list li > span {
    font-size: 0.98rem;
  }
}

.content-page-body .content-page-hero h1,
.content-page-body .content-page-content h2,
.content-page-body .content-page-band h2,
.content-page-body .content-page-content h3,
.content-page-body .content-page-band h3 {
  text-transform: none;
}

.content-page-body .content-page-hero h1 {
  max-width: 42rem;
  line-height: 1.02;
}

.content-page-body .content-page-lead {
  max-width: 40rem;
  line-height: 1.5;
}

.content-page-body .content-page-feature-media {
  grid-template-columns: minmax(0, 1.2fr) minmax(13rem, 0.8fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4.5rem);
}

.content-page-body .content-page-feature-media img {
  grid-column: 1;
  max-height: 34rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.content-page-body .content-page-feature-media--portrait {
  grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 1.2fr);
}

.content-page-body .content-page-feature-media--portrait img {
  aspect-ratio: 4 / 5;
  max-height: 38rem;
}

.content-page-body .content-page-feature-media figcaption {
  grid-column: 2;
  align-self: center;
  max-width: 20rem;
  margin: 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  color: var(--paper-ink);
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: none;
}

.content-page-body .content-page-band .content-page-feature-media figcaption {
  color: var(--paper-ink);
}

.content-page-body .content-page-content p,
.content-page-body .content-page-band p,
.content-page-body .content-page-content li,
.content-page-body .content-page-band li {
  max-width: 65ch;
  line-height: 1.72;
}

.content-page-body .content-page-intro {
  max-width: 58ch;
}

@media (max-width: 820px) {
  .content-page-body .content-page-feature-media,
  .content-page-body .content-page-feature-media--portrait {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .content-page-body .content-page-feature-media img,
  .content-page-body .content-page-feature-media--portrait img,
  .content-page-body .content-page-feature-media figcaption {
    grid-column: 1;
  }

  .content-page-body .content-page-feature-media img {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .content-page-body .content-page-feature-media--portrait img {
    aspect-ratio: 4 / 5;
  }

  .content-page-body .content-page-feature-media figcaption {
    max-width: none;
    padding: 0.75rem 0 0;
    border-top: 2px solid var(--gold);
    border-left: 0;
  }
}

/* Real source photography keeps content pages compact and connected to the restaurant. */
.content-page-body .content-page-feature-media:not(.content-page-feature-media--collage),
.content-page-body .content-page-feature-media--portrait {
  grid-template-columns: minmax(0, 1.55fr) minmax(14rem, 0.65fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
}

.content-page-body .content-page-feature-media:not(.content-page-feature-media--collage) > img,
.content-page-body .content-page-feature-media:not(.content-page-feature-media--collage) > .content-page-feature-media-main img {
  width: 100%;
  max-height: 25rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.content-page-body .content-page-feature-media:not(.content-page-feature-media--collage) figcaption {
  grid-column: 2;
  max-width: 20rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
}

.content-page-body .content-page-feature-media--collage {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(7rem, 0.62fr) minmax(11rem, 0.82fr);
  grid-template-rows: minmax(8.5rem, 1fr) minmax(8.5rem, 1fr);
  gap: 0.8rem;
  align-items: stretch;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.content-page-body .content-page-feature-media--collage .content-page-feature-media-main,
.content-page-body .content-page-feature-media--collage .content-page-feature-media-secondary {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.content-page-body .content-page-feature-media--collage .content-page-feature-media-main {
  grid-column: 1;
  grid-row: 1 / 3;
}

.content-page-body .content-page-feature-media--collage .content-page-feature-media-secondary--top {
  grid-column: 2;
  grid-row: 1;
}

.content-page-body .content-page-feature-media--collage .content-page-feature-media-secondary--bottom {
  grid-column: 2;
  grid-row: 2;
}

.content-page-body .content-page-feature-media--collage img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
}

.content-page-body .content-page-feature-media--collage figcaption {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  max-width: none;
  margin: 0;
  padding: 1rem 0 1rem 1.1rem;
  border-left: 2px solid var(--gold);
}

@media (max-width: 820px) {
  .content-page-body .content-page-feature-media:not(.content-page-feature-media--collage),
  .content-page-body .content-page-feature-media--portrait {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .content-page-body .content-page-feature-media:not(.content-page-feature-media--collage) > img,
  .content-page-body .content-page-feature-media:not(.content-page-feature-media--collage) > .content-page-feature-media-main img {
    grid-column: 1;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .content-page-body .content-page-feature-media:not(.content-page-feature-media--collage) figcaption {
    grid-column: 1;
    max-width: none;
    padding: 0.7rem 0 0;
    border-top: 2px solid var(--gold);
    border-left: 0;
  }

  .content-page-body .content-page-feature-media--collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 0.65rem;
  }

  .content-page-body .content-page-feature-media--collage .content-page-feature-media-main {
    grid-column: 1 / 3;
    grid-row: 1;
    aspect-ratio: 16 / 10;
  }

  .content-page-body .content-page-feature-media--collage .content-page-feature-media-secondary--top {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 1;
  }

  .content-page-body .content-page-feature-media--collage .content-page-feature-media-secondary--bottom {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 1;
  }

  .content-page-body .content-page-feature-media--collage figcaption {
    grid-column: 1 / 3;
    grid-row: 3;
    padding: 0.7rem 0 0;
    border-top: 2px solid var(--gold);
    border-left: 0;
  }
}

/* Keep InMobi Choice compact on phones without replacing its consent UI. */
#qc-cmp2-persistent-link,
#postPromptUI,
#postPromptUI button {
  display: none !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-summary-section) {
  background: #eadbc3 !important;
  border: 1px solid rgba(200, 155, 85, 0.7) !important;
  border-radius: 14px !important;
  box-shadow: 0 24px 60px rgba(9, 7, 6, 0.38) !important;
  color: #21150f !important;
  font-family: "Spectral", serif !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-consent-info,
#qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-summary-info,
#qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-summary-info div {
  color: #21150f !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-summary-section) .span-heading {
  color: #21150f !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-summary-section) a {
  color: #711613 !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-footer {
  background: rgba(17, 13, 11, 0.06) !important;
  border-top: 1px solid rgba(200, 155, 85, 0.55) !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-summary-section) #accept-btn {
  background: #711613 !important;
  border: 1px solid #711613 !important;
  color: #f1e5d5 !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-summary-section) #more-options-btn,
#qc-cmp2-ui:has(> .qc-cmp2-summary-section) #disagree-btn {
  background: transparent !important;
  border: 1px solid rgba(33, 21, 15, 0.55) !important;
  color: #21150f !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-scrollable-section) {
  grid-template-rows: auto minmax(0, 1fr) auto !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-scrollable-section) > .qc-cmp2-consent-info,
#qc-cmp2-ui:has(> .qc-cmp2-scrollable-section) .qc-cmp2-publisher-logo-container,
#qc-cmp2-ui:has(> .qc-cmp2-scrollable-section) .description,
#qc-cmp2-ui:has(> .qc-cmp2-scrollable-section) .qc-cmp2-scrollable-section {
  min-height: 0 !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-scrollable-section) > .qc-cmp2-consent-info {
  overflow: hidden !important;
}

#qc-cmp2-ui:has(> .qc-cmp2-scrollable-section) .description,
#qc-cmp2-ui:has(> .qc-cmp2-scrollable-section) .qc-cmp2-scrollable-section {
  overflow-y: auto !important;
}

@media (max-width: 600px) {
  #qc-cmp2-ui:has(> .qc-cmp2-summary-section) {
    width: calc(100% - 24px) !important;
    max-height: min(48vh, 25rem) !important;
    margin: 0 12px 12px !important;
    overflow: hidden !important;
    grid-template-rows: minmax(0, 1fr) auto !important;
  }

  #qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-summary-section,
  #qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-consent-info,
  #qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-publisher-logo-container {
    min-height: 0 !important;
  }

  #qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-summary-info {
    max-height: 10.5rem !important;
    overflow-y: auto !important;
  }

  #qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-footer {
    margin-top: 0 !important;
    padding: 0.75rem !important;
  }

  #qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-summary-buttons {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.5rem !important;
    width: 100% !important;
    height: auto !important;
  }

  #qc-cmp2-ui:has(> .qc-cmp2-summary-section) .qc-cmp2-summary-buttons button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 44px !important;
    margin: 0 !important;
    padding: 0.7rem 0.35rem !important;
    font-size: clamp(0.65rem, 2.9vw, 0.8rem) !important;
    line-height: 1.1 !important;
    white-space: normal !important;
  }
}
