:root {
  --ink: #132a31;
  --deep: #082d3a;
  --paper: #fbfcf8;
  --mist: #e8f4ef;
  --mint: #9ee7d6;
  --rose: #f6b7c3;
  --berry: #8d1835;
  --sun: #f5c75d;
  --line: #cfded9;
  --muted: #5d6d6b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(8, 45, 58, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
}

.site-header.solid {
  position: relative;
  background: var(--deep);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  font-weight: 950;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark img {
  width: 54px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-mark span {
  white-space: nowrap;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(8px, 2vw, 18px);
  font-size: .94rem;
  font-weight: 850;
}

.top-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
}

.top-nav a:not(.nav-cta) {
  padding: 0 2px;
}

.nav-cta {
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .12);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86svh;
  padding: 104px clamp(20px, 6vw, 88px) 64px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 26, 34, .86) 0%, rgba(4, 26, 34, .68) 42%, rgba(4, 26, 34, .12) 100%),
    linear-gradient(0deg, rgba(4, 26, 34, .28), rgba(4, 26, 34, .28)),
    url("hero-glass.jpeg") center / cover no-repeat;
}

.hero-inner {
  width: min(680px, 100%);
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: .86rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--berry);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 7.35rem);
  line-height: .88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-weight: 950;
  text-decoration: none;
  text-align: center;
}

.button.primary {
  background: var(--sun);
  border-color: var(--sun);
  color: #201303;
}

.button.ghost {
  border-color: rgba(255, 255, 255, .74);
  color: var(--white);
}

.button.light {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--deep);
}

.coupon {
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 10px 12px;
  border-left: 4px solid var(--rose);
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .93);
  font-weight: 750;
}

.coupon strong {
  color: var(--white);
  letter-spacing: .04em;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.metric-band div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 20px clamp(18px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.metric-band div:last-child {
  border-right: 0;
}

.metric-band strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.metric-band span {
  color: var(--muted);
  font-weight: 820;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 88px);
}

.product-section,
.split-section,
.recipe-band {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.section-copy {
  max-width: 690px;
}

.section-copy.compact {
  max-width: 560px;
}

.section-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 14px;
  height: 3px;
  background: var(--berry);
}

.product-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.split-section {
  background: var(--deep);
  color: var(--white);
}

.split-section .section-copy p {
  color: rgba(255, 255, 255, .8);
}

.split-section .eyebrow {
  color: var(--mint);
}

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

.image-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  color: var(--mint);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.feature-band {
  background: var(--paper);
}

.feature-intro {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.feature-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-kicker {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: var(--deep);
  font-weight: 950;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.recipe-band {
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1fr);
  background: linear-gradient(90deg, #f6fbf6, #eef7f5);
}

.recipe-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fineprint {
  font-size: .95rem !important;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 920;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.45rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(56px, 7vw, 92px) clamp(20px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(8, 45, 58, .94), rgba(141, 24, 53, .82)),
    url("drink-close.jpeg") center / cover no-repeat;
  color: var(--white);
}

.cta-band h2 {
  max-width: 12ch;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 850;
}

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 6vw, 64px);
}

.legal-main h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
}

.legal-main h2 {
  margin-top: 38px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-box {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.not-found {
  min-height: 70svh;
  display: grid;
  place-items: center;
  padding: 96px 20px;
  text-align: center;
  background: var(--mist);
}

.not-found-inner {
  max-width: 680px;
}

.not-found p {
  color: var(--muted);
  font-size: 1.12rem;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
  }

  .top-nav {
    flex-wrap: wrap;
  }

  .metric-band,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-band div:nth-child(2) {
    border-right: 0;
  }

  .metric-band div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-section,
  .split-section,
  .recipe-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    padding: 14px 16px;
  }

  .site-header.solid {
    position: relative;
  }

  .brand-mark img {
    width: 42px;
    height: 34px;
  }

  .brand-mark span {
    font-size: .92rem;
  }

  .top-nav {
    gap: 8px;
    font-size: .86rem;
  }

  .top-nav a[href="#details"],
  .top-nav a[href="#faq"] {
    display: none;
  }

  .nav-cta {
    padding: 0 10px;
  }

  .hero {
    min-height: 84svh;
    padding: 96px 18px 46px;
    background:
      linear-gradient(0deg, rgba(4, 26, 34, .68), rgba(4, 26, 34, .32)),
      linear-gradient(90deg, rgba(4, 26, 34, .84), rgba(4, 26, 34, .18)),
      url("hero-glass.jpeg") 62% center / cover no-repeat;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.25rem);
  }

  .button {
    width: 100%;
  }

  .hero-actions .button.ghost {
    display: none;
  }

  .coupon {
    width: 100%;
  }

  .metric-band,
  .feature-grid,
  .image-strip {
    grid-template-columns: 1fr;
  }

  .metric-band div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-band div:last-child {
    border-bottom: 0;
  }

  .image-strip img {
    aspect-ratio: 16 / 11;
  }

  .feature-card {
    min-height: auto;
  }

  .cta-band,
  .site-footer {
    display: grid;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
