@font-face {
  font-family: "DDC Hardware Compressed";
  src: url("assets/DDCHardware-Compressed.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "DDC Hardware Condensed";
  src: url("assets/DDCHardware-Condensed.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "DDC Hardware";
  src: url("assets/DDCHardware-Regular.otf") format("opentype");
  font-display: swap;
}

:root {
  --ink: #241a12;
  --ink-soft: #5c4d3e;
  --black: #050505;
  --white: #fff;
  --paper: #f4ece0;
  --paper-deep: #ece0cf;
  --mist: #d9e0dc;
  --copper: #d8531f;
  --ember: #d8531f;
  --ember-deep: #b53f12;
  --espresso: #3a2a1c;
  --cream: #fbf6ec;
  --line: #cdbfa8;
  --sage: #597167;
  --max: 1080px;
  --wide: 1920px;
  --font-compressed: "DDC Hardware Compressed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-condensed: "DDC Hardware Condensed", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-regular: "DDC Hardware", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: "Fraunces", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--espresso);
  font-family: var(--font-condensed);
  letter-spacing: 0;
}

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

.cloud-shell {
  min-height: 100vh;
  background:
    linear-gradient(rgba(7, 13, 24, .33), rgba(7, 13, 24, .34)),
    url("assets/clouds.jpg") center top / cover fixed;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: linear-gradient(rgba(8, 12, 20, .34), rgba(8, 12, 20, .08));
}

.about-page .site-header,
.legal-page .site-header {
  background:
    linear-gradient(rgba(58,42,28,.88), rgba(58,42,28,.72)),
    url("assets/coffee-shop.jpg") center / cover;
  border-bottom: 1px solid rgba(251,246,236,.16);
}

.nav {
  width: min(1500px, calc(100% - 76px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 3vw, 46px);
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-regular);
  font-size: clamp(1.12rem, 1.42vw, 1.72rem);
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(0,0,0,.55);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 1.65vw, 30px);
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  display: block;
  min-width: clamp(48px, 4vw, 84px);
  font-family: var(--font-condensed);
  color: var(--white);
  text-decoration: none;
  font-size: clamp(1.05rem, 1.18vw, 1.45rem);
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 rgba(0,0,0,.65);
  position: relative;
  padding-top: 18px;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,.38);
}

.nav-links a[aria-current="page"]::before,
.nav-links a:hover::before {
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(5,5,5,.32);
  color: var(--white);
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  width: 22px;
  height: 3px;
  background: currentColor;
  box-shadow: 2px 2px 0 rgba(0,0,0,.5);
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 112px 20px 44px;
  text-align: center;
  color: var(--white);
}

.hero h1,
.page-title,
.section-title {
  font-family: var(--font-compressed);
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(2.55rem, 3.4vw, 5.2rem);
  line-height: .96;
  text-shadow: 6px 7px 0 rgba(0,0,0,.55);
}

.hero-logo {
  width: min(424px, 74vw);
  margin: 48px auto 0;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.45));
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.panel-actions {
  margin-top: 24px;
}

.tagline {
  font-family: var(--font-condensed);
  margin: 58px auto 0;
  max-width: 390px;
  font-size: clamp(1.15rem, 1.55vw, 1.9rem);
  line-height: 1.95;
  text-shadow: 3px 3px 0 rgba(0,0,0,.5);
}

.hero-note {
  max-width: 560px;
  margin: 18px auto 0;
  color: #f2e7d4;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 650;
  line-height: 1.45;
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  text-shadow: 2px 2px 0 rgba(0,0,0,.48);
}

.section {
  padding: clamp(64px, 9vw, 108px) 20px;
}

.black { background: var(--black); color: var(--white); }
.white { background: var(--white); color: var(--ink); }
.paper { background: var(--paper); color: var(--ink); }
.texture {
  background:
    linear-gradient(rgba(28,23,18,.9), rgba(28,23,18,.88)),
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.06), transparent 22%),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,.045), transparent 24%),
    repeating-linear-gradient(12deg, rgba(255,255,255,.035) 0 1px, transparent 1px 5px),
    var(--espresso);
}
.cloud-section {
  background:
    linear-gradient(rgba(19, 28, 35, .42), rgba(19, 28, 35, .34)),
    url("assets/clouds.jpg") center center / cover;
  color: var(--white);
}

.wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

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

.guide-card {
  min-height: 230px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 24px 20px;
  text-decoration: none;
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
}

.guide-card:hover {
  border-color: var(--ember);
  box-shadow: 12px 12px 0 rgba(216,83,31,.18);
}

.guide-card .num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-compressed);
  color: var(--ember);
  font-size: 1.35rem;
}

.guide-card h2 {
  max-width: 78%;
  margin: 18px 0 0;
  font-family: var(--font-regular);
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.guide-card p {
  margin: 0;
}

.guide-link {
  align-self: end;
  margin-top: 8px;
  font-family: var(--font-condensed);
  color: var(--ember-deep);
  text-transform: uppercase;
}

.intro-grid,
.product-hero,
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.launch-panel {
  width: min(1920px, calc(100% - 76px));
  margin: 0 auto;
  background: var(--cream);
  color: var(--black);
  display: grid;
  grid-template-columns: 1.98fr .98fr;
  align-items: stretch;
}

.launch-copy {
  max-width: 520px;
  justify-self: center;
  padding: clamp(54px, 5.4vw, 96px) 20px;
}

.launch-copy .section-title {
  color: var(--black);
  font-size: clamp(2rem, 1.8vw, 2.7rem);
  text-shadow: 4px 4px 0 rgba(0,0,0,.22);
}

.launch-copy .copy {
  font-size: clamp(.95rem, .82vw, 1.1rem);
  line-height: 1.95;
}

.launch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow,
.subhead {
  font-family: var(--font-condensed);
  margin: 0 0 18px;
  color: var(--copper);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  text-transform: uppercase;
}

.stp-strip {
  width: min(1920px, calc(100% - 76px));
  margin: 0 auto 34px;
  background: var(--ember);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px 28px;
  flex-wrap: wrap;
  padding: 12px 28px 10px;
  font-family: var(--font-condensed);
  font-size: clamp(.85rem, .95vw, 1.1rem);
  text-transform: uppercase;
}

.stp-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stp-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.section-label {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  text-transform: uppercase;
  color: var(--ember-deep);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.copy {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 650;
  letter-spacing: .01em;
  line-height: 1.55;
  font-size: 1.05rem;
}

.copy strong {
  color: currentColor;
}

.feature-image,
.person-photo,
.product-image {
  border-radius: 8px;
  box-shadow: 18px 18px 0 rgba(17,10,34,.15);
}

.cta,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px 10px;
  border: 3px solid currentColor;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-condensed);
  font-weight: 400;
  font-size: 1.2rem;
  cursor: pointer;
}

.cta:hover,
button:hover {
  background: var(--copper);
  color: var(--black);
}

.cta-light {
  background: var(--cream);
  color: var(--espresso);
}

.cta-ghost {
  background: transparent;
  color: currentColor;
}

.cta-disabled {
  cursor: not-allowed;
  opacity: .78;
  background: var(--ink-soft);
}

.cta-disabled:hover {
  background: var(--ink-soft);
  color: var(--white);
}

.signup {
  width: min(340px, 100%);
  display: grid;
  grid-template-columns: 1fr 104px;
  gap: 12px 18px;
  margin: 18px auto 0;
}

.signup label {
  font-family: var(--font-condensed);
  display: grid;
  gap: 6px;
  font-size: .78rem;
  text-transform: uppercase;
}

.signup .wide,
.signup .field { grid-column: 1 / -1; }

input[type="text"],
input[type="email"] {
  width: 100%;
  min-height: 30px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: currentColor;
  padding: 10px 12px;
  font: 400 1rem var(--font-regular);
}

.checkbox {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-weight: 400;
  font-size: .7rem;
  text-transform: uppercase;
}

.signup button {
  grid-column: 2;
  min-height: 32px;
  padding: 8px 16px 6px;
  font-size: .75rem;
  align-self: end;
}

.signup-title {
  font-family: var(--font-compressed);
  text-align: center;
  color: var(--white);
  font-size: clamp(2rem, 2vw, 3rem);
  text-shadow: 4px 4px 0 rgba(0,0,0,.6);
}

.page-main { background: var(--white); padding-top: 106px; }

.page-hero {
  padding: clamp(58px, 8vw, 92px) 20px 26px;
  text-align: center;
}

.page-title {
  color: var(--ink);
  text-shadow: none;
}

.info-top {
  background:
    linear-gradient(rgba(58,42,28,.72), rgba(58,42,28,.58)),
    url("assets/coffee-shop.jpg") center / cover;
  padding: 168px 20px 0;
}

.info-panel {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(34px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr minmax(180px, 300px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.65);
}

.info-panel::before,
.info-panel::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -92px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(216,83,31,.28);
  border-radius: 50%;
}

.info-panel::after {
  right: -30px;
  top: -46px;
  width: 190px;
  height: 190px;
  border-color: rgba(251,246,236,.12);
}

.info-panel > * {
  position: relative;
  z-index: 1;
}

.info-panel .page-title {
  color: var(--cream);
  text-shadow: none;
  max-width: 760px;
}

.info-panel .copy {
  max-width: 720px;
  color: #e7d9c4;
}

.info-panel img {
  width: min(280px, 70vw);
  justify-self: center;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
}

.people {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.person {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 32px);
}

.person strong,
.product-card h2,
.legal-content h2,
.legal-content h3 {
  font-family: var(--font-regular);
}

.product-card h2.section-title {
  color: var(--espresso);
  text-shadow: 2px 2px 0 rgba(216,83,31,.32);
}

.recipe-section h2.section-title,
.launch-copy h2.section-title {
  color: var(--espresso);
  text-shadow: 2px 2px 0 rgba(216,83,31,.32);
}

.story-band {
  margin-top: 60px;
  background: var(--espresso);
  color: var(--cream);
}

.story-band img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.story-copy {
  padding: 36px;
}

.story-copy .section-title {
  color: var(--cream);
  text-shadow: none;
}

.story-copy .copy {
  color: #e7d9c4;
}

.recipe-section {
  background:
    linear-gradient(rgba(244,236,224,.96), rgba(236,224,207,.96)),
    repeating-linear-gradient(90deg, rgba(58,42,28,.05) 0 1px, transparent 1px 12px);
  color: var(--ink);
}

.recipe-head {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.recipe-head .copy {
  margin: 0;
  max-width: 620px;
}

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

.recipe-carousel {
  position: relative;
  padding: 0 54px;
}

.recipe-window {
  overflow: hidden;
}

.recipe-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 18px;
  scroll-padding-inline: 50%;
}

.recipe-track::-webkit-scrollbar {
  display: none;
}

.recipe-card {
  position: relative;
  flex: 0 0 min(420px, 88vw);
  min-height: 560px;
  background: var(--cream);
  border: 2px solid rgba(36,26,18,.72);
  padding: 28px clamp(18px, 2.2vw, 28px);
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: hidden;
  scroll-snap-align: center;
}

.recipe-card::before,
.recipe-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(36,26,18,.58);
  pointer-events: none;
}

.recipe-card::after {
  inset: 54px 22px 32px;
  border-radius: 50%;
  opacity: .72;
}

.recipe-visual {
  width: 148px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 4px;
  border: 2px solid rgba(216,83,31,.78);
  display: grid;
  place-items: center;
  color: var(--cream);
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 1.15rem;
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 rgba(0,0,0,.55);
  position: relative;
  z-index: 1;
}

.recipe-visual::before {
  content: "";
  position: absolute;
  inset: 21%;
  border-radius: 18px 18px 34px 34px;
  background: rgba(251,246,236,.9);
  box-shadow: inset 0 -18px 0 rgba(216,83,31,.28), 0 10px 18px rgba(0,0,0,.2);
  z-index: -1;
}

.recipe-vanilla { background: linear-gradient(135deg, #201611, #caa377); }
.recipe-gold { background: linear-gradient(135deg, #183725, #d2a844); }
.recipe-affogato { background: linear-gradient(135deg, #3a1e16, #f0d7ac); }
.recipe-caramel { background: linear-gradient(135deg, #5a2c16, #d88539); }
.recipe-tea { background: linear-gradient(135deg, #766221, #d8c375); }
.recipe-chocolate { background: linear-gradient(135deg, #3b1814, #94503b); }

.recipe-status {
  width: max-content;
  margin: 0 auto;
  padding: 5px 10px 4px;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--font-condensed);
  text-transform: uppercase;
  font-size: .95rem;
  position: relative;
  z-index: 1;
}

.recipe-status.soon {
  background: var(--ember);
}

.recipe-card h3 {
  font-family: var(--font-regular);
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.45rem, 1.75vw, 2rem);
  line-height: 1;
  margin: 6px 0 0;
  position: relative;
  z-index: 1;
}

.recipe-kicker,
.dose {
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.recipe-kicker {
  color: var(--ember);
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 650;
  font-size: 1.14rem;
}

.dose {
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 650;
  font-size: .88rem;
}

.recipe-card ul {
  margin: 8px 0 0;
  padding-left: 22px;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 650;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.recipe-card .copy {
  margin: 2px 0 0;
  font-size: .98rem;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.recipe-card.coming-soon {
  background:
    linear-gradient(rgba(251,246,236,.72), rgba(251,246,236,.72)),
    var(--cream);
}

.recipe-note {
  margin-top: 24px;
  background: var(--espresso);
  color: var(--cream);
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 30px);
}

.recipe-note .copy {
  margin: 0;
  color: #e7d9c4;
}

.recipe-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  min-height: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid var(--espresso);
  border-radius: 999px;
  background: rgba(58,42,28,.94);
  color: var(--cream);
  font-family: Arial, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.recipe-control span {
  transform: translateY(-2px);
}

.recipe-control:hover {
  background: var(--ember);
  color: var(--black);
}

.recipe-prev {
  left: 0;
}

.recipe-next {
  right: 0;
}

.recipe-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.recipe-dot {
  width: 12px;
  height: 12px;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--espresso);
  border-radius: 50%;
  background: transparent;
}

.recipe-dot[aria-current="true"] {
  background: var(--ember);
}

.product-top {
  background:
    linear-gradient(rgba(58,42,28,.72), rgba(58,42,28,.56)),
    url("assets/coffee-shop.jpg") center / cover;
  padding: 168px 20px 0;
}

.product-panel {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(34px, 5vw, 58px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -24px rgba(0,0,0,.65);
}

.product-panel::before,
.product-panel::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -92px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(216,83,31,.28);
  border-radius: 50%;
}

.product-panel::after {
  right: -30px;
  top: -46px;
  width: 190px;
  height: 190px;
  border-color: rgba(251,246,236,.12);
}

.product-hero {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.18fr .62fr .38fr;
}

.product-hero .page-title {
  color: var(--cream);
  text-shadow: none;
}

.product-hero .subhead {
  color: var(--ember);
}

.product-hero .copy {
  color: #e7d9c4;
  max-width: 680px;
}

.product-hero img {
  max-height: 330px;
  justify-self: center;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
}

.product-stat {
  justify-self: end;
  text-align: right;
  border-left: 1px solid rgba(251,246,236,.18);
  padding-left: 24px;
}

.product-stat .big {
  font-family: var(--font-compressed);
  font-size: clamp(4.2rem, 7vw, 7.5rem);
  color: var(--ember);
  line-height: .82;
  text-transform: uppercase;
}

.product-stat .small {
  font-family: var(--font-condensed);
  font-size: 1rem;
  color: #bdaa90;
  text-transform: uppercase;
}

.product-list {
  display: grid;
  gap: 80px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(190px, 320px) 1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 42px);
}

.product-card:nth-child(even) {
  grid-template-columns: 1fr minmax(190px, 320px);
}

.product-card:nth-child(even) .product-image {
  order: 2;
}

.product-card ul,
.legal-list {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 650;
  line-height: 1.6;
}

.sell-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.snapshot-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.snapshot-list li {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 650;
  line-height: 1.4;
  color: var(--espresso);
  padding-left: 24px;
  position: relative;
}

.snapshot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  background: var(--ember);
  border-radius: 2px;
  transform: rotate(45deg);
}

.pull {
  margin-top: 20px;
  border-left: 4px solid var(--ember);
  padding: 8px 0 8px 18px;
  font-family: var(--font-condensed);
  font-size: clamp(1.1rem, 1.45vw, 1.45rem);
  color: var(--ink);
  text-transform: uppercase;
}

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

.flavor-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 22px 18px;
  position: relative;
  min-height: 162px;
}

.flavor-card .num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--font-compressed);
  color: var(--ember);
  font-size: 1.35rem;
}

.flavor-card h3 {
  font-family: var(--font-regular);
  font-size: clamp(1.35rem, 1.75vw, 1.85rem);
  text-transform: uppercase;
  margin: 20px 0 10px;
  line-height: 1.02;
}

.flavor-card p {
  margin: 0;
}

.fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.fit-tags span {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 650;
  color: var(--espresso);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
}

.pitch-line {
  background: var(--ember);
  color: var(--cream);
  padding: clamp(22px, 4vw, 36px);
}

.pitch-line .section-label {
  color: var(--cream);
  margin-bottom: 8px;
}

.pitch-line .section-label::after {
  background: rgba(251,246,236,.4);
}

.compliance {
  background: var(--espresso);
  color: var(--cream);
  display: flex;
  gap: 18px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
}

.age-badge {
  width: 64px;
  height: 64px;
  border: 3px solid var(--ember);
  color: var(--ember);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-family: var(--font-compressed);
  font-size: 1.55rem;
}

.compliance p {
  margin: 0;
  color: #c3b094;
  font-size: .95rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  background: var(--cream);
  box-shadow: 0 24px 50px rgba(0,0,0,.22);
}

.legal-nav {
  background: var(--espresso);
  color: var(--white);
  padding: clamp(38px, 7vw, 72px);
  display: grid;
  align-content: start;
  gap: 18px;
}

.legal-nav a {
  font-family: var(--font-condensed);
  border: 3px solid currentColor;
  padding: 12px 16px 9px;
  text-decoration: none;
  text-align: center;
}

.legal-content {
  padding: clamp(38px, 7vw, 72px);
}

.legal-content h2,
.legal-content h3 {
  text-transform: uppercase;
}

.site-footer {
  padding: 34px 20px;
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  font-family: var(--font-condensed);
  font-weight: 400;
}

.site-footer a { color: var(--white); }

@media (max-width: 760px) {
  .site-header {
    position: absolute;
  }

  .nav {
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 28px, var(--wide));
    gap: 14px;
  }

  .brand {
    gap: 9px;
    max-width: calc(100% - 60px);
  }

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

  .brand-name {
    font-size: clamp(1.18rem, 6vw, 1.7rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 4px);
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 28px));
    gap: 0;
    padding: 10px;
    background:
      linear-gradient(rgba(20, 31, 50, .96), rgba(20, 31, 50, .92));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 18px 34px rgba(0,0,0,.32);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 12;
  }

  .about-page .nav-links,
  .legal-page .nav-links,
  body:not(.home-page) .nav-links {
    background:
      linear-gradient(rgba(58,42,28,.97), rgba(58,42,28,.94));
  }

  .site-header.is-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    min-width: 0;
    padding: 15px 12px 13px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    font-size: 1.45rem;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::before {
    top: auto;
    bottom: 0;
    left: 12px;
    width: calc(100% - 24px);
    height: 2px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 92px 20px 30px;
  }

  .hero-logo {
    width: min(300px, 72vw);
    margin-top: 30px;
  }

  .tagline {
    margin-top: 34px;
    line-height: 1.45;
  }

  .hero-note {
    margin-top: 12px;
    font-size: .98rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .intro-grid,
  .product-hero,
  .sell-grid,
  .info-panel,
  .split,
  .recipe-head,
  .person,
  .product-card,
  .product-card:nth-child(even),
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .launch-panel {
    width: min(100% - 40px, 520px);
    grid-template-columns: 1fr;
  }

  .stp-strip {
    width: min(100% - 40px, 520px);
    justify-content: flex-start;
  }

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

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

  .recipe-carousel {
    padding: 0;
  }

  .recipe-window {
    margin-inline: -2px;
  }

  .recipe-control {
    top: auto;
    bottom: -54px;
    transform: none;
  }

  .recipe-prev {
    left: 0;
  }

  .recipe-next {
    right: 0;
  }

  .recipe-card {
    flex-basis: min(420px, calc(100vw - 46px));
    min-height: auto;
  }

  .recipe-dots {
    margin: 18px 52px 0;
  }

  .recipe-note {
    margin-top: 76px;
    align-items: flex-start;
    flex-direction: column;
  }

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

  .product-stat {
    justify-self: start;
    text-align: left;
    border-left: 0;
    border-top: 1px solid rgba(251,246,236,.18);
    padding-left: 0;
    padding-top: 20px;
  }

  .product-card:nth-child(even) .product-image {
    order: 0;
  }

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

  .checkbox,
  .signup button {
    grid-column: 1;
  }

  .product-top {
    padding-top: 92px;
  }
}
