:root {
  --petrol: #102B35;
  --petrol-2: #173A44;
  --terracotta: #B96743;
  --gold: #E9AF38;
  --cream: #F3E6CE;
  --warm: #FFF8EC;
  --ink: #162328;
  --muted: #667277;
  --line: #dfd3c1;
  --white: #fff;
  --shadow: 0 24px 60px rgba(16, 43, 53, .12);
  --radius: 28px;
}

* {
  box-sizing: border-box
}

[hidden] {
  display: none !important
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 43, 53, .08)
}

.header-inner {
  height: 92px;
  width: min(1260px, calc(100% - 32px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 20px
}

.brand {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer
}

.brand img {
  display: block;
  width: 140px;
  height: auto;
  object-fit: contain;
  object-position: left center
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--petrol);
  padding: 10px 11px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 13px;
  cursor: pointer
}

.nav-link:hover,
.nav-link.active {
  background: var(--cream)
}

.nav-reserva {
  background: var(--petrol);
  color: #fff
}

.nav-reserva:hover,
.nav-reserva.active {
  background: var(--terracotta);
  color: #fff
}

.menu-toggle,
.mobile-nav {
  display: none
}

.view {
  display: none;
  min-height: calc(100vh - 94px)
}

.view.active {
  display: block;
  animation: viewIn .35s ease both
}

.category-heading-group {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 36px
}

.category-heading-group .section-heading {
  margin-bottom: 0
}

.category-back {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid rgba(185, 103, 67, .62);
  border-radius: 50%;
  background: var(--petrol);
  color: var(--gold);
  box-shadow: 0 8px 20px rgba(75, 44, 30, .16), inset 0 0 0 2px rgba(233, 175, 56, .08);
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .12s ease
}

.category-back svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease
}

.category-back:hover {
  background: var(--petrol-2);
  box-shadow: 0 10px 24px rgba(75, 44, 30, .2), inset 0 0 0 2px rgba(233, 175, 56, .12)
}

.category-back:hover svg {
  transform: translateX(-2px)
}

.category-back:active {
  transform: scale(.97)
}

.category-back:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px
}

@keyframes viewIn {
  from {
    opacity: .2;
    transform: translateY(7px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0c1e24
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.hero-image {
  object-fit: cover;
  object-position: center
}

.hero-shade {
  background: linear-gradient(90deg, rgba(6, 19, 24, .91) 0%, rgba(6, 19, 24, .70) 38%, rgba(6, 19, 24, .22) 68%, rgba(6, 19, 24, .08) 100%)
}

.hero-copy {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-block: 70px
}

.eyebrow {
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--cream)
}

.eyebrow.dark {
  color: var(--terracotta)
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif
}

h1 {
  font-size: clamp(48px, 7vw, 94px);
  line-height: .95;
  max-width: 820px;
  margin: 0 0 24px;
  font-weight: 500;
  letter-spacing: -.035em
}

h1 span {
  color: var(--gold)
}

.lead {
  font-size: clamp(17px, 2vw, 23px);
  max-width: 590px;
  color: #f2ede4;
  margin: 0
}

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

.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: .01em;
  cursor: pointer;
  transition: .2s transform, .2s background, .2s border
}

.btn:hover {
  transform: translateY(-2px)
}

.btn-primary {
  background: var(--gold);
  color: #152329
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .38)
}

.btn-light {
  background: #fff;
  color: var(--petrol)
}

.btn.full {
  width: 100%
}

.home-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding-block: 28px
}

.home-card {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  cursor: pointer;
  transition: .2s
}

.home-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #c9b89f
}

.home-card span {
  display: block;
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--petrol)
}

.home-card small {
  color: var(--muted)
}

.dual-conversion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-block: 8px 54px
}

.conversion-card {
  border-radius: var(--radius);
  background: var(--petrol);
  color: #fff;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px
}

.conversion-card.alt {
  background: var(--terracotta)
}

.conversion-card h2 {
  font-size: 34px;
  margin: 0 0 7px
}

.conversion-card p {
  margin: 0;
  color: #e5eef0;
  max-width: 520px
}

.conversion-card.alt p {
  color: #fff2ea
}

.section-shell {
  padding-block: 56px 72px
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px
}

.section-heading h2,
.reservation-copy h2 {
  font-size: clamp(42px, 6vw, 70px);
  color: var(--petrol);
  line-height: 1;
  margin: 0 0 16px;
  font-weight: 500
}

.section-heading p:last-child,
.reservation-copy>p:last-of-type {
  font-size: 18px;
  color: var(--muted);
  margin: 0
}

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

.product-card {
  background: #fff;
  border: 1px solid rgba(16, 43, 53, .08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(16, 43, 53, .07)
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.product-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 22px 14px
}

.product-body h3 {
  font-size: 29px;
  margin: 0 0 7px;
  color: var(--petrol);
  line-height: 1.05
}

.product-body p {
  margin: 0;
  color: var(--muted);
  max-width: 520px
}

.product-body strong {
  white-space: nowrap;
  color: var(--terracotta);
  font-size: 20px
}

.add-cart {
  margin: 0 22px 22px;
  border: 1px solid rgba(16, 43, 53, .18);
  background: var(--petrol);
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 850;
  cursor: pointer
}

.add-cart:hover {
  background: var(--terracotta)
}

.add-cart.added {
  background: #2b7952
}

.text-action {
  margin: 0 22px 22px;
  border: 0;
  background: none;
  padding: 0;
  color: var(--petrol);
  font-weight: 850;
  cursor: pointer
}

.text-action:hover {
  color: var(--terracotta)
}

.reservation-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 42px;
  align-items: start
}

.reservation-copy {
  position: sticky;
  top: 134px
}

.reservation-direct {
  margin-top: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px
}

.reservation-direct strong,
.reservation-direct small {
  display: block
}

.reservation-direct small {
  color: var(--muted);
  margin-top: 4px
}

.reservation-form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 43, 53, .08);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.field-wide {
  grid-column: 1/-1
}

.field label {
  font-size: 13px;
  font-weight: 850;
  color: var(--petrol)
}

.field label span {
  font-weight: 500;
  color: var(--muted)
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8d2c7;
  background: #fffdf9;
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  outline: none
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(233, 175, 56, .15)
}

.stepper {
  display: grid;
  grid-template-columns: 46px 1fr 46px
}

.stepper button,
.stepper input {
  border: 1px solid #d8d2c7;
  height: 48px;
  background: #fff
}

.stepper button {
  cursor: pointer;
  font-size: 22px
}

.stepper button:first-child {
  border-radius: 14px 0 0 14px
}

.stepper button:last-child {
  border-radius: 0 14px 14px 0
}

.stepper input {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  text-align: center;
  padding: 0
}

.submit-btn {
  grid-column: 1/-1
}

.form-disclaimer {
  grid-column: 1/-1;
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px
}

.availability-card {
  grid-column: 2;
  display: none;
  border-radius: 22px;
  padding: 22px;
  background: var(--petrol);
  color: #fff
}

.availability-card.show {
  display: block;
  animation: viewIn .3s ease
}

.availability-card h3 {
  font-size: 28px;
  margin: 0 0 8px
}

.availability-card p {
  margin: 5px 0;
  color: #d8e3e6
}

.availability-card .wa-ready {
  display: inline-flex;
  margin-top: 14px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .5)
}

.contact-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(166, 87, 59, .9);
  background: #16100d;
  box-shadow: 0 12px 32px rgba(26, 16, 12, .12)
}

.contact-stage::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 1;
  border: 1px solid rgba(238, 211, 166, .2);
  border-radius: calc(var(--radius) - 5px);
  pointer-events: none
}

.contact-stage>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.contact-stage-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 21, 26, .02), rgba(8, 21, 26, .08) 47%, rgba(8, 21, 26, .83) 100%)
}

.contact-address {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 3;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid rgba(201, 142, 99, .42);
  background: rgba(8, 35, 42, .82);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  color: #f5ead7;
  font-size: 13px;
  letter-spacing: .02em
}

.contact-address svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: #d8b477;
  stroke-width: 1.8
}

.contact-stage .contact-actions {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 62px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0
}

.contact-stage .contact-btn {
  min-width: 0;
  min-height: 62px;
  border: 1px solid rgba(180, 103, 72, .82);
  background: rgba(39, 22, 16, .9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  gap: 9px;
  color: #f8eddb;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 12px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, background-color .2s, border-color .2s, box-shadow .2s
}

.contact-stage .contact-btn svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: #dfbd7e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact-stage .contact-btn .contact-icon-dot {
  fill: #dfbd7e;
  stroke: none
}

.contact-stage .contact-btn:hover {
  transform: translateY(-2px);
  background: rgba(16, 43, 53, .96);
  border-color: rgba(233, 175, 56, .9)
}

.contact-stage .contact-btn:focus-visible {
  outline: 3px solid #f2c46d;
  outline-offset: 3px;
  border-color: #f2c46d;
  box-shadow: 0 0 0 2px rgba(8, 35, 42, .8)
}

.contact-stage .contact-btn:active {
  transform: translateY(0) scale(.98);
  background: rgba(8, 35, 42, .98)
}

.cart-float {
  position: fixed;
  left: max(22px, env(safe-area-inset-left));
  bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
  z-index: 70;
  border: 0;
  border-radius: 999px;
  background: var(--petrol);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
  padding: 11px 16px;
  display: flex;
  gap: 9px;
  align-items: center;
  cursor: pointer;
  animation: cartFloatIn .24s ease-out both
}

.cart-float[hidden] {
  display: none
}

body.cart-active {
  padding-bottom: calc(84px + env(safe-area-inset-bottom))
}

body.modal-open {
  overflow: hidden
}

.cart-drawer :focus-visible,
#reservationTitle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px
}

@keyframes cartFloatIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.cart-float span {
  font-weight: 850
}

.cart-float strong {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--petrol)
}

.cart-float small {
  color: #c7d7dc;
  font-weight: 700
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 19, 24, .48);
  z-index: 79;
  opacity: 0;
  pointer-events: none;
  transition: .25s
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(460px, 100%);
  height: 100dvh;
  background: var(--warm);
  box-shadow: -18px 0 45px rgba(0, 0, 0, .18);
  transform: translateX(105%);
  transition: .28s;
  overflow: auto;
  padding: 24px
}

.cart-drawer.open {
  transform: none
}

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px
}

.cart-head h2 {
  margin: 0;
  font-size: 40px;
  color: var(--petrol)
}

.cart-close {
  border: 0;
  background: var(--cream);
  color: var(--petrol);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer
}

.cart-items {
  display: grid;
  gap: 12px;
  margin-top: 18px
}

.cart-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 14px
}

.cart-item h3 {
  font-family: inherit;
  font-size: 16px;
  margin: 0;
  color: var(--petrol)
}

.cart-item-price {
  font-weight: 800;
  color: var(--terracotta)
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px
}

.cart-controls button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-weight: 900
}

.cart-controls .remove {
  width: auto;
  padding: 0 10px;
  margin-left: auto;
  color: #923d2b
}

.cart-empty {
  color: var(--muted);
  padding: 26px 0
}

.cart-summary {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 8px 0
}

.summary-line.total {
  font-size: 20px;
  color: var(--petrol)
}

.cart-note,
.payment-note,
.pickup-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5
}

.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 20px
}

.checkout-form h3 {
  font-size: 27px;
  margin: 0;
  color: var(--petrol)
}

.delivery-mode {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 10px
}

.delivery-mode legend {
  font-size: 13px;
  font-weight: 850;
  color: var(--petrol);
  padding: 0 5px
}

.delivery-mode label {
  display: flex;
  align-items: center;
  gap: 8px
}

.pickup-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px
}

.back-cart {
  margin: 0;
  text-align: left
}

.whatsapp-float {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  z-index: 70;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
  transition: .2s transform
}

.whatsapp-float:hover {
  transform: scale(1.06)
}

.whatsapp-float svg {
  width: 34px;
  fill: white
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: #142d36;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 100;
  transition: .25s
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0)
}

.site-footer {
  background: #0b2027;
  color: #fff
}

.footer-inner {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px
}

.footer-inner small {
  color: #9db0b6
}

.reveal {
  animation: reveal .5s ease both
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:1080px) {
  .desktop-nav {
    display: none
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    width: 48px;
    height: 48px;
    border: 0;
    background: var(--cream);
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--petrol)
  }

  .mobile-nav {
    display: none;
    padding: 8px 16px 16px;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px
  }

  .mobile-nav.open {
    display: grid
  }

  .mobile-nav .nav-link {
    text-align: left
  }

  .home-strip {
    grid-template-columns: repeat(3, 1fr)
  }

  .dual-conversion {
    grid-template-columns: 1fr
  }

  .reservation-layout {
    grid-template-columns: 1fr
  }

  .reservation-copy {
    position: static
  }

  .availability-card {
    grid-column: 1
  }

  .contact-stage .contact-actions {
    grid-template-columns: repeat(5, minmax(0, 1fr))
  }
}

@media(max-width:700px) {
  .container {
    width: min(100% - 26px, 1180px)
  }

  .header-inner {
    height: 82px
  }

  .brand img {
    width: 160px;
    height: auto;
  }

  .view {
    min-height: calc(100vh - 80px)
  }

  .hero {
    min-height: 76vh
  }

  .hero-image {
    object-position: 59% center
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(6, 19, 24, .94), rgba(6, 19, 24, .65) 68%, rgba(6, 19, 24, .24))
  }

  .hero-copy {
    padding-block: 48px
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 300px
  }

  .home-strip {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding-block: 18px
  }

  .home-card {
    padding: 14px
  }

  .home-card span {
    font-size: 18px
  }

  .dual-conversion {
    margin-bottom: 32px
  }

  .conversion-card {
    align-items: start;
    flex-direction: column;
    padding: 23px
  }

  .conversion-card h2 {
    font-size: 29px
  }

  .section-shell {
    padding-block: 38px 50px
  }

  .product-grid {
    grid-template-columns: 1fr
  }

  .product-body {
    padding: 18px 18px 12px
  }

  .product-body h3 {
    font-size: 25px
  }

  .add-cart {
    margin: 0 18px 18px;
    width: calc(100% - 36px)
  }

  .reservation-form {
    grid-template-columns: 1fr;
    padding: 20px
  }

  .field-wide,
  .submit-btn,
  .form-disclaimer {
    grid-column: 1
  }

  .contact-stage {
    min-height: 730px;
    border-radius: 22px
  }

  .contact-stage>img {
    object-position: 59% center
  }

  .contact-stage .contact-actions {
    left: 14px;
    right: 14px;
    bottom: 56px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px
  }

  .contact-stage .contact-btn {
    min-height: 64px;
    flex-direction: column;
    gap: 5px;
    padding: 7px 2px;
    border-radius: 12px;
    font-size: 11px;
    line-height: 1.05
  }

  .contact-stage .contact-btn svg {
    width: 19px;
    height: 19px
  }

  .contact-address {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 32px;
    padding: 6px 8px;
    font-size: 11px
  }

  .cart-float {
    left: max(12px, env(safe-area-inset-left));
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
    padding: 10px 13px
  }

  .cart-float small {
    display: none
  }

  .whatsapp-float {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
    width: 56px;
    height: 56px
  }

  body:has(#contacto.active) .whatsapp-float {
    bottom: max(144px, calc(env(safe-area-inset-bottom) + 144px))
  }

  .footer-inner {
    padding-bottom: 92px;
    flex-direction: column
  }

  .cart-drawer {
    padding: 18px
  }

  .cart-head h2 {
    font-size: 34px
  }
}

@media(max-width:360px) {
  .contact-stage .contact-actions {
    left: 10px;
    right: 10px;
    gap: 3px
  }

  .contact-stage .contact-btn {
    padding-inline: 1px;
    font-size: 9.5px
  }

  .contact-stage .contact-btn svg {
    width: 18px;
    height: 18px
  }

  .contact-address {
    left: 10px;
    right: 10px;
    font-size: 10.5px
  }
}

/* ===== Inicio gastronómico editorial ===== */
.home-menu-heading {
  padding-top: 58px;
  text-align: center
}

.home-menu-heading h2 {
  margin: 0 0 10px;
  color: var(--petrol);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  font-weight: 500
}

.home-menu-heading>p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px
}

#inicio .home-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding-top: 28px
}

#inicio .home-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 245px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 24px;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  color: #fff;
  cursor: pointer
}

#inicio .home-card:nth-child(1) {
  background-image: linear-gradient(180deg, rgba(10, 22, 25, .04) 20%, rgba(13, 27, 31, .92) 100%), url("assets/images/ceviche.webp")
}

#inicio .home-card:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(10, 22, 25, .04) 20%, rgba(13, 27, 31, .92) 100%), url("assets/images/jalea-marina.webp")
}

#inicio .home-card:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(10, 22, 25, .04) 20%, rgba(13, 27, 31, .94) 100%), url("assets/images/lomo-saltado.webp")
}

#inicio .home-card:nth-child(4) {
  background-image: linear-gradient(180deg, rgba(10, 22, 25, .04) 20%, rgba(13, 27, 31, .94) 100%), url("assets/images/causa-vegana.webp")
}

#inicio .home-card:nth-child(5) {
  background-image: linear-gradient(180deg, rgba(10, 22, 25, .04) 20%, rgba(13, 27, 31, .92) 100%), url("assets/images/fuente-alto-callao.webp")
}

#inicio .home-card span {
  color: #fff;
  font-size: 27px;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .25)
}

#inicio .home-card small {
  color: #f5dfb9;
  margin-top: 8px;
  line-height: 1.35
}

#inicio .home-card:hover,
#inicio .home-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(16, 43, 53, .18);
  outline: 3px solid transparent
}

#inicio .home-card:focus-visible {
  box-shadow: 0 0 0 3px var(--warm), 0 0 0 6px var(--gold), 0 14px 32px rgba(16, 43, 53, .18)
}

#inicio .home-card:active {
  transform: translateY(-1px) scale(.99)
}

#inicio .dual-conversion {
  gap: 16px;
  margin-top: 18px
}

#inicio .conversion-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 300px;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, .2);
  background-color: var(--petrol);
  background-image: linear-gradient(90deg, rgba(8, 25, 30, .96), rgba(8, 25, 30, .55) 70%, rgba(8, 25, 30, .18)), url("assets/images/ceviche.webp");
  background-position: center;
  background-size: cover;
  box-shadow: none
}

#inicio .conversion-card.alt {
  background-color: var(--terracotta);
  background-image: linear-gradient(90deg, rgba(73, 28, 19, .96), rgba(99, 42, 27, .58) 70%, rgba(99, 42, 27, .2)), url("assets/images/menu-especial.webp")
}

#inicio .conversion-card h2 {
  font-size: 42px
}

#inicio .conversion-card>div,
#inicio .conversion-card>.btn {
  position: relative;
  z-index: 1
}

#inicio .conversion-card>.btn {
  flex-shrink: 0;
  white-space: nowrap
}

@media(max-width:1080px) {
  #inicio .home-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media(max-width:700px) {
  body {
    padding-bottom: 0
  }

  .category-heading-group {
    gap: 13px;
    margin-bottom: 28px
  }

  .category-back {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    margin-top: 1px
  }

  .category-back svg {
    width: 25px;
    height: 25px
  }

  .hero-actions {
    width: min(300px, 100%);
    margin-inline: auto
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    white-space: nowrap
  }

  .home-menu-heading {
    padding-top: 42px
  }

  .home-menu-heading h2 {
    font-size: 38px
  }

  .home-menu-heading>p:last-child {
    font-size: 16px
  }

  #inicio .home-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  #inicio .home-card {
    min-height: 185px;
    padding: 18px 15px
  }

  #inicio .home-card span {
    font-size: 23px
  }

  #inicio .home-card:nth-child(5) {
    grid-column: 1/-1;
    min-height: 200px
  }

  #inicio .dual-conversion {
    margin-top: 12px
  }

  #inicio .conversion-card {
    min-height: 285px;
    justify-content: flex-end
  }

  #inicio .conversion-card h2 {
    font-size: 34px
  }

  #inicio .conversion-card .btn {
    align-self: stretch;
    text-align: center;
    white-space: nowrap
  }

  body.cart-active {
    padding-bottom: calc(78px + env(safe-area-inset-bottom))
  }
}

@media(prefers-reduced-motion:reduce) {
  .cart-float,
  .category-back,
  .category-back svg {
    animation: none;
    transition: none
  }

  .category-back:hover svg {
    transform: none
  }
}
