:root {
  --red: #f4002d;
  --red-bright: #ff3b55;
  --red-deep: #c40021;
  --ink-950: #07070b;
  --ink-900: #0d0d12;
  --ink-800: #14141b;
  --ink-700: #1d1d26;
  --line: rgba(255, 255, 255, 0.08);
  --cream: #f4ede2;
  --cream-ink: #101014;
  --text: #f5f2ec;
  --muted: #a49e97;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--ink-950);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

ul {
  list-style: none;
}

button, input {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--red);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  transform: translateY(-200%);
  transition: transform 0.3s var(--ease-out);
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 140px 140px;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.section-dark {
  position: relative;
  background: var(--ink-950);
  padding: clamp(90px, 11vw, 150px) 0;
}

.section-dark > .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--red);
}

.eyebrow-light {
  color: #fff;
}

.eyebrow-light::before {
  background: #fff;
}

.section-head {
  margin-bottom: clamp(44px, 6vw, 76px);
  max-width: 760px;
}

.section-title {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-title em {
  font-style: normal;
  color: var(--red);
}

.section-sub {
  margin-top: 18px;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease-out), background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.35s;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(244, 0, 45, 0.65);
}

.btn-red:hover {
  background: #d4001f;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -12px rgba(244, 0, 45, 0.75);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-ink {
  background: #0a0a0d;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 40px -16px rgba(10, 10, 13, 0.7);
}

.btn-ink:hover {
  background: #1c1c24;
  transform: translateY(-2px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 11, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  font-family: var(--font-display);
  font-size: 1.04rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}

.brand-mark {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  padding: 12px 24px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.menu-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1100px 560px at 82% -10%, rgba(244, 0, 45, 0.26), transparent 55%),
    radial-gradient(900px 520px at 12% 112%, rgba(244, 0, 45, 0.16), transparent 60%),
    var(--ink-950);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.1rem, 8.5vw, 7.1rem);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.hero-line {
  display: block;
}

.hero-line-outline {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

.lede {
  margin-top: 26px;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-facts {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-facts strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}

.hero-facts span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-can-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
  perspective: 1000px;
}

.can-stage {
  transform-style: preserve-3d;
  transform: rotateY(calc(var(--mx, 0) * 9deg)) rotateX(calc(var(--my, 0) * -9deg));
  transition: transform 0.25s ease-out;
  position: relative;
  z-index: 2;
}

.hero-can-art {
  width: min(340px, 64vw);
  filter: drop-shadow(0 60px 90px rgba(244, 0, 45, 0.22)) drop-shadow(0 24px 32px rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(-8px); }
  to { transform: translateY(10px); }
}

.hero-badge {
  position: absolute;
  left: -10%;
  bottom: 4%;
  width: clamp(150px, 16vw, 216px);
  height: auto;
  animation: spin 26s linear infinite;
  opacity: 0.9;
  z-index: 1;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  z-index: 2;
}

.hero-scroll span {
  width: 4px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  animation: scr 1.8s ease-in-out infinite;
}

@keyframes scr {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.05) 62%, transparent 72%);
  opacity: 0;
  animation: rise var(--dur, 15s) linear var(--delay, 0s) infinite;
  z-index: 1;
}

.bubble:nth-child(1) { left: 8%; width: 14px; height: 14px; --dur: 13s; --delay: 0s; }
.bubble:nth-child(2) { left: 20%; width: 8px; height: 8px; --dur: 17s; --delay: 3s; }
.bubble:nth-child(3) { left: 34%; width: 18px; height: 18px; --dur: 19s; --delay: 7s; }
.bubble:nth-child(4) { left: 48%; width: 10px; height: 10px; --dur: 14s; --delay: 2s; }
.bubble:nth-child(5) { left: 58%; width: 6px; height: 6px; --dur: 16s; --delay: 5s; }
.bubble:nth-child(6) { left: 72%; width: 16px; height: 16px; --dur: 12s; --delay: 1s; }
.bubble:nth-child(7) { left: 84%; width: 9px; height: 9px; --dur: 18s; --delay: 6s; }
.bubble:nth-child(8) { left: 94%; width: 13px; height: 13px; --dur: 15s; --delay: 4s; }

@keyframes rise {
  0% { transform: translateY(30vh) scale(0.6); opacity: 0; }
  12% { opacity: 0.7; }
  85% { opacity: 0.5; }
  100% { transform: translateY(-110vh) scale(1.1); opacity: 0; }
}

.marquee {
  overflow: hidden;
  background: var(--red);
  border-block: 2px solid #000;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
}

.marquee-item {
  padding: 16px 30px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.marquee-star {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.55);
}

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

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, var(--ink-800), var(--ink-900));
  transition: transform 0.45s var(--ease-out), border-color 0.3s, box-shadow 0.45s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(620px 320px at 50% -16%, rgba(244, 0, 45, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 36px 70px -32px rgba(0, 0, 0, 0.8);
}

.card:hover::before {
  opacity: 1;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.flavor {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}

.flavor-art {
  position: relative;
  display: grid;
  place-items: center;
  padding: 30px 0 34px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.flavor-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--band) 42%, transparent), transparent 68%);
  filter: blur(8px);
  transition: transform 0.45s var(--ease-out);
}

.flavor:hover .flavor-glow {
  transform: scale(1.15);
}

.mini-can {
  position: relative;
  width: 92px;
  height: 152px;
  border-radius: 12px 12px 15px 15px;
  background: linear-gradient(180deg,
    #17171d 0%, #17171d 20%,
    var(--band) 20%, var(--band) 48%,
    #17171d 48%, #17171d 100%);
  box-shadow: inset -14px 0 22px rgba(0, 0, 0, 0.55), inset 10px 0 16px rgba(255, 255, 255, 0.08);
  transition: transform 0.45s var(--ease-out);
}

.flavor:hover .mini-can {
  transform: translateY(-6px) rotate(-5deg);
}

.mini-can::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 0;
  right: 0;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, #eef0f4, #b0b4be);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.mini-can::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 10px;
  width: 9px;
  height: 80%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
}

.flavor-range {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.flavor h3 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.flavor-desc {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.flavor-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stats {
  position: relative;
  background: var(--cream);
  color: var(--cream-ink);
  padding: clamp(90px, 11vw, 150px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.stats-copy h2 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.stats-copy h2 em {
  font-style: normal;
  color: var(--red);
}

.stats-lede {
  margin-top: 20px;
  color: #57525e;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 52ch;
}

.ingredient-list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ingredient-list .chip {
  border-color: rgba(16, 16, 20, 0.16);
  background: #fff;
  color: #4a4550;
}

.stats-board {
  background: #fff;
  border: 1px solid rgba(16, 16, 20, 0.07);
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 46px 90px -46px rgba(20, 3, 6, 0.3);
}

.board-head {
  padding-bottom: 18px;
  border-bottom: 8px solid var(--cream-ink);
}

.board-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  letter-spacing: 0.02em;
}

.serving {
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6c6770;
}

.facts {
  margin-top: 8px;
}

.fact {
  display: flex;
  align-items: baseline;
  gap: 18px;
  justify-content: space-between;
  padding: 15px 2px;
  border-bottom: 1px solid rgba(16, 16, 20, 0.12);
}

.fact-lead {
  border-top: 4px solid var(--cream-ink);
}

.fact-name {
  font-size: 0.92rem;
  font-weight: 600;
}

.fact-lead .fact-name {
  font-weight: 700;
}

.fact-value {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  white-space: nowrap;
}

.fact-lead .fact-value {
  font-size: 2.1rem;
}

.fact-unit {
  font-size: 0.74rem;
  font-weight: 600;
  color: #6c6770;
  white-space: nowrap;
}

.board-foot {
  margin-top: 22px;
  font-size: 0.76rem;
  line-height: 1.65;
  color: #6c6770;
}

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

.ritual {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ritual-art {
  position: relative;
  height: 178px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.6;
}

.orb-a {
  width: 200px;
  height: 200px;
  background: var(--c1);
  top: -60px;
  left: -40px;
}

.orb-b {
  width: 160px;
  height: 160px;
  background: var(--c2);
  bottom: -60px;
  right: -20px;
}

.lime-ring {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #d9f07c, #6f9c33 70%);
  box-shadow: 0 24px 50px -16px rgba(111, 156, 51, 0.6);
}

.lime-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.55);
}

.scoop {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50% 50% 46% 46%;
  background: linear-gradient(180deg, #fff, #d9d2e8);
  box-shadow: 0 26px 50px -14px rgba(141, 127, 209, 0.55);
}

.scoop::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 12px;
  height: 20px;
  border-radius: 999px;
  background: rgba(141, 127, 209, 0.45);
}

.espresso {
  position: relative;
  width: 96px;
  height: 70px;
  border-radius: 6px 6px 26px 26px;
  background: linear-gradient(180deg, #4a3018, #140b04);
  box-shadow: inset 0 -14px 20px rgba(201, 149, 94, 0.25), 0 28px 54px -16px rgba(92, 58, 30, 0.8);
}

.espresso::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 8px;
  width: 80px;
  height: 12px;
  border-radius: 999px;
  background: #8a5c34;
}

.espresso-wake {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201, 149, 94, 0.7), transparent);
  filter: blur(1px);
}

.ritual-body {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ritual-no {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--red);
}

.ritual-body h3 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ritual-desc {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  counter-reset: step;
}

.steps li {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: #cfc9c4;
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  margin-right: 9px;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--red);
}

.find {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--red), var(--red-deep));
  padding: clamp(96px, 12vw, 160px) 0;
}

.find .grain {
  opacity: 0.08;
}

.find-backdrop {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(220px, 34vw, 480px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.16);
  pointer-events: none;
  user-select: none;
}

.find-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 22px;
}

.find-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 6.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
}

.find-lede {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  line-height: 1.7;
}

.find-form {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(560px, 100%);
}

.find-form input {
  flex: 1;
  min-width: 260px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: border-color 0.25s, background-color 0.25s;
}

.find-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.find-form input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.form-note {
  min-height: 1.4em;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  background: var(--ink-900);
  border-top: 1px solid var(--line);
  padding: 64px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
}

.footer-tagline {
  margin: 16px 0 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 26ch;
}

.footer-nav {
  display: flex;
  gap: 48px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #6c6770;
  margin-bottom: 16px;
}

.footer-col li + li {
  margin-top: 10px;
}

.footer-col a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.25s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.76rem;
  line-height: 1.6;
  color: #6c6770;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}

.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}

@media (max-width: 1080px) {
  .flavor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ritual-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
  .ritual-art {
    height: 200px;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-cta {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 6px;
    padding: 18px 24px 26px;
    background: rgba(7, 7, 11, 0.96);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.3s, transform 0.3s var(--ease-out);
  }
  .menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-links a {
    display: block;
    padding: 14px 6px;
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 130px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-can-wrap {
    order: -1;
    min-height: 0;
    padding: 10px 0 30px;
  }
  .hero-can-art {
    width: min(250px, 52vw);
  }
  .hero-badge {
    left: 4%;
    bottom: 0;
    width: 130px;
  }
  .hero-facts {
    gap: 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .flavor-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: clamp(2.7rem, 13vw, 3.6rem);
  }
  .hero-line-outline {
    -webkit-text-stroke-width: 1.5px;
  }
  .hero-facts strong {
    font-size: 1.6rem;
  }
  .marquee-item {
    font-size: 1.05rem;
    padding: 13px 20px;
  }
  .stats-board {
    padding: 26px 22px;
  }
  .find-form input,
  .find-form .btn {
    width: 100%;
  }
  .footer-legal {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}