/* ==========================================================
   VOLTA — aperitivo analcolico
   Motion-heavy. Five colors. One bottle.
   ========================================================== */

:root {
  --cream: #f4ead7;
  --cream-dark: #eaddbd;
  --ink: #1a1512;
  --ink-soft: rgba(26, 21, 18, 0.64);
  --line: rgba(26, 21, 18, 0.16);
  --line-strong: rgba(26, 21, 18, 0.32);

  --arancia: #e5541a;
  --arancia-deep: #b23c0f;
  --rosa: #d4375a;
  --rosa-deep: #9c1f3c;
  --verde: #2a5139;
  --verde-deep: #173223;
  --saffron: #f2c94c;

  --bg: var(--cream);
  --fg: var(--ink);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Archivo', system-ui, sans-serif;
  --font-narrow: 'Archivo Narrow', 'Archivo', sans-serif;

  --ease-snap: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-heavy: cubic-bezier(0.76, 0, 0.24, 1);
}

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

html { -webkit-font-smoothing: antialiased; text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  transition: background-color 0.6s var(--ease-heavy), color 0.6s var(--ease-heavy);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

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

h1, h2, h3, h4 { font-weight: 400; letter-spacing: -0.015em; }

/* Typography -------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.mono-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Layout primitives ------------------------------------------ */
.wrap {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

/* Split helper ------------------------------------------------ */
.word {
  display: inline-block;
  white-space: nowrap;
  vertical-align: baseline;
  line-height: inherit;
}
.char {
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  line-height: inherit;
  /* Vertical padding gives italic serif ascenders/descenders room inside the
     overflow-hidden mask (used for the stagger reveal). Negative margin keeps
     line spacing identical. Horizontal padding handles italic side overshoot. */
  padding: 0.18em 0.04em 0.14em;
  margin: -0.18em -0.04em -0.14em;
}
.char > .char-inner {
  display: inline-block;
  will-change: transform;
}
.char.space { width: 0.22em; padding: 0; margin: 0; }

/* -------- NAV -------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.5s var(--ease-snap), color 0.6s var(--ease-heavy);
  pointer-events: none;
}

.nav > * { pointer-events: auto; }

.nav.is-hidden { transform: translateY(-120%); }

/* Nav color theme: flips to cream when over dark/saturated sections */
.nav, .nav a { transition: color 0.35s var(--ease-heavy); }
.nav.on-dark { color: var(--cream); }
.nav.on-dark a { color: var(--cream); }
.nav.on-dark .buy {
  background: var(--cream);
  color: var(--ink);
}
.nav.on-dark .buy:hover {
  background: var(--arancia);
  color: var(--cream);
}

.nav .brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav ul a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
}

.nav ul a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-snap);
}
.nav ul a:hover::after,
.nav ul a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav ul .buy {
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 999px;
  transition: background 0.3s var(--ease-snap), color 0.3s var(--ease-snap);
}
.nav ul .buy::after { display: none; }
.nav ul .buy:hover {
  background: var(--arancia);
  color: var(--cream);
}

@media (max-width: 760px) {
  .nav { padding: 16px 20px; }
  .nav ul { gap: 14px; }
  .nav ul li:not(:last-child):not(:first-child) { display: none; }
}

/* -------- HERO -------- */
.hero {
  min-height: 100svh;
  padding: 120px 20px 40px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  grid-template-rows: 1fr auto;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.hero-side {
  display: flex;
  align-items: flex-end;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-bottom: 20px;
  font-weight: 600;
  opacity: 0;
}

.hero-side.right {
  grid-column: 3;
  grid-row: 1 / 3;
  transform: rotate(0);
  writing-mode: vertical-rl;
  justify-self: end;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 0;
}

.hero-side.left {
  grid-column: 1;
  grid-row: 1 / 3;
}

.hero-stage {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-title {
  position: absolute;
  top: 6vh;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.hero-title .name {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(88px, 17vw, 300px);
  line-height: 0.82;
  letter-spacing: -0.03em;
  display: block;
  color: var(--ink);
  position: relative;
  z-index: 1;
  white-space: nowrap;
  padding: 0 0.08em;
}

.hero-title .sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  margin-top: 12px;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 3;
  white-space: nowrap;
}

.hero-title .sub em {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.55em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 10px;
  margin: 0 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
  vertical-align: middle;
  padding-bottom: 0.1em;
}

.bottle-wrap {
  position: relative;
  width: clamp(180px, 28vw, 360px);
  height: auto;
  aspect-ratio: 10 / 28;
  z-index: 2;
  margin-top: 12vh;
  opacity: 0;
  transform: translateY(60px) scale(0.9) rotate(-8deg);
}

.bottle-wrap::after {
  /* ground shadow */
  content: '';
  position: absolute;
  bottom: -18px;
  left: 10%;
  right: 10%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(26,21,18,0.25), transparent 70%);
  z-index: -1;
  filter: blur(6px);
}

.bottle {
  --liquid: var(--arancia);
  --liquid-deep: var(--arancia-deep);
  width: 100%;
  height: 100%;
  display: block;
  transition: filter 0.6s var(--ease-heavy);
}

.bottle .liquid-fill { fill: var(--liquid); transition: fill 0.5s var(--ease-heavy); }
.bottle .liquid-stroke { stroke: var(--liquid-deep); transition: stroke 0.5s var(--ease-heavy); }
.bottle .cap-fill { fill: var(--ink); }
.bottle .label-fill { fill: var(--cream); }
.bottle .label-ink { fill: var(--ink); }
.bottle .highlight { fill: rgba(255,255,255,0.14); }

.hero-bottom {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 40px;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 0;
}

.hero-bottom .left { max-width: 22ch; font-style: normal; font-size: 12px; line-height: 1.5; }

.hero-bottom .mid {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
}

.hero-bottom .mid small {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-bottom .right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-bottom .right::after {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  animation: heroCue 2.2s var(--ease-snap) infinite;
}

@keyframes heroCue {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 24px 1fr 24px;
    padding: 100px 16px 32px;
  }
  .hero-title .name {
    font-size: 22vw;
    white-space: nowrap;
  }
  .hero-title .sub { font-size: 14px; }
  .bottle-wrap { width: 52vw; margin-top: 14vh; }
  .hero-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-bottom .mid { font-size: 32px; }
}

/* -------- MARQUEE RAILS -------- */
.marquee-band {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
}

.marquee {
  overflow-x: clip;
  overflow-y: visible;
  padding: 24px 0 32px;
  position: relative;
}
.marquee + .marquee { border-top: 1px solid var(--line); }

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  padding-right: 60px;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 60px;
  letter-spacing: -0.02em;
}

.marquee-track .dot {
  width: 14px;
  height: 14px;
  background: var(--arancia);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.marquee-track .dot.rosa { background: var(--rosa); }
.marquee-track .dot.verde { background: var(--verde); }

.marquee.alt {
  background: var(--ink);
  color: var(--cream);
  border-top: none;
}

.marquee.alt .marquee-track span {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 40px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee.alt .marquee-track span::after {
  content: '·';
  font-size: 1em;
  opacity: 0.5;
}

/* -------- FLAVOR REVEAL (pinned) -------- */
.flavor-reveal {
  height: 360vh;
  position: relative;
  background: var(--cream);
}

.flavor-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 60px;
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  transition: background-color 0.45s var(--ease-heavy), color 0.45s var(--ease-heavy);
}

.flavor-stage[data-state="arancia"] { background: var(--arancia); color: var(--cream); }
.flavor-stage[data-state="rosa"]    { background: var(--rosa); color: var(--cream); }
.flavor-stage[data-state="verde"]   { background: var(--verde); color: var(--cream); }

.flavor-stage .copy {
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 2;
  position: relative;
}

.flavor-stage .kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.8;
}

.flavor-stage h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  min-height: 1.8em;
  hyphens: none;
}

.flavor-stage h2 .flavor-word {
  display: inline-block;
}

.flavor-stage .note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.35;
  max-width: 44ch;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-heavy), transform 0.5s var(--ease-heavy);
}

.flavor-stage .note.show { opacity: 1; transform: translateY(0); }

.flavor-stage .tags {
  display: flex;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.flavor-stage .tags span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.flavor-stage .bottle-col {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}

.flavor-stage .bottle-wrap {
  width: clamp(220px, 30vw, 400px);
  opacity: 1;
  transform: none;
  margin-top: 0;
  filter: drop-shadow(0 28px 48px rgba(26, 21, 18, 0.35)) drop-shadow(0 0 1.5px rgba(26, 21, 18, 0.55));
}

.flavor-stage .bottle .liquid-fill {
  stroke: var(--liquid-deep);
  stroke-width: 1.5;
  paint-order: stroke fill;
}

.flavor-stage .index {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
}

.flavor-stage .index b {
  font-weight: 700;
}

.flavor-stage .index span {
  opacity: 0.4;
  transition: opacity 0.4s var(--ease-snap);
}

.flavor-stage .index span.is-active { opacity: 1; }

@media (max-width: 860px) {
  .flavor-reveal { height: 300vh; }
  .flavor-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    padding: 100px 20px 20px;
    gap: 20px;
  }
  .flavor-stage .bottle-wrap { width: 40vw; }
  .flavor-stage .copy { padding: 0; }
  .flavor-stage h2 { font-size: 64px; }
  .flavor-stage .index { bottom: 20px; left: 20px; font-size: 10px; }
}

/* -------- HORIZONTAL BOTTLE GALLERY -------- */
.bottle-gallery {
  height: 100vh;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  border-top: 1px solid var(--ink);
}

.bottle-gallery-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.bottle-slide {
  flex: 0 0 100vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 80px;
  align-items: center;
  position: relative;
  border-right: 1px solid var(--line);
}

.bottle-slide:last-child { border-right: none; }

.bottle-slide .bottle-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bottle-slide .bottle-wrap {
  width: clamp(220px, 28vw, 360px);
  aspect-ratio: 10 / 28;
  opacity: 1;
  transform: none;
  margin: 0;
}

.bottle-slide .bottle-wrap::after { display: none; }

.bottle-slide .meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bottle-slide .meta .n {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.bottle-slide .meta .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.bottle-slide .meta h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(60px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.bottle-slide .meta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.4;
  max-width: 44ch;
}

.bottle-slide .meta dl {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 6px;
  column-gap: 30px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  align-items: baseline;
}

.bottle-slide .meta dt { opacity: 0.5; }
.bottle-slide .meta dd { font-weight: 700; }

.bottle-slide[data-flavor="arancia"] .dot { background: var(--arancia); }
.bottle-slide[data-flavor="rosa"]    .dot { background: var(--rosa); }
.bottle-slide[data-flavor="verde"]   .dot { background: var(--verde); }

@media (max-width: 900px) {
  .bottle-gallery { height: auto; overflow: visible; }
  .bottle-gallery-track { flex-direction: column; }
  .bottle-slide {
    flex: 0 0 auto;
    grid-template-columns: 1fr;
    padding: 60px 20px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: auto;
  }
  .bottle-slide .bottle-wrap { width: 50vw; }
  .bottle-slide .meta h3 { font-size: 58px; }
}

/* -------- RITUALS -------- */
.rituals {
  padding: 140px 40px 120px;
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid var(--ink);
}

.rituals .head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}

.rituals .head .kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.rituals .head h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.ritual-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ritual-card {
  background: var(--cream-dark);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.9s var(--ease-heavy);
}

.ritual-card.is-in { clip-path: inset(0 0 0 0); }

.ritual-card .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.ritual-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1;
}

.ritual-card ul {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2;
  margin-top: auto;
}

.ritual-card ul li {
  border-top: 1px solid var(--line);
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
}

.ritual-card ul li:last-child { border-bottom: 1px solid var(--line); }

.ritual-card .method {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 16px;
  opacity: 0.8;
}

.ritual-card[data-flavor="arancia"] { background: var(--arancia); color: var(--cream); }
.ritual-card[data-flavor="rosa"] { background: var(--rosa); color: var(--cream); }
.ritual-card[data-flavor="verde"] { background: var(--verde); color: var(--cream); }
.ritual-card[data-flavor] ul li { border-color: rgba(244, 234, 215, 0.3); }
.ritual-card[data-flavor] ul li:last-child { border-bottom-color: rgba(244, 234, 215, 0.3); }

@media (max-width: 860px) {
  .rituals { padding: 80px 20px; }
  .rituals .head { grid-template-columns: 1fr; gap: 20px; }
  .ritual-cards { grid-template-columns: 1fr; }
  .ritual-card { aspect-ratio: auto; min-height: 400px; }
}

/* -------- STORY BAND -------- */
.story {
  padding: 160px 40px 140px;
  background: var(--ink);
  color: var(--cream);
}

.story .layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.story .image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-soft);
}

.story .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.1) saturate(1.1);
}

.story .text .kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
}

.story .text h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.98;
  margin-top: 28px;
  letter-spacing: -0.03em;
}

.story .text .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.35;
  margin-top: 40px;
  max-width: 32ch;
  border-left: 2px solid var(--arancia);
  padding-left: 20px;
}

.story .text .sign {
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
}

@media (max-width: 860px) {
  .story { padding: 80px 20px; }
  .story .layout { grid-template-columns: 1fr; gap: 32px; }
}

/* -------- STOCKISTS PREVIEW -------- */
.stockists-band {
  background: var(--cream);
  color: var(--ink);
  padding: 140px 40px;
  border-top: 1px solid var(--line);
}

.stockists-band .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.stockists-band h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.stockists-band .kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.stockist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.stockist-cell {
  background: var(--cream);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-snap), color 0.4s var(--ease-snap);
}

.stockist-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-snap);
}

.stockist-cell > * { position: relative; z-index: 1; transition: color 0.4s var(--ease-snap); }

.stockist-cell:hover::before { transform: translateY(0); }
.stockist-cell:hover { color: var(--cream); }

.stockist-cell .city {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stockist-cell .count {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 16px;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .stockist-grid { grid-template-columns: repeat(2, 1fr); }
  .stockists-band { padding: 80px 20px; }
}

/* -------- BIG CTA / FOOTER -------- */
.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 40px 0;
  position: relative;
  overflow: hidden;
}

.foot .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0 80px;
}

.foot h5 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: 14px;
}

.foot ul li, .foot p, .foot a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.foot a:hover { text-decoration: underline; text-underline-offset: 4px; }

.foot-big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(180px, 40vw, 720px);
  line-height: 0.78;
  letter-spacing: -0.06em;
  text-align: center;
  color: var(--arancia);
  padding: 0 0 0;
  overflow: hidden;
  /* Asymmetric bleed shifts the centered word slightly left so the italic
     A isn't stuck against the right edge. */
  margin: 0 -2% -20px -8%;
}

.foot-base {
  border-top: 1px solid rgba(244, 234, 215, 0.2);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  opacity: 0.6;
}

@media (max-width: 860px) {
  .foot { padding: 40px 20px 0; }
  .foot .grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 32px 0 60px; }
  .foot-base { flex-direction: column; gap: 8px; padding: 20px 0; }
  .foot-big { font-size: 42vw; margin: 0 -2% -10px -6%; }
}

/* =====================================================
   flavors.html — stacked full-bleed flavor sections
   ===================================================== */
.page-head {
  padding: 160px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: end;
  background: var(--cream);
}

.page-head .kicker { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.page-head h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(60px, 10vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.page-head p { font-size: 18px; line-height: 1.5; max-width: 40ch; margin-top: 20px; }

@media (max-width: 860px) {
  .page-head { padding: 120px 20px 40px; grid-template-columns: 1fr; gap: 16px; }
}

.flavor-full {
  min-height: 100svh;
  padding: 100px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.flavor-full[data-flavor="arancia"] { background: var(--arancia); color: var(--cream); }
.flavor-full[data-flavor="rosa"] { background: var(--rosa); color: var(--cream); }
.flavor-full[data-flavor="verde"] { background: var(--verde); color: var(--cream); }

.flavor-full .bottle-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flavor-full .bottle-wrap {
  width: clamp(220px, 30vw, 420px);
  opacity: 1;
  transform: none;
  margin: 0;
}

.flavor-full .meta .kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 16px;
}

.flavor-full .meta h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(60px, 8vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.flavor-full .meta .note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.4;
  max-width: 44ch;
  margin-bottom: 40px;
}

.flavor-full .meta .specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  border-top: 1px solid currentColor;
  padding-top: 24px;
}

.flavor-full .meta .specs h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 8px;
}

.flavor-full .meta .specs p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
}

.flavor-full .n {
  position: absolute;
  top: 40px;
  right: 60px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(60px, 8vw, 120px);
  line-height: 1;
  opacity: 0.3;
}

@media (max-width: 860px) {
  .flavor-full { grid-template-columns: 1fr; padding: 80px 20px 60px; min-height: auto; }
  .flavor-full .bottle-wrap { width: 55vw; }
  .flavor-full .n { right: 20px; top: 20px; }
}

/* =====================================================
   story.html
   ===================================================== */
.story-hero {
  padding: 160px 40px 100px;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--cream);
}

.story-hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(60px, 9vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.story-hero .intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.5;
  max-width: 60ch;
  margin-top: 40px;
}

@media (max-width: 860px) { .story-hero { padding: 120px 20px 60px; } }

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.founder {
  padding: 60px 40px;
  border-right: 1px solid var(--line);
}

.founder:last-child { border-right: none; }

.founder .portrait {
  aspect-ratio: 4 / 5;
  background: var(--cream-dark);
  margin-bottom: 32px;
  overflow: hidden;
}

.founder .portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.08) saturate(1.05);
}

.founder h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.founder .role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: 24px;
}

.founder p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 50ch;
  margin-bottom: 14px;
}

@media (max-width: 860px) {
  .founders { grid-template-columns: 1fr; }
  .founder { padding: 40px 20px; border-right: none; border-bottom: 1px solid var(--line); }
}

.how {
  padding: 120px 40px;
  background: var(--ink);
  color: var(--cream);
}

.how .head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}

.how .head h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.how .kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(244, 234, 215, 0.2);
  padding-top: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  color: var(--arancia);
}

.step h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.step p {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.8;
}

@media (max-width: 860px) {
  .how { padding: 80px 20px; }
  .how .head { grid-template-columns: 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   stockists.html
   ===================================================== */
.stockists-full {
  padding: 60px 40px 100px;
  background: var(--cream);
}

.stockists-list {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  border-top: 1px solid var(--ink);
  padding-top: 60px;
}

.stockists-list .city-head {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  position: sticky;
  top: 120px;
}

.stockists-list .venues {
  border-top: 1px solid var(--line);
}

.stockists-list .venue {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 80px;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.stockists-list .venue .name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.2;
}

.stockists-list .venue .addr,
.stockists-list .venue .type {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.7;
}

.stockists-list .venue .link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: right;
}

.stockists-list .city-block + .city-block { margin-top: 60px; }

@media (max-width: 860px) {
  .stockists-full { padding: 40px 20px 80px; }
  .stockists-list { grid-template-columns: 1fr; gap: 20px; padding-top: 32px; }
  .stockists-list .city-head { position: static; }
  .stockists-list .venue { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .stockists-list .venue .link { text-align: left; }
}

/* =====================================================
   general reveals
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-snap), transform 0.8s var(--ease-snap);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .marquee-track { transform: none !important; }
}

/* -------- Mitchcreates credit -------- */
.built-by {
  text-align: center;
  padding: 18px 20px;
  font-size: 12px;
  letter-spacing: .04em;
  opacity: .55;
  font-weight: 500;
}
.built-by a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity .2s ease;
}
.built-by a:hover { opacity: 1; }
.built-by .heart {
  color: #e25454;
  font-size: 13px;
  display: inline-block;
  transform: translateY(1px);
  margin: 0 2px;
}
