/* ─── Fonts & Tokens ─────────────────────────────────────────── */
:root {
  --bg:         #faf7f0;
  --bg-2:       #f0ebe0;
  --fg:         #1a1510;
  --fg-muted:   #5c5048;
  --fg-faint:   #9c8e84;
  --accent:     #c06a1a;
  --accent-2:   #e8a84a;
  --surface:    #ffffff;
  --border:     #e4dcc8;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Navbar ─────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.topbar-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.topbar-nav a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 500;
  transition: color 0.15s;
}
.topbar-nav a:hover { color: var(--fg); }
.topbar-nav--active { color: var(--fg) !important; font-weight: 600; }
.nav-cta {
  background: var(--fg) !important;
  color: var(--bg) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.825rem !important;
  transition: opacity 0.15s !important;
}
.nav-cta:hover { opacity: 0.8; }
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
}
.topbar .tagline,
.footer-by {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  margin-bottom: 2.5rem;
}
.pill {
  display: inline-block;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--fg);
  display: flex;
  flex-direction: column;
}
.hl-line { display: block; }
.hl-italic {
  font-style: italic;
  color: var(--accent);
}
.hero-aside {
  padding-top: 0.5rem;
}
.price-callout {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.4rem;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}
.price-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: center;
}
.price-value {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.price-unit {
  font-size: 0.85rem;
  color: var(--fg-muted);
  align-self: flex-end;
  padding-bottom: 0.3rem;
}
.hero-body {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
  letter-spacing: 0.02em;
}

/* link from hero to brew guide */
.hero-brew-link { margin-top: 1.75rem; }
.hero-brew-cta {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid rgba(192, 106, 26, 0.3);
  padding-bottom: 0.1rem;
  transition: border-color 0.15s, color 0.15s;
}
.hero-brew-cta:hover { color: #b05f15; border-color: #b05f15; }

/* ─── Manifesto ───────────────────────────────────────────────── */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 6rem 2rem;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 2rem;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  color: var(--bg);
  margin-bottom: 2rem;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(250, 247, 240, 0.65);
  line-height: 1.75;
  margin-bottom: 3.5rem;
}
.manifesto-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(250, 247, 240, 0.15);
  padding-top: 2.5rem;
}
.stat {
  padding: 0 2.5rem 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-2);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(250, 247, 240, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(250, 247, 240, 0.15);
  margin-right: 2.5rem;
}

/* ─── Roasts ─────────────────────────────────────────────────── */
.roasts {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.roasts-header {
  margin-bottom: 3.5rem;
}
.roasts-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.roasts-sub {
  color: var(--fg-muted);
  font-size: 1rem;
}
.roast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.roast-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 21, 16, 0.06);
}
.roast-swatch {
  height: 6px;
}
.roast-card--bites .roast-swatch { background: #8b6b4a; }
.roast-card--panther .roast-swatch { background: #2e1a0d; }
.roast-card--velour .roast-swatch { background: #c9a87c; }
.roast-body {
  padding: 1.75rem;
}
.roast-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.roast-origin {
  font-size: 0.75rem;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.roast-notes {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.roast-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}
.roast-size {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--fg-muted);
}

/* ─── Difference ─────────────────────────────────────────────── */
.difference {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.diff-header {
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.diff-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.diff-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.65;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.diff-item { }
.diff-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.diff-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.diff-item p {
  font-size: 0.825rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ─── Closer ─────────────────────────────────────────────────── */
.closer {
  padding: 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closer-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.closer-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}
.closer-cta {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--fg);
  color: var(--bg);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.footer-brand .wordmark {
  color: var(--bg);
  font-size: 1rem;
}
.footer-meta {
  font-size: 0.75rem;
  color: rgba(250, 247, 240, 0.4);
}

/* ─── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-headline {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }
  .price-value { font-size: 3rem; }

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

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

  .manifesto-stat-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .stat-divider { display: none; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.25rem 3rem; }
  .manifesto { padding: 4rem 1.25rem; }
  .roasts, .difference { padding: 4rem 1.25rem; }
  .closer { padding: 5rem 1.25rem; }
  .diff-grid { grid-template-columns: 1fr; }
}

/* ─── Waitlist ───────────────────────────────────────────────── */
.waitlist {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
}
.waitlist-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.waitlist-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 0.75rem;
}
.waitlist-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(250,247,240,0.65);
}
.waitlist-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.wf-group { display: flex; flex-direction: column; gap: 0.35rem; }
.wf-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(250,247,240,0.55);
}
.wf-required { color: var(--accent-2); }
.wf-optional { color: rgba(250,247,240,0.35); font-style: italic; text-transform: none; letter-spacing: 0; }
.wf-input {
  background: rgba(250,247,240,0.07);
  border: 1px solid rgba(250,247,240,0.18);
  border-radius: 6px;
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.15s;
}
.wf-input::placeholder { color: rgba(250,247,240,0.3); }
.wf-input:focus {
  outline: none;
  border-color: var(--accent-2);
}
.wf-submit {
  background: var(--accent);
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  width: 100%;
  transition: background 0.15s, opacity 0.15s;
}
.wf-submit:hover { background: #b05f15; }
.wf-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.wf-message {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  min-height: 1.2em;
}
.wf-message--error { color: #f87171; }
.wf-message--success { color: var(--accent-2); }
.wf-success-msg {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--accent-2);
  line-height: 1.5;
  padding: 0.5rem 0;
}

/* ─── Calculator ─────────────────────────────────────────────── */
.calculator {
  padding: 6rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.calc-header {
  max-width: 640px;
  margin-bottom: 3rem;
}
.calc-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.calc-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.calc-sub {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.calc-slider-row {
  margin-bottom: 2.5rem;
}
.calc-slider-label {
  display: block;
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
}
.calc-slider-label strong {
  color: var(--fg);
  font-size: 1.1rem;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 480px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--surface);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 2px solid var(--surface);
}
.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  max-width: 480px;
  margin-top: 0.3rem;
  font-size: 0.7rem;
  color: var(--fg-faint);
}
.calc-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.calc-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.calc-col--featured {
  border-color: var(--accent);
  box-shadow: 0 2px 16px rgba(192, 106, 26, 0.12);
}
.calc-col-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.calc-col-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--fg-faint);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.calc-col-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.calc-col-unit {
  font-size: 0.75rem;
  color: var(--fg-faint);
  margin-bottom: 0.75rem;
}
.calc-annual-savings {
  background: rgba(192,106,26,0.08);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  margin: 0.5rem 0;
}
.calc-annual-savings--vs-grocery {
  background: rgba(92,80,72,0.06);
}
.calc-savings-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}
.calc-annual-savings--vs-grocery .calc-savings-val {
  color: var(--fg-muted);
}
.calc-col-annual {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.calc-annual-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}
.calc-annual-label {
  font-size: 0.75rem;
  color: var(--fg-faint);
  display: block;
}
.calc-cups-note {
  font-size: 0.7rem;
}
.calc-col-source {
  font-size: 0.7rem;
  color: var(--fg-faint);
  line-height: 1.5;
  margin-top: 0.5rem;
}
.calc-source-cite {
  font-size: 0.65rem;
  opacity: 0.75;
}
.calc-footnote {
  font-size: 0.72rem;
  color: var(--fg-faint);
  line-height: 1.65;
  max-width: 700px;
}
.calc-footnote a {
  color: var(--accent);
  text-decoration: underline;
}

/* ─── Responsive: Waitlist & Calculator ─────────────────────── */
@media (max-width: 768px) {
  .waitlist-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .calc-columns {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .waitlist { padding: 4rem 1.25rem; }
  .calculator { padding: 4rem 1.25rem; }
}

/* ─── Brew Hero ───────────────────────────────────────────────── */
.brew-hero {
  padding: 4rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.brew-hero-inner { max-width: 700px; }
.brew-eyebrow { margin-bottom: 2rem; }
.brew-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.brew-intro {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
}

/* ─── Brew Methods ────────────────────────────────────────────── */
.brew-methods {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.brew-methods-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.methods-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
  margin-bottom: 2.5rem;
}
.method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px rgba(26, 21, 16, 0.05);
}
.method-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.method-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.method-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
}
.method-tagline {
  font-size: 0.825rem;
  color: var(--fg-faint);
  margin-top: 0.15rem;
}
.method-specs {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.spec-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.spec-key {
  font-size: 0.8rem;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 0.05rem;
}
.spec-val {
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
}
.method-mistake {
  background: rgba(192, 106, 26, 0.06);
  border: 1px solid rgba(192, 106, 26, 0.15);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.mistake-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.mistake-body {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─── Equipment ───────────────────────────────────────────────── */
.brew-equipment {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.brew-equipment-inner { max-width: 800px; }
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
}
.section-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.equipment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}
.equipment-card--skip {
  border-color: rgba(156, 142, 132, 0.3);
  background: rgba(156, 142, 132, 0.04);
}
.equipment-card--buy {
  border-color: rgba(192, 106, 26, 0.2);
}
.eq-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.eq-icon--skip {
  background: rgba(156, 142, 132, 0.1);
  color: var(--fg-faint);
}
.eq-icon--buy {
  background: rgba(192, 106, 26, 0.1);
  color: var(--accent);
}
.eq-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.eq-reason {
  font-size: 0.825rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.equipment-summary {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Storage ─────────────────────────────────────────────────── */
.brew-storage {
  background: var(--fg);
  color: var(--bg);
  padding: 5rem 2rem;
}
.brew-storage-inner {
  max-width: 800px;
  margin: 0 auto;
}
.brew-storage .section-label { color: var(--accent-2); }
.brew-storage .section-title { color: var(--bg); }
.storage-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 247, 240, 0.7);
  margin-bottom: 1.25rem;
}
.storage-content strong { color: var(--accent-2); font-weight: 600; }

/* ─── Brew CTA ────────────────────────────────────────────────── */
.brew-cta {
  padding: 7rem 2rem;
  text-align: center;
}
.brew-cta-inner { max-width: 600px; margin: 0 auto; }
.brew-cta-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
  margin-bottom: 1.5rem;
}
.brew-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 2.5rem;
}
.brew-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  transition: background 0.15s;
}
.brew-cta-btn:hover { background: #b05f15; }

/* ─── Mobile: Brew ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .equipment-grid { grid-template-columns: 1fr; }
  .topbar-nav { display: none; }
}
@media (max-width: 480px) {
  .brew-hero { padding: 3rem 1.25rem 2rem; }
  .brew-methods { padding: 4rem 1.25rem; }
  .brew-equipment { padding: 4rem 1.25rem; }
  .brew-storage { padding: 4rem 1.25rem; }
  .brew-cta { padding: 5rem 1.25rem; }
  .method-card { padding: 1.5rem; }
}