/* =========================================================
   Batata Cofi — styles.css (v4)
   ========================================================= */

/* --- Variables --- */

:root {
  --burgundy:        #7B2D3B;
  --burgundy-deep:   #5C1E2A;
  --burgundy-light:  #9E4455;

  --amber:           #D46A3A;
  --amber-light:     #E8905E;

  --cream:           #F5EDE0;
  --cream-deep:      #EDE0CC;
  --cream-darker:    #DDD0BA;

  --ink:             #2C1810;
  --ink-mid:         #5A3D2B;
  --ink-light:       #8C6A4F;

  --font-display:    'Raleway', sans-serif;
  --font-heading:    'Raleway', sans-serif;
  --font-accent:     'Raleway', sans-serif;
  --font-sans:       'Raleway', sans-serif;

  --shadow-sm:       0 2px 8px rgba(44, 24, 16, 0.06);
  --shadow-md:       0 8px 24px rgba(44, 24, 16, 0.10);
  --shadow-lg:       0 16px 48px rgba(44, 24, 16, 0.18);

  --ease-out:        cubic-bezier(0.22, 1, 0.36, 1);

  --container:       min(90%, 1120px);
}

/* --- Reset --- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-mid);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

::selection {
  background: var(--burgundy);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

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

/* =========================================================
   SITE NAV — Sticky navbar
   ========================================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--cream);
  box-shadow: 0 1px 8px rgba(44, 24, 16, 0.08);
  transition: box-shadow 300ms ease;
}
.site-nav.scrolled {
  box-shadow: 0 2px 12px rgba(44, 24, 16, 0.14);
}

/* Offset for fixed nav when scrolling to sections */
section[id] {
  scroll-margin-top: 80px;
}
@media (max-width: 768px) {
  section[id] { scroll-margin-top: 110px; }
}
.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-nav__logo img {
  height: 32px;
  width: auto;
}
.site-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav__link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 2px;
  transition: color 150ms ease, background-color 150ms ease;
  white-space: nowrap;
}
.site-nav__link:hover {
  color: var(--burgundy);
  background: var(--cream-deep);
}
.site-nav__link.active {
  color: var(--burgundy);
  font-weight: 600;
}

.site-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 1001;
}
.site-nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.site-nav__hamburger[aria-expanded="true"] .site-nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav__hamburger[aria-expanded="true"] .site-nav__hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-nav__hamburger[aria-expanded="true"] .site-nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .site-nav__inner {
    flex-direction: row;
    padding: 10px 16px;
    gap: 6px;
  }
  .site-nav__logo img { height: 26px; }
  .site-nav__hamburger {
    display: flex;
  }
  .site-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(44, 24, 16, 0.12);
    border-top: 1px solid var(--cream-darker);
  }
  .site-nav__links.is-open {
    display: flex;
  }
  .site-nav__links li {
    width: 100%;
  }
  .site-nav__links .site-nav__link {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--cream-darker);
    text-decoration: none;
    letter-spacing: 0;
  }
  .site-nav__links li:last-child .site-nav__link {
    border-bottom: none;
  }
  .site-nav__links .site-nav__link.is-active {
    color: var(--burgundy);
    font-weight: 600;
  }
}
@media (max-width: 360px) {
  .site-nav__link {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* --- Layout --- */

.container {
  width: var(--container);
  margin: 0 auto;
}

/* --- Components --- */

.section-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
  cursor: pointer;
  line-height: 1;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--burgundy);
  color: #fff;
  border: 2px solid var(--burgundy);
}
.btn--primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-1px);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero__bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}

.hero__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.18) 0%,
    rgba(44, 24, 16, 0.34) 50%,
    rgba(44, 24, 16, 0.45) 100%
  );
}

.hero__content {
  text-align: center;
  color: #fff;
  max-width: 640px;
  margin-top: -3vh;
}

.hero__logo {
  width: 180px;
  height: auto;
  margin: 0 auto 24px;
  filter: brightness(0) invert(1);
}

/* Store status indicator */

.store-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(44, 24, 16, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
  margin: 0 auto 24px;
  transition: opacity 200ms ease;
}
.store-status__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-darker);
  flex-shrink: 0;
}
.store-status.is-open .store-status__dot {
  background: #4CAF50;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
  animation: pulse-status 2s infinite;
}
.store-status__message {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@keyframes pulse-status {
  0%   { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* Hero CTAs */

.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  animation: heroScrollBounce 2.5s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: currentColor;
  margin-bottom: 6px;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   BANNER
   ========================================================= */

.banner {
  background: var(--burgundy);
  color: #fff;
  padding: 18px 20px;
  animation: bannerSlideDown 400ms ease both;
  text-align: center;
}
.banner__inner {
  max-width: 800px;
  margin: 0 auto;
}
.banner__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.banner__sub {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  opacity: 0.78;
  line-height: 1.5;
}
.banner__sub a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s ease;
}
.banner__sub a:hover {
  border-color: rgba(255, 255, 255, 0.85);
}
.banner__items {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.banner__item {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  opacity: 0.9;
}
.banner__item strong { font-weight: 500; }
.banner__price {
  opacity: 0.6;
  margin-left: 6px;
  font-size: 0.75rem;
}
@keyframes bannerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* =========================================================
   COMBOS PATATEROS (featured)
   ========================================================= */

.combos-feature {
  background: var(--cream-deep);
  padding: 64px 20px;
}

.combos-feature__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 8px;
}

.combos-feature__sub {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink-light);
  max-width: 520px;
  margin-bottom: 32px;
}

.combos-feature__cards {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 4px 20px 16px;
  -webkit-overflow-scrolling: touch;
}
.combos-feature__cards::-webkit-scrollbar { display: none; }

.combo-card {
  flex: 0 0 80%;
  scroll-snap-align: start;
  position: relative;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
  border: 1px solid var(--cream-darker);
}
.combo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.combo-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
}
.combo-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.combo-card:hover .combo-card__image {
  transform: scale(1.05);
}
.combo-card__price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.combo-card__body { padding: 16px 20px 20px; }
.combo-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
  font-weight: 700;
}
.combo-card__hint {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--ink-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.combo-card__hint::after {
  content: "→";
  display: inline-block;
  transition: transform 200ms ease;
}
.combo-card:hover .combo-card__hint::after {
  transform: translateX(4px);
}

.combos-feature__rest {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  border-radius: 4px;
}
.combos-feature__rest-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 12px;
}
.combos-rest-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--cream-darker);
}
.combos-rest-list li:last-child { border-bottom: none; }
.combos-rest-list__name { line-height: 1.4; }
.combos-rest-list__name.has-photo { cursor: pointer; }
.combos-rest-list__price {
  font-weight: 500;
  color: var(--burgundy);
  white-space: nowrap;
  flex-shrink: 0;
}

/* =========================================================
   COMBO MODAL
   ========================================================= */

.combo-modal {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 200ms ease;
}
.combo-modal[hidden] { display: none; }
.combo-modal.is-visible { opacity: 1; }
.combo-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  color: var(--ink-light);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 150ms ease, transform 150ms ease;
  z-index: 1;
}
.combo-modal__close:hover {
  color: var(--ink);
  transform: rotate(90deg);
}
.combo-modal__content {
  background: var(--cream);
  border-radius: 4px;
  text-align: center;
  max-width: 500px;
  width: 90vw;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 200ms ease;
}
.combo-modal.is-visible .combo-modal__content {
  transform: scale(1);
}
.combo-modal__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.combo-modal__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--ink);
  padding: 20px 20px 8px;
  font-weight: 700;
}
.combo-modal__price {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  color: var(--burgundy);
  padding: 0 20px 20px;
}
.combo-modal__encargar[hidden] { display: none; }
.combo-modal__encargar {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 12px 24px;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  transition: background 150ms ease;
}
.combo-modal__encargar:hover { background: #C05028; }
body.modal-open { overflow: hidden; }

/* =========================================================
   CARTA
   ========================================================= */

.carta {
  background: var(--cream);
  padding: 64px 0 0;
}
.carta > .container { padding-bottom: 64px; }

.carta__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

/* Tabs */

.tabs {
  position: relative;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--cream-darker);
}
.tabs__track {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs__track::-webkit-scrollbar { display: none; }

.tab {
  flex: 0 0 auto;
  padding: 12px 20px;
  font-family: var(--font-accent);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.tab:hover { color: var(--ink); }
.tab--active {
  color: var(--burgundy);
  border-bottom-color: var(--burgundy);
}
@media (max-width: 767px) {
  .tabs::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 1px;
    width: 40px;
    background: linear-gradient(to right, transparent, var(--cream));
    pointer-events: none;
  }
}

/* Menu list */

.menu-list {
  background: var(--cream);
  border-radius: 2px;
  overflow: hidden;
  transition: opacity 150ms ease;
  border: 1px solid var(--cream-darker);
}
.menu-list--combos {
  background: none;
  border: none;
}
.menu-list.fading { opacity: 0; }

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 16px;
  transition: background-color 120ms ease;
}
.menu-item:hover { background: var(--cream-deep); }
.menu-item + .menu-item { border-top: 1px solid var(--cream-darker); }

.menu-item__info { flex: 1; min-width: 0; }
.menu-item__name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  display: block;
  color: var(--ink);
  line-height: 1.3;
}
.menu-item__desc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--ink-light);
  margin-top: 3px;
  display: block;
  line-height: 1.45;
}
.menu-item__tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 2px;
  margin-top: 6px;
}
.menu-item__tag--vegetariano { background: var(--amber); color: #fff; }
.menu-item__tag--sin-gluten  { background: var(--cream-deep); color: var(--ink-mid); }
.menu-item__tag--sin-lacteos { background: var(--cream); color: var(--burgundy); }

.menu-item__price {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--burgundy);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

/* Combos section (within tabs) */

.combos-section {
  background: var(--burgundy);
  border-radius: 2px;
  padding: 28px 24px 16px;
}
.combos__horario {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}
.combos__subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.combos__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 20px 0;
}
.combos-section .menu-item { padding: 12px 0; }
.combos-section .menu-item:hover { background: rgba(0, 0, 0, 0.08); }
.combos-section .menu-item + .menu-item { border-top-color: rgba(255, 255, 255, 0.1); }
.combos-section .menu-item__name  { color: #fff; font-family: var(--font-heading); }
.combos-section .menu-item__desc  { color: rgba(255, 255, 255, 0.55); }
.combos-section .menu-item__price { color: rgba(255, 255, 255, 0.9); }

/* =========================================================
   PASTELERÍA DEL DÍA
   ========================================================= */

.pastry-section {
  background: var(--cream);
  padding: 60px 20px 80px;
  text-align: center;
}
.pastry-section__label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}
.pastry-section__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-mid);
  margin-bottom: 32px;
  font-style: italic;
}
.pastry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.pastry-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-deep);
}
.pastry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.pastry-card:hover img { transform: scale(1.04); }
.pastry-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 12px 12px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(44,24,16,0.7));
  text-align: left;
}

/* =========================================================
   TORTAS ENTERAS
   ========================================================= */

.tortas {
  background: var(--cream);
  padding: 60px 20px 80px;
  text-align: center;
}
.tortas__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.tortas__text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-mid);
  margin-bottom: 32px;
  font-style: italic;
}
.tortas__cta-wrap {
  text-align: center;
  margin-top: 32px;
}
.tortas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.torta-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-deep);
  cursor: pointer;
  margin: 0;
}
.torta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.torta-card:hover img { transform: scale(1.04); }
.torta-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 12px 12px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(transparent, rgba(44,24,16,0.75));
  text-align: left;
}
.torta-card__price {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--cream);
  color: var(--burgundy);
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}
@media (min-width: 600px) {
  .tortas__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .tortas__grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 150ms ease;
}
.btn--whatsapp:hover {
  background: #1da851;
}
.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* =========================================================
   PARTNERS
   ========================================================= */

.partners {
  background: var(--cream-deep);
  padding: 64px 20px;
}
.partners__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.partners__inner .section-label { margin-bottom: 28px; }
.partners__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 24px;
  background: var(--cream);
  border: 1px solid var(--cream-darker);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms ease;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber);
}
.partner-card__caption {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--ink);
  font-weight: 600;
}
.partner-card__logo {
  height: 36px;
  width: auto;
  display: block;
}
.partner-card__cta {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  transition: color 200ms ease;
}
.partner-card:hover .partner-card__cta { color: var(--burgundy); }

/* =========================================================
   FIND US (Encontranos with stickers)
   ========================================================= */

.find-us {
  position: relative;
  background: var(--cream);
  padding: 80px 20px;
  overflow: hidden;
}
.find-us__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.find-us__header {
  text-align: center;
  margin-bottom: 48px;
}
.find-us__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin: 12px 0 8px;
  letter-spacing: 0.01em;
}
.find-us__subtitle {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--ink-light);
  font-style: italic;
}

.find-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.find-us__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-block {
  background: var(--cream-deep);
  border-left: 3px solid var(--amber);
  padding: 20px 24px;
  border-radius: 4px;
  position: relative;
}
.info-block__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.info-block__value {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600;
}
.info-block__link, .info-block__instagram {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms ease;
}
.info-block__instagram {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
}
.info-block__link:hover, .info-block__instagram:hover { color: var(--amber); }
.info-block__list {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--ink-mid);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.status-dot--open {
  background: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}
.status-dot--closed {
  background: var(--cream-darker);
}

.find-us__map-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--cream-darker);
  box-shadow: var(--shadow-sm);
}
.find-us__map { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; display: block; }

/* Stickers */

.sticker {
  position: absolute;
  width: var(--sticker-size, 80px);
  height: auto;
  opacity: var(--sticker-opacity, 0.2);
  transform: rotate(var(--sticker-rotation, 0deg));
  z-index: 1;
  pointer-events: none;
  transition: transform 400ms ease;
  filter: saturate(0.9);
}
.sticker--1 { top: 5%;    left: 4%;   --sticker-rotation: -14deg; --sticker-size: 90px;  --sticker-opacity: 0.22; }
.sticker--2 { top: 8%;    right: 5%;  --sticker-rotation: 18deg;  --sticker-size: 70px;  --sticker-opacity: 0.18; }
.sticker--3 { display: none; }
.sticker--4 { bottom: 6%; left: 8%;   --sticker-rotation: 12deg;  --sticker-size: 100px; --sticker-opacity: 0.25; }
.sticker--5 { bottom: 10%; right: 7%; --sticker-rotation: -22deg; --sticker-size: 80px;  --sticker-opacity: 0.2; }

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--burgundy);
  color: #fff;
  padding: 56px 0 48px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer__logo {
  width: 72px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  margin-bottom: 4px;
}
.footer__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}
.footer__location {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  opacity: 0.55;
  margin-top: -4px;
}
.footer__ig {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  margin-top: 4px;
}
.footer__ig:hover { opacity: 1; }
.footer__copy {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  opacity: 0.35;
  margin-top: 12px;
}
.footer__newsletter {
  width: 100%;
  text-align: center;
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer__newsletter-title {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer__newsletter-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.footer__newsletter-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}
.footer__newsletter-input {
  flex: 1;
  padding: 10px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  color: rgba(255,255,255,0.5);
}
.footer__newsletter-input::placeholder {
  color: rgba(255,255,255,0.35);
}
.footer__newsletter-btn {
  padding: 10px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: not-allowed;
}
.footer__newsletter-soon {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  font-style: italic;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 768px) {
  .hero__logo { width: 220px; }

  .hero__ctas {
    flex-direction: row;
    max-width: none;
    width: auto;
  }
  .combos-feature { padding: 96px 40px; }
  .combos-feature__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: visible;
    margin: 0;
    padding: 4px 0 0;
  }
  .combo-card { flex: none; scroll-snap-align: none; }

  .partners { padding: 96px 40px; }
  .partners__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .pastry-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .pastry-section { padding: 80px 40px 96px; }

  .find-us { padding: 100px 40px; }
  .find-us__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
  }
  .find-us__map-wrap {
    aspect-ratio: auto;
    min-height: 460px;
    align-self: stretch;
  }

  .sticker--1 { --sticker-size: 110px; }
  .sticker--2 { --sticker-size: 90px;  top: 14%; right: 8%; }
  .sticker--3 {
    display: block;
    top: 50%;
    right: -20px;
    --sticker-rotation: 15deg;
    --sticker-size: 75px;
    --sticker-opacity: 0.15;
  }
  .sticker--4 { --sticker-size: 120px; }
  .sticker--5 { --sticker-size: 95px; }

  @media (hover: hover) {
    .sticker {
      pointer-events: auto;
    }
    .sticker:hover {
      transform: rotate(calc(var(--sticker-rotation, 0deg) + 5deg));
    }
  }
}

@media (min-width: 1024px) {
  .hero {
    height: min(100svh, 720px);
    height: min(100vh, 720px);
  }
  @supports (height: 100svh) {
    .hero { height: min(100svh, 720px); }
  }

  .hero__logo { width: 240px; }

  .menu-item { padding: 16px 28px; }
  .combos-section .menu-item { padding: 12px 8px; }

  .tab { padding: 12px 24px; }

  .carta { padding-top: 96px; }
  .carta > .container { padding-bottom: 96px; }
}

/* =========================================================
   v5 — SIRVIENDO AHORA (top bar)
   ========================================================= */

.serving-now {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 237, 224, 0.08);
  font-family: var(--font-sans);
  animation: serving-fade-down 400ms var(--ease-out) both;
}
.serving-now__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}
.serving-now__pulse {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(212, 106, 58, 0.6);
  animation: pulse-amber 2.4s infinite;
}
@keyframes pulse-amber {
  0%   { box-shadow: 0 0 0 0 rgba(212, 106, 58, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(212, 106, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 106, 58, 0); }
}
@keyframes serving-fade-down {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.serving-now__items {
  display: flex;
  gap: 24px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.serving-now__items::-webkit-scrollbar { display: none; }
.serving-now__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}
.serving-now__label {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
}
.serving-now__sep {
  color: rgba(245, 237, 224, 0.4);
}
.serving-now__text {
  color: var(--cream);
  font-weight: 400;
}
@media (max-width: 600px) {
  .serving-now__items { scroll-snap-type: x mandatory; }
  .serving-now__item { scroll-snap-align: start; }
}

/* =========================================================
   v5 — INSTAGRAM FEED
   ========================================================= */

.instagram-feed {
  background: var(--cream-deep);
  padding: 64px 20px;
  text-align: center;
}
.instagram-feed__inner {
  max-width: 540px;
  margin: 0 auto;
}
.instagram-feed__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 1.875rem);
  font-weight: 700;
  color: var(--burgundy);
  margin: 8px 0 6px;
}
.instagram-feed__subtitle {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--ink-light);
  margin-bottom: 24px;
}
.instagram-feed__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
}
.ig-tile {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-darker);
  text-decoration: none;
}
.ig-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--cream-deep) 30%, var(--cream-darker) 50%, var(--cream-deep) 70%);
  background-size: 200% 100%;
  animation: ig-shimmer 1.6s linear infinite;
  z-index: 0;
}
.ig-tile img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
  z-index: 1;
}
.ig-tile:hover img { transform: scale(1.06); }
@keyframes ig-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.ig-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(123, 45, 59, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: background 250ms ease, opacity 250ms ease;
  z-index: 2;
}
.ig-tile__overlay svg { width: 22px; height: 22px; }
.ig-tile:hover .ig-tile__overlay {
  background: rgba(123, 45, 59, 0.55);
  opacity: 1;
}
.instagram-feed__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--burgundy);
  padding: 0;
  text-decoration: none;
  transition: color 200ms ease;
  letter-spacing: 0.04em;
  background: none;
  border: none;
}
.instagram-feed__cta:hover {
  color: var(--amber);
}
.instagram-feed__cta svg { width: 16px; height: 16px; }

@media (min-width: 768px) {
  .instagram-feed { padding: 80px 40px; }
  .instagram-feed__grid { gap: 4px; }
  .instagram-feed__inner { max-width: 480px; }
}

/* =========================================================
   v5 — TESTIMONIOS
   ========================================================= */

.testimonials {
  background: var(--cream);
  padding: 64px 20px;
}
.testimonials__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.testimonials__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 12px 0 36px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}
.testimonial-card {
  background: var(--cream-deep);
  padding: 28px 24px;
  border-radius: 4px;
  border: 1px solid var(--cream-darker);
  position: relative;
}
.testimonial-card__quote-icon {
  width: 26px;
  height: 26px;
  color: var(--amber);
  margin-bottom: 12px;
  opacity: 0.7;
}
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 18px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--cream-darker);
  padding-top: 14px;
}
.testimonial-card__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink-mid);
}
.testimonial-card__source {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.testimonials__more-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--burgundy);
  text-decoration: none;
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 2px;
  transition: color 150ms ease, border-color 150ms ease;
}
.testimonials__more-link:hover {
  color: var(--amber);
  border-color: var(--amber);
}
@media (min-width: 768px) {
  .testimonials { padding: 96px 40px; }
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* =========================================================
   v5 — DESPENSA
   ========================================================= */

.pantry {
  background: var(--cream);
  padding: 64px 20px;
}
.pantry__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pantry__header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pantry__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 12px 0 16px;
}
.pantry__intro {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.6;
}
.pantry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pantry-card {
  position: relative;
  background: var(--cream-deep);
  border: 1px solid var(--cream-darker);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}
.pantry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.pantry-card__image-wrap {
  aspect-ratio: 1 / 1;
  background: var(--cream-darker);
  overflow: hidden;
}
.pantry-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pantry-card__body {
  padding: 14px 14px 16px;
}
.pantry-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}
.pantry-card__desc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--ink-light);
  line-height: 1.45;
}
.pantry-card--coming-soon .pantry-card__image {
  filter: saturate(0.4) brightness(0.95);
  opacity: 0.7;
}
.pantry-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.pantry-card--coming-soon .pantry-card__badge {
  background: var(--cream-darker);
  color: var(--ink-mid);
}
.pantry-card--placeholder .pantry-card__image-wrap {
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pantry-card--placeholder .pantry-card__image {
  width: 60%;
  height: auto;
  object-fit: contain;
  filter: saturate(0) brightness(0.85);
  opacity: 0.35;
}
.pantry__cta {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink-mid);
  text-align: center;
  margin-top: 28px;
}
.pantry__cta-link {
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  transition: color 150ms ease, border-color 150ms ease;
}
.pantry__cta-link:hover {
  color: var(--amber);
  border-color: var(--amber);
}
.pantry__cta-wrap {
  text-align: center;
  margin-top: 32px;
}
.pantry__cta-wrap .pantry__cta {
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .pantry__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 900px) {
  .pantry { padding: 96px 40px; }
  .pantry__grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}

/* =========================================================
   v5 — APRENDÉ CAFÉ (newsletter)
   ========================================================= */

.education {
  background: var(--burgundy);
  color: #fff;
  padding: 64px 20px;
}
.education__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.education .section-label { color: var(--amber-light); }
.education__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 12px 0 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.education__copy {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form__label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  text-align: left;
}
.newsletter-form__input {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 4px;
  transition: border-color 200ms ease, background 200ms ease;
}
.newsletter-form__input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form__input:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,255,255,0.1);
}
.newsletter-form__submit {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 14px 24px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
  letter-spacing: 0.02em;
}
.newsletter-form__submit:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}
.newsletter-form__hint {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
.newsletter-brevo { max-width: 540px; margin: 0 auto; }
.newsletter-brevo__iframe { width: 100%; border: 0; min-height: 320px; }

@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .newsletter-form__label { width: 100%; }
  .newsletter-form__input { flex: 1; min-width: 240px; }
  .newsletter-form__submit { flex-shrink: 0; }
  .newsletter-form__hint { width: 100%; text-align: left; }
}
.education__upcoming {
  margin-top: 24px;
  margin-bottom: 24px;
}
.education__upcoming-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.education__dates {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.education__date-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 16px 20px;
  flex: 1;
  min-width: 200px;
}
.education__date-card strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.education__date-card span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

@media (min-width: 768px) {
  .education { padding: 96px 40px; }
}

/* =========================================================
   v5 — VOUCHER CTA
   ========================================================= */

.voucher-cta {
  background: var(--cream-deep);
  padding: 64px 20px;
  text-align: center;
}
.voucher-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.voucher-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 12px 0 16px;
}
.voucher-cta__copy {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 28px;
}
.voucher-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  padding: 16px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(212, 106, 58, 0.25);
}
.voucher-cta__button:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 106, 58, 0.35);
}
.voucher-cta__proof {
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-light);
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.voucher-cta__fineprint {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--ink-light);
  margin-top: 16px;
  font-style: italic;
}
@media (min-width: 768px) {
  .voucher-cta { padding: 96px 40px; }
}

/* =========================================================
   v5 — VOUCHER MODAL
   ========================================================= */

.voucher-modal {
  position: fixed;
  inset: 0;
  background: rgba(44, 24, 16, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 250ms ease;
  overflow-y: auto;
}
.voucher-modal[hidden] { display: none; }
.voucher-modal.is-visible { opacity: 1; }
.voucher-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  transition: color 150ms ease, transform 150ms ease;
  z-index: 1;
}
.voucher-modal__close:hover {
  color: var(--amber);
  transform: rotate(90deg);
}
.voucher-modal__content {
  background: var(--cream);
  max-width: 480px;
  width: 100%;
  padding: 36px 24px;
  border-radius: 6px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.voucher-modal__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burgundy);
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.voucher-modal__subtitle {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink-mid);
  text-align: center;
  margin-bottom: 24px;
}
.voucher-modal__google-link {
  color: var(--burgundy);
  text-decoration: underline;
  font-weight: 500;
}
.voucher-modal__google-link:hover { color: var(--amber); }

.voucher-form { display: flex; flex-direction: column; gap: 14px; }
.voucher-form__field { display: flex; flex-direction: column; gap: 6px; }
.voucher-form__field span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.voucher-form__field input {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  padding: 12px 14px;
  background: var(--cream-deep);
  border: 1px solid var(--cream-darker);
  color: var(--ink);
  border-radius: 3px;
  transition: border-color 150ms ease;
}
.voucher-form__field input:focus {
  outline: none;
  border-color: var(--burgundy);
}
.voucher-form__field small {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--ink-light);
  font-style: italic;
}
.voucher-form__submit {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  background: var(--burgundy);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 150ms ease;
  letter-spacing: 0.02em;
}
.voucher-form__submit:hover { background: var(--burgundy-deep); }
.voucher-form__submit:disabled {
  background: var(--cream-darker);
  cursor: not-allowed;
}

/* Voucher ticket */

.voucher-ticket {
  background: var(--burgundy);
  color: #fff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.2);
}
.voucher-ticket__top {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
}
.voucher-ticket__brand {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.voucher-ticket__type {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
}
.voucher-ticket__perforation {
  height: 12px;
  background: var(--cream);
  position: relative;
}
.voucher-ticket__perforation::before,
.voucher-ticket__perforation::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 16px;
  height: 16px;
  background: var(--cream);
  border-radius: 50%;
}
.voucher-ticket__perforation::before { left: -8px; }
.voucher-ticket__perforation::after { right: -8px; }
.voucher-ticket__body {
  padding: 22px 24px 26px;
  text-align: center;
}
.voucher-ticket__label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.voucher-ticket__code {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 18px;
  word-break: break-all;
}
.voucher-ticket__expiry {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--amber-light);
}
.voucher-result__instructions {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--ink);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 12px;
}
.voucher-result__note {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--ink-light);
  text-align: center;
  font-style: italic;
}

/* =========================================================
   v5 — PRINT (voucher-only)
   ========================================================= */

@media print {
  body * { visibility: hidden; }
  .voucher-modal, .voucher-modal * { visibility: visible; }
  .voucher-modal {
    position: absolute;
    inset: 0;
    background: #fff;
    padding: 0;
  }
  .voucher-modal__close { display: none; }
  .voucher-modal__content {
    box-shadow: none;
    max-width: 100%;
  }
}

/* =========================================================
   v6 — Menu items clickeables (con foto)
   ========================================================= */

.menu-item.has-photo {
  cursor: pointer;
  transition: background-color 200ms ease;
}
.menu-item.has-photo:hover {
  background: var(--cream-deep);
}
.menu-item.has-photo:active {
  background: var(--cream-darker);
}
.menu-item__photo-hint {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  color: var(--ink-light);
  opacity: 0.45;
  margin-left: 8px;
  transition: opacity 200ms ease, color 200ms ease;
}
.menu-item.has-photo:hover .menu-item__photo-hint {
  opacity: 1;
  color: var(--burgundy);
}
.menu-item__photo-hint svg {
  width: 100%;
  height: 100%;
}

/* =========================================================
   v6 — Pastelería del día (11 fotos)
   ========================================================= */

.pastry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
}
.pastry-card {
  cursor: pointer;
}
.pastry-card.has-photo {
  cursor: pointer;
}
@media (min-width: 600px) {
  .pastry-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
@media (min-width: 900px) {
  .pastry-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

/* =========================================================
   v6 — Education con video de fondo
   ========================================================= */

.education {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.education__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.education__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
  min-width: 100%;
  min-height: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .education__video { display: none; }
}
.education__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(92, 30, 42, 0.6) 0%,
    rgba(92, 30, 42, 0.45) 35%,
    rgba(92, 30, 42, 0.4) 50%,
    rgba(92, 30, 42, 0.45) 65%,
    rgba(92, 30, 42, 0.65) 100%
  );
}
.education__inner {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HERO v23 — headline + rating + CTAs secundarios
   ========================================================= */

.hero__headline {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 720px;
  margin: 24px auto 14px;
  text-wrap: balance;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 14px auto 22px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: background 180ms var(--ease-out), border-color 180ms var(--ease-out);
}

.hero__rating:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero__rating-stars {
  color: #FFD56B;
  display: inline-flex;
  line-height: 0;
}

.hero__rating-text {
  font-weight: 400;
}
.hero__rating-text strong {
  font-weight: 700;
  margin-right: 2px;
}

.hero__secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero__secondary li { list-style: none; }

.hero__secondary a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}

.hero__secondary a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.hero__secondary svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .hero__secondary { gap: 4px 18px; }
  .hero__secondary a { font-size: 12px; }
}

/* =========================================================
   TRUST BAR v23
   ========================================================= */

.trust-bar {
  background: var(--cream-deep);
  border-top: 1px solid var(--cream-darker);
  border-bottom: 1px solid var(--cream-darker);
  padding: clamp(28px, 4.5vw, 44px) 20px;
}

.trust-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.trust-bar__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--burgundy);
}

.trust-bar__text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-mid);
  letter-spacing: 0.005em;
}

@media (max-width: 860px) {
  .trust-bar__inner {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }
}

@media (max-width: 420px) {
  .trust-bar { padding: 24px 20px; }
  .trust-bar__inner { gap: 18px 14px; }
  .trust-bar__icon { width: 24px; height: 24px; }
  .trust-bar__text { font-size: 13px; }
}

/* =========================================================
   COMBOS v23 — variantes y descripción
   ========================================================= */

.combo-card__desc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-light);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.combo-card__price-badge--consultar {
  background: var(--cream);
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  box-shadow: none;
}

.combo-card__hint--ig {
  color: var(--burgundy);
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.combo-card--consultar { cursor: default; }
.combo-card--consultar:hover { transform: none; box-shadow: none; }

.combos-rest-list__price--consultar {
  color: var(--burgundy);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  text-decoration: none;
}

.combos-feature__footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.combos-feature__note {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--ink-light);
  max-width: 640px;
  line-height: 1.5;
}

/* La sección cambia de paleta sutilmente según franja */
.combos-feature[data-timeslot="manana"]    { background: var(--cream-deep); }
.combos-feature[data-timeslot="mediodia"]  { background: var(--cream); }
.combos-feature[data-timeslot="tarde"]     { background: var(--cream-deep); }
.combos-feature[data-timeslot="after-hours"] {
  background: var(--ink);
  color: var(--cream);
}
.combos-feature[data-timeslot="after-hours"] .combos-feature__title { color: var(--cream); }
.combos-feature[data-timeslot="after-hours"] .combos-feature__sub   { color: rgba(245, 237, 224, 0.7); }
.combos-feature[data-timeslot="after-hours"] .section-label         { color: var(--amber-light); }
.combos-feature[data-timeslot="after-hours"] .combo-card            { background: rgba(245, 237, 224, 0.06); border-color: rgba(245, 237, 224, 0.12); }
.combos-feature[data-timeslot="after-hours"] .combo-card__name      { color: var(--cream); }
.combos-feature[data-timeslot="after-hours"] .combo-card__desc      { color: rgba(245, 237, 224, 0.6); }
.combos-feature[data-timeslot="after-hours"] .combos-feature__note  { color: rgba(245, 237, 224, 0.55); }

/* =========================================================
   UNIVERSE BATATA v23 — sección teaser de 3 cards
   ========================================================= */

.universe {
  background: var(--cream);
  padding: clamp(64px, 10vw, 110px) 20px;
  position: relative;
}

.universe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(60px, 8vw, 96px);
  height: 1px;
  background: var(--cream-darker);
}

.universe__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.universe__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.universe__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.875rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 14px;
  text-wrap: balance;
}

.universe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.universe-card {
  background: var(--cream-deep);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease-out);
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.universe-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -18px rgba(44, 24, 16, 0.22);
  border-color: var(--cream-darker);
}

.universe-card__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-darker);
}

.universe-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.universe-card:hover .universe-card__image {
  transform: scale(1.04);
}

.universe-card__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.universe-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.28;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  text-wrap: balance;
}

.universe-card__copy {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}

.universe-card__cta {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--burgundy);
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  position: relative;
  transition: color 160ms var(--ease-out);
}

.universe-card__cta::after {
  content: ' →';
  display: inline-block;
  transition: transform 200ms var(--ease-out);
}

.universe-card:hover .universe-card__cta {
  color: var(--burgundy-deep);
}
.universe-card:hover .universe-card__cta::after {
  transform: translateX(3px);
}

@media (max-width: 920px) {
  .universe__grid { grid-template-columns: 1fr 1fr; }
  .universe-card:nth-child(3) { grid-column: 1 / -1; }
  .universe-card:nth-child(3) .universe-card__image-wrap { aspect-ratio: 16 / 7; }
}

@media (max-width: 600px) {
  .universe__grid { grid-template-columns: 1fr; gap: 16px; }
  .universe-card:nth-child(3) { grid-column: auto; }
  .universe-card:nth-child(3) .universe-card__image-wrap { aspect-ratio: 4 / 3; }
}

/* =========================================================
   STORY v23 — Dos hermanos, una obsesión
   ========================================================= */

.story {
  background: var(--cream-deep);
  padding: clamp(72px, 11vw, 120px) 20px;
}

.story__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.story__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 72px);
}

.story__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 14px;
  text-wrap: balance;
}

.story__editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 88px);
}

.story__text p {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 1.1em;
}

.story__text p:last-child { margin-bottom: 0; }

.story__hero {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.story__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story__quote {
  margin: 0 auto clamp(56px, 8vw, 88px);
  max-width: 880px;
  text-align: center;
  position: relative;
  padding: 0 24px;
}

.story__quote::before,
.story__quote::after {
  content: '';
  display: block;
  width: clamp(40px, 6vw, 72px);
  height: 1px;
  background: var(--burgundy);
  margin: 0 auto;
}
.story__quote::before { margin-bottom: clamp(28px, 4vw, 40px); }
.story__quote::after  { margin-top: clamp(28px, 4vw, 40px); }

.story__quote p {
  font-family: var(--font-display);
  font-weight: 100;
  font-size: clamp(1.5rem, 3.6vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--burgundy);
  font-style: italic;
  text-wrap: balance;
  margin: 0;
}

.story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story__grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

@media (max-width: 820px) {
  .story__editorial {
    grid-template-columns: 1fr;
  }
  .story__hero {
    aspect-ratio: 4 / 3;
    max-width: 560px;
    margin: 0 auto;
  }
  .story__grid {
    grid-template-columns: 1fr 1fr;
  }
  .story__grid img:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .story__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .story__grid img:nth-child(3) {
    grid-column: auto;
    aspect-ratio: 1 / 1;
  }
}

/* =========================================================
   TESTIMONIALS v23 — CTA voucher secundario
   ========================================================= */

.testimonials__voucher-link {
  display: inline-block;
  margin-top: 14px;
  margin-left: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--amber);
  letter-spacing: 0.02em;
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  transition: color 160ms var(--ease-out);
}

.testimonials__voucher-link:hover {
  color: var(--burgundy);
}

@media (min-width: 720px) {
  .testimonials__voucher-link {
    margin-left: 32px;
    margin-top: 0;
  }
}

/* =========================================================
   MOBILE STICKY CTA v23
   ========================================================= */

.mobile-cta-bar { display: none; }

@media (max-width: 768px) {
  body { padding-bottom: 76px; }

  .mobile-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 90;
    background: var(--burgundy);
    color: #fff;
    padding: 14px 20px;
    border-radius: 2px;
    box-shadow: 0 12px 32px -12px rgba(91, 30, 42, 0.55), 0 4px 12px -6px rgba(0, 0, 0, 0.18);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background 160ms var(--ease-out), transform 120ms var(--ease-out);
  }

  .mobile-cta-bar:active {
    background: var(--burgundy-deep);
    transform: scale(0.985);
  }

  .mobile-cta-bar__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-cta-bar__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .mobile-cta-bar__arrow {
    font-size: 18px;
    line-height: 1;
  }
}

/* =========================================================
   NEWSLETTER URGENCY v23
   ========================================================= */

.newsletter-form__urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--amber-light);
}

.newsletter-form__urgency strong {
  font-weight: 700;
  color: #fff;
}

.newsletter-form__urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-amber-v23 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-amber-v23 {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-form__urgency-dot { animation: none; }
}

/* =========================================================
   v24 — Product modal carousel
   ========================================================= */

.product-modal__carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0;
}
.product-modal__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-modal__slide img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}
.product-modal__slide-label {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  margin-top: 12px;
  text-align: center;
}
.product-modal__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.product-modal__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: var(--cream-darker);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.product-modal__dot.is-active {
  background: var(--burgundy);
}

/* v24 — Pastry modal description */

.pastry-modal__description {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.5;
  margin: 12px auto 0;
  padding: 0 20px 20px;
  text-align: center;
  max-width: 320px;
}

/* v24 — Story closing blockquote */

.story__closing {
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(24px, 3vw, 40px);
  background: var(--cream-deep);
  border-radius: 2px;
  border-left: 3px solid var(--burgundy);
}
.story__closing p {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
.story__closing p:first-child {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 12px;
}

/* v24 — Inline logo in text */

.inline-logo {
  display: inline-block;
  height: 1.1em;
  width: auto;
  vertical-align: middle;
  margin: 0 0.15em;
}
