/* ==========================================================
   BLITZ — base tokens
   ========================================================== */
:root{
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f6f5f2;
  --line: rgba(10,10,10,.12);

  --pomello-1: #fbe6c4;
  --pomello-2: #f2a24a;
  --pomello-3: #e0316f;

  --blueberry-1: #d9ecf5;
  --blueberry-2: #5f8fc4;
  --blueberry-3: #2c2a5e;

  --ginger-1: #f6f3de;
  --ginger-2: #d9de66;
  --ginger-3: #7ea23d;

  --font-display: "Inter Tight", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;

  --container: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--white) url('../assets/img/pattern-topo-seamless.png') repeat 0 0;
  background-size: 640px auto;
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ==========================================================
   Buttons
   ========================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid var(--black);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-solid{ background: var(--black); color: var(--white); }
.btn-solid:hover{ transform: translateY(-2px); }
.btn-line{ background: transparent; color: var(--black); }
.btn-line:hover{ background: var(--black); color: var(--white); }
.btn-line-light{ border-color: var(--white); color: var(--white); }
.btn-line-light:hover{ background: var(--white); color: var(--black); }

/* ==========================================================
   Header
   ========================================================== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  padding: .7rem 0;
  border-bottom-color: var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand{ position: relative; display: inline-flex; align-items: center; }
.brand-logo{ display: block; height: 62px; }
.brand-logo img{ height: 62px; width: auto; display: block; }
.brand-logo--black{ display: none; }
.site-header.is-scrolled .brand-logo--white{ display: none; }
.site-header.is-scrolled .brand-logo--black{ display: block; }
.main-nav{
  display: flex;
  gap: 1.9rem;
  margin-left: 1rem;
  margin-right: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.site-header:not(.is-scrolled) .main-nav{ color: var(--white); }
.main-nav a{ position: relative; padding: .25rem 0; }
.main-nav a::after{
  content:"";
  position:absolute; left:0; bottom:-2px;
  width:0; height:2px; background: currentColor;
  transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.is-current::after{ width: 100%; }
.footer-nav a.is-current{ opacity: 1; }

.site-header:not(.is-scrolled) .header-cta{ border-color: var(--white); color: var(--white); }
.site-header:not(.is-scrolled) .header-cta:hover{ background: var(--white); color: var(--black); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 30px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle span{
  display:block; height: 2px; width: 100%;
  background: var(--black);
  transition: transform .25s ease, opacity .25s ease, background .25s ease;
}
.site-header:not(.is-scrolled) .nav-toggle span{ background: var(--white); }

/* ==========================================================
   Hero
   ========================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media{
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img{
  width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.75) 100%);
}
.hero-content{
  position: relative; z-index: 1;
  padding-top: 7rem;
  max-width: 780px;
}
.eyebrow{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  opacity: .85;
  margin: 0 0 1.1rem;
}
.hero-title{
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 900;
  line-height: .95;
  margin-bottom: 1.4rem;
}
.hero-sub{
  font-size: 1.05rem;
  max-width: 560px;
  opacity: .92;
  margin-bottom: 2.2rem;
}
.hero-sub--lg{
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  max-width: 640px;
}
.hero-actions-wrap{ position: relative; z-index: 1; padding-top: 2.6rem; padding-bottom: 5rem; }
.hero-actions{ display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.hero-actions .btn{
  flex: 0 1 320px;
  padding: 1.35rem 2.4rem;
  font-size: 1.05rem;
  letter-spacing: .05em;
}

.scroll-cue{
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 999px;
}
.scroll-cue span{
  position: absolute; top: 8px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--white);
  border-radius: 999px;
  animation: cue 1.6s ease infinite;
}
@keyframes cue{
  0%{ transform: translateY(0); opacity: 1; }
  70%{ transform: translateY(14px); opacity: 0; }
  100%{ opacity: 0; }
}

/* ==========================================================
   Diferenciadores strip
   ========================================================== */
.diff-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.diff-list li{
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-diff{
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: 3rem;
  row-gap: 1.6rem;
  justify-content: space-between;
  font-size: 1.02rem;
  margin-bottom: 0;
  width: 100%;
}
.hero-diff li{ color: var(--white); gap: .9rem; }
.hero-diff .diff-icon{ width: 38px; height: 38px; border-color: var(--white); }

.diff-icon{
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2.5px solid var(--black);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff-icon svg{ width: 62%; height: 62%; }

/* ==========================================================
   Section shared
   ========================================================== */
section{ padding: clamp(4rem, 9vw, 7.5rem) 0; }
.page-hero{ padding-top: calc(clamp(4rem, 9vw, 7.5rem) + 88px); }
.section-tag{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--black);
  opacity: .55;
  margin: 0 0 .8rem;
}
.form-heading{
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-transform: none;
  opacity: 1;
  margin-bottom: 1.1rem;
}
.section-title{
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 1.4rem;
}
.center{ text-align: center; }
.muted{ opacity: .6; margin: 0 0 .4rem; }

/* ==========================================================
   About
   ========================================================== */
.about-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-copy p{ max-width: 480px; }
.about-stats{
  display: flex;
  gap: 2.5rem;
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.about-stats div{ display: flex; flex-direction: column; }
.about-stats strong{ font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; }
.about-stats span{ font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; opacity: .6; }

.about-visual{ position: relative; }
.about-visual img{
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}
/* ==========================================================
   Flavors
   ========================================================== */
.page-banner{
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  padding-bottom: 3rem !important;
}
.page-banner img{
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.page-banner-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.7) 100%);
}
.page-banner-content{ position: relative; z-index: 1; }
.page-banner-content .section-tag{ color: var(--white); opacity: .8; }
.page-banner-content .section-title{ margin-bottom: 0; color: var(--white); }

.page-banner--sm{ min-height: clamp(240px, 35vh, 420px); padding-bottom: 2.4rem !important; }
.page-banner--sharp img{ filter: contrast(1.08) saturate(1.15) brightness(1.02); }
.banner-img--low{ object-position: center 68%; }

.flavors{ padding-top: clamp(3rem, 7vw, 5.5rem); padding-bottom: 0; }
.flavor{ padding: clamp(3.5rem, 8vw, 6rem) 0; position: relative; }
.flavor-grid{
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.flavor-grid--reverse{ grid-template-columns: 1fr .85fr; }
.flavor-grid--reverse .flavor-media{ order: 2; }

.flavor-media{ position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem; }
.flavor-media img{ display: block; width: 62%; max-width: 260px; margin: 0 auto; position: relative; z-index: 1; filter: drop-shadow(0 25px 35px rgba(0,0,0,.18)); }

.flavor-badges{
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-self: center;
}
.flavor-badges li{ display: flex; flex-direction: column; align-items: center; gap: .45rem; }
.flavor-badges .diff-icon{
  width: 46px; height: 46px;
  border-width: 2px;
}
.flavor-badges .badge-label{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-align: center;
  opacity: .65;
  max-width: 76px;
  line-height: 1.15;
}
.flavor--pomello .flavor-badges .diff-icon{ border-color: var(--pomello-3); color: var(--pomello-3); }
.flavor--blueberry .flavor-badges .diff-icon{ border-color: var(--blueberry-3); color: var(--blueberry-3); }
.flavor--ginger .flavor-badges .diff-icon{ border-color: var(--ginger-3); color: var(--ginger-3); }
.flavor-glow{
  position: absolute;
  width: 92%; height: 92%;
  max-width: 520px; max-height: 520px;
  border-radius: 50%;
  filter: blur(14px);
  opacity: .6;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.flavor--pomello .flavor-glow{ background: radial-gradient(circle, var(--pomello-3), var(--pomello-2) 55%, var(--pomello-1) 85%, transparent); }
.flavor--blueberry .flavor-glow{ background: radial-gradient(circle, var(--blueberry-3), var(--blueberry-2) 55%, var(--blueberry-1) 85%, transparent); }
.flavor--ginger .flavor-glow{ background: radial-gradient(circle, var(--ginger-3), var(--ginger-2) 55%, var(--ginger-1) 85%, transparent); }

.flavor-kicker{
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: .6rem;
}
.flavor--pomello .flavor-kicker{ color: var(--pomello-3); }
.flavor--blueberry .flavor-kicker{ color: var(--blueberry-3); }
.flavor--ginger .flavor-kicker{ color: var(--ginger-3); }

.flavor-copy h3{ font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 900; margin-bottom: 1rem; }
.flavor-brand{
  font-weight: 800;
  background-image: linear-gradient(90deg, var(--grad-1), var(--grad-2) 55%, var(--grad-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.flavor--pomello .flavor-brand{ --grad-1: var(--pomello-3); --grad-2: var(--pomello-2); --grad-3: var(--pomello-1); }
.flavor--blueberry .flavor-brand{ --grad-1: var(--blueberry-3); --grad-2: var(--blueberry-2); --grad-3: var(--blueberry-1); }
.flavor--ginger .flavor-brand{ --grad-1: var(--ginger-3); --grad-2: var(--ginger-2); --grad-3: var(--ginger-1); }
.flavor-copy p{ max-width: 460px; margin-bottom: 1.4rem; opacity: .85; }

.flavor-tags{ display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.8rem; }
.flavor-tags li{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1.3px solid var(--black);
}
.flavor--pomello .flavor-tags li{ border-color: var(--pomello-3); }
.flavor--blueberry .flavor-tags li{ border-color: var(--blueberry-3); }
.flavor--ginger .flavor-tags li{ border-color: var(--ginger-2); }

.flavor-info{
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  padding: 1.4rem 0 1.6rem;
  margin-bottom: 1.6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.flavor-info-block{ min-width: 220px; flex: 1; }
.flavor-subhead{
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: .6rem;
}
.flavor-subhead small{ text-transform: none; letter-spacing: 0; opacity: .8; }
.pairing-list{ margin: 0; font-size: .88rem; line-height: 1.6; opacity: .85; }

.nutrition-list{ display: flex; flex-direction: column; gap: .3rem; }
.nutrition-list li{
  display: flex; justify-content: space-between; gap: .8rem;
  font-size: .85rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: .25rem;
}
.nutrition-list li span:first-child{ opacity: .85; }
.nutrition-list li span:last-child{ font-weight: 600; opacity: .6; white-space: nowrap; }


/* ==========================================================
   Momentos
   ========================================================== */
.moments-layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
  margin-top: 2.5rem;
}
.moments-carousel{
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
}
.moments-carousel img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.moments-carousel img.is-active{ opacity: 1; }
.carousel-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border: none;
  background: none;
  padding: 0;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: .8;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.55));
  transition: opacity .2s ease, transform .2s ease;
}
.carousel-arrow svg{ width: 30px; height: 30px; stroke-width: 1.6; }
.carousel-arrow:hover{ opacity: 1; }
.carousel-arrow--prev{ left: 6px; }
.carousel-arrow--prev:hover{ transform: translateY(-50%) translateX(-3px); }
.carousel-arrow--next:hover{ transform: translateY(-50%) translateX(3px); }
.carousel-arrow--next{ right: 6px; }
.moments-intro{ font-size: 1.05rem; opacity: .8; max-width: 480px; margin-bottom: 2.4rem; }
.moments-block{ margin-bottom: 2.2rem; }
.moments-block h3{
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .9rem;
}
.plain-list li{
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.plain-list li strong{ font-family: var(--font-display); font-weight: 800; }
.plain-list li span{ font-size: .88rem; opacity: .65; }
/* ==========================================================
   Dónde encontrarla
   ========================================================== */
.recipes-intro{ max-width: 560px; opacity: .8; margin-bottom: 2.2rem; }

.recipe-filters{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.recipe-filter{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  border: 1.3px solid var(--black);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.recipe-filter:hover{ background: rgba(10,10,10,.06); }
.recipe-filter.is-active{ background: var(--black); color: var(--white); }

.recipe-filter--pomello{ border-color: transparent; background: linear-gradient(#fff,#fff) padding-box, linear-gradient(90deg, var(--pomello-3), var(--pomello-2), var(--pomello-1)) border-box; }
.recipe-filter--ginger{ border-color: transparent; background: linear-gradient(#fff,#fff) padding-box, linear-gradient(90deg, var(--ginger-3), var(--ginger-2), var(--ginger-1)) border-box; }
.recipe-filter--blueberry{ border-color: transparent; background: linear-gradient(#fff,#fff) padding-box, linear-gradient(90deg, var(--blueberry-3), var(--blueberry-2), var(--blueberry-1)) border-box; }
.recipe-filter--multi{ border-color: transparent; background: linear-gradient(#fff,#fff) padding-box, linear-gradient(90deg, var(--pomello-3), var(--ginger-2), var(--blueberry-2)) border-box; }
.recipe-filter--pomello:hover{ background: linear-gradient(rgba(10,10,10,.06),rgba(10,10,10,.06)) padding-box, linear-gradient(90deg, var(--pomello-3), var(--pomello-2), var(--pomello-1)) border-box; }
.recipe-filter--ginger:hover{ background: linear-gradient(rgba(10,10,10,.06),rgba(10,10,10,.06)) padding-box, linear-gradient(90deg, var(--ginger-3), var(--ginger-2), var(--ginger-1)) border-box; }
.recipe-filter--blueberry:hover{ background: linear-gradient(rgba(10,10,10,.06),rgba(10,10,10,.06)) padding-box, linear-gradient(90deg, var(--blueberry-3), var(--blueberry-2), var(--blueberry-1)) border-box; }
.recipe-filter--multi:hover{ background: linear-gradient(rgba(10,10,10,.06),rgba(10,10,10,.06)) padding-box, linear-gradient(90deg, var(--pomello-3), var(--ginger-2), var(--blueberry-2)) border-box; }

.recipe-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding-bottom: 1rem;
}
@media (max-width: 900px){ .recipe-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .recipe-grid{ grid-template-columns: 1fr; } }

.recipe-card{
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, #fbfaf8 0%, color-mix(in srgb, var(--recipe-accent, var(--black)) 14%, #fbfaf8) 100%);
  border-radius: 6px;
  overflow: hidden;
  border-top: 4px solid var(--recipe-accent, var(--black));
}
.recipe-photo{
  aspect-ratio: 3/2;
  background: rgba(10,10,10,.05);
}
.recipe-photo img{ width: 100%; height: 100%; object-fit: cover; }
.recipe-photo.no-photo{ display: flex; align-items: center; justify-content: center; padding: 1.6rem 0; }
.recipe-photo.no-photo svg{ width: 72px; height: auto; }

.recipe-body{ padding: 1.5rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.recipe-eyebrow{
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: .68rem;
  letter-spacing: .06em; text-transform: uppercase; opacity: .55;
}
.recipe-title{ font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; margin: 0; }
.recipe-note{ font-size: .88rem; opacity: .72; margin: 0; }

.recipe-ingredients{ display: flex; flex-direction: column; gap: .4rem; }
.recipe-ingredients li{
  display: flex; justify-content: space-between; gap: .8rem;
  font-size: .82rem;
  border-bottom: 1px dashed var(--line);
  padding-bottom: .35rem;
}
.recipe-ingredients li span:first-child{ opacity: .85; }
.recipe-ingredients li span:last-child{ font-weight: 600; opacity: .55; white-space: nowrap; }

.recipe-method{ font-size: .8rem; line-height: 1.55; opacity: .75; margin: 0; }
.recipe-method strong{
  display: block; margin-bottom: .35rem;
  font-family: var(--font-display); font-weight: 700; font-size: .68rem;
  letter-spacing: .05em; text-transform: uppercase; opacity: .9;
}
.recipe-tag{
  align-self: flex-start;
  font-family: var(--font-display); font-weight: 700; font-size: .68rem;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
  border: 1px solid var(--recipe-accent, var(--black));
  color: var(--recipe-accent, var(--black));
}

.where{ background: var(--off-white) url('../assets/img/pattern-topo-seamless.png') repeat 0 0; background-size: 640px auto; }
.where-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.where-card{
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 8px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.where-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--pomello-3), var(--ginger-2), var(--blueberry-2));
}
.where-card:not(.where-card--soon):hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(0,0,0,.08);
}
.where-icon{
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.3px solid var(--black);
  margin-bottom: .6rem;
}
.where-icon svg{ width: 22px; height: 22px; }
.where-icon--logo{
  border: none;
  border-radius: 0;
  width: auto;
  height: 30px;
  justify-content: flex-start;
}
.where-icon--logo img{ height: 100%; width: auto; object-fit: contain; }
.where-badge{
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .62rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--pomello-3);
  background: rgba(224,49,111,.08);
  padding: .35rem .7rem;
  border-radius: 999px;
}
.where-store{ font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.where-note{ opacity: .6; font-size: .88rem; }
.where-arrow{ margin-top: .8rem; font-family: var(--font-display); font-weight: 800; }
.where-card--soon{ opacity: .55; }

/* ==========================================================
   Contacto
   ========================================================== */
.contact-intro{ max-width: 560px; opacity: .8; }

.faq-list{ max-width: 780px; margin: 2.5rem 0; }
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-trigger{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.3rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
}
.faq-icon{ position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after{
  content: ""; position: absolute; top: 50%; left: 0;
  width: 100%; height: 1.5px; background: var(--black);
  transition: transform .25s ease;
}
.faq-icon::after{ transform: rotate(90deg); }
.faq-trigger[aria-expanded="true"] .faq-icon::after{ transform: rotate(0deg); }
.faq-panel{
  max-height: 0;
  overflow: hidden;
  max-width: 560px;
  transition: max-height .3s ease;
}
.faq-panel p{ opacity: .75; margin: 0 0 .8rem; }
.faq-link{ display: inline-block; margin-bottom: 1.5rem; font-family: var(--font-display); font-weight: 700; font-size: .88rem; border-bottom: 1.5px solid var(--black); padding-bottom: .15rem; }

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 4rem);
}
.contact-direct{ display: flex; flex-direction: column; justify-content: flex-end; }
.contact-links{ display: flex; flex-direction: column; gap: .6rem; margin: 1.4rem 0; font-family: var(--font-display); font-weight: 700; }
.contact-links a{ font-size: 1.1rem; border-bottom: 1.5px solid var(--black); width: fit-content; padding-bottom: .15rem; }
.office-address{
  margin-top: 1.5rem;
  text-align: right;
  font-size: .78rem;
  opacity: .45;
}

/* ==========================================================
   Comunidad
   ========================================================== */
.community-intro{ max-width: 560px; opacity: .8; }
.community-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  margin-top: 2.5rem;
}
.community-benefits{ display: flex; flex-direction: column; gap: 1.8rem; }
.community-benefits li{ display: flex; gap: 1rem; align-items: flex-start; }
.community-icon{
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.3px solid var(--black);
  flex-shrink: 0;
}
.community-icon svg{ width: 22px; height: 22px; }
.community-benefits h3{ font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; margin: 0 0 .3rem; }
.community-benefits p{ font-size: .88rem; opacity: .7; margin: 0; }

.community-form .hs-form-field{ margin-bottom: 1rem; }
.community-form label{
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: .4rem;
}
.community-form input[type="text"],
.community-form input[type="email"],
.community-form input[type="tel"],
.community-form select,
.community-form textarea{
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--white);
  color: var(--black);
}
.community-form input:focus, .community-form select:focus, .community-form textarea:focus{
  outline: none;
  border-color: var(--black);
}
.community-form ul{ list-style: none; padding: 0; margin: 0; }
.community-form .hs-error-msgs{ color: #c0392b; font-size: .78rem; margin: .3rem 0 0; list-style: none; padding: 0; }
.community-form .hs-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .6rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: transform .25s ease;
}
.community-form .hs-button:hover{ transform: translateY(-2px); }
.community-form .submitted-message{ font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }

.community-card{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 30px 60px rgba(0,0,0,.08);
}
.community-card-bar{
  height: 5px;
  background: linear-gradient(90deg, var(--pomello-3), var(--ginger-2), var(--blueberry-2));
}
.community-card-body{ padding: clamp(1.8rem, 4vw, 2.6rem); }
.community-form input:focus{ border-color: var(--pomello-3); box-shadow: 0 0 0 3px rgba(224,49,111,.1); }
.date-field{ display: flex; flex-direction: column; justify-content: center; }
.date-field label{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  opacity: .5;
  margin-bottom: .4rem;
}
.date-field input[type="date"]{ color: var(--black); }

.community-success{
  text-align: center;
  padding: 1.5rem 0;
  opacity: 0;
  transform: scale(.92);
  transition: opacity .4s ease, transform .4s ease;
}
.community-success.is-visible{ opacity: 1; transform: scale(1); }
.community-success-icon{
  width: 56px; height: 56px;
  color: var(--pomello-3);
  margin-bottom: 1rem;
}
.community-success h3{ font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; margin: 0 0 .6rem; }
.community-success p{ opacity: .7; margin: 0; max-width: 380px; margin-inline: auto; }

.contact-form{ display: flex; flex-direction: column; gap: 1rem; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea{
  width: 100%;
  padding: .9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--white);
  color: var(--black);
}
.contact-form input:focus, .contact-form textarea:focus{ outline: none; border-color: var(--black); }
.contact-form textarea{ resize: vertical; }
.contact-form .btn{ align-self: flex-start; margin-top: .3rem; }
.form-note{ font-size: .8rem; opacity: .55; margin: 0; }
.contact-address p:first-child{ margin-bottom: .6rem; }

/* ==========================================================
   Footer
   ========================================================== */
.site-footer{
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0 2rem;
}
.footer-inner{ display: flex; flex-direction: column; align-items: center; gap: 1.8rem; text-align: center; }
.footer-logo{ height: 60px; width: auto; }
.footer-nav{ display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center; font-size: .85rem; letter-spacing: .03em; text-transform: uppercase; font-family: var(--font-display); font-weight: 600; opacity: .85; }
.footer-social{
  position: absolute;
  right: var(--gap);
  bottom: 1.4rem;
  display: flex;
  gap: .8rem;
}
@media (max-width: 760px){
  .footer-social{ position: static; justify-content: center; margin-top: .5rem; }
}
.social-icon{
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  color: var(--white);
  opacity: .85;
  transition: opacity .2s ease;
}
.social-icon:hover{ opacity: 1; }
.social-icon svg{ width: 100%; height: 100%; }
.footer-legal{ font-size: .78rem; opacity: .5; margin: 0; }

/* ==========================================================
   Reveal on scroll
   ========================================================== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 900px){
  .about-grid, .flavor-grid, .flavor-grid--reverse, .moments-layout, .contact-grid, .community-grid{
    grid-template-columns: 1fr;
  }
  .flavor-grid--reverse .flavor-media{ order: 0; }
  .about-visual{ order: -1; }
}

@media (max-width: 760px){
  .main-nav, .header-cta{ display: none; }
  .nav-toggle{ display: flex; }

  .main-nav.is-open{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    color: var(--black);
    padding: 1.5rem var(--gap) 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .site-header .main-nav.is-open a{ color: var(--black); }

  .hero-content{ padding-top: 8rem; }
  .diff-list{ gap: 1.4rem 1.8rem; justify-content: flex-start; }
  .hero-diff{ display: flex; }
}
