/* =============================================================
   VIBESIP — STYLES
   Editorial mediterráneo cálido · mobile-first · tokens-first
   ============================================================= */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Color: paleta mediterránea cálida --- */
  --cream:        #F0E9DC;   /* fondo base */
  --cream-2:      #E8DECC;   /* fondo alternativo / cards */
  --cream-3:      #DDD0B5;   /* línea divisoria / hover */

  --ink:          #1A1814;   /* texto principal */
  --ink-soft:     #4A453E;   /* texto secundario */
  --ink-mute:     #7A7468;   /* texto terciario / labels */

  --olive:        #3D4F37;   /* primario — verde oliva profundo */
  --olive-2:      #2D3B28;   /* primario oscuro */
  --olive-soft:   #6B7A5E;   /* primario suave */

  --terracotta:   #D87C5A;   /* acento principal */
  --terracotta-2: #B85F3F;   /* acento oscuro */
  --peach:        #F5C9B0;   /* acento suave */

  --lime:         #A8C66C;   /* highlight ocasional */

  --surface:      var(--cream);
  --surface-alt:  #EBE3D2;
  --on-dark:      #F0E9DC;

  /* --- Typography --- */
  --font-display: "Clash Display", "Times New Roman", serif;
  --font-body:    "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Escala tipográfica fluida */
  --fs-eyebrow:   clamp(.72rem, .65rem + .15vw, .8rem);
  --fs-body:      clamp(1rem, .95rem + .2vw, 1.0625rem);
  --fs-lead:      clamp(1.125rem, 1rem + .55vw, 1.4rem);
  --fs-h3:        clamp(1.35rem, 1.15rem + .9vw, 1.85rem);
  --fs-h2:        clamp(2.25rem, 1.6rem + 3.2vw, 4.5rem);
  --fs-h1:        clamp(3rem, 1.6rem + 7.5vw, 9rem);
  --fs-mega:      clamp(3.5rem, 2rem + 9vw, 11rem);

  /* --- Spacing — escala geométrica --- */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  --section-y: clamp(4rem, 3rem + 5vw, 9rem);
  --gutter:    clamp(1.25rem, .8rem + 2vw, 3rem);

  /* --- Radios --- */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-full: 9999px;

  /* --- Elevation: sombras en capas --- */
  --shadow-sm:
    0 1px 2px rgba(26, 24, 20, 0.04),
    0 2px 6px rgba(26, 24, 20, 0.04);
  --shadow-md:
    0 1px 2px rgba(26, 24, 20, 0.04),
    0 8px 22px rgba(26, 24, 20, 0.06),
    0 20px 48px rgba(26, 24, 20, 0.06);
  --shadow-lg:
    0 1px 2px rgba(26, 24, 20, 0.05),
    0 12px 32px rgba(26, 24, 20, 0.08),
    0 32px 80px rgba(26, 24, 20, 0.10);

  /* --- Motion --- */
  --ease-out: cubic-bezier(.19, 1, .22, 1);   /* Apple decelerate */
  --ease-in:  cubic-bezier(.42, 0, 1, 1);
  --ease:     cubic-bezier(.4, .0, .2, 1);
  --dur-fast: 220ms;
  --dur:      420ms;
  --dur-slow: 800ms;

  /* --- Layout --- */
  --max-w: 1280px;

  /* iOS dynamic viewport */
  --vh-dynamic: 100dvh;
  --vh-small:   100svh;
}

/* ============================================================
   2. RESET MÍNIMO + iOS BASICS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, p, ul, ol, blockquote, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

input, textarea, select { font-size: max(16px, 1rem); }

::selection { background: var(--olive); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   3. LAYOUT HELPERS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

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

/* ============================================================
   4. TIPOGRAFÍA ATOMS
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 500;
}

/* ============================================================
   5. NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top);
  transition: background var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(240, 233, 220, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(26, 24, 20, 0.06);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-4) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: .02em;
  color: var(--ink);
}
.nav__brand-mark {
  width: 22px; height: 22px;
  color: var(--olive);
  display: inline-block;
}
.nav__brand-mark svg { width: 100%; height: 100%; }

.nav__menu {
  display: none;
  align-items: center;
  gap: var(--sp-6);
  font-size: .94rem;
}
.nav__menu a {
  position: relative;
  color: var(--ink);
  padding: var(--sp-2) 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav__menu a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.nav__menu a:not(.nav__cta):hover::after,
.nav__menu a:not(.nav__cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: .6rem 1.2rem !important;
  border-radius: var(--r-full);
  font-weight: 500;
  transition: background var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.nav__cta:hover {
  background: var(--olive);
  transform: translateY(-1px);
}

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease-out),
              opacity var(--dur-fast) var(--ease);
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  position: fixed;
  inset: 60px 0 auto 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(26,24,20,.08);
  padding: var(--sp-5) var(--gutter) var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  z-index: 49;
  animation: slideDown var(--dur) var(--ease-out);
}
.nav__mobile a {
  border-bottom: 1px solid rgba(26,24,20,.08);
  padding-bottom: var(--sp-4);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (min-width: 768px) {
  .nav__menu  { display: flex; }
  .nav__burger { display: none; }
  .nav__mobile { display: none !important; }
}

/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: clamp(7rem, 8vw, 9rem);
  padding-bottom: var(--sp-7);
  overflow: hidden;
  isolation: isolate;
}

/* Textura sutil de grano */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% -10%, rgba(216, 124, 90, 0.15), transparent 50%),
    radial-gradient(ellipse at -10% 80%, rgba(61, 79, 55, 0.10), transparent 50%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: .35;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: end;
}

.hero__meta {
  grid-row: 1;
}

.hero__copy {
  grid-row: 2;
}

.hero__can {
  grid-row: 3;
  justify-self: center;
  position: relative;
  width: clamp(180px, 50vw, 280px);
  margin-top: var(--sp-5);
}

.hero__footer {
  grid-row: 4;
  margin-top: var(--sp-7);
}

/* Tablet+ → layout asimétrico */
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: var(--sp-6);
    align-items: start;
  }
  .hero__meta  { grid-column: 1 / -1; grid-row: 1; }
  .hero__copy  { grid-column: 1; grid-row: 2; padding-top: var(--sp-6); }
  .hero__can   {
    grid-column: 2; grid-row: 2;
    width: clamp(220px, 32vw, 340px);
    margin-top: 0;
    align-self: center;
    justify-self: center;
  }
  .hero__footer { grid-column: 1 / -1; grid-row: 3; margin-top: var(--sp-8); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: var(--sp-5);
  text-wrap: balance;
}
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__line--accent {
  color: var(--olive);
  font-style: italic;
  font-weight: 500;
}

.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 32ch;
  margin-top: var(--sp-5);
  text-wrap: pretty;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

/* --- Botones --- */
.btn {
  --pad-y: .95rem;
  --pad-x: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--r-full);
  font-size: .96rem;
  font-weight: 500;
  letter-spacing: .005em;
  transition: transform var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease-out); }

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--olive);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26, 24, 20, .2);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* --- Lata SVG hero --- */
.hero__can .can {
  width: 100%; height: auto;
  filter: drop-shadow(0 30px 50px rgba(26, 24, 20, 0.15));
  animation: canFloat 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes canFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.7), rgba(255,255,255,.15));
  animation: bubble 5s ease-in-out infinite;
}
.bubble--1 { width: 28px; height: 28px; top: 10%; left: -10%; animation-delay: 0s; }
.bubble--2 { width: 16px; height: 16px; top: 40%; right: -8%; animation-delay: 1.4s; }
.bubble--3 { width: 22px; height: 22px; bottom: 18%; left: -5%; animation-delay: 2.8s; }

@keyframes bubble {
  0%, 100% { transform: translateY(0) scale(1); opacity: .8; }
  50%      { transform: translateY(-22px) scale(1.1); opacity: 1; }
}

/* --- Ticker infinito --- */
.ticker {
  border-block: 1px solid rgba(26, 24, 20, .12);
  padding-block: var(--sp-4);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex;
  gap: var(--sp-5);
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, .9rem + .4vw, 1.3rem);
  color: var(--ink-soft);
  letter-spacing: -.01em;
  width: max-content;
}
.ticker__track span:nth-child(even) { color: var(--terracotta); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   7. THE VAN
   ============================================================ */
.van {
  background: var(--surface-alt);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}

.van__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
}

.van__meta { color: var(--ink-mute); }

.van__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}

.van__lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 42ch;
  line-height: 1.45;
}
.van__lead-aside {
  color: var(--terracotta);
  font-style: italic;
  font-family: var(--font-display);
}

.van__instagram {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-full);
  font-weight: 500;
  width: max-content;
  transition: transform var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out);
}
.van__instagram svg { width: 18px; height: 18px; }
.van__instagram-arrow { width: 16px !important; height: 16px !important; transition: transform var(--dur) var(--ease-out); }
.van__instagram:hover {
  background: var(--olive);
  transform: translateY(-2px);
}
.van__instagram:hover .van__instagram-arrow {
  transform: translate(3px, -3px);
}

.van__illustration {
  width: 100%;
  margin-top: var(--sp-5);
}
.van__illustration svg { width: 100%; height: auto; }

@media (min-width: 900px) {
  .van__grid {
    grid-template-columns: 1fr 1.1fr;
    grid-template-areas:
      "meta meta"
      "title illustration"
      "lead illustration"
      "ig illustration";
    column-gap: var(--sp-8);
    row-gap: var(--sp-5);
  }
  .van__meta         { grid-area: meta; }
  .van__title        { grid-area: title; }
  .van__lead         { grid-area: lead; }
  .van__instagram    { grid-area: ig; }
  .van__illustration { grid-area: illustration; margin-top: 0; align-self: center; }
}

/* ============================================================
   8. SECTION HEAD (genérico)
   ============================================================ */
.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.section-head--center {
  text-align: center;
  align-items: center;
}
.section-head__title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-wrap: balance;
}
.section-head__lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 50ch;
}

/* ============================================================
   9. LOCATIONS / EVENT GRID
   ============================================================ */
.locations {
  padding-block: var(--section-y);
}

.locations__filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-7);
}

.chip {
  padding: .55rem 1.1rem;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid rgba(26, 24, 20, .18);
  color: var(--ink-soft);
  transition: background var(--dur-fast) var(--ease),
              color     var(--dur-fast) var(--ease),
              border    var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease-out);
}
.chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.chip.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.chip__divider {
  display: inline-block;
  width: 1px; height: 24px;
  background: rgba(26, 24, 20, .15);
  align-self: center;
  margin-inline: var(--sp-2);
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-5);
  background: var(--cream-2);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  transition: transform var(--dur) var(--ease-out),
              background var(--dur) var(--ease),
              border var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  cursor: pointer;
}
.event-card:hover {
  transform: translateY(-3px);
  background: var(--cream);
  border-color: rgba(26,24,20,.1);
  box-shadow: var(--shadow-md);
}
.event-card.is-hidden { display: none; }

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: var(--sp-3) var(--sp-2);
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  line-height: 1;
}
.event-card__day {
  font-size: 1.7rem;
  font-weight: 700;
}
.event-card__month {
  font-size: .7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-top: var(--sp-1);
  color: var(--terracotta);
}

.event-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.15;
}
.event-card__where {
  font-size: .92rem;
  color: var(--ink-mute);
  margin-top: var(--sp-1);
}

.event-card__time {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--olive);
}
.event-card__time svg { width: 16px; height: 16px; }

@media (min-width: 768px) {
  .event-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.locations__empty {
  text-align: center;
  padding: var(--sp-7);
  color: var(--ink-mute);
}
.link-btn {
  color: var(--olive);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   10. FLAVORS
   ============================================================ */
.flavors {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}
.flavors::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(216, 124, 90, .12), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(61, 79, 55, .15), transparent 50%);
  pointer-events: none;
}
.flavors .container { position: relative; }

.flavors .eyebrow { color: rgba(240, 233, 220, .55); }
.flavors .section-head__title { color: var(--cream); }

.flavor-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 900px) {
  .flavor-pair { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
}

.flavor-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: rgba(240, 233, 220, .04);
  border: 1px solid rgba(240, 233, 220, .08);
  border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease-out),
              border var(--dur) var(--ease),
              background var(--dur) var(--ease);
}
.flavor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 233, 220, .2);
  background: rgba(240, 233, 220, .06);
}

@media (min-width: 600px) {
  .flavor-card {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: var(--sp-6);
  }
}

.flavor-card__art {
  position: relative;
  display: grid;
  place-items: center;
  padding: var(--sp-5);
  min-height: 280px;
  background:
    radial-gradient(ellipse at center, rgba(240, 233, 220, .05), transparent 70%);
  border-radius: var(--r-md);
}
.flavor-card__art .can-mini {
  width: 60%;
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .4));
  transition: transform var(--dur-slow) var(--ease-out);
}
.flavor-card:hover .can-mini { transform: translateY(-8px) rotate(-3deg); }

.leaf, .lime {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.3));
}
.leaf svg, .lime svg { width: 100%; height: 100%; }
.leaf--1 { width: 50px; height: 50px; top: 12%; left: 12%; transform: rotate(-20deg); }
.leaf--2 { width: 38px; height: 38px; bottom: 14%; right: 14%; transform: rotate(140deg); }
.lime--1 { width: 64px; height: 64px; top: 14%; right: 10%; }

.flavor-card__index {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--terracotta);
}
.flavor-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.5rem + 1.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1;
  margin-top: var(--sp-2);
  color: var(--cream);
}
.flavor-card__profile {
  font-style: italic;
  color: rgba(240, 233, 220, .65);
  margin-top: var(--sp-2);
  font-family: var(--font-display);
}

.flavor-card__claim {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, .95rem + .5vw, 1.3rem);
  line-height: 1.4;
  color: var(--cream);
  margin-top: var(--sp-5);
  padding-left: var(--sp-4);
  border-left: 2px solid var(--terracotta);
}

.flavor-card__benefit {
  font-weight: 600;
  color: var(--cream);
  margin-top: var(--sp-5);
  letter-spacing: -.005em;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.tags li {
  padding: .35rem .85rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--r-full);
  background: rgba(240, 233, 220, .08);
  color: rgba(240, 233, 220, .85);
  border: 1px solid rgba(240, 233, 220, .1);
}

.flavor-card__more {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  padding: var(--sp-3) 0;
  font-weight: 500;
  color: var(--cream);
  border-bottom: 1px solid rgba(240, 233, 220, .25);
  width: max-content;
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              gap var(--dur) var(--ease-out);
}
.flavor-card__more svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease-out); }
.flavor-card__more:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
  gap: var(--sp-3);
}
.flavor-card__more:hover svg { transform: translateY(3px); }

/* ============================================================
   11. WELLNESS / BENEFITS
   ============================================================ */
.wellness {
  padding-block: var(--section-y);
}

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 768px)  { .benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits { grid-template-columns: repeat(3, 1fr); } }

.benefit {
  padding: var(--sp-6) var(--sp-5);
  background: var(--cream-2);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  position: relative;
  transition: transform var(--dur) var(--ease-out),
              background var(--dur) var(--ease),
              border var(--dur) var(--ease);
}
.benefit:hover {
  transform: translateY(-4px);
  background: var(--surface);
  border-color: rgba(26,24,20,.08);
}

.benefit__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: var(--sp-5);
}

.benefit__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--ink);
}

.benefit__text {
  margin-top: var(--sp-3);
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================================
   12. MANIFIESTO
   ============================================================ */
.manifesto {
  padding-block: var(--section-y);
  background: var(--surface-alt);
  border-top: 1px solid rgba(26,24,20,.06);
  border-bottom: 1px solid rgba(26,24,20,.06);
  position: relative;
}

.manifesto .container {
  max-width: 980px;
  text-align: center;
}

.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.5rem);
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-top: var(--sp-5);
  text-wrap: balance;
  position: relative;
}
.manifesto__text em {
  color: var(--terracotta);
}

.manifesto__quote {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 4rem + 5vw, 9rem);
  font-style: italic;
  color: var(--terracotta);
  line-height: .6;
  height: 0.4em;
  opacity: .35;
  margin-bottom: var(--sp-3);
}

.manifesto__signoff {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1rem + 1.4vw, 2.2rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-top: var(--sp-7);
}
.manifesto__signoff span {
  font-style: italic;
  color: var(--olive);
  font-weight: 500;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--sp-8) var(--sp-6);
  padding-bottom: max(var(--sp-6), env(safe-area-inset-bottom));
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.footer__brand {
  max-width: 28ch;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--cream);
}
.footer__logo-mark {
  width: 26px; height: 26px;
  color: var(--terracotta);
  display: inline-block;
}
.footer__logo-mark svg { width: 100%; height: 100%; }
.footer__tagline {
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(240, 233, 220, .65);
  font-size: 1.05rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
}
.footer__nav a {
  color: rgba(240, 233, 220, .8);
  font-size: .95rem;
  transition: color var(--dur-fast) var(--ease);
}
.footer__nav a:hover { color: var(--terracotta); }

.footer__rule {
  border: 0;
  height: 1px;
  background: rgba(240, 233, 220, .12);
  margin-block: var(--sp-6);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: .82rem;
  color: rgba(240, 233, 220, .55);
}
.footer__legal { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.footer__legal a { color: rgba(240, 233, 220, .75); }
.footer__legal a:hover { color: var(--cream); }

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}



/* ============================================================
   14. SCROLL REVEAL — Sólo se oculta si JS está activo
   ============================================================ */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease-out),
              transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   15. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
