/* ==========================================================================
   Mimbi Cocina — estilos
   Paleta tomada del logo y de la fotografía de marca: rosa empolvado, cacao,
   kraft y el dorado de las bolitas del vori vori.
   ========================================================================== */

:root {
  --blush: #FCECED;
  --blush-2: #F8E0E2;
  --cream: #FFF7F3;
  --paper: #FFFCFA;
  --rose: #D6627C;
  --rose-deep: #BF4A66;
  --rose-darker: #A63E57;
  --rose-soft: #F3AFC0;
  --rose-pale: #F9D3DC;
  --cacao: #4A2014;
  --cacao-2: #6E4638;
  --cacao-3: #97705F;
  --night: #3B1C14;
  --kraft: #C9A07A;
  --kraft-pale: #F4E7DA;
  --gold: #E8B84A;
  --gold-soft: #F4D58A;
  --leaf: #4F7D35;
  --error: #B3261E;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  --font-script: "Satisfy", "Brush Script MT", cursive;

  --shadow-s: 0 1px 2px rgba(74, 32, 20, .05), 0 4px 14px -6px rgba(74, 32, 20, .12);
  --shadow-m: 0 2px 6px -2px rgba(74, 32, 20, .06), 0 22px 44px -24px rgba(74, 32, 20, .32);
  --shadow-l: 0 4px 12px -4px rgba(74, 32, 20, .08), 0 44px 80px -36px rgba(74, 32, 20, .42);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  --gutter: clamp(20px, 5vw, 56px);
  --container: 1240px;
  --header-h: 72px;
  --safe-b: env(safe-area-inset-bottom, 0px);

  interpolate-size: allow-keywords;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--blush);
  color: var(--cacao);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html.is-locked, html.is-locked body { overflow: hidden; }

main { overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
svg { width: 1em; height: 1em; flex-shrink: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; }
figure { margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
[hidden] { display: none !important; }

::selection { background: var(--rose-soft); color: var(--cacao); }

:focus-visible {
  outline: 2.5px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--cacao);
  color: var(--blush);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.show-sm { display: none; }
@media (max-width: 559px) {
  .hide-sm { display: none; }
  .show-sm { display: inline; }
}

.script {
  font-family: var(--font-script);
  color: var(--rose-deep);
  font-size: 1.4em;
  line-height: 1.2;
  font-weight: 400;
}

/* ---------- Typography ---------- */
.h2, .h3, .hero__title, .dish__name, .step__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 100;
}

.h2 {
  font-size: clamp(2.25rem, 1.4rem + 3.6vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -.022em;
  font-weight: 440;
  margin: 0 0 .45em;
  text-wrap: balance;
}
.h2 em, .h3 em {
  font-style: italic;
  font-weight: 360;
  color: var(--rose);
}

.h3 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  line-height: 1.12;
  font-weight: 460;
  margin: 0 0 .4em;
  letter-spacing: -.012em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.eyebrow svg { width: 20px; height: 20px; color: var(--rose); }
.eyebrow--light { color: var(--rose-soft); }
.eyebrow--light svg { color: var(--rose-soft); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.section-head__lead {
  color: var(--cacao-2);
  font-size: clamp(1.02rem, .95rem + .3vw, 1.15rem);
  max-width: 36em;
  margin-inline: auto;
}
.section-head--split { text-align: left; max-width: none; }
.section-head--split .section-head__lead { margin-inline: 0; }
@media (min-width: 900px) {
  .section-head--split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: end;
    gap: 56px;
  }
  .section-head--split .h2 { margin-bottom: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  font: 500 15.5px/1 var(--font-body);
  letter-spacing: .02em;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: transform .35s var(--ease-spring), background-color .25s, border-color .25s, box-shadow .35s var(--ease-out), color .2s;
}
.btn svg { width: 1.15em; height: 1.15em; transition: transform .35s var(--ease-spring); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(.97); }

.btn--primary {
  --btn-bg: var(--rose-deep);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(191, 74, 102, .75), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease-out);
}
.btn--primary:hover { --btn-bg: var(--rose-darker); transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(191, 74, 102, .8), inset 0 1px 0 rgba(255, 255, 255, .18); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--primary:active { transform: scale(.97); }

.btn--ghost { color: var(--cacao); border-color: rgba(74, 32, 20, .22); }
.btn--ghost:hover { --btn-bg: rgba(255, 255, 255, .65); border-color: var(--cacao); transform: translateY(-2px); }

.btn--dark { --btn-bg: var(--cacao); color: var(--blush); }
.btn--dark:hover { --btn-bg: #34150c; transform: translateY(-2px); }

.btn--gold { --btn-bg: var(--gold); color: var(--cacao); box-shadow: 0 14px 30px -14px rgba(232, 184, 74, .7); }
.btn--gold:hover { --btn-bg: var(--gold-soft); transform: translateY(-2px); }
.btn--gold:hover svg, [data-add]:hover svg { transform: rotate(90deg); }

.btn--lg { min-height: 56px; padding: 0 28px; font-size: 16.5px; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: 14.5px; }
.btn--block { width: 100%; }

.btn--soon {
  color: var(--rose-deep);
  border-color: var(--rose-deep);
  background-image: repeating-linear-gradient(-45deg, rgba(214, 98, 124, .07) 0 8px, transparent 8px 16px);
}
.btn--soon:hover { --btn-bg: var(--rose-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 26px -14px rgba(191, 74, 102, .7); }
.btn__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-rose 2s infinite;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--blush);
  color: var(--cacao);
  cursor: pointer;
  transition: background .2s, transform .3s var(--ease-spring);
}
.icon-btn:hover { background: var(--rose-pale); transform: rotate(90deg); }
.icon-btn svg { width: 20px; height: 20px; }

/* ---------- Vichy (gingham) ---------- */
.vichy {
  background-color: #FFF4F5;
  background-image:
    linear-gradient(90deg, rgba(214, 98, 124, .4) 50%, transparent 0),
    linear-gradient(rgba(214, 98, 124, .4) 50%, transparent 0);
  background-size: 22px 22px;
}
.vichy--strip { height: 20px; }
.vichy--scallop {
  height: 34px;
  -webkit-mask:
    linear-gradient(#000 0 0) top / 100% calc(100% - 12px) no-repeat,
    radial-gradient(circle at 50% 0, #000 11.5px, transparent 12px) bottom / 24px 12px repeat-x;
  mask:
    linear-gradient(#000 0 0) top / 100% calc(100% - 12px) no-repeat,
    radial-gradient(circle at 50% 0, #000 11.5px, transparent 12px) bottom / 24px 12px repeat-x;
}

/* ---------- Sticker (como las etiquetas del packaging) ---------- */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px 9px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F7C4D0 0%, #F2AABB 60%, #EFA0B3 100%);
  color: var(--cacao);
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-weight: 520;
  font-size: 21px;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 8px 16px -8px rgba(74, 32, 20, .4);
  white-space: nowrap;
}
.sticker::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--rose-deep);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M31 52C24 44 13 35 13 24c0-7 5-11 10-9 4 2 6 6 7 10 1-6 5-14 12-16 7-2 11 3 9 11-2 9-10 19-20 32' fill='none' stroke='%23000' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M31 52C24 44 13 35 13 24c0-7 5-11 10-9 4 2 6 6 7 10 1-6 5-14 12-16 7-2 11 3 9 11-2 9-10 19-20 32' fill='none' stroke='%23000' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.sticker svg { display: none; }
.sticker--lg { font-style: italic; font-size: 20px; padding: 12px 20px 12px 16px; }

/* ---------- Announcement ---------- */
.announce {
  position: relative;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px var(--gutter);
  background: var(--night);
  color: var(--blush);
  font-size: 14px;
  letter-spacing: .02em;
  text-decoration: none;
}
.announce strong { font-weight: 500; color: var(--rose-soft); }
.announce__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose-soft);
  box-shadow: 0 0 0 0 rgba(243, 175, 192, .6);
  animation: pulse 2.2s infinite;
}
.announce__arrow { width: 16px; height: 16px; transition: transform .35s var(--ease-spring); }
.announce:hover .announce__arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 70;
  height: var(--header-h);
  transition: background-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.header.is-scrolled {
  background: rgba(252, 236, 237, .84);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(74, 32, 20, .07), 0 10px 30px -20px rgba(74, 32, 20, .25);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.header__logo { display: block; transition: transform .5s var(--ease-spring); }
.header__logo img { height: 44px; width: auto; }
.header__logo:hover { transform: rotate(-3deg) scale(1.04); }

.nav { display: none; gap: 30px; }
.nav a {
  position: relative;
  font-size: 15px;
  letter-spacing: .02em;
  text-decoration: none;
  padding: 6px 0;
  color: var(--cacao);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--rose);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 10px; }
.header__cta { display: none; }

.burger {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--cacao);
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 14px; right: 14px;
  height: 1.8px;
  border-radius: 2px;
  background: var(--blush);
  transition: transform .45s var(--ease-out), top .45s var(--ease-out);
}
.burger span:first-child { top: 19px; }
.burger span:last-child { top: 26px; }
.burger[aria-expanded="true"] span:first-child { top: 22.5px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { top: 22.5px; transform: rotate(-45deg); }

.progress {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-soft), var(--rose));
  transform: scaleX(var(--p, 0));
  transform-origin: left;
  opacity: 0;
  transition: opacity .3s;
}
.header.is-scrolled .progress { opacity: 1; }

@media (min-width: 560px) {
  .header__cta { display: inline-flex; }
}
@media (min-width: 1060px) {
  .nav { display: flex; }
  .burger { display: none; }
  .header__logo img { height: 48px; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 64px) var(--gutter) 0;
  background: var(--blush);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-size: clamp(34px, 9vw, 46px);
  font-weight: 420;
  line-height: 1.2;
  padding: 8px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 32, 20, .08);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-out), color .2s;
  transition-delay: calc(var(--i) * 55ms + 80ms);
}
.mobile-menu nav a:hover { color: var(--rose-deep); }
.mobile-menu.is-open nav a { opacity: 1; transform: none; }
.mobile-menu__foot { margin-top: auto; padding: 32px 0 28px; text-align: center; }
.mobile-menu__foot .script { margin-bottom: 14px; font-size: 28px; }
.mobile-menu .vichy--strip { margin: 0 calc(var(--gutter) * -1); flex-shrink: 0; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(28px, 5vw, 48px) 0 clamp(36px, 6vw, 72px);
}
.hero__copy { position: relative; z-index: 2; }

/* Nota manuscrita sobre el titular: línea fina como la del logo + corazón que se dibuja */
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--rose-deep);
}
.hero__kicker-rule {
  width: 48px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--cacao);
  opacity: .4;
  transform-origin: left;
  animation: rule-in .9s var(--ease-out) .25s both;
}
.hero__kicker-text {
  font-family: var(--font-script);
  font-size: clamp(25px, 1.4rem + .8vw, 31px);
  line-height: 1.1;
  rotate: -3deg;
}
.hero__kicker-heart {
  width: 28px;
  height: 28px;
  margin-left: -4px;
  color: var(--rose);
  rotate: 10deg;
  overflow: visible;
}
.hero__kicker-heart use {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 1.2s var(--ease-out) .75s forwards;
}

.hero__title {
  margin: 16px 0 20px;
  font-size: clamp(2.8rem, 1.2rem + 6.4vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.028em;
  font-weight: 450;
  color: var(--cacao);
}
.hero__title .w {
  display: inline-block;
  overflow: hidden;
  padding-bottom: .1em;
  margin-bottom: -.1em;
  vertical-align: top;
}
.hero__title .w > span {
  position: relative;
  display: inline-block;
  transform: translateY(108%);
  animation: word-up 1s var(--ease-out) forwards;
  animation-delay: calc(.12s + var(--i, 0) * 70ms);
}
.hero__title .w:nth-of-type(1) > span { --i: 1; }
.hero__title .w:nth-of-type(2) > span { --i: 2; }
.hero__title .w:nth-of-type(3) > span { --i: 3; }
.hero__title .w:nth-of-type(4) > span { --i: 4; }
.hero__title .w:nth-of-type(5) > span { --i: 5; }
.hero__title .w:nth-of-type(6) > span { --i: 6; }
.hero__title .w:nth-of-type(7) > span { --i: 7; }
.hero__title .w:nth-of-type(8) > span { --i: 8; }
.hero__title .w--accent { padding-bottom: .26em; margin-bottom: -.26em; padding-right: .06em; }
.hero__title em {
  font-style: italic;
  font-weight: 380;
  color: var(--rose);
}
.scribble {
  position: absolute;
  left: 0; right: 0;
  bottom: -.2em;
  width: 100%;
  height: .24em;
  overflow: visible;
}
.scribble path {
  fill: none;
  stroke: var(--rose-soft);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 1.1s var(--ease-out) 1.05s forwards;
}

.hero__lead {
  max-width: 33em;
  color: var(--cacao-2);
  font-size: clamp(1.04rem, .98rem + .3vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 28px;
}
.hero__lead strong { font-weight: 500; color: var(--cacao); }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.award-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 10px 18px 10px 14px;
  border-radius: 18px;
  background: rgba(255, 252, 250, .7);
  border: 1px solid rgba(74, 32, 20, .08);
  font-size: 14px;
  line-height: 1.35;
  color: var(--cacao-2);
  text-decoration: none;
  box-shadow: var(--shadow-s);
  transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.award-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-m); }
.award-pill strong { color: var(--cacao); font-weight: 600; }
.award-pill em { font-style: italic; }
.award-pill small { color: var(--cacao-3); font-size: 12.5px; letter-spacing: .02em; }
.award-pill__stars { display: inline-flex; gap: 1px; color: var(--gold); }
.award-pill__stars svg { width: 14px; height: 14px; }

[data-hero-in] {
  opacity: 0;
  transform: translateY(16px);
  animation: fade-up .9s var(--ease-out) forwards;
  animation-delay: calc(.25s + var(--d, 0) * 90ms);
}

/* Visual */
.hero__visual { position: relative; margin-top: 36px; }
.hero__frame {
  position: relative;
  aspect-ratio: 10 / 9;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 82%, transparent 100%);
  animation: hero-img 1.6s var(--ease-out) .1s both;
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.steam { position: absolute; inset: 0; pointer-events: none; }
.steam span {
  position: absolute;
  bottom: 58%;
  width: 10%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 70%, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0) 68%);
  filter: blur(9px);
  opacity: 0;
  animation: steam 6s ease-in-out infinite;
}
.steam span:nth-child(1) { left: 39%; animation-delay: .4s; }
.steam span:nth-child(2) { left: 52%; animation-delay: 2.4s; height: 40%; }
.steam span:nth-child(3) { left: 65%; animation-delay: 4.2s; }

.badge-rotate {
  position: absolute;
  z-index: 3;
  right: calc(var(--gutter) - 4px);
  top: -34px;
  width: 112px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #F8C9D4, #F0A5B7 70%);
  box-shadow: 0 16px 30px -14px rgba(74, 32, 20, .45), inset 0 1px 0 rgba(255, 255, 255, .5);
  animation: pop-in .9s var(--ease-spring) 1.1s both;
}
.badge-rotate__text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 22s linear infinite;
}
.badge-rotate__text text {
  font-family: var(--font-body);
  font-size: 13.4px;
  font-weight: 500;
  letter-spacing: 2.2px;
  fill: var(--cacao);
}
.badge-rotate__heart { width: 38%; height: 38%; color: var(--rose-deep); }

.hand-note { display: none; }

@media (min-width: 900px) {
  .hero {
    display: flex;
    align-items: center;
    min-height: max(clamp(600px, calc(100svh - 110px), 860px), calc(min(60vw, 1180px) * .6855 + 160px));
    padding: 40px 0 72px;
  }
  .hero__copy > * { max-width: min(560px, 45vw); }
  .hero__title { font-size: clamp(3.2rem, .2rem + 5.6vw, 5.6rem); }
  .hero__visual {
    position: absolute;
    right: 0;
    top: 50%;
    width: 60vw;
    max-width: 1180px;
    margin: 0;
    transform: translateY(-52%);
  }
  .hero__frame {
    aspect-ratio: 1294 / 887;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30%), linear-gradient(to bottom, transparent 0, #000 10%, #000 86%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0, #000 30%), linear-gradient(to bottom, transparent 0, #000 10%, #000 86%, transparent 100%);
    mask-composite: intersect;
  }
  .hero__frame img { object-position: center; }
  .steam span:nth-child(1) { left: 44%; }
  .steam span:nth-child(2) { left: 54%; }
  .steam span:nth-child(3) { left: 64%; }
  .badge-rotate {
    top: auto;
    right: auto;
    left: 30%;
    bottom: 2%;
    width: clamp(120px, 11vw, 158px);
  }
}
@media (min-width: 1180px) {
  .hand-note {
    display: block;
    position: absolute;
    left: 33%;
    top: -8%;
    margin: 0;
    font-family: var(--font-script);
    font-size: 21px;
    line-height: 1.15;
    color: var(--rose-deep);
    transform: rotate(-7deg);
    animation: fade-up 1s var(--ease-out) 1.5s both;
  }
  .hand-note svg {
    position: absolute;
    left: 72%;
    top: 55%;
    width: 96px;
    height: 76px;
    overflow: visible;
  }
  .hand-note path {
    fill: none;
    stroke: var(--rose-deep);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: draw 1.2s var(--ease-out) 1.9s forwards;
  }
}

/* ---------- Ribbon ---------- */
.ribbon {
  position: relative;
  z-index: 4;
  width: 112%;
  margin: 0 -6% -30px;
  transform: rotate(-2.2deg);
}
.ribbon__band { padding: 9px 0; box-shadow: 0 18px 30px -18px rgba(74, 32, 20, .35); }
.ribbon__inner { background: var(--cream); overflow: hidden; }
.ribbon__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.ribbon__group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  min-width: 112vw;
  padding: 14px 15px;
  flex-shrink: 0;
}
.ribbon__group span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--cacao);
}
.ribbon__group em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--rose-deep);
}
.ribbon__group svg { width: 14px; height: 14px; color: var(--rose); }

/* ---------- VORI (sección estrella) ---------- */
.vori {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 170px) 0 clamp(90px, 10vw, 140px);
  color: var(--blush);
  background:
    radial-gradient(55% 45% at 85% 8%, rgba(232, 184, 74, .16), transparent 70%),
    radial-gradient(45% 55% at 0% 100%, rgba(214, 98, 124, .22), transparent 70%),
    var(--night);
}
.vori::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: radial-gradient(rgba(252, 236, 237, .07) 1px, transparent 1.2px);
  background-size: 18px 18px;
  pointer-events: none;
}
.vori__grid { position: relative; display: grid; gap: clamp(80px, 12vw, 120px); }

.vori__media { position: relative; margin-bottom: 18%; }
.vori__numeral {
  position: absolute;
  z-index: 0;
  top: -.5em;
  left: -.06em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(120px, 26vw, 250px);
  line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(244, 213, 138, .55);
  pointer-events: none;
  user-select: none;
}
.vori__img { position: relative; z-index: 1; }
.vori__img img { width: 100%; height: 100%; object-fit: cover; }
.vori__img--main {
  margin-left: 8%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, .6);
}
.vori__img--main img { object-position: 72% 50%; }
.vori__img--polaroid {
  position: absolute;
  z-index: 2;
  left: -2%;
  bottom: -20%;
  width: 42%;
  padding: 9px 9px 0;
  background: var(--paper);
  border-radius: 6px;
  rotate: -6deg;
  box-shadow: 0 26px 40px -18px rgba(0, 0, 0, .55);
}
.vori__img--polaroid img { aspect-ratio: 1; border-radius: 3px; }
.vori__img--polaroid figcaption {
  padding: 6px 4px 8px;
  text-align: center;
  font-size: clamp(15px, 2.6vw, 20px);
}
.vori__img--hands {
  position: absolute;
  z-index: 2;
  right: -3%;
  bottom: -24%;
  width: 52%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid var(--night);
  rotate: 3deg;
  box-shadow: 0 26px 40px -18px rgba(0, 0, 0, .55);
}

.vori__copy { max-width: 600px; }
.vori .h2 { color: var(--blush); }
.vori .h2 em { color: var(--rose-soft); }
.vori__lead { font-size: clamp(1.04rem, .98rem + .3vw, 1.18rem); color: rgba(252, 236, 237, .82); margin-bottom: 30px; }

.stats { margin: 0 0 12px; padding: 0; display: grid; }
.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(252, 236, 237, .14);
}
.stat dt { order: 2; font-size: 14px; color: rgba(252, 236, 237, .72); line-height: 1.35; }
.stat dd {
  order: 1;
  margin: 0;
  min-width: 4.6ch;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-size: clamp(36px, 4.2vw, 50px);
  line-height: 1;
  font-weight: 380;
  color: var(--gold-soft);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums lining-nums;
  white-space: nowrap;
}
.stat dd small { font-family: var(--font-body); font-size: 14px; letter-spacing: .02em; color: rgba(252, 236, 237, .6); font-weight: 400; }
@media (min-width: 560px) {
  .stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .stat { display: flex; flex-direction: column; gap: 10px; padding: 18px 0 0; }
  .stat dt { order: 2; }
}

.source { font-size: 13px; color: rgba(252, 236, 237, .55); margin: 14px 0 30px; }
.source a { color: rgba(252, 236, 237, .8); text-underline-offset: 3px; }
.source a:hover { color: var(--rose-soft); }

.etymology {
  margin: 0 0 32px;
  padding: 20px 22px;
  border: 1px dashed rgba(243, 175, 192, .38);
  border-radius: 20px;
  background: rgba(252, 236, 237, .03);
}
.etymology p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 10px;
}
.etymology svg { width: 18px; height: 18px; color: var(--rose-soft); opacity: .7; }
.etymology__word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 360;
  color: rgba(252, 236, 237, .75);
}
.etymology__word--final { color: var(--gold-soft); font-weight: 500; }
.etymology footer { font-size: 14.5px; color: rgba(252, 236, 237, .72); line-height: 1.5; }
.etymology footer em { color: var(--blush); }
.etymology.is-in p > * { animation: fade-up .7s var(--ease-out) both; }
.etymology.is-in p > :nth-child(2) { animation-delay: .25s; }
.etymology.is-in p > :nth-child(3) { animation-delay: .45s; }
.etymology.is-in p > :nth-child(4) { animation-delay: .7s; }
.etymology.is-in p > :nth-child(5) { animation-delay: .9s; }

@media (min-width: 980px) {
  .vori__grid { grid-template-columns: 1.05fr 1fr; align-items: center; gap: 88px; }
  .vori__media { margin-bottom: 12%; }
  .vori { padding-bottom: clamp(70px, 7vw, 110px); }
}

/* ---------- MENU ---------- */
.menu {
  position: relative;
  padding: clamp(96px, 11vw, 150px) 0 clamp(80px, 9vw, 120px);
  background:
    radial-gradient(40% 30% at 10% 20%, rgba(255, 255, 255, .55), transparent 70%),
    radial-gradient(40% 30% at 90% 75%, rgba(243, 175, 192, .25), transparent 70%),
    var(--blush);
}
.dishes { display: grid; gap: 30px; }
@media (min-width: 700px) { .dishes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .dishes { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.dish {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow-m);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.dish__media { position: relative; }
.dish__img {
  aspect-ratio: 5 / 4;
  border-radius: 21px;
  overflow: hidden;
  background: var(--blush-2);
}
.dish__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.dish:hover .dish__img img { transform: scale(1.06); }

.dish__badge {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 250, .9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cacao);
}
.dish__badge svg { width: 13px; height: 13px; }
.dish__badge--gold { background: var(--gold); }

.dish__sticker {
  position: absolute;
  right: 16px;
  bottom: -20px;
  rotate: -5deg;
  transition: rotate .5s var(--ease-spring), scale .5s var(--ease-spring);
}
.dish__sticker { font-style: italic; font-size: 18px; }
.dish:hover .dish__sticker { rotate: -1deg; scale: 1.06; }

.dish__body { display: flex; flex-direction: column; flex: 1; padding: 30px 14px 10px; }
.dish__kicker {
  margin: 0 0 4px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.dish__name {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 1.5rem + .8vw, 2rem);
  line-height: 1.08;
  font-weight: 480;
  letter-spacing: -.015em;
}
.dish__desc { font-size: 15.5px; line-height: 1.58; color: var(--cacao-2); margin-bottom: 0; }
.dish__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 22px;
  padding: 0;
  list-style: none;
}
.dish__tags li {
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--blush);
  border: 1px solid rgba(214, 98, 124, .18);
  font-size: 12.5px;
  color: var(--cacao-2);
}
.dish__actions { margin-top: auto; }

.menu__note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 48px auto 0;
  max-width: 40em;
  text-align: center;
  font-size: 15px;
  color: var(--cacao-2);
}
.menu__note svg { width: 20px; height: 20px; color: var(--rose); }
.menu__note a { color: var(--rose-deep); font-weight: 500; text-underline-offset: 3px; }

/* ---------- CRAFT ---------- */
.craft {
  position: relative;
  padding: clamp(90px, 10vw, 140px) 0;
  background: var(--cream);
}
.steps {
  list-style: none;
  margin: 0 calc(var(--gutter) * -1);
  padding: 0 var(--gutter) 8px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.steps::-webkit-scrollbar { display: none; }
.step { flex: 0 0 min(80%, 340px); scroll-snap-align: start; }
.step__img {
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 26px 26px;
  overflow: hidden;
  box-shadow: var(--shadow-m);
  background: var(--blush-2);
}
.step__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.step:hover .step__img img { transform: scale(1.06); }
.step__num {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px; height: 62px;
  margin: -31px 0 10px 18px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-s);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--rose-deep);
}
.step__title { margin: 0 0 8px; font-size: 28px; font-weight: 460; letter-spacing: -.01em; }
.step p { font-size: 15.5px; color: var(--cacao-2); max-width: 30em; }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dots span {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(74, 32, 20, .18);
  transition: width .4s var(--ease-out), background .3s;
}
.carousel-dots span.is-active { width: 26px; background: var(--rose); }

@media (min-width: 900px) {
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 44px);
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  .step:nth-child(2) { margin-top: 64px; }
  .step:nth-child(3) { margin-top: 24px; }
  .carousel-dots { display: none; }
}

/* ---------- HOW ---------- */
.how {
  position: relative;
  padding: clamp(90px, 10vw, 140px) 0;
  background:
    radial-gradient(50% 50% at 100% 0%, rgba(255, 255, 255, .5), transparent 70%),
    var(--kraft-pale);
}
.how__grid { display: grid; gap: 56px; }
.how__media { position: relative; }
.how__img {
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-l);
}
.how__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  scale: 1.12;
}
.how__sticker {
  position: absolute;
  left: 18px;
  bottom: -22px;
  rotate: -6deg;
}
.how__sticker::before { width: 16px; height: 16px; }

.how__list { list-style: none; margin: 30px 0 34px; padding: 0; display: grid; gap: 22px; }
.how__list li { position: relative; display: grid; grid-template-columns: 48px 1fr; gap: 18px; }
.how__list li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23.5px;
  top: 54px;
  bottom: -18px;
  border-left: 1.5px dashed rgba(191, 74, 102, .35);
}
.how__n {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid rgba(191, 74, 102, .35);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--rose-deep);
}
.how__list h3 {
  margin: 4px 0 4px;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-size: 22px;
  font-weight: 480;
}
.how__list p { font-size: 15.5px; color: var(--cacao-2); }

.zone {
  padding: 20px;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-s);
}
.zone__label { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 15.5px; margin-bottom: 12px; }
.zone__label svg { width: 20px; height: 20px; color: var(--rose-deep); }
.zone__row { display: flex; gap: 10px; }
.zone__row input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(74, 32, 20, .16);
  background: #fff;
  font: 400 17px var(--font-body);
  letter-spacing: .12em;
  color: var(--cacao);
  transition: border-color .2s, box-shadow .2s;
}
.zone__row input::placeholder { letter-spacing: .02em; color: var(--cacao-3); }
.zone__row input:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(214, 98, 124, .16); }
.zone__row .btn { min-height: 52px; }
.zone__result { margin: 0; font-size: 15px; line-height: 1.5; }
.zone__result:not(:empty) { margin-top: 12px; animation: fade-up .5s var(--ease-out); }
.zone__result.is-ok { color: var(--leaf); }
.zone__result.is-soon { color: var(--rose-darker); }
.zone__result.is-no { color: var(--cacao-2); }
.zone__result a { color: inherit; font-weight: 600; text-underline-offset: 3px; }

@media (min-width: 980px) {
  .how__grid { grid-template-columns: 1.15fr 1fr; align-items: center; gap: 80px; }
  .how__img { aspect-ratio: 5 / 4; }
}
@media (max-width: 400px) {
  .zone__row { flex-direction: column; }
  .zone__row input { flex: none; width: 100%; }
}

/* ---------- JOIN ---------- */
.join { padding: clamp(90px, 10vw, 140px) 0; background: var(--blush); }
.join__frame {
  padding: clamp(10px, 1.8vw, 18px);
  border-radius: 40px;
  box-shadow: var(--shadow-l);
}
.join__card {
  position: relative;
  display: grid;
  gap: 40px;
  padding: clamp(28px, 5.5vw, 68px);
  border-radius: 30px;
  background: var(--paper);
}
.join__intro > p:not(.eyebrow) { color: var(--cacao-2); font-size: 16.5px; }
.perks { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 10px; }
.perks li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; }
.perks svg {
  width: 26px; height: 26px;
  padding: 5px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-deep);
}
.form { display: grid; gap: 16px; align-content: start; }
.field { margin: 0; border: 0; padding: 0; min-width: 0; }
.field label, .field legend {
  display: block;
  margin-bottom: 7px;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--cacao);
}
.field input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1.5px solid rgba(74, 32, 20, .16);
  background: #fff;
  font: 400 17px var(--font-body);
  color: var(--cacao);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: #B89B90; }
.field input:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(214, 98, 124, .16); }
.field.is-invalid input { border-color: var(--error); }
.field__error { display: none; margin: 6px 0 0; font-size: 13.5px; color: var(--error); }
.is-invalid > .field__error, .field__error.is-shown { display: block; animation: fade-up .3s var(--ease-out); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-check { position: relative; cursor: pointer; }
.chip-check input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip-check span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(74, 32, 20, .16);
  background: #fff;
  font-size: 15px;
  transition: background .2s, color .2s, border-color .2s, transform .3s var(--ease-spring);
}
.chip-check span::before {
  content: "";
  width: 0;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: width .3s var(--ease-spring);
}
.chip-check:hover span { border-color: var(--rose); }
.chip-check input:checked + span { background: var(--rose-deep); border-color: var(--rose-deep); color: #fff; }
.chip-check input:checked + span::before { width: 14px; }
.chip-check input:focus-visible + span { outline: 2.5px solid var(--rose-deep); outline-offset: 3px; }
.chip-check input:active + span { transform: scale(.95); }

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cacao-2);
  cursor: pointer;
}
.consent input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--rose-deep); cursor: pointer; }
.consent.is-invalid span { color: var(--error); }

[data-submit] { margin-top: 6px; }
[data-submit] svg { width: 18px; height: 18px; }
[data-submit]:hover svg { transform: scale(1.2); }
[data-submit].is-loading { pointer-events: none; }
[data-submit].is-loading span { opacity: .6; }
[data-submit].is-loading svg { animation: heartbeat .8s ease-in-out infinite; }

.success {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 24px 0;
  outline: none;
}
.success__heart {
  width: 110px; height: 110px;
  color: var(--rose);
  margin-bottom: 18px;
  overflow: visible;
}
.success__heart use { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.4s var(--ease-out) .1s forwards; }
.success p { color: var(--cacao-2); max-width: 26em; }
.success .script { font-size: 26px; margin-top: 6px; }

.burst-heart {
  position: fixed;
  z-index: 120;
  width: 18px; height: 18px;
  color: var(--rose);
  pointer-events: none;
}

@media (min-width: 900px) {
  .join__card { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .join__card > .success { grid-column: 2; }
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(80px, 9vw, 130px) 0 clamp(90px, 10vw, 140px); background: var(--blush); }
.faq__grid { display: grid; gap: 28px; }
.faq .section-head { text-align: left; margin: 0; max-width: none; }
.faq__art {
  display: none;
  margin-top: 30px;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-m);
}
.accordion details { border-bottom: 1px solid rgba(74, 32, 20, .12); }
.accordion details:first-child { border-top: 1px solid rgba(74, 32, 20, .12); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100;
  font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem);
  font-weight: 460;
  line-height: 1.3;
  transition: color .2s;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { color: var(--rose-deep); }
.accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(74, 32, 20, .18);
  transition: background .3s, border-color .3s, rotate .45s var(--ease-spring);
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 13px; height: 1.6px;
  border-radius: 2px;
  background: currentColor;
  translate: -50% -50%;
}
.accordion__icon::after { rotate: 90deg; }
.accordion details[open] .accordion__icon { rotate: 45deg; background: var(--rose-deep); border-color: var(--rose-deep); color: #fff; }
.accordion__body { padding: 0 52px 24px 0; color: var(--cacao-2); font-size: 16px; }
.accordion details::details-content {
  height: 0;
  overflow: clip;
  transition: height .45s var(--ease-out), content-visibility .45s allow-discrete;
}
.accordion details[open]::details-content { height: auto; }
.accordion details[open] .accordion__body { animation: fade-up .5s var(--ease-out); }

@media (min-width: 980px) {
  .faq__grid { grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
  .faq .section-head { position: sticky; top: calc(var(--header-h) + 32px); }
  .faq__art { display: block; }
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  background: var(--night);
  color: rgba(252, 236, 237, .82);
  padding-bottom: calc(24px + var(--safe-b));
}
.footer__grid { display: grid; gap: 40px; padding-top: 56px; padding-bottom: 44px; }
.footer__brand img { width: 190px; }
.footer__tag { margin-top: 16px; font-size: 15px; line-height: 1.6; }
.footer__tag strong { color: var(--rose-soft); font-weight: 500; }
.footer__title { margin: 0 0 12px; font-size: 12.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-soft); }
.footer__nav a { display: block; padding: 6px 0; text-decoration: none; transition: color .2s, translate .3s var(--ease-out); }
.footer__nav a:hover { color: var(--rose-soft); translate: 4px 0; }
.social { display: flex; gap: 10px; }
.social a {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(252, 236, 237, .2);
  transition: background .25s, border-color .25s, transform .35s var(--ease-spring);
}
.social a:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }
.footer__mimbi { margin-top: 20px; font-size: 14px; color: rgba(252, 236, 237, .6); }
.footer__mimbi em { font-family: var(--font-display); font-size: 1.1em; color: var(--rose-soft); }
.footer__bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 20px;
  padding-top: 22px;
  font-size: 13.5px;
  color: rgba(252, 236, 237, .55);
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  border-top: 1px solid rgba(252, 236, 237, .1);
}
.footer__bottom p { margin: 0; display: inline-flex; align-items: center; gap: 6px; }
.footer__bottom svg { width: 14px; height: 14px; color: var(--rose-soft); animation: heartbeat 1.6s ease-in-out infinite; }

@media (min-width: 800px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; padding-top: 72px; }
}
@media (max-width: 899px) {
  .footer { padding-bottom: calc(96px + var(--safe-b)); }
}

/* ---------- Bottom bar (móvil) ---------- */
.bottom-bar {
  position: fixed;
  z-index: 60;
  left: 12px;
  right: 12px;
  bottom: calc(12px + var(--safe-b));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 8px 8px 22px;
  border-radius: 999px;
  background: rgba(59, 28, 20, .93);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--blush);
  box-shadow: 0 20px 40px -16px rgba(46, 21, 16, .6);
  transform: translateY(calc(100% + 30px));
  transition: transform .55s var(--ease-out);
}
.bottom-bar.is-visible { transform: none; }
.bottom-bar__info { display: grid; line-height: 1.25; min-width: 0; }
.bottom-bar__label { font-size: 14.5px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bottom-bar__sub { font-size: 12.5px; color: rgba(252, 236, 237, .65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bottom-bar .btn { min-height: 46px; padding: 0 20px; flex-shrink: 0; }
@media (min-width: 900px) { .bottom-bar { display: none; } }

/* ---------- Campo trampa anti-bots ---------- */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Aviso "Próximamente" ---------- */
.soon {
  width: min(460px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  overflow: visible;
}
.soon::backdrop {
  background: rgba(46, 21, 16, .45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.soon[open] .soon__card { animation: soon-in .55s var(--ease-spring); }
.soon[open]::backdrop { animation: fade-in .35s var(--ease-out); }
.soon.is-closing .soon__card { animation: soon-out .22s ease-in forwards; }
.soon.is-closing::backdrop { animation: fade-out .22s ease-in forwards; }
.soon__card {
  position: relative;
  max-height: calc(100svh - 32px);
  overflow: auto;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 40px 80px -30px rgba(46, 21, 16, .55);
}
.soon__close { position: absolute; z-index: 2; top: 12px; right: 12px; background: rgba(255, 252, 250, .92); }
.soon__media { position: relative; aspect-ratio: 16 / 9; background: var(--blush-2); }
.soon__media img { width: 100%; height: 100%; object-fit: cover; }
.soon__sticker { position: absolute; left: 18px; bottom: -18px; rotate: -5deg; font-style: italic; font-size: 19px; }
.soon__body { padding: 34px 26px 26px; }
.soon__body .eyebrow { margin-bottom: 10px; }
.soon__body .h3 { margin-bottom: 10px; }
.soon__body p:not(.eyebrow) { color: var(--cacao-2); font-size: 16px; }
.soon__body strong { color: var(--cacao); font-weight: 500; }
.soon__actions { display: grid; gap: 10px; margin-top: 22px; }

@media (max-width: 559px) {
  .soon {
    width: 100%;
    max-height: 92svh;
    margin: auto 0 0;
  }
  .soon__card {
    max-height: 92svh;
    border-radius: 28px 28px 0 0;
    padding-bottom: var(--safe-b);
  }
  .soon[open] .soon__card { animation: sheet-in .5s var(--ease-out); }
  .soon.is-closing .soon__card { animation: sheet-out .25s ease-in forwards; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  z-index: 110;
  left: 50%;
  bottom: calc(92px + var(--safe-b));
  max-width: calc(100% - 32px);
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--cacao);
  color: var(--blush);
  font-size: 14.5px;
  box-shadow: 0 16px 32px -14px rgba(46, 21, 16, .6);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity .35s, transform .45s var(--ease-spring);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (min-width: 900px) { .toast { bottom: 32px; } }

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .29 0 0 0 0 .13 0 0 0 0 .08 0 0 0 .45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Scroll reveal ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal="clip"] {
  opacity: 1;
  transform: none;
  clip-path: inset(10% 8% 10% 8% round 30px);
  transition: clip-path 1.3s var(--ease-out);
}
.js [data-reveal="clip"] img { scale: 1.18; transition: scale 1.6s var(--ease-out); }
.js [data-reveal="clip"].is-in { clip-path: inset(0 0 0 0 round 0); }
.js [data-reveal="clip"].is-in img { scale: 1; }
.js .how__media[data-reveal="clip"].is-in img { scale: 1.12; }
.js [data-reveal="clip"].is-done { clip-path: none; }

/* ---------- Keyframes ---------- */
@keyframes word-up { to { transform: translateY(0); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes rule-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes spin { to { rotate: 360deg; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pop-in { from { opacity: 0; scale: .6; } to { opacity: 1; scale: 1; } }
@keyframes hero-img { from { opacity: 0; scale: 1.06; } to { opacity: 1; scale: 1; } }
@keyframes soon-in { from { opacity: 0; transform: translateY(24px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes soon-out { to { opacity: 0; transform: translateY(12px) scale(.97); } }
@keyframes sheet-in { from { transform: translateY(100%); } to { transform: none; } }
@keyframes sheet-out { to { transform: translateY(100%); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes fade-out { to { opacity: 0; } }
@keyframes heartbeat { 0%, 100% { scale: 1; } 15% { scale: 1.25; } 30% { scale: 1; } 45% { scale: 1.15; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(243, 175, 192, .6); } 70% { box-shadow: 0 0 0 9px rgba(243, 175, 192, 0); } 100% { box-shadow: 0 0 0 0 rgba(243, 175, 192, 0); } }
@keyframes pulse-rose { 0% { box-shadow: 0 0 0 0 rgba(214, 98, 124, .55); } 70% { box-shadow: 0 0 0 10px rgba(214, 98, 124, 0); } 100% { box-shadow: 0 0 0 0 rgba(214, 98, 124, 0); } }
@keyframes steam {
  0% { opacity: 0; transform: translateY(25%) scaleX(.55); }
  25% { opacity: .75; }
  60% { opacity: .45; transform: translateY(-20%) scaleX(1) skewX(6deg); }
  100% { opacity: 0; transform: translateY(-55%) scaleX(1.4) skewX(-6deg); }
}

/* ---------- Movimiento reducido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .js [data-reveal], .js [data-reveal="clip"] { opacity: 1; transform: none; clip-path: none; }
  .js [data-reveal="clip"] img { scale: 1; }
  .ribbon__track { animation: none; }
  .steam { display: none; }
}
