:root {
  --ink: #0f0d0b;
  --coal: #171411;
  --charcoal: #211c17;
  --iron: #302b25;
  --cream: #f8efe3;
  --paper: #eee0ce;
  --muted: #cabca8;
  --gold: #c99552;
  --gold-soft: #e1ba7a;
  --green: #123d36;
  --green-soft: #1e5b4d;
  --wine: #6f2527;
  --line: rgba(248, 239, 227, 0.14);
  --line-strong: rgba(248, 239, 227, 0.24);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  color: var(--cream);
  background: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(30, 91, 77, 0.12), transparent 34%),
    linear-gradient(245deg, rgba(111, 37, 39, 0.1), transparent 36%),
    linear-gradient(180deg, #11100e 0%, #171411 48%, #0d0c0a 100%);
  color: var(--cream);
}

body.nav-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

body::before {
  position: fixed;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(248, 239, 227, 0.018) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(248, 239, 227, 0.012) 0 1px, transparent 1px 96px);
  content: "";
  opacity: 0.55;
}

body > * {
  position: relative;
  z-index: 2;
}

.page-loader {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(18, 61, 54, 0.16), transparent 34%),
    linear-gradient(180deg, #0c0a09, #15110e);
  color: var(--cream);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 520ms ease;
}

body.is-ready .page-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
}

.loader-mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid rgba(225, 186, 122, 0.62);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.loader-copy {
  margin-top: 112px;
  color: rgba(248, 239, 227, 0.78);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
}

.loader-line {
  position: absolute;
  bottom: clamp(36px, 7vw, 76px);
  left: 50%;
  width: min(360px, calc(100vw - 48px));
  height: 1px;
  overflow: hidden;
  background: rgba(248, 239, 227, 0.16);
  transform: translateX(-50%);
}

.loader-line i {
  display: block;
  width: var(--loader-progress, 12%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-progress {
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  pointer-events: none;
}

.route-transition {
  position: fixed;
  z-index: 120;
  inset: 0;
  background: #0b0a09;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 420ms cubic-bezier(0.76, 0, 0.24, 1);
}

body.is-routing .route-transition {
  transform: scaleY(1);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 16px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-color: rgba(248, 239, 227, 0.11);
  background: rgba(15, 13, 11, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(225, 186, 122, 0.62);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 0 22px rgba(201, 149, 82, 0.1);
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: rgba(248, 239, 227, 0.66);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 26px);
  color: rgba(248, 239, 227, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold-soft);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--cream);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.concierge-bar {
  position: fixed;
  z-index: 70;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-width: min(430px, calc(100vw - 32px));
  border: 1px solid rgba(248, 239, 227, 0.14);
  border-radius: 999px;
  background: rgba(15, 13, 11, 0.78);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  backdrop-filter: blur(18px);
  padding: 10px 10px 10px 18px;
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.concierge-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.concierge-bar span {
  display: block;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.concierge-bar strong {
  display: block;
  margin-top: 3px;
  color: var(--cream);
  font-size: 13px;
  line-height: 1.2;
}

.concierge-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #16100b;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 0 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 239, 227, 0.18);
  border-radius: 50%;
  background: rgba(15, 13, 11, 0.5);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

body.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.header-action,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transform: translate(var(--magnet-x, 0), var(--magnet-y, 0)) translateY(var(--btn-lift, 0));
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.header-action {
  padding: 0 22px;
  border: 1px solid rgba(225, 186, 122, 0.58);
  color: var(--gold-soft);
}

.header-action:hover,
.header-action:focus-visible,
.btn:hover,
.btn:focus-visible {
  --btn-lift: -2px;
}

.btn {
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0 24px;
}

.btn-primary {
  background: linear-gradient(135deg, #e0b36d, #bd8445);
  color: #16100b;
  box-shadow: 0 16px 48px rgba(201, 149, 82, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #efc989, #c99552);
}

.btn-ghost {
  border-color: rgba(248, 239, 227, 0.28);
  background: rgba(248, 239, 227, 0.08);
  color: var(--cream);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(225, 186, 122, 0.68);
  color: var(--gold-soft);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) 28px;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("assets/fachada.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.06);
  animation: slow-zoom 18s ease-out forwards;
  will-change: transform;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.94) 0%, rgba(9, 8, 7, 0.72) 44%, rgba(9, 8, 7, 0.24) 78%),
    linear-gradient(180deg, rgba(9, 8, 7, 0.42) 0%, rgba(9, 8, 7, 0.12) 44%, rgba(9, 8, 7, 0.93) 100%);
}

.hero-content {
  width: min(850px, 100%);
  padding-bottom: clamp(26px, 5vw, 58px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
  max-width: 100%;
}

h1 {
  max-width: 900px;
  font-size: clamp(40px, 6.2vw, 84px);
  line-height: 1.02;
}

h2 {
  max-width: 100%;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.15;
}

h3 {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(248, 239, 227, 0.83);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1040px, 100%);
  border: 1px solid rgba(248, 239, 227, 0.14);
  background: rgba(18, 15, 12, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-proof div {
  min-height: 112px;
  padding: 20px 22px;
  border-right: 1px solid rgba(248, 239, 227, 0.1);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  line-height: 1;
}

.section-pad {
  padding: clamp(78px, 10vw, 138px) clamp(18px, 5vw, 72px);
}

.section-kicker {
  display: grid;
  gap: 8px;
  max-width: 1010px;
}

.experience-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #17130f, #161a16 50%, #1b1412);
}

.experience-band article {
  min-height: 230px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid rgba(248, 239, 227, 0.1);
}

.experience-band article:last-child {
  border-right: 0;
}

.experience-band article > span:not(.split-word) {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.experience-band h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
}

.experience-band p {
  max-width: 360px;
  margin: 16px 0 0;
  color: rgba(248, 239, 227, 0.72);
  line-height: 1.6;
}

.signature-section {
  background:
    linear-gradient(125deg, rgba(18, 61, 54, 0.18), transparent 38%),
    linear-gradient(180deg, #100e0c, #1a1612);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.signature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 239, 227, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.signature-card:hover {
  border-color: rgba(225, 186, 122, 0.38);
  background: rgba(248, 239, 227, 0.06);
}

.signature-card img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
}

.signature-card div {
  padding: 24px;
}

.signature-card span,
.mini-dish span,
.moment-card span,
.feature-dish span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-card h3 {
  font-size: 34px;
}

.signature-card p,
.mini-dish p,
.moment-card p,
.feature-dish p {
  margin: 12px 0 0;
  color: rgba(248, 239, 227, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.fire-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  background: #0f0d0b;
}

.fire-section--no-media {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-inline: auto;
}

.fire-media {
  position: relative;
}

.fire-media::before {
  position: absolute;
  inset: 20px -18px -18px 18px;
  border: 1px solid rgba(201, 149, 82, 0.34);
  content: "";
}

.fire-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.fire-copy h2,
.ambience-copy h2,
.reservation-copy h2,
.contact-panel h2 {
  max-width: 100%;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  overflow-wrap: break-word;
  word-break: normal;
}

.fire-copy p:not(.eyebrow),
.ambience-copy p,
.reservation-copy p,
.events-panel p,
.menu-heading > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(248, 239, 227, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.process-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: rgba(248, 239, 227, 0.1);
}

.process-list article {
  display: grid;
  grid-template-columns: 44px 130px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  background: #181410;
}

.process-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.process-list strong {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.process-list p {
  margin: 0;
  color: rgba(248, 239, 227, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.highlights-section {
  background:
    linear-gradient(35deg, rgba(111, 37, 39, 0.16), transparent 40%),
    linear-gradient(180deg, #15110e, #1e1814);
}

.highlight-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.92fr) minmax(320px, 1.08fr);
  gap: 16px;
  margin-top: 42px;
}

.feature-dish {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9, 8, 7, 0.05), rgba(9, 8, 7, 0.94)),
    url("assets/parrilla.png") center / cover;
  padding: clamp(26px, 4vw, 42px);
  transform-style: preserve-3d;
  will-change: transform;
}

.feature-dish h3 {
  max-width: 520px;
  font-size: clamp(46px, 6vw, 82px);
}

.feature-dish p {
  max-width: 540px;
  font-size: 16px;
}

.feature-dish a {
  width: max-content;
  margin-top: 28px;
  border-bottom: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 900;
  padding-bottom: 6px;
}

.mini-dishes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-dish {
  min-height: 252px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 239, 227, 0.045);
  padding: 24px;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.mini-dish:hover {
  border-color: rgba(225, 186, 122, 0.36);
  background: rgba(248, 239, 227, 0.065);
}

.mini-dish strong {
  display: block;
  max-width: 260px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(15, 13, 11, 0.92), rgba(15, 13, 11, 0.96)),
    url("assets/interior.png") center / cover;
}

.menu-heading {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 460px);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 38px;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  flex: 0 0 auto;
  min-height: 44px;
  border: 1px solid rgba(248, 239, 227, 0.16);
  border-radius: 999px;
  background: rgba(15, 13, 11, 0.62);
  color: rgba(248, 239, 227, 0.8);
  cursor: pointer;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.tab:hover,
.tab:focus-visible,
.tab.is-active {
  border-color: rgba(225, 186, 122, 0.62);
  background: rgba(201, 149, 82, 0.2);
  color: var(--cream);
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-group-label {
  grid-column: 1 / -1;
  margin: 18px 0 -2px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-group-label:first-child {
  margin-top: 0;
}

/* --- Puntos de Cocción - Estilo Hacienda Gaucha --- */
.puntos-coccion-card {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(38, 26, 20, 0.9), rgba(18, 14, 12, 0.94));
  border: 1px solid rgba(225, 186, 122, 0.32);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 12px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.puntos-coccion-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(248, 239, 227, 0.1);
  padding-bottom: 14px;
}

.puntos-icon {
  font-size: 32px;
  line-height: 1;
}

.puntos-coccion-head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.puntos-coccion-head p {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(248, 239, 227, 0.72);
}

.puntos-coccion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.punto-item {
  background: rgba(15, 13, 11, 0.65);
  border: 1px solid rgba(248, 239, 227, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 160ms ease, background 160ms ease;
}

.punto-item:hover {
  border-color: rgba(225, 186, 122, 0.4);
  background: rgba(28, 22, 18, 0.85);
}

.punto-name {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 6px;
}

.punto-desc {
  display: block;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(248, 239, 227, 0.68);
}

@media (max-width: 900px) {
  .puntos-coccion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* ==========================================================================
   CARTA OFICIAL: EDICIÓN PERGAMINO CÁLIDO & HIERRO (LIBRO HORIZONTAL)
   ========================================================================== */
.carta-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 16px 22px;
  background: rgba(23, 20, 17, 0.85);
  border: 1px solid rgba(225, 186, 122, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.carta-actions-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.carta-actions-group .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.carta-book-hint {
  font-size: 13.5px;
  color: rgba(248, 239, 227, 0.78);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 6px;
}

.carta-pages-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 24px;
  padding-bottom: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.carta-pages-nav::-webkit-scrollbar {
  display: none;
}

.carta-pages-nav .tab {
  transition: all 180ms ease;
  white-space: nowrap;
}

.carta-pages-nav .tab.is-active {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 149, 82, 0.35);
}

/* Contenedor del Libro */
.carta-book-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  max-width: 960px;
  width: 100%;
}

/* Viewport con overflow hidden: IMPOSIBLE QUE SE MUESTREN HACIA ABAJO */
.carta-book-viewport {
  width: 100%;
  max-width: 820px;
  overflow: hidden !important;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(225, 186, 122, 0.25);
  background: #faf5ed;
  position: relative;
  user-select: none;
}

/* Pista horizontal con las 5 páginas lado a lado */
.carta-book-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Cada hoja ocupa el 100% exacto del viewport */
.carta-book-page {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  cursor: zoom-in;
  background: #faf5ed;
}

.carta-book-page picture,
.carta-book-page img {
  width: 100%;
  height: auto;
  display: block;
}

.carta-book-caption {
  padding: 12px 18px;
  background: #2d2119;
  color: #faf5ed;
  font-family: Georgia, serif;
  font-size: 13.5px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(181, 77, 31, 0.4);
}

/* Flechas laterales para pasar de hoja */
.carta-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(23, 20, 17, 0.94);
  border: 1.5px solid rgba(225, 186, 122, 0.5);
  color: #f8efe3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: all 180ms ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}

.carta-arrow:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-50%) scale(1.1);
  border-color: var(--gold);
}

.carta-arrow.prev {
  left: 0;
}

.carta-arrow.next {
  right: 0;
}

@media (max-width: 960px) {
  .carta-arrow {
    display: none;
  }
}

/* Pie del libro: indicador de página y botones de avanzar/retroceder */
.carta-book-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 820px;
  margin: 22px auto 0;
  padding: 12px 20px;
  background: rgba(23, 20, 17, 0.75);
  border: 1px solid rgba(225, 186, 122, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  gap: 16px;
}

.carta-footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.carta-footer-title {
  color: #f8efe3;
  font-family: Georgia, serif;
  font-size: 14.5px;
  font-weight: bold;
  text-align: center;
}

.carta-footer-nav-btn {
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(201, 149, 82, 0.16);
  border: 1px solid rgba(225, 186, 122, 0.35);
  color: #f8efe3;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 160ms ease;
  white-space: nowrap;
}

.carta-footer-nav-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.carta-indicator-dots {
  display: flex;
  gap: 8px;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(248, 239, 227, 0.3);
  background: rgba(15, 13, 11, 0.5);
  cursor: pointer;
  transition: all 160ms ease;
  padding: 0;
}

.indicator-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

/* --- Tarjetas de Carta Editorial (Sin fotos, tipografía premium) --- */
.dish-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 140px;
  border: 1px solid rgba(248, 239, 227, 0.12);
  border-radius: var(--radius);
  background: rgba(18, 15, 13, 0.82);
  color: inherit;
  cursor: pointer;
  padding: 22px 26px;
  text-align: left;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.dish-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 186, 122, 0.45);
  background: rgba(28, 23, 19, 0.95);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.dish-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  width: 100%;
}

.dish-card h3.dish-title {
  margin: 0;
  font-size: 24px;
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 1.3;
}

.dish-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--gold-soft);
  background: rgba(201, 149, 82, 0.14);
  border: 1px solid rgba(225, 186, 122, 0.3);
  border-radius: 8px;
  padding: 5px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

.dish-card p.dish-detail {
  margin: 10px 0 14px;
  color: rgba(248, 239, 227, 0.72);
  font-size: 14px;
  line-height: 1.6;
  font-family: var(--font-sans);
}

.dish-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.dish-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(225, 186, 122, 0.9);
  border: 1px solid rgba(225, 186, 122, 0.25);
  background: rgba(225, 186, 122, 0.05);
  border-radius: 999px;
  padding: 4px 10px;
}

.moments-section {
  background:
    linear-gradient(135deg, transparent, rgba(18, 61, 54, 0.18) 62%, transparent),
    #0f0d0b;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: rgba(248, 239, 227, 0.1);
}

.moment-card {
  min-height: 260px;
  background: #191510;
  padding: 26px;
  transition: background 200ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.moment-card:hover {
  background: #211b16;
}

.moment-card h3 {
  font-size: 34px;
}

.ambience-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  background: linear-gradient(180deg, #15120f, #0f0d0b);
}

.ambience-copy {
  position: sticky;
  top: 96px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: none !important;
  outline: none !important;
  border-radius: var(--radius);
  background: #181410;
  cursor: pointer;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.gallery-item.large {
  grid-row: 1 / span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none !important;
  outline: none !important;
  display: block;
  transition: transform 680ms ease, filter 220ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.76));
  content: "";
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.05);
}

.events-section {
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.82), rgba(9, 8, 7, 0.58), rgba(9, 8, 7, 0.86)),
    url("assets/fachada.png") center / cover;
}

.events-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 430px) auto;
  gap: clamp(24px, 5vw, 62px);
  align-items: end;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: clamp(28px, 5vw, 54px) 0;
}

.events-panel h2 {
  max-width: 100%;
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.15;
  overflow-wrap: break-word;
  word-break: normal;
}

.events-panel .btn {
  white-space: nowrap;
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(330px, 0.78fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  background:
    linear-gradient(130deg, rgba(111, 37, 39, 0.18), transparent 36%),
    linear-gradient(180deg, #15110f, #221b16);
}

.reservation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.reservation-badges span {
  border: 1px solid rgba(248, 239, 227, 0.16);
  border-radius: 999px;
  color: var(--muted);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(248, 239, 227, 0.14);
  border-radius: var(--radius);
  background: rgba(12, 10, 8, 0.64);
  box-shadow: var(--shadow);
  padding: 28px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(248, 239, 227, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(248, 239, 227, 0.14);
  border-radius: 8px;
  outline: none;
  background: rgba(248, 239, 227, 0.08);
  color: var(--cream);
  padding: 12px 13px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 160ms ease, background 160ms ease;
}

.booking-form select {
  color-scheme: dark;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(225, 186, 122, 0.66);
  background: rgba(248, 239, 227, 0.12);
}

.form-status {
  min-height: 20px;
  margin: -2px 0 0;
  color: var(--gold-soft);
  font-size: 13px;
  line-height: 1.4;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1fr);
  gap: 18px;
  background: #0f0d0b;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #17130f;
  padding: 34px;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
}

.contact-panel div {
  border-top: 1px solid rgba(248, 239, 227, 0.1);
  padding-top: 18px;
}

.contact-panel dt {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 8px 0 0;
  color: rgba(248, 239, 227, 0.72);
}

.map-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #17130f;
}

.map-preview iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: end;
  border-top: 1px solid var(--line);
  background: #0b0a09;
  padding: 34px clamp(18px, 5vw, 72px) 96px;
}

.site-footer p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(248, 239, 227, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(248, 239, 227, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.mobile-action {
  display: none;
}

.lightbox {
  width: min(1080px, calc(100vw - 28px));
  border: 1px solid rgba(248, 239, 227, 0.18);
  border-radius: var(--radius);
  background: #080706;
  box-shadow: var(--shadow);
  padding: 0;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  min-height: 38px;
  border: 1px solid rgba(248, 239, 227, 0.22);
  border-radius: 999px;
  background: rgba(15, 13, 11, 0.78);
  color: var(--cream);
  cursor: pointer;
  padding: 0 14px;
}

.dish-dialog,
.reservation-drawer {
  position: fixed;
  inset: 0;
  margin: auto;
  border: 1px solid rgba(248, 239, 227, 0.16);
  border-radius: var(--radius);
  background: rgba(12, 10, 8, 0.96);
  color: var(--cream);
  box-shadow: var(--shadow);
  padding: 0;
}

.dish-dialog::backdrop,
.reservation-drawer::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  min-height: 38px;
  border: 1px solid rgba(248, 239, 227, 0.18);
  border-radius: 999px;
  background: rgba(15, 13, 11, 0.78);
  color: var(--cream);
  cursor: pointer;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
}

.dish-dialog {
  width: min(620px, calc(100vw - 28px));
  overflow: hidden;
}

.dish-dialog[open] {
  display: block;
}

.dish-dialog-media {
  display: none !important;
}

.dish-dialog-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.dish-dialog-body h2,
.drawer-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.dish-dialog-body p:not(.eyebrow),
.drawer-heading p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(248, 239, 227, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.dish-dialog-meta,
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.dish-dialog-meta span {
  border: 1px solid rgba(225, 186, 122, 0.34);
  border-radius: 999px;
  color: var(--gold-soft);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
}

.reservation-drawer {
  width: min(520px, calc(100vw - 18px));
  max-height: calc(100dvh - 18px);
  margin-right: 9px;
  margin-left: auto;
  overflow: auto;
}

.reservation-drawer[open] {
  animation: drawer-in 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.drawer-heading {
  padding: 34px 28px 0;
}

.drawer-form {
  margin: 22px 18px 18px;
  box-shadow: none;
}

@keyframes drawer-in {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 140ms;
}

.reveal-image {
  clip-path: inset(12% 0 12% 0);
}

.reveal-image.is-visible {
  clip-path: inset(0 0 0 0);
}

.split-title {
  opacity: 1;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
}

.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(112%) rotateX(-18deg);
  transform-origin: left bottom;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--word-index, 0) * 48ms + var(--title-delay, 0ms));
  will-change: transform, opacity;
  white-space: normal;
}

.is-visible .split-word,
.split-title.is-visible .split-word,
.hero-content.is-visible .split-word {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.motion-card {
  transform: perspective(900px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg))
    translateY(var(--lift, 0));
}

.motion-card.is-tilting {
  --lift: -6px;
}

.motion-card:hover {
  --lift: -5px;
}

.dish-card.is-entering {
  animation: dish-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--dish-index, 0) * 52ms);
}

@keyframes dish-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slow-zoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.01);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-action {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    z-index: 60;
    inset: 76px 14px auto;
    display: grid;
    gap: 0;
    justify-self: stretch;
    overflow-y: auto;
    max-height: calc(100dvh - 90px);
    border: 1px solid rgba(248, 239, 227, 0.13);
    border-radius: var(--radius);
    background: rgba(15, 13, 11, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    border-bottom: 1px solid rgba(248, 239, 227, 0.08);
    padding: 18px;
  }

  .main-nav a::after {
    display: none;
  }

  .signature-grid,
  .experience-band,
  .fire-section,
  .highlight-layout,
  .menu-heading,
  .ambience-section,
  .events-panel,
  .reservation-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .experience-band article {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 239, 227, 0.1);
  }

  .experience-band article:last-child {
    border-bottom: 0;
  }

  .ambience-copy {
    position: static;
  }

  .events-panel {
    align-items: start;
  }

  .events-panel .btn {
    width: max-content;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding: 98px 16px 22px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 8, 7, 0.46) 0%, rgba(9, 8, 7, 0.58) 36%, rgba(9, 8, 7, 0.96) 100%),
      linear-gradient(90deg, rgba(9, 8, 7, 0.8), rgba(9, 8, 7, 0.44));
  }

  h1 {
    font-size: clamp(34px, 10vw, 58px);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(26px, 7.5vw, 42px);
    line-height: 1.15;
  }

  .hero-content {
    padding-bottom: 24px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .concierge-bar {
    display: none;
  }

  .hero-actions .btn {
    min-width: 0;
    padding: 0 12px;
  }

  .hero-proof {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .hero-proof div {
    flex: 0 0 250px;
    min-height: 108px;
    scroll-snap-align: start;
  }

  .section-pad {
    padding-right: 16px;
    padding-left: 16px;
  }

  .experience-band article {
    min-height: 190px;
    padding: 30px 16px;
  }

  .signature-grid,
  .mini-dishes,
  .menu-board,
  .moments-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .fire-media::before {
    display: none;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .feature-dish {
    min-height: 470px;
  }

  .dish-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px;
  }

  .dish-card.has-thumb {
    grid-template-columns: 1fr;
  }

  .dish-thumb {
    width: 100%;
    height: 190px;
    border-radius: 12px;
  }

  .dish-meta {
    justify-items: start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-item.large {
    grid-row: auto;
    min-height: 330px;
  }

  .booking-form,
  .contact-panel {
    padding: 20px;
  }

  .dish-dialog[open] {
    display: block;
  }

  .dish-dialog-body {
    padding: 24px 20px 20px;
  }

  .reservation-drawer {
    width: calc(100vw - 12px);
    max-height: calc(100dvh - 12px);
    margin: auto 6px 6px;
  }

  .drawer-heading {
    padding: 28px 20px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 92px;
  }

  .mobile-action {
    position: fixed;
    z-index: 40;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom, 14px));
    left: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border: 1px solid rgba(248, 239, 227, 0.13);
    border-radius: 999px;
    background: rgba(15, 13, 11, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-action a {
    display: grid;
    min-height: 50px;
    place-items: center;
    font-size: 14px;
    font-weight: 900;
  }

  .mobile-action a:last-child {
    background: var(--gold);
    color: #16100b;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    flex-basis: 232px;
  }

  .feature-dish h3 {
    font-size: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .page-loader,
  .route-transition {
    display: none;
  }

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

  .split-word {
    opacity: 1;
    transform: none;
  }

  .reveal-image {
    clip-path: none;
  }

  .motion-card,
  .hero-bg,
  .header-action,
  .btn {
    transform: none !important;
  }
}
