@font-face {
  font-family: "Antojo Cooper";
  src:
    local("Cooper BT Bold"),
    local("CooperBT-Bold"),
    local("Cooper Black"),
    local("Cooper Std Black");
  font-weight: 700 950;
}

:root {
  --ink: #16264a;
  --muted: #5e6a88;
  --cream: #fff4bf;
  --paper: #fffaf0;
  --red: #df2438;
  --red-dark: #a31526;
  --gold: #ffd33d;
  --blue: #0c5aa6;
  --blue-dark: #092c69;
  --green: #24844c;
  --charcoal: #061c44;
  --line: rgba(12, 90, 166, 0.16);
  --shadow: 0 24px 70px rgba(9, 44, 105, 0.18);
  --title-font: "Antojo Cooper", "Cooper BT", "Cooper Black", Georgia, ui-serif, serif;
  --body-font: Georgia, "Times New Roman", ui-serif, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  font-weight: 400;
}

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

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

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

.brand,
.nav-links a,
.nav-cta,
.eyebrow,
h1,
h2,
h3,
.button,
.tab,
.menu-title span,
.footer strong {
  font-family: var(--title-font);
  font-weight: 950;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  min-height: 100vh;
  color: white;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 4;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  background: white;
  box-shadow: 0 8px 22px rgba(6, 28, 68, 0.26);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 950;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 28, 68, 0.62);
  backdrop-filter: blur(18px);
}

.nav-links a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: white;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--charcoal);
  background: white;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 38px;
  padding: 58px 0 96px;
  position: relative;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-media {
  position: absolute;
  inset: -76px calc(50% - 50vw) 0 calc(50% - 50vw);
  background:
    linear-gradient(90deg, rgba(6, 28, 68, 0.98) 0%, rgba(9, 44, 105, 0.88) 36%, rgba(9, 44, 105, 0.34) 70%, rgba(6, 28, 68, 0.06) 100%),
    url("assets/brand-photos/hero-frutales-stack.png") 68% center / cover no-repeat;
  z-index: -2;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 28, 68, 0.94) 0%, rgba(9, 44, 105, 0.52) 42%, rgba(6, 28, 68, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 28, 68, 0.08) 42%, rgba(6, 28, 68, 0.7) 100%);
  z-index: 2;
}

.hero-content {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.6rem, 13vw, 9.6rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(223, 36, 56, 0.3);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--gold);
}

.button.full {
  width: 100%;
  border-radius: 8px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.intro-text {
  max-width: 450px;
}

.intro-text h2 {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.intro-text p {
  max-width: 410px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
}

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

.craving-card {
  min-height: 350px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 10px 18px;
  border: 1px solid rgba(12, 90, 166, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  box-shadow: 0 18px 42px rgba(9, 44, 105, 0.11);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.craving-card:hover,
.craving-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(9, 44, 105, 0.16);
}

.craving-card img {
  width: 100%;
  height: 270px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center center;
}

.craving-img-frutal {
  object-position: center 44%;
}

.craving-img-cremoso {
  object-position: center 54%;
}

.craving-img-cuchareable {
  object-position: center 74%;
}

.craving-card span {
  display: block;
  padding: 0 8px;
  font-family: var(--title-font);
  font-weight: 950;
  letter-spacing: 0;
}

.craving-card span {
  color: var(--red);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
}

.craving-card-blue {
  border-top: 7px solid var(--blue);
}

.craving-card-yellow {
  border-top: 7px solid var(--gold);
}

.craving-card-red {
  border-top: 7px solid var(--red);
}

.brand-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 14px;
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
  padding: 0 0 48px;
}

.brand-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
}

.brand-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-feature {
  min-height: 520px;
}

.mosaic-stack {
  display: grid;
  gap: 14px;
}

.mosaic-stack figure {
  min-height: 253px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.reservation-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.7;
}

main .intro-text .eyebrow,
main .menu-heading .eyebrow,
main .reservation-copy .eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--title-font);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.menu-heading {
  display: block;
  margin-bottom: 34px;
}

.menu-heading h2 {
  max-width: 650px;
  margin-top: 22px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 3.8vw, 4.45rem);
  line-height: 1.08;
}

.menu-heading .menu-source-link {
  display: inline-block;
  margin-top: 6px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.tab {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.tab.active {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

.menu-source-link {
  flex: 0 0 auto;
  color: var(--red);
  font-family: "Antojo Cooper", Georgia, serif;
  font-size: 1.02rem;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.menu-board {
  display: grid;
  gap: 26px;
}

.menu-loading,
.menu-error {
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
}

.menu-category.is-hidden {
  display: none;
}

.menu-category {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(9, 44, 105, 0.08);
}

.menu-category-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  border: 0;
  padding: 28px 22px 24px;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 211, 61, 0.22), rgba(12, 90, 166, 0.08));
  cursor: pointer;
  text-align: center;
}

.menu-category-header h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3.3vw, 3.1rem);
  line-height: 1;
}

.menu-category-count {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
  font-family: "Antojo Cooper", Georgia, serif;
  font-size: 1rem;
}

.menu-category-toggle {
  position: absolute;
  right: 24px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(12, 90, 166, 0.24);
  border-radius: 50%;
  background:
    linear-gradient(var(--red), var(--red)) center / 14px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) center / 2px 14px no-repeat;
  transition:
    background-size 160ms ease,
    transform 160ms ease;
}

.menu-category.is-open .menu-category-toggle {
  background-size:
    14px 2px,
    0 14px;
  transform: rotate(180deg);
}

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

.menu-category.is-open .product-list {
  display: grid;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  min-height: 156px;
  padding: 22px;
  background: white;
  cursor: pointer;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  position: relative;
  z-index: 1;
  outline: 0;
  background: #fffdf7;
  box-shadow: 0 18px 42px rgba(9, 44, 105, 0.12);
  transform: translateY(-1px);
}

.product-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.product-heading h4 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.product-price {
  flex: 0 0 auto;
  color: var(--red);
  font-family: "Antojo Cooper", Georgia, serif;
  font-size: 1.1rem;
  white-space: nowrap;
}

.product-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.cart-add {
  margin-top: 16px;
  min-height: 38px;
  padding: 0 15px;
  color: var(--blue);
  border: 1px solid rgba(12, 90, 166, 0.28);
  border-radius: 999px;
  background: rgba(255, 211, 61, 0.14);
  cursor: pointer;
  font-family: var(--title-font);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.product-actions .cart-add {
  margin-top: 0;
}

.cart-add:hover,
.cart-add:focus-visible,
.cart-add.is-added {
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

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

.product-stepper {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  overflow: hidden;
  border: 1px solid rgba(12, 90, 166, 0.22);
  border-radius: 999px;
  background: white;
}

.product-stepper button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--title-font);
  font-size: 1.1rem;
}

.product-stepper button:disabled {
  cursor: not-allowed;
  opacity: 0.34;
}

.product-stepper span {
  min-width: 30px;
  color: var(--ink);
  font-family: var(--title-font);
  text-align: center;
}

.product-image {
  width: 96px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream);
}

.product-modal {
  width: min(840px, calc(100% - 48px));
  max-height: min(680px, calc(100dvh - 48px));
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-modal::backdrop {
  background: rgba(6, 28, 68, 0.76);
  backdrop-filter: blur(10px);
}

.product-modal-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.82fr);
  max-height: min(680px, calc(100dvh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 211, 61, 0.42);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(6, 28, 68, 0.36);
}

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(6, 28, 68, 0.48);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.product-modal-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: white;
}

.product-modal-close span:first-child {
  transform: rotate(45deg);
}

.product-modal-close span:last-child {
  transform: rotate(-45deg);
}

.product-modal-media {
  height: 500px;
  min-height: 0;
  background: white;
}

.product-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.product-modal-media img[hidden] {
  display: none;
}

.product-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(24px, 4vw, 42px);
  overflow-y: auto;
  background:
    linear-gradient(180deg, rgba(255, 211, 61, 0.12), rgba(255, 250, 240, 0)),
    var(--paper);
}

.product-modal-content .eyebrow {
  color: var(--red);
}

.product-modal-content h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.03;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.product-modal[data-title-length="long"] .product-modal-content h2,
.product-modal[data-product-category="combos"] .product-modal-content h2 {
  font-size: clamp(1.85rem, 2.7vw, 2.65rem);
  line-height: 1.08;
}

.product-modal-description {
  max-width: 32rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
}

.product-modal-description[hidden] {
  display: none;
}

.product-modal-footer {
  display: grid;
  gap: 18px;
  margin-top: clamp(22px, 4vw, 34px);
}

.product-modal-footer strong {
  color: var(--blue);
  font-family: var(--title-font);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.cart-bar {
  position: sticky;
  bottom: 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(12, 90, 166, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.97);
  box-shadow: 0 18px 44px rgba(9, 44, 105, 0.18);
  backdrop-filter: blur(10px);
}

.cart-bar[hidden] {
  display: none;
}

.cart-bar strong,
.cart-bar span {
  display: block;
}

.cart-bar strong {
  font-family: var(--title-font);
}

.cart-bar span {
  margin-top: 3px;
  color: var(--blue);
  font-family: var(--title-font);
}

.reservation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(440px, 1fr);
  gap: 64px;
  align-items: start;
  padding-top: 76px;
  border-top: 1px solid var(--line);
}

.reservation-copy {
  max-width: 620px;
}

.reservation-copy .eyebrow {
  color: var(--red);
}

.reservation-copy h2 {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 3.8vw, 4.65rem);
  line-height: 1.08;
}

.reservation-copy > p {
  max-width: 590px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hours {
  margin-top: 58px;
  padding-left: 22px;
  border-left: 4px solid var(--blue);
}

.hours h3 {
  margin-bottom: 14px;
}

.hours p {
  margin-bottom: 12px;
  line-height: 1.55;
}

.booking-panel {
  padding: 28px;
  border: 1px solid rgba(12, 90, 166, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(9, 44, 105, 0.13);
  position: relative;
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--red));
}

.booking-panel .booking-form {
  padding-top: 0;
  border-top: 0;
}

.booking-form {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.booking-form.is-hidden {
  display: none;
}

.checkout-cart {
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 211, 61, 0.12);
}

.checkout-cart-header,
.checkout-total,
.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.checkout-cart-header {
  margin-bottom: 14px;
}

.checkout-cart h3 {
  margin: 0;
  font-size: 1.35rem;
}

.checkout-cart-header a {
  color: var(--blue);
  font-family: var(--title-font);
  white-space: nowrap;
}

.checkout-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.checkout-items {
  display: grid;
  gap: 10px;
}

.checkout-item {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.checkout-item strong,
.checkout-item span {
  display: block;
}

.checkout-item strong {
  font-family: var(--title-font);
  line-height: 1.2;
}

.checkout-item span {
  margin-top: 4px;
  color: var(--muted);
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.cart-quantity button {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--blue);
  border: 1px solid rgba(12, 90, 166, 0.24);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-family: var(--title-font);
}

.checkout-total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.checkout-total strong {
  color: var(--red);
  font-family: var(--title-font);
  font-size: 1.2rem;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.field span {
  display: block;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(12, 90, 166, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 211, 61, 0.1);
  box-shadow: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

input,
select {
  height: 48px;
  padding: 0 14px;
  font-weight: 400;
}

textarea {
  resize: vertical;
  min-height: 108px;
  padding: 14px;
  font-weight: 400;
}

input::placeholder,
textarea::placeholder {
  color: rgba(94, 106, 136, 0.7);
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 211, 61, 0.65);
  outline-offset: 2px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(12, 90, 166, 0.52);
  background: white;
  box-shadow: 0 0 0 3px rgba(12, 90, 166, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
}

.form-status.is-error {
  color: var(--red-dark);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(223, 36, 56, 0.72);
  background: #fff7f3;
  box-shadow: 0 0 0 3px rgba(223, 36, 56, 0.1);
}

.gallery-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 12px;
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
}

.gallery-section img {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-section img:nth-child(2) {
  margin-top: 48px;
  object-position: center 72%;
}

.gallery-section img:nth-child(3) {
  object-position: center 58%;
}

.location-section {
  color: var(--ink);
  background: var(--paper);
}

.location-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 92px;
}

.location-heading {
  margin-bottom: 54px;
  text-align: center;
}

.location-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 54px;
  align-items: stretch;
}

.contact-panel {
  display: grid;
  align-content: start;
  gap: 32px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 211, 61, 0.1);
  box-shadow: 0 14px 38px rgba(9, 44, 105, 0.08);
}

.contact-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-panel h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 1.16rem;
}

.contact-panel p,
.contact-panel a {
  display: block;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-panel a {
  margin-top: 6px;
  transition: color 160ms ease;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
  color: var(--red);
}

.directions-link {
  display: inline-flex;
  justify-self: start;
  margin-left: 56px;
  padding: 13px 18px;
  color: white;
  border-radius: 999px;
  background: var(--blue);
  font-family: var(--title-font);
}

.contact-panel .directions-link {
  color: white;
}

.map-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 211, 61, 0.1);
  box-shadow: 0 24px 70px rgba(9, 44, 105, 0.13);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.map-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  max-width: min(310px, calc(100% - 36px));
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.95);
  box-shadow: 0 18px 38px rgba(9, 44, 105, 0.22);
}

.map-badge span,
.map-badge strong {
  display: block;
}

.map-badge span {
  color: var(--blue);
  font-family: var(--title-font);
  font-size: 1.05rem;
  font-weight: 950;
}

.map-badge strong {
  margin-top: 5px;
  font-weight: 400;
}

.footer {
  color: rgba(255, 247, 232, 0.78);
  background: var(--blue-dark);
  border-top: 1px solid rgba(255, 211, 61, 0.28);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr) minmax(230px, 0.8fr);
  gap: 72px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 34px;
}

.footer-brand strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.footer-brand p {
  max-width: 390px;
  margin: 26px 0 0;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold);
  border: 1px solid rgba(255, 211, 61, 0.42);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--blue-dark);
  border-color: var(--gold);
  background: var(--gold);
}

.footer-social svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-column h3 {
  margin: 0 0 22px;
  color: var(--cream);
  font-size: 1.2rem;
}

.footer-column a {
  display: table;
  margin-top: 15px;
  color: rgba(255, 247, 232, 0.7);
  font-weight: 400;
  transition: color 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 247, 232, 0.11);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 247, 232, 0.74);
  font-family: var(--title-font);
  white-space: nowrap;
}

@media (max-width: 880px) {
  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    background: rgba(6, 28, 68, 0.97);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 70px);
    padding: 74px 0 78px;
  }

  .hero-media {
    inset: -70px calc(50% - 50vw) 0 calc(50% - 50vw);
    opacity: 1;
    background:
      linear-gradient(90deg, rgba(6, 28, 68, 0.96) 0%, rgba(9, 44, 105, 0.62) 54%, rgba(6, 28, 68, 0.22) 100%),
      url("assets/brand-photos/hero-frutales-stack.png") 57% center / cover no-repeat;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(6, 28, 68, 0.92) 0%, rgba(9, 44, 105, 0.44) 58%, rgba(6, 28, 68, 0.14) 100%),
      linear-gradient(180deg, rgba(6, 28, 68, 0.04) 46%, rgba(6, 28, 68, 0.86) 100%);
  }

  .intro,
  .reservation-section,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .intro-text {
    max-width: 680px;
  }

  .intro-text h2,
  .intro-text p {
    max-width: 640px;
  }

  .craving-card {
    min-height: 360px;
  }

  .craving-card img {
    height: 220px;
  }

  .brand-mosaic {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }

  .mosaic-feature,
  .mosaic-stack figure {
    min-height: 300px;
  }

  .section {
    padding: 64px 0;
  }

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

  .product-modal-panel {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .product-modal-media,
  .product-modal-media img {
    height: 320px;
    min-height: 0;
  }

  .product-modal-content {
    min-height: auto;
  }

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

  .gallery-section img,
  .gallery-section img:nth-child(2) {
    height: 260px;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 0.98rem;
  }

  h1 {
    font-size: clamp(3.3rem, 19vw, 5.6rem);
  }

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

  .craving-grid {
    grid-template-columns: 1fr;
  }

  .craving-card {
    min-height: 0;
  }

  .craving-card img {
    height: 245px;
  }

  .section-heading {
    display: block;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: minmax(0, 1fr) 76px;
  }

  .product-image {
    width: 76px;
  }

  .product-modal {
    width: min(100% - 20px, 520px);
    max-height: calc(100dvh - 20px);
  }

  .product-modal-panel {
    max-height: calc(100dvh - 20px);
  }

  .product-modal-media,
  .product-modal-media img {
    height: 270px;
    min-height: 0;
  }

  .product-modal-content {
    justify-content: flex-start;
    padding: 26px 20px 22px;
  }

  .product-modal-footer .button {
    width: 100%;
  }

  .cart-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cart-bar .button {
    width: 100%;
  }

  .checkout-cart-header,
  .checkout-total,
  .checkout-item {
    align-items: flex-start;
  }

  .booking-panel {
    padding: 20px;
  }

  .footer {
    display: block;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 56px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom a {
    display: inline-block;
    margin-top: 18px;
  }
}
