:root {
  --cover-progress: 0;
  --nb-menu-primary: #783342;
  --nb-menu-secondary: #c6854a;
  --nb-menu-title-font: Georgia, serif;
  --panel-width: min(90vw, 520px);
  --panel-expanded-height: clamp(360px, 70svh, 620px);
  --panel-collapsed-height: clamp(92px, 34vw, 170px);
  --panel-height: calc(var(--panel-expanded-height) - (var(--cover-progress) * (var(--panel-expanded-height) - var(--panel-collapsed-height))));
  --cover-height: calc(100svh - (var(--cover-progress) * (100svh - var(--panel-collapsed-height) - 14px)));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background-color: #160b1f;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: 'Mulish', Arial, sans-serif;
  background-color: #160b1f;
  position: relative;
  isolation: isolate;
  overscroll-behavior-y: none;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  min-height: 100vh;
  height: 100lvh;
  display: block;
  pointer-events: none;
  background: linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.38)), url("img/fondo.png") center center / cover no-repeat;
  backface-visibility: hidden;
  transform: translate3d(0,0,0);
}

body::after {
  display: none;
}

[hidden] {
  display: none !important;
}

.brand-cover {
  position: relative;
  width: 100%;
  height: var(--cover-height);
  min-height: calc(var(--panel-collapsed-height) + 14px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 30svh;
  overflow: hidden;
}

.brand-cover.is-collapsed {
  padding-bottom: 14px;
}

.brand-panel {
  position: relative;
  display: block;
  width: var(--panel-width);
  height: var(--panel-height);
  min-height: var(--panel-collapsed-height);
  overflow: hidden;
  text-decoration: none;
  background: #4b0d4e;
  border: 0 solid #c59a2d;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 4px;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.brand-logo {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 90%;
  max-width: 430px;
  max-height: 88%;
  height: auto;
  display: block;
  object-fit: contain;
  pointer-events: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.25));
}

body.force-cover-collapsed {
  --cover-progress: 1;
}

body.force-cover-collapsed .brand-cover {
  height: calc(var(--panel-collapsed-height) + 14px);
  min-height: calc(var(--panel-collapsed-height) + 14px);
  padding-bottom: 14px;
}

body.force-cover-collapsed .brand-panel {
  height: var(--panel-collapsed-height);
}

body.cover-collapse-animating {
  overflow: hidden;
  cursor: default;
}

body.cover-collapse-animating .brand-cover,
body.cover-collapse-animating .main-content,
body.cover-collapse-animating .bottom-nav,
body.cover-collapse-animating .menu-button {
  pointer-events: none;
}

.menu-button {
  position: fixed;
  top: 18px;
  right: 14px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(0,0,0,.28);
  transition: opacity .25s ease, transform .25s ease, background .25s ease;
}

.menu-button.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  background: rgba(0,0,0,.25);
  transition: opacity .3s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.side-menu {
  position: fixed;
  inset: 0;
  z-index: 1400;
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: 100dvh;
  padding: 24px 24px calc(84px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(rgba(75,13,78,.78), rgba(75,13,78,.78)), url("img/fondo.png") center center / cover no-repeat;
  border-left: none;
  box-shadow: none;
  transform: translateX(100%);
  transition: transform .32s ease;
}

body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

@media (min-width: 760px) {
  .side-menu {
    inset: 0 0 0 auto;
    width: min(420px, calc(100vw - 48px));
    border-left: 2px solid rgba(197,154,45,.65);
    box-shadow: -18px 0 36px rgba(0,0,0,.28);
  }
}

.side-menu.show {
  transform: translateX(0);
}

.side-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.side-menu-links {
  display: grid;
}

.side-menu-links a,
.side-menu-extra a {
  display: block;
  padding: 18px 0;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(197,154,45,.55);
}

.side-menu-extra {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.side-menu-extra a {
  width: max-content;
  max-width: 100%;
  padding: 12px 18px;
  color: #c59a2d;
  text-align: center;
  border: 1px solid rgba(197,154,45,.65);
  border-radius: 999px;
  background: rgba(0,0,0,.18);
}

.side-menu-privacy {
  align-self: center;
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.side-menu-privacy:hover {
  color: #c59a2d;
}

.close-menu {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(197,154,45,.65);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(0,0,0,.18);
}

.language-selector {
  position: relative;
}

.language-button {
  border: 1px solid rgba(197,154,45,.75);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  color: #fff;
  font: inherit;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .03em;
  cursor: pointer;
  background: rgba(255,255,255,.12);
}

.language-button img,
.language-panel img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.language-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1500;
  min-width: 170px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(197,154,45,.75);
  border-radius: 14px;
  background: rgba(75,13,78,.96);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.language-panel button {
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  background: transparent;
}

.language-panel button:hover {
  background: rgba(255,255,255,.12);
}

.language-choice-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #2b1718;
  background: rgba(43,23,24,.72);
}

.language-choice-card {
  width: min(100%, 420px);
  padding: clamp(20px, 5vw, 32px);
  border-top: 6px solid #c9942e;
  border-bottom: 6px solid #127c78;
  border-radius: 8px;
  background: #fff8e8;
  box-shadow: 0 14px 0 rgba(0,0,0,.24);
  text-align: center;
}

.language-choice-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.language-choice-options button {
  min-height: 54px;
  border: 2px solid #2b1718;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #2b1718;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  background: #fffdf3;
  box-shadow: 4px 4px 0 #c9942e;
}

.language-choice-options button:hover,
.language-choice-options button:focus-visible {
  outline: none;
  color: #fff8e8;
  background: #8f2438;
  box-shadow: 4px 4px 0 #127c78;
}

.language-choice-options img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

body.language-choice-open {
  overflow: hidden;
}

.main-content {
  padding: 0 16px calc(92px + env(safe-area-inset-bottom, 0px));
}

.section-card {
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 18px;
  color: #222;
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
}

.simple-page-grid {
  display: grid;
  gap: 16px;
}

.gift-options {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.gift-option,
.policy-note {
  padding: 16px;
  color: #2b1718;
  background: rgba(255,248,232,.88);
}

.gift-option {
  border-left: 6px solid #c9942e;
}

.policy-note {
  border-left: 6px solid #127c78;
}

.gift-option h2,
.gift-option h3 {
  margin-top: 0;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  width: 100%;
  min-height: 66px;
  height: calc(66px + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 3px solid #e6b84f;
  background: #2f7f7b;
  box-shadow: 0 -2px 14px rgba(0,0,0,.22);
  backface-visibility: hidden;
  transform: translate3d(0,0,0);
}

.bottom-nav a {
  min-height: 46px;
  border: 3px solid #e6b84f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav a + a {
  border-left: 3px solid #e6b84f;
  color: #fff4cf;
  background: #9b2f3b;
  transform: rotate(1.2deg);
}

.bottom-nav a:first-child {
  color: #2b1718;
}

.bottom-nav a:last-child {
  color: #fff4cf;
}

.brand-summary {
  text-align: center;
  padding: 10px 0 22px;
}

.brand-kicker,
.brand-subline {
  color: #fff;
  opacity: .92;
  margin: 0;
}

.brand-kicker {
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.brand-headline {
  margin: 10px 0 8px;
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.1;
}

.brand-subline {
  font-weight: 800;
}

.brand-kicker-photo {
  width: min(100%, 420px);
  margin: 14px auto 10px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

.brand-kicker-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.locations-grid {
  display: grid;
  gap: 16px;
  margin: 10px 0 24px;
}

.location-card {
  border-radius: 20px;
  color: #111;
  background: var(--location-card-bg, rgba(255,255,255,.88));
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

.location-card-photo,
.reserve-pick {
  overflow: hidden;
  padding: 0;
}

.location-photo {
  width: 100%;
  height: 150px;
  display: block;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,.28);
}

.location-photo-link {
  color: inherit;
  text-decoration: none;
}

.location-photo-link:hover {
  filter: brightness(1.05) saturate(1.04);
}

.location-top,
.location-actions,
.future-copy {
  margin: 0;
}

.location-card-photo .location-top,
.location-card-photo .location-actions,
.location-card-photo .future-copy {
  padding-left: 18px;
  padding-right: 18px;
}

.location-card-photo .location-top {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.location-card-photo .location-actions,
.location-card-photo .future-copy {
  padding-bottom: 18px;
}

.location-top h2 {
  margin: 0;
  color: #111;
  font-size: 1.35rem;
}

.location-badge {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #111;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.25;
  white-space: pre-line;
  background: rgba(255,255,255,.82);
}

.location-actions {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)) !important;
  gap: 8px;
  margin-top: 16px;
}

.location-actions a {
  min-height: 56px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  color: #2b1718;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  background: #e6b84f;
  box-shadow: 0 3px 0 rgba(43,23,24,.28);
  transform: rotate(-1.2deg);
  background: var(--location-card-bg, #4b0d4e);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.14);
  text-shadow: 0 1px 1px rgba(0,0,0,.28);
}

.location-actions a:hover {
  filter: brightness(1.08);
}

.location-card-photo .location-top h2,
.location-card-photo .future-copy {
  color: #fff;
}

.future-copy {
  margin: 14px 0 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.reserve-pick {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

.fake-photo {
  height: 180px;
  margin: 0;
  border-radius: 0;
  background-size: cover;
  background-position: center;
}

.reserve-pick h2 {
  margin: 0;
  padding: 16px 18px 18px;
  color: #111;
}

.form-intro {
  margin: 8px 0 18px;
  color: #555;
}

.page-reserva .section-card,
.page-restaurante .local-detail-card {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.reservation-form {
  display: grid;
  gap: 12px;
}

.reservation-fields-row {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 10px;
  align-items: end;
}

.reservation-contact-row {
  grid-template-columns: minmax(128px, .8fr) minmax(160px, 1.2fr);
}

.selected-local-summary {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border: 2px solid rgba(120,51,66,.28);
  border-radius: 12px;
  padding: 12px 14px;
  color: #2b1718;
  font-weight: 900;
  background: rgba(255,255,255,.76);
}

.selected-local-summary span {
  color: #783342;
  font-size: .9rem;
}

.selected-local-summary strong {
  text-align: right;
}

.reservation-field {
  display: grid;
  gap: 8px;
}

.reservation-contact-help {
  margin: -4px 0 2px;
  color: #6f5f58;
  font-size: .86rem;
  line-height: 1.35;
}

.reservation-card {
  position: relative;
  overflow: hidden;
  border: 4px solid #783342;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(42,167,162,.14) 0 12px, transparent 12px 26px),
    rgba(255,248,232,.96);
  box-shadow: 0 12px 0 rgba(43,23,24,.24);
}

.reservation-card::before {
  content: "";
  display: block;
  width: min(180px, 44%);
  height: 8px;
  margin: 0 auto 18px;
  border-top: 2px solid #2b1718;
  border-bottom: 2px solid #2b1718;
  transform: rotate(-1deg);
}

.reservation-card h2 {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 12px;
  padding: 10px 14px;
  color: #fff8e8 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  line-height: 1;
  text-align: center;
  background: #783342;
  box-shadow: 6px 6px 0 #c59a2d;
  transform: rotate(-1.5deg);
}

.reservation-card .form-intro {
  max-width: 46ch;
  margin: 0 auto 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(43,23,24,.24);
  color: #2b1718;
  font-weight: 900;
  text-align: center;
}

.reservation-form label {
  font-weight: 700;
}

.reservation-form input,
.reservation-form textarea,
.reservation-form select {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
}

.time-slots {
  display: grid;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 2px 0 4px;
}

.time-slot-group {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 2px solid rgba(43,23,24,.18);
}

.time-slot-group:first-child {
  padding-top: 0;
  border-top: 0;
}

.time-period-selector {
  display: none;
}

.time-slot-period {
  color: #783342;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  font-weight: 900;
}

.time-slot-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 2px;
}

@media (max-width: 760px) {
  .time-slots {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .time-period-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .time-period-option {
    position: relative;
    min-height: 48px;
    border: 2px solid #783342;
    border-radius: 10px;
    padding: 13px 8px 11px;
    color: #783342;
    font-family: Georgia, serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0;
    cursor: pointer;
    background:
      linear-gradient(180deg, rgba(255,255,255,.88), rgba(244,224,171,.82)),
      #fff4cf;
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.72),
      0 3px 0 #c59a2d;
  }

  .time-period-option::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px dashed rgba(120,51,66,.28);
    border-radius: 7px;
    pointer-events: none;
  }

  .time-period-option.active {
    border-color: #783342;
    color: #fff8e8;
    background: #783342;
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.18),
      0 3px 0 #c59a2d;
  }

  .time-slot-group {
    padding-top: 0;
    border-top: 0;
  }

  .time-slot-period {
    display: none;
  }

  .time-slot-row {
    display: none;
  }

  .time-slot-group.active .time-slot-row {
    display: grid;
  }

  .time-slot-group:only-of-type .time-slot-row {
    display: grid;
  }
}

.time-slot {
  position: relative;
  min-height: 48px;
  border: 2px solid #783342;
  border-radius: 10px;
  padding: 13px 8px 11px;
  color: #783342;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(244,224,171,.82)),
    #fff4cf;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.72),
    0 3px 0 #c59a2d;
}

.time-slot::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(120,51,66,.28);
  border-radius: 7px;
  pointer-events: none;
}

.time-slot.active {
  border-color: #4b0d4e;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(120,51,66,.95), rgba(75,13,78,.98)),
    #4b0d4e;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 3px 0 #c59a2d;
}

.time-slot[data-level="alta"] {
  border-color: #2aa7a2;
  color: #134f4d;
  background: #dff6f4;
  box-shadow: 0 3px 0 #2aa7a2;
}

.time-slot[data-level="media"] {
  border-color: #c59a2d;
  color: #68480f;
  background: #fff0be;
  box-shadow: 0 3px 0 #c59a2d;
}

.time-slot[data-level="baja"] {
  border-color: #783342;
  color: #783342;
  background: #f4d6dc;
  box-shadow: 0 3px 0 #783342;
}

.time-slot[data-level="bloqueada"] {
  border-color: #cdbfb3;
  color: #95867c;
  background: #eee4d8;
  box-shadow: none;
}

.time-slot.active {
  border-color: #4b0d4e;
  color: #fff;
  background: #4b0d4e;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 3px 0 #c59a2d;
}

.time-slots.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(192,57,43,.14);
}

.time-slot.blocked,
.time-slot:disabled {
  border-color: #cdbfb3;
  color: #95867c;
  cursor: not-allowed;
  text-decoration: line-through;
  background: #eee4d8;
  box-shadow: none;
}

.reservation-form input.is-closed-day {
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(192,57,43,.14);
}

.availability-status {
  min-height: 20px;
  color: #666;
  font-size: .9rem;
}

.availability-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-top: 0;
  font-size: .82rem;
  font-weight: 800;
  color: #2b1718;
}

.availability-legend > span {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.availability-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.availability-dot.level-alta { background: #2aa7a2; }
.availability-dot.level-media { background: #c59a2d; }
.availability-dot.level-baja { background: #783342; }
.availability-dot.level-bloqueada { background: #95867c; }

.date-hint {
  margin: -4px 0 2px;
  padding: 10px 12px;
  border-left: 4px solid #c59a2d;
  color: #783342;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: pre-line;
  background: rgba(255,248,232,.78);
}

.date-hint.is-warning {
  border-left-color: #c0392b;
  color: #7b1530;
  background: rgba(192,57,43,.08);
}

.reservation-form.is-date-pending .time-label,
.reservation-form.is-date-pending .time-slots,
.reservation-form.is-date-pending .availability-legend {
  display: none;
}

.primary-button {
  border: none;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
  background: #25D366;
}

.secondary-button {
  border: 2px solid #783342;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #783342;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  background: #fff8e8;
}

.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.reservation-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 23, 24, .55);
}

.reservation-modal-panel {
  position: relative;
  width: min(420px, 100%);
  border: 3px solid #783342;
  border-radius: 8px;
  padding: 22px;
  color: #2b1718;
  background: #fff8e8;
  box-shadow: 0 10px 0 rgba(43,23,24,.25);
}

.reservation-modal-panel h3 {
  margin: 0 0 10px;
  color: #783342;
  font-family: Georgia, "Times New Roman", serif;
}

.reservation-modal-panel p {
  margin: 0 0 18px;
  color: #2b1718;
  font-weight: 800;
}

.reservation-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.reservation-modal-actions .primary-button {
  color: #fff8e8;
  background: #783342;
}

.reservation-modal-actions .secondary-button {
  color: #783342;
  background: #fff8e8;
}

@media (max-width: 480px) {
  .reservation-contact-row {
    grid-template-columns: minmax(112px, .8fr) minmax(145px, 1.2fr);
    gap: 8px;
  }

  .reservation-contact-row label {
    font-size: .86rem;
  }

  .reservation-contact-row input,
  .reservation-contact-row select {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 360px) {
  .reservation-contact-row {
    grid-template-columns: 1fr;
  }
}

.menu-page-card {
  background: rgba(255,255,255,.94);
}

.menu-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  min-width: 0;
  max-width: 100%;
}

.menu-section {
  margin: 0 0 42px;
  min-width: 0;
  max-width: 100%;
}

.menu-section-title {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 28px;
  padding: 8px 18px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .04em;
  text-align: center;
  overflow-wrap: anywhere;
}

.menu-section-intro {
  margin: -8px 0 22px;
  color: var(--nb-menu-secondary);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.menu-section-intro p + p {
  color: #7b1530;
  font-size: 1.05rem;
}

.menu-items {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  max-width: 100%;
}

.menu-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 8px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.menu-item > div {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.menu-diamond {
  grid-column: 1;
  width: 14px;
  height: 14px;
  margin-top: 5px;
}

.menu-line {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: 5px;
  color: var(--nb-menu-primary);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.menu-name {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

.menu-price {
  align-self: end;
  justify-self: end;
  white-space: nowrap;
}

.menu-description {
  min-width: 0;
  max-width: 100%;
  margin-top: 2px;
  color: var(--nb-menu-secondary);
  font-style: italic;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: normal;
}

.menu-photos {
  position: relative;
  margin-top: 10px;
}

.menu-photo {
  width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 14px;
  display: block;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.menu-photos .menu-photo {
  margin-top: 0;
}

.menu-photos-section {
  margin: 0 auto 18px;
}

.menu-photos-section .menu-photo {
  max-height: 260px;
  object-fit: cover;
}

.menu-allergens {
  display: inline-flex;
  gap: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

.menu-allergens img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  vertical-align: -2px;
}

.menu-allergens img.hidden-by-filter,
.menu-allergens img:not(.visible-by-filter) {
  display: none;
}

.menu-variants {
  margin-top: 8px;
  padding-left: 12px;
  display: grid;
  gap: 8px;
}

.menu-variant {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 5px;
  color: var(--nb-menu-primary);
  font-weight: 800;
}

.menu-variant-main {
  min-width: 0;
  overflow-wrap: anywhere;
}

.menu-error {
  color: var(--nb-menu-primary);
  font-weight: 700;
  text-align: center;
}

.menu-floating-tools {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 0 12px;
  pointer-events: none;
}

.allergen-filter {
  position: relative;
  width: 100%;
  min-width: 0;
  pointer-events: auto;
}

.allergen-filter-toggle {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 2px solid #783342;
  border-radius: 10px;
  padding: 13px 12px 11px;
  color: #783342;
  font: inherit;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(244,224,171,.82)),
    #fff4cf;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.72),
    0 3px 0 #c59a2d,
    0 8px 20px rgba(0,0,0,.16);
}

.allergen-filter-toggle::before,
.menu-photo-toggle::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(120,51,66,.28);
  border-radius: 7px;
  pointer-events: none;
}

.allergen-filter-panel {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(124px + env(safe-area-inset-bottom, 0px));
  width: auto;
  max-height: min(64svh, 520px);
  overflow: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 8px;
  margin-top: 0;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.allergen-option {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--nb-menu-primary);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.allergen-option input {
  accent-color: var(--nb-menu-primary);
}

.allergen-clear {
  grid-column: 1 / -1;
  margin-top: 4px;
  border: none;
  border-radius: 12px;
  padding: 10px;
  color: #fff;
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
  background: #783342;
}

.menu-photo-toggle {
  position: static;
  z-index: auto;
  width: 100%;
  min-width: 0;
  min-height: 52px;
  position: relative;
  border: 2px solid #783342;
  border-radius: 10px;
  padding: 13px 12px 11px;
  color: #783342;
  font: inherit;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(244,224,171,.82)),
    #fff4cf;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.72),
    0 3px 0 #c59a2d,
    0 8px 20px rgba(0,0,0,.16);
  pointer-events: auto;
}

body.menu-photos-hidden .menu-photo {
  display: none;
}

.allergen-icon {
  width: 19px;
  height: 19px;
  object-fit: contain;
  flex: 0 0 auto;
}


.local-detail-card {
  padding: 18px;
  border-radius: 20px;
  color: #111;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
}

.local-detail-card h1 {
  margin: 0 0 8px;
}

.local-hours {
  margin: 0 0 18px;
  color: #4b0d4e;
  font-weight: 800;
  white-space: pre-line;
}

.local-address {
  margin: 0 0 14px;
  color: #333;
  font-weight: 700;
}

.local-description {
  margin: 0 0 14px;
  color: #333;
  line-height: 1.55;
}

.local-map {
  width: 100%;
  height: 240px;
  overflow: hidden;
  margin: 16px 0;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.local-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


.local-gallery {
  display: grid;
  gap: 12px;
}

.local-gallery img {
  width: 100%;
  max-height: 420px;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.page-restaurante .local-detail-card {
  --local-color: #2aa7a2;
  --local-deep: color-mix(in srgb, var(--local-color) 70%, #2b1718);
  max-width: 1080px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.8vw, 32px);
  padding: clamp(22px, 4vw, 42px);
  border: 5px solid var(--local-color);
  border-radius: 8px;
  outline: 2px dashed color-mix(in srgb, var(--local-color) 45%, transparent);
  outline-offset: -14px;
  color: #2b1718;
  background: rgba(255,241,210,.96);
  box-shadow: 0 16px 0 rgba(43,23,24,.42);
}

.local-detail-hero,
.local-detail-info,
.local-detail-copy,
.local-info-text,
.local-info-map {
  min-width: 0;
}

.local-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
}

.local-detail-copy,
.local-info-text,
.local-info-map {
  display: grid;
  gap: 14px;
}

.local-detail-info {
  display: grid;
  grid-template-columns: minmax(240px, .62fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 2px solid rgba(43,23,24,.22);
}

.page-restaurante .local-detail-card h1 {
  margin: 0 0 10px;
  color: var(--local-color);
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: .9;
  letter-spacing: 0;
}

.page-restaurante .local-description {
  max-width: 620px;
  color: #2b1718;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.55;
}

.page-restaurante .local-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  min-width: 0;
}

.local-main-photo {
  margin: 0;
  padding: 10px;
  aspect-ratio: 4 / 3;
  max-height: clamp(300px, 34vw, 440px);
  overflow: hidden;
  border: 4px double #2b1718;
  background: #fff8e8;
}

.local-main-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.local-photo-collage {
  position: relative;
  min-height: 180px;
}

.local-photo-collage img {
  position: absolute;
  width: 45%;
  aspect-ratio: 1 / 1;
  max-height: none;
  object-fit: cover;
  border: 3px solid #fff8e8;
  border-radius: 0;
  background: #fff8e8;
  box-shadow: 0 8px 0 rgba(43,23,24,.22);
}

.local-photo-collage img:nth-child(1) {
  left: 4%;
  bottom: 24px;
  transform: rotate(-7deg);
}

.local-photo-collage img:nth-child(2) {
  left: 32%;
  bottom: 0;
  transform: rotate(4deg);
}

.local-photo-collage img:nth-child(3) {
  right: 4%;
  bottom: 36px;
  transform: rotate(10deg);
}

.page-restaurante .local-hours {
  position: relative;
  align-self: start;
  margin: 0;
  padding: 12px 0 12px 28px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 6px solid var(--local-color);
  color: var(--local-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
}

.page-restaurante .local-address {
  position: relative;
  align-self: start;
  margin: 0;
  padding: 14px 14px 14px 28px;
  border: 2px solid rgba(43,23,24,.38);
  border-left: 6px solid var(--local-color);
  color: #2b1718;
  font-weight: 900;
  background: rgba(255,255,255,.4);
}

.page-restaurante .local-map {
  position: relative;
  min-height: 260px;
  height: clamp(260px, 30vw, 380px);
  margin: 0;
  border-radius: 0;
  border-left: 6px solid var(--local-color);
}

.page-restaurante .local-map-link {
  min-height: 58px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff8e8;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
  background: var(--local-deep);
}

.page-restaurante .local-hours::before,
.page-restaurante .local-address::before,
.page-restaurante .local-map::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 16px;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 3px solid #fff8e8;
  border-radius: 999px;
  background: var(--local-color);
}

@media (max-width: 760px) {
  .local-detail-hero,
  .local-detail-info {
    grid-template-columns: 1fr;
  }

  .local-main-photo img {
    min-height: 300px;
  }

  .local-photo-collage {
    min-height: 130px;
  }
}


/* Global typography/colors aligned with Carta. */
.section-card,
.local-detail-card,
.contact-item {
  color: var(--nb-menu-primary);
}

.section-card h1,
.section-card h2,
.section-card h3,
.local-detail-card h1,
.local-detail-card h2,
.local-detail-card h3,
.contact-item strong,
.reserve-pick h2,
.location-top h2,
.brand-headline {
  color: var(--nb-menu-primary);
  font-family: var(--nb-menu-title-font);
  letter-spacing: .03em;
}

.section-card p,
.section-card label,
.local-description,
.local-address,
.local-hours,
.form-intro,
.availability-status,
.contact-item,
.contact-item a {
  color: var(--nb-menu-secondary);
}

.reservation-form label,
.contact-item strong {
  color: var(--nb-menu-primary);
}

.reservation-form input,
.reservation-form textarea,
.reservation-form select,
.time-slot {
  color: var(--nb-menu-primary);
}

.time-slot.active {
  border-color: var(--nb-menu-primary);
  background: var(--nb-menu-primary);
}

.primary-button {
  background: var(--nb-menu-primary);
}

/* Keep photo-based location cards readable over colored/image backgrounds. */
.location-card-photo .location-top h2,
.location-card-photo .future-copy {
  color: #fff;
}

/* Home intro: readable over image/color backgrounds without changing Carta. */
.page-home .brand-summary {
  width: min(100%, 620px);
  margin: 0 auto 22px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
  backdrop-filter: blur(6px);
}

.page-home .brand-kicker,
.page-home .brand-headline,
.page-home .brand-subline {
  color: var(--nb-menu-primary);
  font-family: var(--nb-menu-title-font);
  opacity: 1;
  text-shadow: 0 1px 0 rgba(0,0,0,.35), 0 0 10px rgba(255,255,255,.85);
  -webkit-text-stroke: .25px rgba(0,0,0,.42);
}

.page-home .brand-kicker {
  text-transform: none;
  letter-spacing: .035em;
  font-weight: 800;
}

.page-home .brand-subline {
  color: var(--nb-menu-secondary);
}

.page-home .location-actions a {
  font-family: var(--nb-menu-title-font);
  letter-spacing: .02em;
}

/* Restore Carta section/intro colors after global text rules. */
.page-carta .menu-section-intro {
  color: #c6854a;
}

.page-carta .menu-section-intro p + p {
  color: #7b1530;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  background: rgba(0,0,0,.9);
  overscroll-behavior: contain;
  touch-action: none;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-frame {
  width: min(100%, 1100px);
  max-height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  overflow: hidden;
}

.lightbox-image-stage {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  touch-action: pan-y;
}

.lightbox-image-stage > img {
  align-self: center;
  justify-self: center;
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  cursor: zoom-in;
  transform-origin: center center;
  transition: transform .12s ease-out;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
}

.lightbox-image-stage > img.is-zoomed {
  cursor: grab;
}

.lightbox-image-stage > img.is-zoomed:active {
  cursor: grabbing;
}

.lightbox-thumbs {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  max-width: 100%;
  overflow-x: auto;
  padding: 6px 2px 2px;
  touch-action: pan-x;
}

.lightbox-thumbs button {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  opacity: .72;
}

.lightbox-thumbs button.active {
  border-color: #c59a2d;
  opacity: 1;
}

.lightbox-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.32);
  color: #fff;
  font: inherit;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.click-zoom {
  cursor: zoom-in;
}

@media (orientation: landscape) {
  :root {
    --panel-expanded-height: clamp(260px, 68svh, 520px);
    --panel-collapsed-height: clamp(82px, 18vw, 145px);
  }

  .brand-logo {
    width: 68%;
    max-width: 360px;
    max-height: 88%;
  }
}

@media (min-width: 900px) {
  :root {
    --panel-width: min(58vw, 520px);
    --panel-expanded-height: clamp(360px, 62svh, 560px);
    --panel-collapsed-height: 132px;
  }

  .brand-logo {
    max-width: 340px;
  }
}

@media (min-width: 680px) {
  .menu-page-card {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-items.columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
  }

  .menu-photo {
    max-height: none;
  }

  .menu-floating-tools {
    padding-inline: 18px;
  }

  .allergen-filter-panel {
    left: max(18px, calc((100vw - 760px) / 2 + 18px));
    right: max(18px, calc((100vw - 760px) / 2 + 18px));
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (min-width: 760px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-photo {
    height: 190px;
  }

  .local-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .location-actions {
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)) !important;
  }

  .location-actions a {
    font-size: .98rem;
  }
}

@media (max-width: 560px) {
  .menu-item {
    grid-template-columns: 12px minmax(0, 1fr);
    column-gap: 6px;
    padding: 12px 10px;
  }

  .menu-line,
  .menu-variant {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 6px;
  }

  .menu-price {
    justify-self: end;
    padding-left: 6px;
  }

  .menu-name,
  .menu-description,
  .menu-variant-main {
    overflow-wrap: anywhere;
  }

  .menu-allergens {
    display: inline-flex;
    flex-wrap: wrap;
    max-width: 100%;
  }
}


.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-item {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(75,13,78,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
}

.contact-item strong {
  color: #4b0d4e;
}

.contact-item a {
  color: #4b0d4e;
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (min-width: 760px) {
  .page-contact .section-card {
    max-width: 760px;
    margin-inline: auto;
  }
}

/* Carta: keep fixed controls inside the visual viewport without widening the page. */
.page-carta .main-content,
.page-carta .menu-container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.page-carta .main-content {
  padding-bottom: calc(160px + env(safe-area-inset-bottom, 0px));
}

/* Carta: use the same centered desktop width as reservations. */
.page-carta .menu-page-card {
  width: 100%;
  max-width: 760px;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}

.page-carta .menu-button {
  box-sizing: border-box;
  right: auto;
  left: calc(100dvw - 58px);
  max-width: 44px;
}

@supports not (width: 100dvw) {
  .page-carta .menu-button {
    left: calc(100vw - 58px);
  }
}

@media (max-width: 420px) {
  .page-carta .menu-floating-tools {
    bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    gap: 6px;
    padding-inline: 8px;
  }

  .page-carta .menu-button {
    left: calc(100dvw - 54px);
  }
}

.menu-poem {
  margin-top: 32px;
  padding: 20px 14px;
  text-align: center;
  color: #d4a12c;
  font-style: italic;
  font-weight: 800;
  line-height: 1.45;
}

.menu-poem p {
  margin: 0;
  font-size: 1.15rem;
}

.menu-poem span {
  display: block;
  margin-top: 18px;
  font-size: 1rem;
  font-style: normal;
}

.page-carta .menu-section-title {
  color: #fff !important;
  font-family: Georgia, serif !important;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .04em;
  text-align: center;
}

.page-carta .menu-section-intro {
  color: #c6854a !important;
}

.page-carta .menu-section-intro p + p {
  color: #7b1530 !important;
}

.page-carta .menu-line,
.page-carta .menu-variant,
.page-carta .menu-error {
  color: #783342 !important;
}

.page-carta .menu-description {
  color: #c6854a !important;
}

.page-reserva-selector .brand-summary {
  width: min(100%, 620px);
  margin: 0 auto 22px;
  padding: 16px 18px 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
  backdrop-filter: blur(6px);
}

.page-reserva-selector .brand-headline,
.page-reserva-selector .brand-subline {
  color: var(--nb-menu-primary);
  font-family: var(--nb-menu-title-font);
  opacity: 1;
  text-shadow: 0 1px 0 rgba(0,0,0,.35), 0 0 10px rgba(255,255,255,.85);
  -webkit-text-stroke: .25px rgba(0,0,0,.42);
}

.page-reserva-selector .brand-subline {
  color: var(--nb-menu-secondary);
}

.page-reserva-selector .brand-summary {
  width: min(100%, 620px);
  padding: 28px 18px;
  border: 2px dashed #8f2438;
  border-radius: 8px;
  color: #8f2438;
  background: #fff8e8;
  box-shadow: 0 12px 0 rgba(43,23,24,.22);
}

.page-reserva-selector .brand-headline {
  color: #8f2438;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(2.4rem, 9vw, 4.8rem);
  line-height: .95;
}

.page-reserva-selector .brand-subline {
  color: #8f2438;
  font-weight: 900;
  text-transform: uppercase;
}

.page-home,
.page-home *,
.page-reserva,
.page-reserva *,
.side-menu,
.side-menu * {
  font-family: 'Muli', 'Mulish', Arial, sans-serif !important;
}

.page-home .brand-subline {
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}

.page-reserva-selector .brand-headline,
.page-reserva-selector .brand-subline {
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}

.page-home .brand-kicker,
.page-home .brand-headline,
.page-home .brand-subline {
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
  text-stroke: 0 !important;
}

.page-reserva-selector .locations-grid {
  width: min(100%, 760px);
  margin: 10px auto 28px;
  gap: 18px;
}

.page-reserva-selector .reserve-pick {
  position: relative;
  padding: 10px;
  border: 2px solid #2b1718;
  border-radius: 8px;
  color: #2b1718;
  background: #fff8e8;
  box-shadow: 0 12px 0 rgba(43,23,24,.34);
  transform: rotate(-.8deg);
}

.page-reserva-selector .reserve-pick:nth-child(even) {
  transform: rotate(.9deg);
}

.page-reserva-selector .reserve-pick:hover,
.page-reserva-selector .reserve-pick:focus-visible {
  transform: translateY(-2px) rotate(0deg);
}

.page-reserva-selector .reserve-pick .fake-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(43,23,24,.82);
  border-radius: 4px;
}

.reserve-pick-stamp {
  position: absolute;
  right: 18px;
  top: 18px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 2px solid #8f2438;
  border-radius: 999px;
  color: #8f2438;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255,248,232,.9);
  transform: rotate(5deg);
}

.page-reserva-selector .reserve-pick h2 {
  padding: 14px 4px 2px;
  color: #4b0d4e;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.page-reserva-selector .brand-summary {
  width: max-content;
  max-width: min(92%, 620px);
  margin: 0 auto 28px;
  padding: 18px 22px;
  border: 0;
  border-radius: 0;
  color: #2b1718;
  background: #fff8e8;
  box-shadow: 7px 7px 0 #c9942e;
  transform: rotate(-2deg);
  backdrop-filter: none;
}

.page-reserva-selector .brand-headline {
  margin: 0;
  color: #2b1718;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 900;
  line-height: .98;
}

.page-reserva-selector .brand-subline {
  margin: 8px 0 0;
  color: #2b1718;
  font-weight: 900;
  text-transform: none;
}

.page-home .brand-summary {
  width: min(100%, 1040px);
  margin: 0 auto 24px;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 310px);
  grid-template-areas:
    "kicker photo"
    "headline photo"
    "subline photo";
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  border: 0;
  border-top: 6px solid #c9942e;
  border-bottom: 6px solid #127c78;
  border-radius: 8px;
  color: #2b1718;
  background: rgba(255,248,232,.96);
  box-shadow: 0 14px 0 rgba(43,23,24,.34);
  backdrop-filter: none;
  text-align: var(--home-desktop-text-align, left);
}

.page-home .brand-summary::before {
  display: none;
}

.page-home .brand-kicker {
  grid-area: kicker;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 12px 16px;
  color: var(--home-kicker-color, #2b1718);
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: none;
  background: #fff8e8;
  box-shadow: 7px 7px 0 #c9942e;
  transform: rotate(-2deg);
  white-space: var(--home-desktop-white-space, pre-line);
  text-align: var(--home-desktop-text-align, left);
  text-align-last: var(--home-desktop-text-align-last, auto);
}

.page-home .brand-headline {
  grid-area: headline;
  margin: 0;
  color: var(--home-headline-color, #8f2438);
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(2.45rem, 6.2vw, 5.25rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: 0;
  white-space: var(--home-desktop-white-space, pre-line);
  text-align: var(--home-desktop-text-align, left);
  text-align-last: var(--home-desktop-text-align-last, auto);
}

.page-home .brand-headline::after {
  display: none;
}

.page-home .brand-subline {
  grid-area: subline;
  width: min(100%, 680px);
  margin: 0;
  color: var(--home-subline-color, #127c78);
  font-size: clamp(.95rem, 1.7vw, 1.15rem);
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  white-space: var(--home-desktop-white-space, pre-line);
  text-align: var(--home-desktop-text-align, left);
  text-align-last: var(--home-desktop-text-align-last, auto);
}

.page-home .brand-kicker-photo {
  grid-area: photo;
  width: 100%;
  align-self: center;
  justify-self: center;
  margin: 0;
  border: 2px solid #2b1718;
  border-radius: 0;
  padding: 10px 10px 34px;
  background: #fffdf3;
  box-shadow: 8px 8px 0 #c9942e;
  transform: rotate(-2deg);
}

.page-home a.brand-kicker-photo,
.page-home .brand-kicker-photo {
  color: inherit;
  text-decoration: none;
}

.page-home .brand-kicker-photo img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 0;
}

@media (max-width: 760px) {
  .page-home .brand-summary {
    width: min(100%, 520px);
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "photo"
      "headline"
      "subline";
    gap: 18px;
    padding: 22px;
    text-align: var(--home-mobile-text-align, justify);
    text-align-last: var(--home-mobile-text-align-last, justify);
    box-shadow: 0 8px 0 rgba(43,23,24,.34);
  }

  .page-home .brand-kicker {
    width: auto;
    max-width: 100%;
    padding: 8px 0;
    border-top: 2px solid #2b1718;
    border-bottom: 2px solid #2b1718;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    white-space: var(--home-mobile-white-space, pre-line);
    text-align: var(--home-mobile-text-align, justify);
    text-align-last: var(--home-mobile-text-align-last, justify);
  }

  .page-home .brand-kicker-photo {
    padding: 8px 8px 26px;
    box-shadow: 0 7px 0 rgba(43,23,24,.18);
    transform: none;
  }

  .page-home .brand-headline {
    width: 100%;
    font-size: clamp(2.1rem, 13vw, 3.7rem);
    white-space: var(--home-mobile-white-space, pre-line);
    text-align: var(--home-mobile-text-align, justify);
    text-align-last: var(--home-mobile-text-align-last, justify);
  }

  .page-home .brand-subline {
    width: 100%;
    line-height: 1.2;
    white-space: var(--home-mobile-white-space, pre-line);
    text-align: var(--home-mobile-text-align, justify);
    text-align-last: var(--home-mobile-text-align-last, justify);
  }
}

.page-home .locations-grid {
  gap: 20px;
}

.page-home .location-card-photo {
  padding: 10px 10px 16px;
  border: 2px solid #2b1718;
  border-radius: 8px;
  color: #2b1718;
  background: #fff8e8;
  box-shadow: 0 12px 0 rgba(43,23,24,.22);
  transform: rotate(-1deg);
}

.page-home .location-card-photo:nth-child(even) {
  transform: rotate(.9deg);
}

.page-home .location-card-photo:hover {
  transform: translateY(-2px) rotate(0deg);
}

.page-home .location-photo {
  height: auto;
  aspect-ratio: 1 / 1;
  border: 2px solid #2b1718;
  border-radius: 4px;
}

.page-home .location-card-photo .location-top,
.page-home .location-card-photo .location-actions,
.page-home .location-card-photo .future-copy {
  padding-left: 4px;
  padding-right: 4px;
}

.page-home .location-card-photo .location-top h2 {
  color: #4b0d4e;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.55rem;
  letter-spacing: 0;
}

.page-home .location-badge {
  width: 100%;
  min-height: 0;
  display: block;
  padding: 9px 0;
  border-top: 2px solid rgba(43,23,24,.55);
  border-bottom: 2px solid rgba(43,23,24,.55);
  border-radius: 0;
  color: #2b1718;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  background: transparent;
  transform: rotate(-.5deg);
}

.page-home .location-actions {
  margin-top: 14px;
}

.page-home .location-actions a {
  min-height: 60px;
  font-size: 1.08rem;
}

.page-home .future-copy {
  color: #2b1718;
}
