/* ==========================================================================
   Burntide — Design System
   Display: Bricolage Grotesque · Body: Inter · Data/Labels: IBM Plex Mono
   Signature motif: the "tide line" — a flame-to-ember gradient wave that
   marks every section transition, literalizing "Burn" + "Tide".
   ========================================================================== */

:root {
  --burntide-orange: #F17E12;
  --burntide-orange-dark: #C2570A;
  --burntide-ember: #D94F1E;
  --burntide-dark: #2B1608;
  --burntide-cream: #FFF7ED;
  --burntide-cream-deep: #FBEAD7;
  --burntide-white: #FFFFFF;
  --burntide-muted: #6B625B;
  --burntide-line: #EEDFCB;
  --burntide-focus: #1E5FD9;

  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 32px -18px rgba(43, 22, 8, 0.35);
  --shadow-lift: 0 20px 48px -20px rgba(43, 22, 8, 0.45);
  --max-width: 1180px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--burntide-cream);
  color: var(--burntide-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto is what keeps the width/height attributes on every <img> from
   squashing the picture once max-width scales it down. The attributes stay:
   they give the browser the aspect ratio up front and prevent layout shift. */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.2em; }

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--burntide-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; }
.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--burntide-orange-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--burntide-orange);
  display: inline-block;
}
.lede {
  font-size: 1.15rem;
  color: var(--burntide-muted);
  max-width: 62ch;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--burntide-dark);
  color: var(--burntide-cream);
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 237, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--burntide-line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--burntide-dark);
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--burntide-orange), var(--burntide-ember));
  color: var(--burntide-cream);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 800;
  flex: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.96rem;
}
.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { border-color: var(--burntide-orange); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--burntide-line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-row.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--burntide-cream);
    border-bottom: 1px solid var(--burntide-line);
    padding: 12px 24px 20px;
  }
  .nav-row { position: relative; }
  .nav-row.is-open .nav-links a { padding: 10px 0; width: 100%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--burntide-orange), var(--burntide-ember));
  color: var(--burntide-cream);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-secondary {
  background: transparent;
  border-color: var(--burntide-dark);
  color: var(--burntide-dark);
}
.btn-secondary:hover { background: var(--burntide-dark); color: var(--burntide-cream); }
.btn-ghost {
  background: var(--burntide-white);
  border-color: var(--burntide-line);
  color: var(--burntide-dark);
}
.btn-ghost:hover { border-color: var(--burntide-orange); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---------- Tide divider (signature element) ---------- */
.tide-divider {
  width: 100%;
  height: 64px;
  display: block;
  margin: 0;
}
.tide-divider path { fill: var(--burntide-cream); }
.tide-divider.flip path { fill: var(--burntide-dark); }
.section-cream { background: var(--burntide-cream); }
.section-white { background: var(--burntide-white); }
.section-deep { background: var(--burntide-cream-deep); }
.section-dark { background: var(--burntide-dark); color: var(--burntide-cream); }
.section-dark h2, .section-dark h3 { color: var(--burntide-cream); }
.section-dark .lede { color: #D8C6B4; }

section { padding: 76px 0; }
@media (max-width: 640px) { section { padding: 52px 0; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 0;
  background: radial-gradient(120% 140% at 15% 0%, #FFE7C7 0%, var(--burntide-cream) 55%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 40px;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cta-row { justify-content: center; }
  .hero-badges { justify-content: center; }
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--burntide-muted);
}
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--burntide-orange); }
.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-art img {
  max-width: 92%;
  filter: drop-shadow(0 30px 45px rgba(43,22,8,0.28));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art img { animation: none; }
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: linear-gradient(135deg, rgba(241,126,18,0.35), rgba(217,79,30,0.05));
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 940px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .card-grid.cols-2 { grid-template-columns: 1fr; } }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid.cols-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--burntide-white);
  border: 1px solid var(--burntide-line);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: transparent; }
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--burntide-cream-deep);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--burntide-muted); margin-bottom: 0; font-size: 0.96rem; }

.section-head {
  max-width: 660px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head.left { margin: 0 0 44px; text-align: left; }

/* ---------- Ingredient rows ---------- */
.ingredient-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid var(--burntide-line);
}
.ingredient-block:last-child { border-bottom: none; }
.ingredient-block:nth-child(even) .ingredient-visual { order: 2; }
@media (max-width: 860px) {
  .ingredient-block { grid-template-columns: 1fr; }
  .ingredient-block:nth-child(even) .ingredient-visual { order: 0; }
}
.ingredient-visual {
  background: var(--burntide-cream-deep);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  place-items: center;
  min-height: 220px;
}
.ingredient-visual .glyph { font-size: 3.4rem; }
.ingredient-number {
  font-family: var(--font-mono);
  color: var(--burntide-orange-dark);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--burntide-cream-deep);
  color: var(--burntide-orange-dark);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--burntide-line); }
table { width: 100%; border-collapse: collapse; background: var(--burntide-white); min-width: 480px; }
th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--burntide-line); font-size: 0.96rem; }
th { font-family: var(--font-mono); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--burntide-muted); background: var(--burntide-cream-deep); }
tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--burntide-line);
}
.faq-item:first-child { border-top: 1px solid var(--burntide-line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 22px 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--burntide-dark);
}
.faq-q .plus { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--burntide-orange); display: grid; place-items: center; transition: transform 0.2s ease; font-family: var(--font-body); }
.faq-item[data-open="true"] .plus { transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
  color: var(--burntide-muted);
}
.faq-a-inner { padding: 0 4px 22px; max-width: 68ch; }

/* ---------- Badges row ---------- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.badge-row img { height: 56px; width: auto; opacity: 0.92; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--burntide-dark);
  color: #E9DACB;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(233, 218, 203, 0.15);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--burntide-cream); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-mono); margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: #D8C6B4; font-size: 0.94rem; }
.footer-grid a:hover { color: var(--burntide-orange); }
.footer-brand p { color: #C9B6A3; font-size: 0.92rem; max-width: 34ch; }
.footer-legal {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #B8A38E;
}
.disclaimer-box {
  background: rgba(255,247,237,0.06);
  border: 1px solid rgba(233,218,203,0.18);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  font-size: 0.86rem;
  color: #C9B6A3;
  margin-top: 40px;
  line-height: 1.65;
}

/* ---------- Disclaimer inline ---------- */
.notice {
  background: var(--burntide-cream-deep);
  border-left: 4px solid var(--burntide-orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  font-size: 0.92rem;
  color: var(--burntide-muted);
  margin: 28px 0;
}
.notice strong { color: var(--burntide-dark); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--burntide-muted);
  padding: 18px 0 0;
}
.breadcrumbs a { color: var(--burntide-orange-dark); font-weight: 600; }
.breadcrumbs .sep { margin: 0 6px; opacity: 0.6; }

/* ---------- Blog cards ---------- */
.blog-card {
  background: var(--burntide-white);
  border: 1px solid var(--burntide-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.blog-card .thumb {
  aspect-ratio: 4/3;
  background: var(--burntide-cream-deep);
  overflow: hidden;
  position: relative;
}
.blog-card .thumb img {
  width: 100%;
  height: 100%;
  /* contain, not cover: these thumbnails are product shots and portrait guide
     covers, and cropping them to 4:3 was cutting jars in half and slicing the
     bottom off the cover artwork. The cream card background does the framing. */
  object-fit: contain;
  padding: 14px;
  display: block;
  transition: transform 0.35s ease;
}
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .thumb .thumb-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(43, 22, 8, 0.78);
  color: var(--burntide-cream);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
}
.blog-card .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card .meta { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--burntide-orange-dark); }
.blog-card p { color: var(--burntide-muted); font-size: 0.92rem; flex: 1; }
.blog-card .read-more { font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.blog-card .read-more::after { content: "→"; transition: transform 0.15s ease; }
.blog-card:hover .read-more::after { transform: translateX(4px); }

/* ---------- Article ---------- */
.article-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.article-shell h2 { margin-top: 1.6em; }
.article-shell h3 { margin-top: 1.4em; }
.article-shell p, .article-shell li { color: #3B2A1C; }
.article-shell .lede { color: var(--burntide-muted); }
.article-header { padding: 44px 0 30px; text-align: left; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--burntide-muted); margin-bottom: 18px; }
.toc {
  background: var(--burntide-cream-deep);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 28px 0 40px;
}
.toc h4 { font-family: var(--font-mono); text-transform: uppercase; font-size: 0.76rem; letter-spacing: 0.08em; margin-bottom: 12px; }
.toc ul { margin: 0; padding-left: 1.1em; }
.toc a { color: var(--burntide-orange-dark); font-weight: 600; }
.cross-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 36px 0;
}
@media (max-width: 600px) { .cross-links { grid-template-columns: 1fr; } }
.cross-link-card {
  border: 1px solid var(--burntide-line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-weight: 700;
  background: var(--burntide-white);
}
.cross-link-card span { display: block; font-family: var(--font-mono); text-transform: uppercase; font-size: 0.68rem; color: var(--burntide-muted); font-weight: 500; margin-bottom: 6px; letter-spacing: 0.05em; }
.author-box {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--burntide-white);
  border: 1px solid var(--burntide-line);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 40px 0;
}
.author-box .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--burntide-orange), var(--burntide-ember));
  flex: none;
}

/* ---------- Article figures ---------- */
.article-figure {
  margin: 32px 0;
}
.article-figure img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: var(--burntide-cream-deep);
  border-radius: var(--radius-md);
  border: 1px solid var(--burntide-line);
  display: block;
  margin: 0 auto;
}
.article-figure.feature img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-figure.portrait {
  text-align: center;
}
.article-figure.portrait img {
  width: auto;
  max-width: 320px;
  max-height: 460px;
  margin: 0 auto;
}
.article-figure figcaption {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--burntide-muted);
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.03em;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(120deg, #2B1608, #46250E);
  color: var(--burntide-cream);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 100% at 50% 0%, rgba(241,126,18,0.35), transparent 70%);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { color: var(--burntide-cream); }
.final-cta .lede { color: #E4CDB6; margin: 0 auto 30px; }
.final-cta .hero-cta-row { justify-content: center; margin-top: 0; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 940px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.price-card {
  background: var(--burntide-white);
  border: 1px solid var(--burntide-line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.price-card.featured {
  border: 2px solid var(--burntide-orange);
  box-shadow: var(--shadow-lift);
  transform: scale(1.03);
}
@media (max-width: 940px) { .price-card.featured { transform: none; } }
.price-card .ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--burntide-orange), var(--burntide-ember));
  color: var(--burntide-cream);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .plan-name { font-family: var(--font-mono); text-transform: uppercase; font-size: 0.76rem; letter-spacing: 0.08em; color: var(--burntide-muted); margin-bottom: 6px; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 2px; }
.price-card .supply { color: var(--burntide-muted); font-size: 0.88rem; margin-bottom: 18px; }
.price-card .per-bottle { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--burntide-orange-dark); line-height: 1; }
.price-card .per-bottle span { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--burntide-muted); }
.price-card .price-row { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 18px; }
.price-card .was { text-decoration: line-through; color: var(--burntide-muted); font-size: 1rem; }
.price-card .now { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; }
.price-card .save-pill {
  background: var(--burntide-cream-deep);
  color: var(--burntide-orange-dark);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  text-align: center;
}
.price-card ul.perk-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-card ul.perk-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--burntide-dark); }
.price-card ul.perk-list li.muted { color: var(--burntide-muted); }
.price-card ul.perk-list .mark { flex: none; width: 18px; height: 18px; border-radius: 50%; display: grid; place-items: center; font-size: 0.7rem; }
.price-card ul.perk-list li:not(.muted) .mark { background: var(--burntide-orange); color: var(--burntide-cream); }
.price-card ul.perk-list li.muted .mark { background: var(--burntide-line); color: var(--burntide-muted); }
.bonus-strip { display: flex; gap: 10px; margin-bottom: 20px; }
.bonus-strip img { width: 44px; height: auto; border-radius: 6px; border: 1px solid var(--burntide-line); }

/* ---------- 404 ---------- */
.error-hero { text-align: center; padding: 100px 0 60px; }
.error-code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 8rem);
  background: linear-gradient(120deg, var(--burntide-orange), var(--burntide-ember));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: flex; flex-direction: column; gap: 10px; }
.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 8px;
}
.pill-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--burntide-line);
  background: var(--burntide-white);
}
.pill-nav a:hover { border-color: var(--burntide-orange); color: var(--burntide-orange-dark); }

.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;
}

/* ==========================================================================
   Purchase notification popup
   Slides in from the left edge. Deliberately anchored bottom-left and given a
   modest z-index so it never sits over the sticky nav or a CTA button, and it
   is pointer-transparent except for its own close control.
   ========================================================================== */

.buy-pop {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 320px;
  max-width: calc(100vw - 36px);
  padding: 12px 38px 12px 12px;
  background: var(--burntide-white);
  border: 1px solid var(--burntide-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  transform: translateX(calc(-100% - 24px));
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, visibility 0.5s;
}

.buy-pop.is-in { transform: translateX(0); opacity: 1; visibility: visible; }

.buy-pop img {
  width: 52px;
  height: auto;
  flex: 0 0 52px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--burntide-line);
  background: var(--burntide-cream);
}

.buy-pop-body { min-width: 0; }
.buy-pop-name { font-weight: 700; font-size: 0.9rem; line-height: 1.3; }
.buy-pop-what { font-size: 0.82rem; color: var(--burntide-muted); line-height: 1.4; }
.buy-pop-when {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: var(--burntide-orange-dark);
  text-transform: uppercase;
}

.buy-pop-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--burntide-muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.buy-pop-close:hover { background: var(--burntide-cream); color: var(--burntide-dark); }

@media (max-width: 560px) {
  /* Full-bleed on phones, but still clear of the thumb zone and any sticky CTA. */
  .buy-pop { left: 10px; right: 10px; bottom: 10px; width: auto; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .buy-pop { transition: opacity 0.2s ease, visibility 0.2s; transform: none; }
}

/* ==========================================================================
   Final CTA — product shot beside the call to action
   ========================================================================== */

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  text-align: left;
}

.final-cta-shot img {
  width: 100%;
  height: auto;              /* natural aspect ratio, never cropped */
  max-width: 320px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(43, 22, 8, 0.45));
}

@media (max-width: 820px) {
  .final-cta-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .final-cta-shot img { max-width: 240px; }
}

/* ==========================================================================
   References / sources
   ========================================================================== */

.ref-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.ref-list li {
  padding-left: 16px;
  border-left: 3px solid var(--burntide-line);
  font-size: 0.95rem;
  color: var(--burntide-muted);
}
.ref-list a {
  color: var(--burntide-orange-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.ref-list a:hover { color: var(--burntide-ember); }
.ref-source { display: block; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }

/* .final-cta centres its text; the grid layout needs the copy column left-aligned
   and the lede's auto side-margins removed so it does not re-centre itself. */
.final-cta .final-cta-grid .lede { margin-left: 0; margin-right: 0; }
.final-cta .final-cta-grid .hero-cta-row { justify-content: flex-start; }
.final-cta-note {
  margin: 18px 0 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #E4CDB6;
}
@media (max-width: 820px) {
  .final-cta .final-cta-grid .lede { margin-left: auto; margin-right: auto; }
  .final-cta .final-cta-grid .hero-cta-row { justify-content: center; }
}

/* === network upgrade: popup + sources === */
.np-pop {
  position: fixed; left: 18px; bottom: 18px; z-index: 60;
  display: flex; align-items: center; gap: 12px;
  width: 320px; max-width: calc(100vw - 36px);
  padding: 12px 38px 12px 12px;
  background: #fff; color: #1c1c1c;
  border: 1px solid rgba(0,0,0,0.10); border-radius: 16px;
  box-shadow: 0 18px 44px -18px rgba(0,0,0,0.45);
  font-family: inherit; text-align: left;
  transform: translateX(calc(-100% - 24px)); opacity: 0; visibility: hidden;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .5s ease, visibility .5s;
}
.np-pop.is-in { transform: translateX(0); opacity: 1; visibility: visible; }
.np-pop img {
  width: 52px; height: auto; flex: 0 0 52px;
  border-radius: 10px; border: 1px solid rgba(0,0,0,0.08); background: #fafafa;
}
.np-pop-body { min-width: 0; }
.np-pop-name { font-weight: 700; font-size: .9rem; line-height: 1.3; }
.np-pop-what { font-size: .82rem; opacity: .72; line-height: 1.4; }
.np-pop-when { font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; opacity: .6; margin-top: 2px; }
.np-pop-close {
  position: absolute; top: 6px; right: 6px; width: 26px; height: 26px;
  border: 0; border-radius: 50%; background: transparent; color: inherit;
  opacity: .5; font-size: 1rem; line-height: 1; cursor: pointer;
}
.np-pop-close:hover { opacity: 1; background: rgba(0,0,0,0.06); }
@media (max-width: 560px) {
  /* not edge-to-edge on phones: a full-bleed card sits on top of the
     full-width CTA buttons these pages use, so leave the right side free */
  .np-pop { left: 10px; right: auto; bottom: 10px; width: min(300px, calc(100vw - 84px)); max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .np-pop { transition: opacity .2s ease, visibility .2s; transform: none; }
}

.np-sources { padding: 56px 0; }
.np-sources .np-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.np-sources h2 { margin: 0 0 10px; }
.np-sources .np-intro { opacity: .75; max-width: 62ch; margin: 0 0 26px; }
.np-ref-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.np-ref-list li { padding-left: 16px; border-left: 3px solid rgba(0,0,0,0.12); font-size: .95rem; }
.np-ref-list a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.np-ref-src { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; opacity: .6; margin-top: 2px; }
