/* ============================================================
   GELATO & CIA — Editorial landing page
   Design tokens
============================================================ */
:root {
  --pink-hot:    #FF2E7E;
  --pink-deep:   #E11163;
  --pink-soft:   #FFD3E2;
  --pink-blush:  #FFE9F1;
  --cream:       #FFF6E9;
  --cream-deep:  #F4E4CB;
  --ink:         #1A0A12;
  --ink-soft:    #3A1F2A;
  --burgundy:    #4A0E25;
  --olive:       #5C6E3F;
  --sage:        #B7C9A8;
  --gold:        #D9A441;
  --strawberry:  #FF7AA8;
  --pistachio:   #B6D08C;
  --passion:     #FFC857;
  --chocolate:   #5C2A1A;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-script:  'Caveat', cursive;

  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --maxw: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Custom cursor blob */
.cursor-blob {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pink-hot);
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .25s var(--ease), width .25s var(--ease), height .25s var(--ease);
  z-index: 9999;
  will-change: transform;
}
@media (hover: hover) {
  .cursor-blob { transform: translate(-50%, -50%) scale(1); }
  .cursor-blob.is-hover { width: 60px; height: 60px; }
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; gap: 32px;
  padding: 10px 14px 10px 22px;
  background: rgba(255, 246, 233, .82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(26, 10, 18, .08);
  border-radius: 999px;
  transition: transform .5s var(--ease), background .3s ease;
}
.nav.is-scrolled {
  background: rgba(26, 10, 18, .85);
  color: var(--cream);
  border-color: rgba(255, 246, 233, .12);
}
.nav__logo { display: flex; align-items: baseline; gap: 8px; font-weight: 700; }
.nav__logo-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.nav__logo-word { font-size: 13px; letter-spacing: .02em; }
.nav__links { display: flex; gap: 22px; font-size: 13.5px; font-weight: 500; }
.nav__links a { position: relative; padding: 6px 2px; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  font-size: 13px; font-weight: 600;
  transition: background .25s ease, transform .25s var(--ease);
}
.nav__cta:hover { background: var(--pink-hot); transform: translateY(-1px); }
.nav.is-scrolled .nav__cta { background: var(--pink-hot); }

@media (max-width: 760px) {
  .nav { gap: 14px; padding: 8px 12px; }
  .nav__links { display: none; }
  .nav__logo-word { display: none; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--pink-hot);
  color: var(--cream);
  padding: 120px 32px 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__halo {
  position: absolute;
  top: 50%; left: 50%;
  width: 80vmin; height: 80vmin;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(closest-side at 50% 50%, rgba(255, 233, 199, .55), rgba(255, 233, 199, 0) 70%);
  filter: blur(10px);
  animation: haloPulse 8s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .9; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .25 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
}
.hero__sparkle {
  position: absolute;
  width: 26px; height: 26px;
  animation: sparkle 3.2s ease-in-out infinite;
}
.hero__sparkle--1 { top: 18%; left: 12%; animation-delay: .2s; }
.hero__sparkle--2 { top: 28%; right: 14%; width: 18px; animation-delay: .8s; }
.hero__sparkle--3 { bottom: 22%; left: 22%; width: 22px; animation-delay: 1.6s; }
@keyframes sparkle {
  0%, 100% { transform: scale(.6) rotate(0deg); opacity: .35; }
  50%      { transform: scale(1.1) rotate(45deg); opacity: 1; }
}

/* Top badge */
.hero__badge {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 auto 24px;
  padding: 8px 16px;
  background: rgba(255, 246, 233, .14);
  border: 1px solid rgba(255, 246, 233, .25);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .04em;
  text-transform: lowercase;
  width: fit-content;
}
.hero__badge { display: flex; }
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-soft);
  box-shadow: 0 0 0 4px rgba(255, 211, 226, .25);
  animation: dotBlink 1.6s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}
.hero__badge { margin-left: auto; margin-right: auto; }

/* Stage layout */
.hero__stage {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px) 1fr;
  align-items: center;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero__side {
  display: flex; flex-direction: column;
  gap: 18px;
}
.hero__side--left { align-items: flex-end; text-align: right; padding-right: 8px; }
.hero__side--right { align-items: flex-start; text-align: left; padding-left: 8px; }

.hero__kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
}
.hero__kicker-line {
  display: inline-block;
  width: 64px; height: 1px;
  background: currentColor;
  opacity: .55;
}

.hero__word {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(72px, 12vw, 180px);
  line-height: .92;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--cream);
  display: flex;
  white-space: nowrap;
}
.hero__word--right { color: #FFE9C7; }
.hero__word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) rotate(-6deg);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.hero__word.is-in span { opacity: 1; transform: translateY(0) rotate(0); }
.hero__word.is-in span:nth-child(1) { transition-delay: .05s; }
.hero__word.is-in span:nth-child(2) { transition-delay: .12s; }
.hero__word.is-in span:nth-child(3) { transition-delay: .19s; }
.hero__word.is-in span:nth-child(4) { transition-delay: .26s; }
.hero__word.is-in span:nth-child(5) { transition-delay: .33s; }
.hero__word.is-in span:nth-child(6) { transition-delay: .40s; }
.hero__word.is-in span:nth-child(7) { transition-delay: .47s; }
.hero__word.is-in span:nth-child(8) { transition-delay: .54s; }
.hero__period { color: var(--pink-soft); }

.hero__meta {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.55;
}
.hero__meta-light {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  opacity: .8;
}

/* Cone wrapper */
.hero__cone-wrap {
  position: relative;
  aspect-ratio: 3 / 4.2;
  display: flex; align-items: center; justify-content: center;
}
.hero__platter {
  position: absolute;
  inset: 6% 0 14% 0;
  background:
    radial-gradient(closest-side at 50% 50%, rgba(255, 246, 233, .55), rgba(255, 246, 233, 0) 70%);
  filter: blur(2px);
}
.hero__rings {
  position: absolute;
  inset: -4% 0 10% 0;
  display: flex; align-items: center; justify-content: center;
  animation: ringSpin 38s linear infinite;
  pointer-events: none;
}
.hero__rings svg { width: 100%; height: 100%; }
.hero__rings-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  fill: rgba(255, 246, 233, .55);
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

.hero__cone {
  position: relative;
  width: 92%; height: auto;
  max-height: 78vh;
  object-fit: contain;
  /* Mask to fade out the dark vignette */
  -webkit-mask-image: radial-gradient(ellipse 55% 62% at 50% 48%, black 55%, transparent 88%);
          mask-image: radial-gradient(ellipse 55% 62% at 50% 48%, black 55%, transparent 88%);
  filter: drop-shadow(0 40px 60px rgba(74, 14, 37, .45)) saturate(1.05);
  animation: coneFloat 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes coneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero__shadow {
  position: absolute;
  bottom: 6%;
  left: 50%; transform: translateX(-50%);
  width: 60%; height: 28px;
  background: radial-gradient(ellipse at center, rgba(74, 14, 37, .45) 0%, rgba(74, 14, 37, 0) 70%);
  filter: blur(8px);
  z-index: 1;
  animation: shadowPulse 6s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .8; }
  50%      { transform: translateX(-50%) scale(.85); opacity: .55; }
}

/* Pin labels */
.hero__pin {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .02em;
  box-shadow: 0 8px 24px rgba(74, 14, 37, .25);
  z-index: 4;
}
.hero__pin::before {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  background: inherit;
  transform: rotate(45deg);
}
.hero__pin-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--pink-hot);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  font-weight: 700;
}
.hero__pin--top { top: 12%; right: -6%; }
.hero__pin--top::before { left: -4px; top: 50%; transform: translateY(-50%) rotate(45deg); }
.hero__pin--mid { top: 38%; left: -8%; }
.hero__pin--mid::before { right: -4px; top: 50%; transform: translateY(-50%) rotate(45deg); }
.hero__pin--bot { top: 58%; right: -2%; }
.hero__pin--bot::before { left: -4px; top: 50%; transform: translateY(-50%) rotate(45deg); }

/* Hero bottom row */
.hero__bottom {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding-bottom: 56px;
}
.hero__sub {
  max-width: 460px;
  font-size: 16.5px;
  line-height: 1.55;
  opacity: .92;
}

/* Hero CTA — magnetic, doubled text */
.hero__cta {
  position: relative;
  display: inline-flex; align-items: center;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 24px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.005em;
  font-size: 16px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease);
}
.hero__cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--cream);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
  z-index: -1;
}
.hero__cta:hover { color: var(--ink); }
.hero__cta:hover::before { transform: translateY(0); }
.hero__cta-text {
  position: relative;
  display: inline-grid;
  overflow: hidden;
  height: 22px;
  margin-right: 18px;
}
.hero__cta-text > span {
  display: block;
  transition: transform .5s var(--ease-out);
}
.hero__cta:hover .hero__cta-text > span {
  transform: translateY(-100%);
}
.hero__cta-icon {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  transition: transform .4s var(--ease), background .3s;
}
.hero__cta:hover .hero__cta-icon { transform: rotate(-45deg); background: var(--pink-hot); color: var(--cream); }

/* Marquee */
.marquee {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255, 246, 233, .25);
  border-bottom: 1px solid rgba(255, 246, 233, .25);
  margin-top: 0;
  overflow: hidden;
  background: var(--pink-deep);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 28px;
  padding: 18px 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
  animation: marquee 28s linear infinite;
}
.marquee__dot { font-size: 14px; opacity: .6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Universal helpers
============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink-deep);
}
.eyebrow--light { color: var(--pink-soft); }
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 86px);
  line-height: .98;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.display--light { color: var(--cream); }
.display__em {
  font-style: italic;
  color: var(--pink-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.display--light .display__em { color: var(--pink-soft); }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--pink-hot); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 16px;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow:hover { gap: 16px; color: var(--pink-hot); }

/* Reveals */
.reveal, .reveal-up, .reveal-word {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-up { transform: translateY(40px); }
.reveal-word { opacity: 1; transform: none; } /* its children animate */
.reveal.is-in, .reveal-up.is-in { opacity: 1; transform: none; }

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--cream);
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink-blush), transparent 70%);
}
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px rgba(74, 14, 37, .15);
}
.about__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.about__media:hover img { transform: scale(1.04); }
.about__media-tag {
  position: absolute;
  bottom: 22px; left: 22px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 14px 30px rgba(74, 14, 37, .2);
}
.about__media-tag-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--pink-deep);
  line-height: 1;
}
.about__media-tag-text {
  font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.3;
}

.about__copy { display: flex; flex-direction: column; gap: 28px; }
.about__text { display: flex; flex-direction: column; gap: 16px; font-size: 17px; line-height: 1.65; color: var(--ink-soft); max-width: 520px; }
.about__text strong { color: var(--ink); }
.about__text em { font-family: var(--font-display); font-style: italic; color: var(--pink-deep); font-size: 1.05em; }

.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 520px; padding-top: 16px; border-top: 1px solid rgba(26, 10, 18, .12); }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.stat__lbl { font-size: 12px; font-weight: 500; color: var(--ink-soft); letter-spacing: .04em; text-transform: uppercase; }

/* ============================================================
   FLAVORS
============================================================ */
.flavors {
  background: var(--ink);
  color: var(--cream);
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.flavors::before {
  content: '';
  position: absolute;
  top: 30%; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 46, 126, .15), transparent 60%);
  filter: blur(40px);
}
.flavors__head {
  max-width: var(--maxw); margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 80px;
  row-gap: 24px;
  align-items: end;
}
.flavors__head .eyebrow { grid-column: 1; grid-row: 1; align-self: start; }
.flavors__head .display { grid-column: 1; grid-row: 2; max-width: 14ch; }
.flavors__lead { grid-column: 2; grid-row: 2; max-width: 340px; font-size: 16px; line-height: 1.55; opacity: .75; align-self: end; padding-bottom: 8px; }

@media (max-width: 880px) {
  .flavors__head { grid-template-columns: 1fr; gap: 16px; }
  .flavors__head .eyebrow,
  .flavors__head .display,
  .flavors__head .flavors__lead { grid-column: 1; grid-row: auto; }
}

.flavors__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.flavor {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #2a1019;
  display: flex; flex-direction: column;
  min-height: 540px;
  transition: transform .5s var(--ease);
}
.flavor:hover { transform: translateY(-6px); }
.flavor__media {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.flavor__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.5));
}
.flavor__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.flavor:hover .flavor__media img { transform: scale(1.08); }

.flavor__body {
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.flavor__top {
  display: flex; justify-content: space-between; align-items: center;
}
.flavor__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  opacity: .7;
}
.flavor__tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 246, 233, .12);
}
.flavor__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.flavor__desc { font-size: 13.5px; line-height: 1.55; opacity: .72; }
.flavor__foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 246, 233, .2);
  font-size: 12.5px;
  opacity: .85;
}
.flavor__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  opacity: 1;
}

/* Color accents per flavor */
.flavor--strawberry { background: linear-gradient(180deg, #2a1019 0%, #4a1530 100%); }
.flavor--strawberry .flavor__num,
.flavor--strawberry .flavor__price { color: var(--strawberry); }

.flavor--pistachio { background: linear-gradient(180deg, #1f2818 0%, #2e3a23 100%); }
.flavor--pistachio .flavor__num,
.flavor--pistachio .flavor__price { color: var(--pistachio); }

.flavor--passion { background: linear-gradient(180deg, #2a1d0a 0%, #3a2811 100%); }
.flavor--passion .flavor__num,
.flavor--passion .flavor__price { color: var(--passion); }

.flavor--chocolate { background: linear-gradient(180deg, #1c0e08 0%, #321a0e 100%); }
.flavor--chocolate .flavor__num,
.flavor--chocolate .flavor__price { color: #C89678; }

.flavors__cta { max-width: var(--maxw); margin: 60px auto 0; }
.flavors__cta .link-arrow { color: var(--cream); }
.flavors__cta .link-arrow:hover { color: var(--pink-soft); }

@media (max-width: 1080px) {
  .flavors__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .flavors__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DIFFERENTIATORS
============================================================ */
.diffs {
  background: var(--pink-blush);
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.diffs__head {
  max-width: var(--maxw);
  margin: 0 auto 70px;
  display: flex; flex-direction: column; gap: 18px;
  text-align: center;
  align-items: center;
}
.diffs__head .display { max-width: 18ch; }
.diffs__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff {
  background: var(--cream);
  border-radius: 22px;
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform .4s var(--ease);
  border: 1px solid rgba(26, 10, 18, .06);
}
.diff:hover { transform: translateY(-6px); }
.diff__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--pink-hot);
  color: var(--cream);
  display: grid; place-items: center;
}
.diff__icon svg { width: 36px; height: 36px; }
.diff__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--pink-deep);
}
.diff__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.diff__text { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

@media (max-width: 880px) { .diffs__grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi {
  background: var(--cream);
  padding: 140px 32px;
  position: relative;
}
.testi__head {
  max-width: var(--maxw);
  margin: 0 auto 70px;
  display: flex; flex-direction: column; gap: 14px;
}
.testi__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi__card {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  display: flex; flex-direction: column; gap: 22px;
  transition: transform .4s var(--ease);
}
.testi__card:hover { transform: translateY(-6px) rotate(-.6deg); }
.testi__card--1 { background: var(--pink-soft); color: var(--burgundy); }
.testi__card--2 { background: var(--ink); color: var(--cream); transform: translateY(28px); }
.testi__card--2:hover { transform: translateY(22px) rotate(.6deg); }
.testi__card--3 { background: var(--cream-deep); color: var(--ink); }

.testi__stars { font-size: 18px; letter-spacing: 4px; color: var(--pink-deep); }
.testi__card--2 .testi__stars { color: var(--pink-soft); }
.testi__card blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  font-style: italic;
}
.testi__card figcaption {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testi__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  letter-spacing: .02em;
}
.testi__avatar--1 { background: var(--pink-deep); color: var(--cream); }
.testi__avatar--2 { background: var(--pink-soft); color: var(--burgundy); }
.testi__avatar--3 { background: var(--olive); color: var(--cream); }
.testi__card figcaption strong { display: block; font-size: 14px; }
.testi__card figcaption span { display: block; font-size: 12px; opacity: .7; }

@media (max-width: 1024px) {
  .testi__grid { grid-template-columns: 1fr; }
  .testi__card--2 { transform: none; }
  .testi__card--2:hover { transform: translateY(-6px); }
}

/* ============================================================
   VISIT
============================================================ */
.visit {
  background: var(--burgundy);
  color: var(--cream);
  padding: 140px 32px;
  position: relative;
  overflow: hidden;
}
.visit::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 46, 126, .25), transparent 70%);
  filter: blur(40px);
}
.visit__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.visit__copy { display: flex; flex-direction: column; gap: 26px; }
.visit__copy .display { color: var(--cream); }
.visit__copy .display__em { color: var(--pink-soft); }
.visit__copy .eyebrow { color: var(--pink-soft); }
.visit__text { font-size: 16.5px; line-height: 1.6; opacity: .85; max-width: 520px; }
.visit__info { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; padding: 24px 0; border-top: 1px solid rgba(255, 246, 233, .15); border-bottom: 1px solid rgba(255, 246, 233, .15); }
.visit__label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--pink-soft); margin-bottom: 8px; }
.visit__block p { font-size: 15px; line-height: 1.55; }
.visit__copy .btn--dark { align-self: flex-start; background: var(--cream); color: var(--ink); }
.visit__copy .btn--dark:hover { background: var(--pink-hot); color: var(--cream); }

.visit__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.visit__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.visit__media:hover img { transform: scale(1.04); }
.visit__media-card {
  position: absolute;
  bottom: 22px; right: 22px;
  background: var(--cream);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.visit__media-card-eye {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--pink-deep);
  line-height: 1;
}
.visit__media-card-name {
  font-size: 11px; font-weight: 500; opacity: .65; letter-spacing: .04em; text-transform: uppercase;
}

@media (max-width: 920px) {
  .visit__inner { grid-template-columns: 1fr; gap: 50px; }
  .visit__info { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   FOOTER
============================================================ */
.foot {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.foot__band { background: var(--pink-hot); overflow: hidden; }
.foot__band-track {
  display: inline-flex; align-items: center; gap: 36px;
  padding: 22px 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--cream);
  animation: marquee 30s linear infinite;
}
.foot__band-track em { font-style: normal; opacity: .7; font-size: 18px; }

.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 32px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 60px;
}
.foot__brand { display: flex; flex-direction: column; gap: 18px; }
.foot__logo {
  width: 140px; height: auto;
  filter: brightness(1.05);
  background: var(--cream);
  border-radius: 12px;
  padding: 8px;
}
.foot__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.25;
  max-width: 280px;
  letter-spacing: -0.01em;
}
.foot__col { display: flex; flex-direction: column; gap: 10px; }
.foot__head {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 8px;
}
.foot__col a {
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
  width: fit-content;
  transition: color .3s, gap .3s var(--ease);
}
.foot__col a em { font-style: normal; opacity: .6; font-size: 12px; }
.foot__col a:hover { color: var(--pink-soft); gap: 10px; }

.foot__news {
  display: flex; gap: 8px;
  margin-top: 6px;
  background: rgba(255, 246, 233, .08);
  border: 1px solid rgba(255, 246, 233, .15);
  padding: 6px;
  border-radius: 999px;
}
.foot__news input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  padding: 8px 14px;
  font-size: 14px;
  font-family: inherit;
}
.foot__news input::placeholder { color: rgba(255, 246, 233, .55); }
.foot__news button {
  background: var(--pink-hot);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background .25s;
}
.foot__news button:hover { background: var(--cream); color: var(--ink); }
.foot__col--news small { font-size: 12px; opacity: .6; margin-top: 4px; }

.foot__legal {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 32px 36px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: .6;
  border-top: 1px solid rgba(255, 246, 233, .12);
  flex-wrap: wrap; gap: 12px;
}
.foot__legal em { font-style: normal; color: var(--pink-hot); }

@media (max-width: 1024px) {
  .foot__inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 80px 32px 40px; }
}
@media (max-width: 560px) {
  .foot__inner { grid-template-columns: 1fr; }
  .foot__legal { flex-direction: column; }
}

/* ============================================================
   RESPONSIVE — HERO
============================================================ */
@media (max-width: 1100px) {
  .hero { padding: 110px 24px 0; }
  .hero__stage { grid-template-columns: 1fr minmax(280px, 420px) 1fr; gap: 12px; }
  .hero__pin--top { right: -2%; }
  .hero__pin--mid { left: -2%; }
  .hero__pin--bot { right: 0; }
}
@media (max-width: 880px) {
  .hero__stage {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero__side { align-items: center; text-align: center; padding: 0; }
  .hero__side--left { order: 1; }
  .hero__cone-wrap { order: 2; aspect-ratio: 3/4; max-width: 420px; margin: 0 auto; }
  .hero__side--right { order: 3; margin-top: 8px; }
  .hero__word { font-size: clamp(64px, 18vw, 130px); }
  .hero__bottom { grid-template-columns: 1fr; gap: 24px; padding-bottom: 40px; text-align: center; }
  .hero__sub { margin: 0 auto; }
  .hero__cta { margin: 0 auto; }
  .hero__pin { display: none; }
}

@media (max-width: 760px) {
  .about, .flavors, .diffs, .testi, .visit { padding: 90px 22px; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .marquee__track { font-size: 22px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-up, .hero__word span { opacity: 1 !important; transform: none !important; }
}
