/* ============== VIEW TRANSITIONS (Chrome 111+) ============== */
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.4s;
  animation-timing-function: cubic-bezier(.2,.9,.2,1);
}
::view-transition-old(root) {
  animation-name: vtFadeOut;
}
::view-transition-new(root) {
  animation-name: vtFadeIn;
}
@keyframes vtFadeOut {
  to { opacity: 0; transform: scale(0.98); }
}
@keyframes vtFadeIn {
  from { opacity: 0; transform: scale(1.02); }
}

/* ============== SCROLL-DRIVEN ANIMATIONS (progressive enhancement) ============== */
@supports (animation-timeline: view()) {
  .drink,
  .review,
  .fstat,
  .manifesto__card,
  .loc {
    animation: cardSettle linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }

  @keyframes cardSettle {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Reading progress bar through hero/menu */
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--acid), var(--pink), var(--purple));
    transform-origin: 0 50%;
    animation: readProgress linear;
    animation-timeline: scroll(root);
    z-index: 9996;
    pointer-events: none;
    box-shadow: 0 0 12px rgba(255, 230, 0, 0.4);
  }

  @keyframes readProgress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
}

/* ============== RESET & TOKENS ============== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Core */
  --bg: #0a0a0a;
  --bg-2: #131313;
  --ink: #f6f6f4;
  --ink-dim: rgba(246, 246, 244, 0.6);
  --ink-faint: rgba(246, 246, 244, 0.3);

  /* Neon palette */
  --acid: #FFE600;       /* acid yellow neon */
  --pink: #FF1FA8;       /* magenta neon */
  --purple: #7B2CFF;     /* royal purple */
  --cyan: #00F5FF;       /* cyan accent */
  --strawb: #FF4D87;     /* strawberry */
  --lavender: #B5A1FF;   /* soft lavender */
  --matcha: #A8E063;     /* matcha green */
  --tapioca: #1a0d05;    /* tapioca dark */

  /* Glow shadows */
  --glow-pink: 0 0 40px rgba(255, 31, 168, 0.5), 0 0 80px rgba(255, 31, 168, 0.2);
  --glow-acid: 0 0 40px rgba(255, 230, 0, 0.45), 0 0 80px rgba(255, 230, 0, 0.18);
  --glow-purple: 0 0 50px rgba(123, 44, 255, 0.45);

  /* Type */
  --f-display: 'Sigmar', 'Bagel Fat One', system-ui, sans-serif;
  --f-fat: 'Bagel Fat One', 'Sigmar', system-ui, sans-serif;
  --f-bubble: 'Rubik Bubbles', 'Bagel Fat One', system-ui, sans-serif;
  --f-wide: 'Unbounded', 'Onest', system-ui, sans-serif;
  --f-body: 'Onest', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(123, 44, 255, 0.22), transparent 60%),
    radial-gradient(1000px 500px at 95% 10%, rgba(255, 31, 168, 0.18), transparent 60%),
    radial-gradient(800px 600px at 50% 60%, rgba(255, 230, 0, 0.06), transparent 70%),
    var(--bg);
  min-height: 100vh;
  cursor: none;
}

/* Cabinet & barista pages — keep native cursor (no custom cursor element on those) */
body.page-cabinet,
body.page-barista,
body.page-cabinet *,
body.page-barista * {
  cursor: auto;
}

body.page-cabinet a,
body.page-cabinet button,
body.page-cabinet [role="button"],
body.page-barista a,
body.page-barista button,
body.page-barista [role="button"] {
  cursor: pointer;
}

body.page-cabinet input,
body.page-cabinet textarea,
body.page-barista input,
body.page-barista textarea {
  cursor: text;
}

body.page-cabinet input[type="checkbox"],
body.page-cabinet input[type="radio"],
body.page-cabinet select,
body.page-barista input[type="checkbox"],
body.page-barista input[type="radio"],
body.page-barista select {
  cursor: pointer;
}

body.page-cabinet :disabled,
body.page-barista :disabled {
  cursor: not-allowed;
}

::selection {
  background: var(--acid);
  color: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: none;
}

/* ============== NOISE OVERLAY ============== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============== LOADER ============== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--acid), var(--pink) 60%, var(--purple));
  box-shadow: var(--glow-pink);
  animation: pop 1.4s ease-in-out infinite;
}

@keyframes pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.loader__text {
  font-family: var(--f-fat);
  font-size: 22px;
  color: var(--acid);
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(255, 230, 0, 0.7);
}

/* ============== CURSOR ============== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--acid) 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s, opacity 0.2s;
  box-shadow:
    0 0 0 1.5px rgba(10, 10, 10, 0.6),     /* dark outline — visible on light bg */
    0 0 0 2.5px rgba(255, 255, 255, 0.35), /* light outline — visible on dark bg */
    0 0 14px rgba(255, 230, 0, 0.6),
    0 0 28px rgba(255, 31, 168, 0.3);
  opacity: 1;
  left: 0;
  top: 0;
}

.cursor.is-out {
  opacity: 0;
}

.cursor.is-big {
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at 30% 30%, var(--acid), var(--pink) 60%, var(--purple));
  box-shadow:
    0 0 0 1.5px rgba(10, 10, 10, 0.5),
    0 0 0 2.5px rgba(255, 255, 255, 0.35),
    0 0 24px rgba(255, 31, 168, 0.55),
    0 0 48px rgba(255, 230, 0, 0.25);
}

.cursor-trail {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--acid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease-out, width 0.2s, height 0.2s, border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
  left: 0;
  top: 0;
  box-shadow: 0 0 10px rgba(255, 230, 0, 0.25), inset 0 0 6px rgba(255, 230, 0, 0.12);
}

.cursor-trail.is-out {
  opacity: 0;
}

/* hide native cursor on inputs/buttons too */
input, textarea, select { cursor: none; }

/* ============== BUBBLE CANVAS ============== */
.bubbles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ============== NAV ============== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 32px));
  padding: 10px 14px 10px 22px;
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-fat);
  font-size: 22px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.nav__logo-bubble {
  width: 16px;
  height: 16px;
  display: inline-block;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: var(--glow-pink);
  animation: wobble 4s ease-in-out infinite;
}

@keyframes wobble {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.15); }
}

.nav__logo-text { line-height: 1; color: var(--ink); }
.nav__logo-text i { color: var(--acid); font-style: normal; }

.nav__links {
  display: flex;
  gap: 28px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-dim);
}

.nav__links a {
  position: relative;
  transition: color 0.25s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--acid);
  transition: width 0.3s ease;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--acid);
  color: var(--bg);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  letter-spacing: -0.01em;
  box-shadow: var(--glow-acid);
  transition: transform 0.3s cubic-bezier(.2,.9,.2,1);
}

.nav__cta-arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.nav__cta:hover .nav__cta-arrow {
  transform: translateX(4px);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  z-index: 2;
  padding: 130px 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  isolation: isolate;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 230, 0, 0.08);
  border: 1px solid rgba(255, 230, 0, 0.3);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--acid);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s both;
}

.hero__chip-dot {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--acid);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0 0 36px;
  text-transform: uppercase;
}

.hero__title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__title-row--alt {
  margin-top: -10px;
}

.hero__title-word {
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 65%, rgba(246,246,244,0.3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 0.9s 0.15s both;
}

.hero__title-word::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  -webkit-text-fill-color: var(--ink);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.4;
  color: var(--pink);
}

.hero__title-word--outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--acid);
  background: none;
  text-shadow: 0 0 40px rgba(255, 230, 0, 0.3);
  animation-delay: 0.3s;
}

.hero__bubble-word {
  font-family: var(--f-bubble);
  font-size: clamp(40px, 9vw, 140px);
  color: var(--pink);
  text-shadow: var(--glow-pink);
  display: inline-block;
  animation: bob 5s ease-in-out infinite, fadeUp 0.9s 0.2s both;
  font-weight: 400;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__lead {
  max-width: 540px;
  font-family: var(--f-body);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink-dim);
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.4s both;
}

.hero__lead em {
  font-style: normal;
  color: var(--acid);
  font-weight: 600;
}

.hero__lead-strike {
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
  color: var(--ink-faint);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.9s 0.55s both;
}

/* Hero cup */
.hero__cup {
  position: absolute;
  right: -40px;
  top: 130px;
  width: clamp(260px, 32vw, 480px);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(255, 31, 168, 0.4));
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-25px) rotate(3deg); }
}

.hero__cup-shadow {
  position: absolute;
  inset: auto 10% -10px 10%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(255, 31, 168, 0.3), transparent 70%);
  filter: blur(15px);
}

.hero__cup-pearls circle {
  animation: pearlFloat 3s ease-in-out infinite;
  transform-origin: center;
}

.hero__cup-pearls circle:nth-child(2n) { animation-delay: 0.4s; }
.hero__cup-pearls circle:nth-child(3n) { animation-delay: 0.8s; }
.hero__cup-pearls circle:nth-child(4n) { animation-delay: 1.2s; }

@keyframes pearlFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.hero__cup-wave {
  animation: wave 3s ease-in-out infinite;
  transform-origin: center;
}

@keyframes wave {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Hero stickers */
.hero__sticker {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-fat);
  border-radius: 50%;
  padding: 12px;
  animation: stickerFloat 5s ease-in-out infinite;
}

.hero__sticker span {
  font-size: 22px;
  line-height: 1;
}

.hero__sticker small {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  opacity: 0.7;
}

.hero__sticker--1 {
  top: 18%;
  right: 14%;
  width: 96px;
  height: 96px;
  background: var(--acid);
  color: var(--bg);
  transform: rotate(-12deg);
  box-shadow: var(--glow-acid);
}

.hero__sticker--2 {
  top: 50%;
  right: 6%;
  width: 80px;
  height: 80px;
  background: var(--pink);
  color: var(--bg);
  transform: rotate(8deg);
  animation-delay: 0.6s;
  box-shadow: var(--glow-pink);
}

.hero__polaroid {
  position: absolute;
  top: 64%;
  right: 8%;
  width: 200px;
  z-index: 3;
  padding: 12px 12px 16px;
  background: #f6f6f4;
  transform: rotate(-7deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  animation: polaroidFloat 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(.2,.9,.2,1);
}

.hero__polaroid:hover {
  transform: rotate(0deg) scale(1.05);
}

.hero__polaroid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.hero__polaroid-caption {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 9px;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__polaroid-caption b {
  font-family: var(--f-fat);
  font-size: 10px;
  font-weight: 400;
  color: var(--pink);
}

@keyframes polaroidFloat {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-10px); }
}

@keyframes stickerFloat {
  0%, 100% { transform: translateY(0) rotate(var(--rot, -10deg)); }
  50% { transform: translateY(-12px) rotate(calc(var(--rot, -10deg) + 6deg)); }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.2,.9,.2,1);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--acid), var(--pink), var(--purple));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.btn:hover::before { opacity: 0.18; }

.btn--primary {
  background: var(--acid);
  color: var(--bg);
  box-shadow: var(--glow-acid);
}

.btn--primary:hover {
  box-shadow: 0 0 60px rgba(255, 230, 0, 0.7), 0 0 120px rgba(255, 230, 0, 0.3);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 30px rgba(255, 31, 168, 0.3);
}

.btn--full {
  width: 100%;
}

.btn__icon {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(.2,.9,.2,1);
}

.btn:hover .btn__icon { transform: translateX(6px); }

/* ============== MARQUEE ============== */
.marquee {
  position: relative;
  z-index: 4;
  background: var(--acid);
  color: var(--bg);
  padding: 16px 0;
  overflow: hidden;
  border-top: 2px solid var(--bg);
  border-bottom: 2px solid var(--bg);
}

.marquee--reverse {
  background: var(--pink);
  color: var(--ink);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  font-family: var(--f-fat);
  font-size: clamp(22px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  animation: scroll 30s linear infinite;
  width: max-content;
  text-transform: uppercase;
}

.marquee--reverse .marquee__track {
  animation: scrollReverse 24s linear infinite;
}

.marquee__star {
  font-size: 0.7em;
  color: var(--pink);
}

.marquee--reverse .marquee__star {
  color: var(--acid);
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

@keyframes scrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ============== MANIFESTO ============== */
.manifesto {
  position: relative;
  z-index: 2;
  padding: 120px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.manifesto__big {
  font-family: var(--f-display);
  font-size: clamp(36px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 120px;
  max-width: 1200px;
  text-transform: lowercase;
}

.manifesto__big span {
  display: block;
  opacity: 0.18;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(20px);
}

.manifesto__big span.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.manifesto__big em {
  font-style: normal;
  background: linear-gradient(90deg, var(--acid), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manifesto__big s {
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 4px;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.manifesto__card {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.9,.2,1), border-color 0.4s;
}

.manifesto__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--acid), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 24px;
  z-index: -1;
}

.manifesto__card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 230, 0, 0.4);
}

.manifesto__card-num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--acid);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}

.manifesto__card h3 {
  font-family: var(--f-fat);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.manifesto__card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-dim);
}

.manifesto__card--pink h3 { color: var(--pink); }
.manifesto__card--pink .manifesto__card-num { color: var(--pink); }
.manifesto__card--pink:hover { border-color: rgba(255, 31, 168, 0.4); }

.manifesto__card--purple h3 { color: var(--lavender); }
.manifesto__card--purple .manifesto__card-num { color: var(--lavender); }
.manifesto__card--purple:hover { border-color: rgba(123, 44, 255, 0.4); }

.manifesto__card--yellow h3 { color: var(--acid); }

/* ============== MENU ============== */
.menu {
  position: relative;
  z-index: 2;
  padding: 100px 24px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.menu__head {
  text-align: left;
  margin-bottom: 48px;
}

.menu__eyebrow,
.gallery__eyebrow,
.contact__eyebrow,
.builder__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  margin-bottom: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--acid);
  animation: pulse 1.6s ease-in-out infinite;
}

.menu__title,
.builder__title,
.gallery__title,
.contact__title {
  font-family: var(--f-display);
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-transform: lowercase;
}

.bubble-word-latin {
  font-family: var(--f-bubble);
  color: var(--pink);
  text-shadow: var(--glow-pink);
  font-weight: 400;
  font-size: 0.85em;
  display: inline-block;
  animation: bob 5s ease-in-out infinite;
}

.menu__desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 560px;
  margin-bottom: 32px;
}

.menu__desc em {
  font-style: normal;
  color: var(--acid);
}

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu__tab {
  padding: 10px 20px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  transition: all 0.3s;
}

.menu__tab:hover {
  background: rgba(255, 230, 0, 0.08);
  color: var(--acid);
  border-color: rgba(255, 230, 0, 0.3);
}

.menu__tab.is-active {
  background: var(--acid);
  color: var(--bg);
  border-color: var(--acid);
  box-shadow: var(--glow-acid);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  container-type: inline-size;
  container-name: menu;
}

/* Container queries — реагируют на ширину секции, не viewport */
@container menu (max-width: 600px) {
  .drink__name { font-size: 20px; }
  .drink__viz { width: 92px; height: 124px; }
}

@container menu (min-width: 1100px) {
  .drink__name { font-size: 26px; }
  .drink__viz { width: 130px; height: 180px; }
}

.drink {
  position: relative;
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 20px 20px 24px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.2,.9,.2,1), border-color 0.4s, opacity 0.4s, scale 0.4s;
  transform-style: preserve-3d;
  cursor: none;
}

.drink::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--c), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.drink:hover::before { opacity: 0.18; }

.drink:hover {
  border-color: var(--c);
  transform: translateY(-8px);
}

.drink:hover .drink__viz {
  transform: rotate(-6deg) scale(1.06);
}

.drink:hover .drink__viz-liquid {
  transform: translateY(-3px);
}

.drink.is-hidden {
  opacity: 0;
  scale: 0.95;
  pointer-events: none;
  display: none;
}

.drink__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.drink__tag {
  display: inline-flex;
  padding: 5px 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--acid);
  color: var(--bg);
  border-radius: 100px;
  font-weight: 600;
}

.drink__tag--alt { background: var(--pink); color: #fff; }
.drink__tag--green { background: var(--matcha); color: var(--bg); }
.drink__tag--brown { background: #8B5A3C; color: #fff; }

.drink__likes {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-dim);
}

.drink__likes svg { color: var(--pink); }

.drink__name {
  position: relative;
  z-index: 2;
  font-family: var(--f-fat);
  font-size: 24px;
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.drink__desc {
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-dim);
  margin-bottom: 18px;
  min-height: 36px;
}

.drink__viz {
  position: absolute;
  right: -16px;
  top: 12px;
  width: 116px;
  height: 160px;
  transition: transform 0.6s cubic-bezier(.2,.9,.2,1);
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.drink__viz svg { width: 100%; height: 100%; }

.drink__viz-liquid {
  transition: transform 0.5s ease;
}

.drink__pearl {
  animation: pearlFloat 2.4s ease-in-out infinite;
  transform-origin: center;
}

.drink__pearl:nth-child(2n) { animation-delay: 0.3s; }
.drink__pearl:nth-child(3n) { animation-delay: 0.6s; }
.drink__pearl:nth-child(4n) { animation-delay: 0.9s; }

.drink__sizes {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.drink__size {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
}

.drink__size b {
  color: var(--ink-dim);
  font-weight: 500;
}

.drink__size i {
  font-style: normal;
  color: var(--acid);
  font-weight: 700;
}

/* ============== BUILDER ============== */
.builder {
  position: relative;
  z-index: 2;
  padding: 120px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.builder__head {
  margin-bottom: 56px;
}

.builder__title {
  font-size: clamp(48px, 8vw, 130px);
}

.builder__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.builder__controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.control__label {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.control__label b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--acid);
  color: var(--bg);
  border-radius: 50%;
  font-family: var(--f-fat);
  font-size: 11px;
  font-weight: 400;
}

.control__opts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.control__opts--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.control__opts--wrap {
  flex-wrap: wrap;
}

.opt {
  position: relative;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-dim);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.opt:hover {
  border-color: rgba(255, 230, 0, 0.4);
  color: var(--ink);
  transform: translateY(-2px);
}

.opt.is-active {
  background: var(--acid);
  color: var(--bg);
  border-color: var(--acid);
  box-shadow: var(--glow-acid);
}

.opt b {
  font-family: var(--f-fat);
  font-size: 18px;
  font-weight: 400;
  display: block;
}

.opt i {
  display: block;
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 11px;
  opacity: 0.7;
  font-weight: 400;
}

.opt i small {
  font-size: 9px;
  margin-left: 1px;
}

.opt--wide {
  justify-content: flex-start;
  padding: 14px 16px;
}

.opt--pill {
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
}

.opt__chip {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.opt.is-active .opt__chip {
  border-color: rgba(0, 0, 0, 0.3);
}

/* Cup preview */
.builder__preview {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, rgba(255, 31, 168, 0.05), rgba(123, 44, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.builder__cup {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 30px 60px rgba(255, 31, 168, 0.3));
  animation: float 6s ease-in-out infinite;
}

.bld__wave {
  animation: wave 3.5s ease-in-out infinite;
}

.builder__readout {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.builder__recipe {
  display: grid;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
}

.recipe__line {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.recipe__line b {
  color: var(--ink-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.recipe__line span {
  color: var(--ink);
  font-weight: 700;
}

.builder__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.builder__price-label {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}

.builder__price-num {
  font-family: var(--f-fat);
  font-size: 44px;
  color: var(--acid);
  text-shadow: 0 0 30px rgba(255, 230, 0, 0.4);
  transition: transform 0.3s;
}

.builder__price-num.is-changed {
  animation: priceBump 0.5s ease;
}

@keyframes priceBump {
  0% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(-3deg); }
  100% { transform: scale(1); }
}

/* ============== GALLERY ============== */
.gallery {
  position: relative;
  z-index: 2;
  padding: 100px 0 120px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery__head {
  padding: 0 24px;
  margin-bottom: 56px;
}

.gallery__desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 520px;
}

.gallery__desc em {
  font-style: normal;
  color: var(--acid);
  font-weight: 600;
}

.gallery__strip {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery__strip::-webkit-scrollbar { display: none; }

.gallery__card {
  flex: 0 0 320px;
  height: 420px;
  background: var(--bg-2);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(.2,.9,.2,1);
}

.gallery__card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.gallery__card:nth-child(2):hover {
  transform: translateY(-8px) rotate(1deg);
}

.gallery__card:nth-child(3):hover {
  transform: translateY(-8px) rotate(-1deg);
}

.gallery__svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(.2,.9,.2,1), filter 0.6s;
  filter: saturate(1.1) contrast(1.05);
}

.gallery__card--photo {
  background: #000;
}

.gallery__card--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

.gallery__card--photo:hover .gallery__img {
  transform: scale(1.08);
  filter: saturate(1.25) contrast(1.1);
}

.gallery__card--photo .gallery__card-tag,
.gallery__card--photo .gallery__card-overlay {
  z-index: 2;
}

.gallery__card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 6px 14px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 230, 0, 0.3);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--acid);
}

.gallery__card-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 14px;
  background: var(--pink);
  color: #fff;
  font-family: var(--f-fat);
  font-size: 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============== SAY ROW ============== */
.say {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.say__row {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: clamp(48px, 10vw, 160px);
  line-height: 1;
  letter-spacing: -0.03em;
  animation: scroll 40s linear infinite;
  width: max-content;
  text-transform: uppercase;
}

.say__row--rev {
  animation: scrollReverse 32s linear infinite;
  color: var(--pink);
}

.say__big--out {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.say__row--rev .say__big--out {
  -webkit-text-stroke-color: var(--pink);
}

.say__dot {
  font-size: 0.6em;
  color: var(--acid);
  filter: drop-shadow(0 0 15px var(--acid));
}

/* ============== REVIEWS ============== */
.reviews {
  position: relative;
  z-index: 2;
  padding: 100px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.reviews__head {
  margin-bottom: 56px;
}

.reviews__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  margin-bottom: 20px;
}

.reviews__title {
  font-family: var(--f-display);
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-transform: lowercase;
}

.reviews__desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 560px;
}

.reviews__desc em {
  font-style: normal;
  color: var(--acid);
  font-weight: 600;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.review {
  position: relative;
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.2,.9,.2,1), border-color 0.4s;
}

.review::before {
  content: '"';
  position: absolute;
  top: -30px;
  right: 10px;
  font-family: var(--f-display);
  font-size: 220px;
  line-height: 1;
  color: rgba(255, 230, 0, 0.06);
  pointer-events: none;
}

.review:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: rgba(255, 230, 0, 0.3);
}

.review--pink:hover { border-color: rgba(255, 31, 168, 0.4); transform: translateY(-8px) rotate(1deg); }
.review--pink::before { color: rgba(255, 31, 168, 0.06); }
.review--purple:hover { border-color: rgba(123, 44, 255, 0.4); transform: translateY(-8px) rotate(-1deg); }
.review--purple::before { color: rgba(123, 44, 255, 0.06); }

.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.review__avatar {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-fat);
  font-size: 20px;
  color: var(--bg);
  align-self: center;
  overflow: hidden;
}

.review__who {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review__who b {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.review__who span {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  margin-top: 2px;
}

.review__stars {
  color: var(--acid);
  font-size: 14px;
  letter-spacing: 1px;
  filter: drop-shadow(0 0 8px rgba(255, 230, 0, 0.5));
}

.review__text {
  position: relative;
  z-index: 2;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
}

.review__text em {
  font-style: normal;
  background: linear-gradient(120deg, var(--acid), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.review__tag {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(255, 230, 0, 0.1);
  border: 1px solid rgba(255, 230, 0, 0.3);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--acid);
  border-radius: 100px;
  font-weight: 600;
}

.review--pink .review__tag { background: rgba(255, 31, 168, 0.1); border-color: rgba(255, 31, 168, 0.3); color: var(--pink); }
.review--purple .review__tag { background: rgba(181, 161, 255, 0.1); border-color: rgba(181, 161, 255, 0.3); color: var(--lavender); }

.reviews__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat {
  background: var(--bg-2);
  border: 1px solid rgba(255, 230, 0, 0.2);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: transform 0.4s;
}

.stat:hover {
  transform: translateY(-6px);
}

.stat b {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.9;
  color: var(--acid);
  text-shadow: 0 0 30px rgba(255, 230, 0, 0.3);
}

.stat span {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}

.stat--pink {
  border-color: rgba(255, 31, 168, 0.2);
}

.stat--pink b {
  color: var(--pink);
  text-shadow: 0 0 30px rgba(255, 31, 168, 0.3);
}

.stat--yellow {
  border-color: rgba(181, 161, 255, 0.2);
}

.stat--yellow b {
  color: var(--lavender);
  text-shadow: 0 0 30px rgba(181, 161, 255, 0.3);
  font-size: clamp(36px, 5vw, 60px);
}

/* ============== BURGER ============== */
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  border-radius: 50%;
  background: rgba(255, 230, 0, 0.1);
  transition: background 0.3s;
}

.nav__burger:hover {
  background: rgba(255, 230, 0, 0.2);
}

.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--acid);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.2,.9,.2,1), opacity 0.2s;
}

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.nav__menu-mobile[hidden] {
  display: none !important;
}

.nav__menu-mobile.is-open {
  pointer-events: auto;
}

.nav__menu-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.nav__menu-mobile a {
  font-family: var(--f-display);
  font-size: clamp(36px, 8vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: color 0.3s, transform 0.3s;
  text-transform: lowercase;
}

.nav__menu-mobile a:hover {
  color: var(--acid);
  transform: scale(1.05);
}

.nav__menu-mobile-decor {
  position: absolute;
  font-family: var(--f-bubble);
  font-size: clamp(80px, 16vw, 200px);
  color: rgba(255, 31, 168, 0.06);
  pointer-events: none;
  user-select: none;
}

/* ============== FRANCHISE ============== */
.fran {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.fran__head {
  margin-bottom: 60px;
  position: relative;
}

.fran__head::before {
  content: '+';
  position: absolute;
  top: -40px;
  right: 0;
  font-family: var(--f-display);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 1;
  color: rgba(255, 230, 0, 0.08);
  pointer-events: none;
  user-select: none;
}

.fran__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  margin-bottom: 20px;
}

.fran__title {
  font-family: var(--f-display);
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  text-transform: lowercase;
}

.fran__desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 620px;
}

.fran__desc em {
  font-style: normal;
  color: var(--acid);
  font-weight: 600;
}

.fran__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.fran__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fstat {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(.2,.9,.2,1), border-color 0.4s;
}

.fstat:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: rgba(255, 230, 0, 0.3);
}

.fstat:nth-child(2n):hover {
  transform: translateY(-6px) rotate(1deg);
}

.fstat__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-fat);
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  align-self: flex-start;
  overflow: hidden;
}

.fstat__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.fstat__body b {
  font-family: var(--f-fat);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.fstat__body span {
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.45;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fran__included {
  background: linear-gradient(180deg, rgba(255, 230, 0, 0.04), rgba(255, 31, 168, 0.03));
  border: 1px solid rgba(255, 230, 0, 0.15);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.fran__included::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.18), transparent 60%);
  pointer-events: none;
}

.fran__included-title {
  font-family: var(--f-fat);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.fran__included-title span {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--acid);
  display: inline-block;
  margin-top: 4px;
}

.fran__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.fran__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s, transform 0.3s;
}

.fran__list li:hover {
  border-color: rgba(255, 230, 0, 0.25);
  transform: translateX(4px);
}

.fran__list li b {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--acid);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 2px;
}

.fran__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.fran__cta .btn {
  width: 100%;
  padding: 18px 24px;
  font-size: 14px;
}

.fran__cta small {
  font-family: var(--f-mono);
  font-size: 10px;
  line-height: 1.55;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============== CONTACT ============== */
.contact {
  position: relative;
  z-index: 2;
  padding: 100px 24px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact__head {
  margin-bottom: 56px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.loc {
  background: var(--bg-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}

.loc:hover {
  border-color: rgba(255, 230, 0, 0.3);
}

.loc__tag {
  display: inline-flex;
  padding: 5px 12px;
  background: var(--pink);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  font-weight: 600;
  margin-bottom: 24px;
}

.loc__tag--yellow {
  background: var(--acid);
  color: var(--bg);
}

.loc__tag--pink {
  background: var(--pink);
  color: #fff;
  font-family: var(--f-fat);
  font-size: 14px;
}

.loc__title {
  font-family: var(--f-fat);
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 6px;
}

.loc__sub {
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 24px;
}

.loc__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.loc__row span {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.loc__row b {
  font-weight: 600;
  color: var(--ink);
}

.loc__phone {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 230, 0, 0.08);
  border: 1px solid rgba(255, 230, 0, 0.3);
  border-radius: 14px;
  font-family: var(--f-fat);
  font-size: 16px;
  color: var(--acid);
  transition: all 0.3s;
}

.loc__phone:hover {
  background: var(--acid);
  color: var(--bg);
  box-shadow: var(--glow-acid);
}

.loc__phone span {
  transition: transform 0.3s;
}

.loc__phone:hover span { transform: translateX(4px); }

.loc__map {
  margin-top: 16px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============== FOOTER ============== */
.footer {
  position: relative;
  z-index: 2;
  background: var(--bg-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 24px 30px;
  margin-top: 60px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 60px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__brand-text {
  font-family: var(--f-fat);
  font-size: 32px;
  line-height: 1;
}

.footer__brand-bubbles {
  font-size: 24px;
  color: var(--pink);
  letter-spacing: -0.2em;
  filter: drop-shadow(0 0 8px var(--pink));
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer__col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer__col a {
  display: block;
  padding: 6px 0;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink);
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--acid); }

.footer__huge {
  font-family: var(--f-display);
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(246, 246, 244, 0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  position: relative;
  text-transform: uppercase;
}

.footer__huge-amp {
  color: var(--pink);
  -webkit-text-fill-color: var(--pink);
  filter: drop-shadow(0 0 20px var(--pink));
}

.footer__small {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__dot {
  color: var(--pink);
}

.footer__staff {
  color: var(--ink-faint);
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.footer__staff:hover {
  color: var(--acid);
  border-color: var(--acid);
  background: rgba(255, 230, 0, 0.06);
}

/* ============== EASTER EGG ============== */
.egg {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.egg.is-shown {
  opacity: 1;
  visibility: visible;
}

.egg__inner {
  position: relative;
  max-width: 440px;
  background: var(--bg-2);
  border: 1px solid var(--acid);
  border-radius: 28px;
  padding: 60px 32px 32px;
  text-align: center;
  box-shadow: var(--glow-acid);
  animation: eggIn 0.5s cubic-bezier(.2,.9,.2,1);
}

@keyframes eggIn {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.egg__bubble {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--acid), var(--pink));
  box-shadow: var(--glow-pink);
  animation: pop 1.4s ease-in-out infinite;
}

.egg__inner h3 {
  font-family: var(--f-fat);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.egg__inner p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
  margin-bottom: 24px;
}

.egg__inner em {
  font-style: normal;
  color: var(--acid);
  font-weight: 600;
}

/* ============== RESPONSIVE ============== */

/* Laptop / wide tablet — 1024-1200 */
@media (max-width: 1200px) {
  .nav__links { gap: 22px; font-size: 13px; }
  .hero__cup { right: -20px; width: clamp(220px, 28vw, 380px); }
  .hero__polaroid { width: 170px; right: 5%; top: 62%; }
  .hero__sticker--1 { right: 12%; }
  .hero__sticker--2 { right: 4%; }
  .menu__grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .contact__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet — 768-1024 */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav { gap: 12px; padding: 10px 8px 10px 18px; }

  .hero { padding-top: 110px; min-height: auto; padding-bottom: 80px; }
  .hero__title-row { gap: 12px; }
  .hero__cup {
    position: absolute;
    right: -30px;
    top: 18%;
    width: 240px;
    z-index: -1;
    opacity: 0.7;
  }
  .hero__polaroid {
    position: relative;
    right: auto;
    top: auto;
    margin: 32px 0 0;
    width: 220px;
  }
  .hero__sticker--1 { right: 8%; top: 8%; width: 78px; height: 78px; }
  .hero__sticker--1 span { font-size: 18px; }
  .hero__sticker--2 { right: 50%; top: 12%; width: 64px; height: 64px; transform: rotate(15deg) translateX(50%); }
  .hero__sticker--2 span { font-size: 15px; }

  .manifesto { padding: 80px 24px; }
  .manifesto__big { margin-bottom: 60px; }

  .builder__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .builder__preview {
    position: relative;
    top: auto;
    padding: 28px;
  }
  .builder__cup { max-width: 220px; }

  .contact__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid .loc:last-child { grid-column: 1 / -1; }

  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid .review:last-child { grid-column: 1 / -1; }
  .reviews__stats { grid-template-columns: 1fr 1fr; }
  .reviews__stats .stat:last-child { grid-column: 1 / -1; }

  .fran__layout { grid-template-columns: 1fr; gap: 24px; }
  .fran { padding: 90px 24px 60px; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }

  .gallery__card { flex: 0 0 280px; height: 380px; }
}

/* Mobile landscape / small tablet — 640-768 */
@media (max-width: 768px) {
  .nav { padding: 8px 8px 8px 16px; }
  .nav__logo { font-size: 18px; }
  .nav__logo-bubble { width: 13px; height: 13px; }
  .nav__cta { padding: 9px 14px; font-size: 13px; }

  .hero { padding: 96px 16px 60px; }
  .hero__chip { padding: 7px 13px; font-size: 10px; }
  .hero__sticker--1 { display: none; }
  .hero__sticker--2 { display: none; }
  .hero__cup { position: relative; right: auto; top: auto; margin: 40px auto 0; width: 200px; z-index: 1; opacity: 1; }
  .hero__polaroid { width: 180px; margin: 24px auto 0; }

  .marquee { padding: 14px 0; }
  .marquee__track { font-size: 22px; gap: 16px; animation-duration: 22s; }
  .marquee--reverse .marquee__track { animation-duration: 18s; }

  .menu, .manifesto, .builder, .contact, .reviews, .fran { padding-left: 16px; padding-right: 16px; }
  .fran__stats { grid-template-columns: 1fr; }
  .fran__included { padding: 24px 20px; border-radius: 22px; }
  .fstat { padding: 18px; }
  .gallery__head { padding: 0 16px; }
  .gallery__strip { padding: 0 16px; gap: 12px; }
  .gallery__card { flex: 0 0 240px; height: 320px; }

  .manifesto__grid { grid-template-columns: 1fr 1fr; }
  .menu__tabs { gap: 8px; }
  .menu__tab { padding: 8px 14px; font-size: 13px; }
  .menu__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .drink { padding: 16px 16px 18px; border-radius: 22px; }
  .drink__name { font-size: 18px; }
  .drink__desc { font-size: 12px; min-height: 0; margin-bottom: 12px; }
  .drink__viz { width: 86px; height: 116px; right: -10px; top: 8px; }
  .drink__size { font-size: 10px; padding: 4px 8px; }

  .builder__preview { padding: 20px 16px; border-radius: 24px; }
  .builder__cup { max-width: 180px; }
  .builder__price-num { font-size: 36px; }

  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__grid .review:last-child { grid-column: auto; }
  .reviews__stats { grid-template-columns: 1fr; }
  .reviews__stats .stat:last-child { grid-column: auto; }
  .review { padding: 20px; }
  .review__text { font-size: 15px; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__grid .loc:last-child { grid-column: auto; }
  .loc { padding: 22px; border-radius: 22px; }
  .loc__title { font-size: 22px; }

  .footer { padding: 50px 16px 24px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer__huge { font-size: clamp(64px, 22vw, 200px); margin-bottom: 22px; }
  .footer__small { font-size: 10px; gap: 10px; }

  .say__row { font-size: clamp(40px, 14vw, 100px); gap: 22px; }

  body { cursor: auto; }
  .cursor, .cursor-trail { display: none !important; }
  a, button, [data-magnetic] { cursor: pointer !important; }
}

/* Mobile portrait — <640 */
@media (max-width: 480px) {
  .nav {
    width: calc(100% - 16px);
    padding: 6px 6px 6px 14px;
    gap: 8px;
    top: max(10px, env(safe-area-inset-top));
  }
  .nav__cta span:first-child { display: inline; font-size: 12px; }
  .nav__cta { padding: 8px 12px; min-height: 38px; }
  .nav__logo { font-size: 17px; }

  .hero { padding: max(100px, calc(96px + env(safe-area-inset-top))) 14px 50px; }
  .hero__title { font-size: clamp(56px, 18vw, 100px); }
  .hero__bubble-word { font-size: clamp(44px, 14vw, 80px); }
  .hero__lead { font-size: 14px; }
  .hero__cup { width: 170px; margin-top: 32px; }
  .hero__polaroid { width: 160px; }
  .hero__ctas { gap: 10px; width: 100%; }
  .hero__ctas .btn { flex: 1; min-width: 0; }
  .btn { padding: 14px 18px; font-size: 13px; min-height: 48px; }

  .manifesto__grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr; }
  .menu__title, .builder__title, .gallery__title, .contact__title, .reviews__title { font-size: clamp(44px, 14vw, 80px); }

  .drink { padding: 18px; }
  .drink__name { font-size: 22px; }
  .drink__desc { font-size: 13px; min-height: 38px; margin-bottom: 16px; }
  .drink__viz { width: 100px; height: 140px; right: -14px; }
  .drink__top { margin-bottom: 90px; }
  .drink__size { font-size: 11px; padding: 5px 10px; }

  .opt { padding: 12px 14px; font-size: 13px; min-height: 44px; }
  .opt--pill { padding: 10px 14px; font-size: 12px; min-height: 38px; }
  .control__opts--grid { grid-template-columns: 1fr 1fr; }

  /* Reviews and stats — fill mobile properly */
  .review { padding: 22px 18px; }
  .review__text { font-size: 15px; line-height: 1.45; }
  .stat { padding: 24px 20px; }
  .stat b { font-size: clamp(44px, 14vw, 60px); }

  /* Location cards */
  .loc { padding: 24px 20px; }
  .loc__title { font-size: 24px; }
  .loc__phone { padding: 14px 16px; }

  /* Franchise */
  .fran { padding: 70px 16px 50px; }
  .fran__included { padding: 22px 18px; }
  .fran__list li { font-size: 13px; padding: 12px 14px; }
  .fstat { padding: 18px; gap: 12px; }
  .fstat__icon { width: 40px; height: 40px; font-size: 18px; flex: 0 0 40px; }
  .fstat__body b { font-size: clamp(22px, 6vw, 28px); }

  /* Footer with safe area */
  .footer {
    padding: 40px 14px calc(20px + env(safe-area-inset-bottom));
  }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__huge { font-size: clamp(56px, 22vw, 180px); }
  .footer__small { flex-direction: column; gap: 6px; text-align: center; }
  .footer__small .footer__dot { display: none; }
  .footer__staff { margin-top: 4px; }

  /* Hero stickers — hidden on phone (clutter) */
  .hero__sticker { display: none; }

  /* Easter egg modal smaller */
  .egg__inner { padding: 50px 24px 28px; }
  .egg__inner h3 { font-size: 22px; }
}

/* Extra-small screens (< 360px / older Androids) */
@media (max-width: 360px) {
  .hero__title { font-size: clamp(48px, 17vw, 88px); }
  .hero__bubble-word { font-size: clamp(38px, 13vw, 72px); }
  .menu__title, .builder__title, .gallery__title, .contact__title, .reviews__title, .fran__title {
    font-size: clamp(38px, 13vw, 64px);
  }
  .nav__cta span:first-child { display: none; }
  .nav__logo-text i { display: inline; }
}
