:root {
  --black: #050505;
  --ink: #0b0b0c;
  --charcoal: #171719;
  --graphite: #222326;
  --steel: #a9a9aa;
  --silver: #e7e3dc;
  --white: #fffaf1;
  --muted: #c8c0b5;
  --red: #e41d2f;
  --red-deep: #9e0715;
  --gold: #d9b36a;
  --line: rgba(255, 250, 241, 0.16);
  --surface: rgba(255, 250, 241, 0.07);
  --font-body: "Manrope", "Helvetica Neue", sans-serif;
  --font-display: "Bebas Neue", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(115deg, transparent 0%, rgba(228, 29, 47, 0.2) 58%, transparent 83%),
    linear-gradient(180deg, #060606 0%, #0e0e0f 50%, #050505 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 11px 11px;
  mix-blend-mode: screen;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 14px 28px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.hero-actions,
.zip-row,
.footer-grid {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--black);
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-weight: 800;
}

.nav-links {
  justify-content: center;
  gap: 6px;
}

.nav-links a,
.header-action {
  min-height: 42px;
  padding: 10px 13px;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.header-action:hover {
  color: var(--white);
  border-color: var(--red);
}

.header-action {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section {
  position: relative;
  padding: 116px 0;
}

.hero {
  min-height: 86svh;
  padding: 104px 0 54px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.slash {
  position: absolute;
  width: 18vw;
  min-width: 150px;
  height: 130vh;
  top: -18vh;
  background: linear-gradient(180deg, rgba(228, 29, 47, 0), rgba(228, 29, 47, 0.88), rgba(98, 3, 10, 0));
  transform: rotate(17deg);
  opacity: 0.88;
}

.slash-one {
  right: 10vw;
}

.slash-two {
  right: 23vw;
  width: 5vw;
  opacity: 0.42;
}

.slash-three {
  left: -9vw;
  width: 9vw;
  opacity: 0.28;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.edition {
  max-width: 420px;
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
}

h1 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(5.2rem, 13vw, 14rem);
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 7vw, 7rem);
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-lede,
.section-copy p,
.section-heading p,
.find-copy p {
  max-width: 610px;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button-primary:hover {
  background: #ff2a3d;
  border-color: #ff2a3d;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 250, 241, 0.06);
}

.button-secondary:hover {
  background: rgba(255, 250, 241, 0.12);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.52);
}

.hero-facts div {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  margin-bottom: 2px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.9;
}

.hero-facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-product {
  display: grid;
  min-height: 610px;
  place-items: center;
}

.can-stage {
  position: relative;
  width: min(430px, 78vw);
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.45));
  transition: transform 300ms ease;
}

.can-stage img {
  width: 100%;
}

.carbonation {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 250, 241, 0.62);
  border-radius: 50%;
  animation: rise 4.4s ease-in-out infinite;
}

.fizz-a {
  left: 6%;
  top: 34%;
}

.fizz-b {
  right: 10%;
  top: 18%;
  animation-delay: 900ms;
}

.fizz-c {
  right: -4%;
  bottom: 24%;
  animation-delay: 1600ms;
}

.split-layout,
.serve-grid,
.moments-grid,
.find-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
}

.taste {
  background:
    linear-gradient(180deg, rgba(228, 29, 47, 0.08), transparent 52%),
    var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.taste-board {
  display: grid;
  gap: 14px;
}

.taste-board article,
.product-tile,
.moment-stack article,
.zip-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.07);
}

.taste-board article {
  padding: 24px;
}

.taste-board p,
.product-tile p {
  margin-bottom: 0;
}

.serve {
  overflow: hidden;
}

.serve::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
}

.serve-grid {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

.serve-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.glass {
  position: relative;
  width: min(320px, 74vw);
  height: 440px;
  border: 2px solid rgba(255, 250, 241, 0.28);
  border-top: 0;
  border-radius: 0 0 42px 42px;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(228, 29, 47, 0.16) 0%, rgba(79, 9, 14, 0.72) 48%, rgba(8, 5, 4, 0.92) 100%);
  box-shadow: inset 26px 0 38px rgba(255, 255, 255, 0.06);
}

.glass::before,
.glass::after {
  position: absolute;
  top: 28px;
  width: 3px;
  height: 320px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(255, 250, 241, 0.28), transparent);
}

.glass::before {
  left: 48px;
}

.glass::after {
  right: 58px;
}

.ice {
  position: absolute;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.09);
}

.ice-one {
  left: 62px;
  top: 90px;
  transform: rotate(14deg);
}

.ice-two {
  right: 58px;
  top: 166px;
  transform: rotate(-10deg);
}

.ice-three {
  left: 104px;
  bottom: 86px;
  transform: rotate(22deg);
}

.pour-line {
  position: absolute;
  top: -86px;
  left: 50%;
  width: 38px;
  height: 142px;
  background: linear-gradient(180deg, transparent, var(--red), rgba(70, 10, 10, 0.84));
  transform: translateX(-50%) rotate(10deg);
}

.serve-steps {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.serve-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
}

.serve-steps span {
  color: var(--red);
  font-weight: 800;
}

.lineup {
  background: #0c0c0d;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 36px;
}

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

.product-tile {
  position: relative;
  min-height: 468px;
  padding: 26px;
  overflow: hidden;
}

.product-tile::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(140deg, rgba(228, 29, 47, 0.24), transparent 44%);
}

.product-tile-red::before {
  background: linear-gradient(140deg, rgba(228, 29, 47, 0.42), transparent 46%);
}

.product-tile-silver::before {
  background: linear-gradient(140deg, rgba(231, 227, 220, 0.24), transparent 46%);
}

.product-tile img,
.product-tile h3,
.product-tile p {
  position: relative;
  z-index: 1;
}

.product-tile img {
  width: min(210px, 72%);
  margin: 0 auto 16px;
}

.product-tile h3 {
  font-size: 1.15rem;
}

.moments {
  background:
    linear-gradient(115deg, rgba(228, 29, 47, 0.18), transparent 34%),
    linear-gradient(180deg, #080808, #121111);
}

.moment-stack {
  display: grid;
  gap: 12px;
}

.moment-stack article {
  min-height: 124px;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(228, 29, 47, 0.22), transparent 36%),
    rgba(255, 250, 241, 0.07);
}

.moment-stack span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 800;
}

.moment-stack strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.04;
  text-wrap: balance;
}

.find {
  padding-bottom: 92px;
  background:
    linear-gradient(180deg, rgba(228, 29, 47, 0), rgba(228, 29, 47, 0.15)),
    #050505;
}

.find-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
}

.zip-form {
  padding: 24px;
}

.zip-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.zip-row {
  gap: 10px;
}

.zip-row input {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.zip-row input:focus {
  border-color: var(--red);
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--silver);
  font-size: 0.95rem;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: var(--black);
}

.footer-grid {
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  max-width: 620px;
  margin: 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.hero .reveal {
  animation: enter 640ms ease both;
}

.hero .hero-product {
  animation-delay: 120ms;
}

@keyframes rise {
  0%,
  100% {
    opacity: 0.28;
    transform: translateY(18px);
  }

  50% {
    opacity: 1;
    transform: translateY(-18px);
  }
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-grid,
  .split-layout,
  .serve-grid,
  .moments-grid,
  .find-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-product {
    min-height: auto;
  }

  .can-stage {
    width: min(330px, 70vw);
  }

  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .product-tile {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding: 12px 14px;
    gap: 12px;
  }

  .brand span:last-child {
    max-width: 128px;
    line-height: 1.1;
  }

  .header-action {
    min-height: 38px;
    padding: 8px 10px;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 76svh;
    padding-top: 84px;
    padding-bottom: 34px;
  }

  .hero-grid {
    position: relative;
    display: block;
    gap: 12px;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  h1 {
    font-size: clamp(4.45rem, 20vw, 6.2rem);
  }

  h2 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .slash-one {
    right: -30vw;
    width: 32vw;
    opacity: 0.52;
  }

  .slash-two,
  .slash-three {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    gap: 8px;
    margin: 24px 0 18px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 10px;
  }

  .zip-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts div {
    min-width: 0;
    padding: 10px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-facts div:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .hero-facts dt {
    font-size: clamp(1.85rem, 11vw, 2.3rem);
  }

  .hero-facts dd {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero-product {
    position: absolute;
    right: -4px;
    bottom: -24px;
    z-index: 0;
    min-height: 0;
    opacity: 0.76;
    pointer-events: none;
  }

  .can-stage {
    width: min(138px, 36vw);
  }

  .carbonation {
    display: none;
  }

  .serve-visual {
    min-height: 360px;
  }

  .glass {
    height: 330px;
    width: min(250px, 70vw);
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
