/* Bloodhound Whiskey — shared site styles.
   Dark-first: the barrel palette is the default on bare :root, and the cream
   palette is the alternate. Every token is defined in the default block, so a
   light override only re-points values and can never leave one undefined.

   --copper       fills (button backgrounds, dots)
   --copper-deep  accent TEXT (links, prices, eyebrows) — deep on cream,
                  bright on barrel, so it always carries contrast against the
                  surface it sits on
   --on-copper    text that sits on top of a --copper fill */

:root {
  --barrel: #0f0b07;
  --copper: #e2954f;
  --copper-deep: #f5b571;
  --on-copper: #14100a;
  --paper: #1a130c;
  --line: #4a3a29;
  --line-strong: #6b543b;
  --ink: #f6efe2;
  --ink-soft: #c9b9a2;
  --surface: #14100a;
  --surface-card: #1f1710;
  --good: #7fb56f;
  --shadow: rgba(0, 0, 0, 0.45);
  --nav-ink: #f6efe2;
  --nav-ink-soft: #cbbca4;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --barrel: #1e150f;
    --copper: #8a4f1e;
    --copper-deep: #7a4318;
    --on-copper: #fdf8ef;
    --paper: #e9e3d6;
    --line: #c2b49a;
    --line-strong: #9c8a6d;
    --ink: #1b120a;
    --ink-soft: #4a3b29;
    --surface: #f4f1e9;
    --surface-card: #ffffff;
    --good: #3d6638;
    --shadow: rgba(30, 21, 15, 0.10);
  }
}

:root[data-theme="light"] {
  --barrel: #1e150f;
  --copper: #8a4f1e;
  --copper-deep: #7a4318;
  --on-copper: #fdf8ef;
  --paper: #e9e3d6;
  --line: #c2b49a;
  --line-strong: #9c8a6d;
  --ink: #1b120a;
  --ink-soft: #4a3b29;
  --surface: #f4f1e9;
  --surface-card: #ffffff;
  --good: #3d6638;
  --shadow: rgba(30, 21, 15, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Libre Franklin", system-ui, sans-serif;
  /* 18px base. The audience runs to 70; presbyopia is the norm past 40, so
     every secondary tier below is sized up from this rather than down from 16. */
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 920px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  text-wrap: balance;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

a { color: var(--copper-deep); }

nav.top {
  border-bottom: 2px solid var(--line);
  background: var(--barrel);
}
nav.top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  gap: 1rem;
}
nav.top .brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--nav-ink);
  text-decoration: none;
}
nav.top .links { display: flex; gap: 1.6rem; font-size: 1rem; font-weight: 500; }
nav.top .links a { color: var(--nav-ink-soft); text-decoration: none; padding: 0.4rem 0; }
nav.top .links a:hover { color: #f0ad6b; }

/* The nav bar is always the barrel colour in both themes, so its own ink
   tokens are pinned here rather than inherited from the light palette. */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) { --nav-ink: #f6efe2; --nav-ink-soft: #cbbca4; }
}
:root[data-theme="light"] { --nav-ink: #f6efe2; --nav-ink-soft: #cbbca4; }

@media (max-width: 620px) {
  nav.top .links { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  /* 52px min target — past the 44px floor, on a page whose buyers are
     frequently on a phone using one thumb. */
  min-height: 52px;
  padding: 0.85rem 1.9rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.btn.primary { background: var(--copper); color: var(--on-copper); border-color: var(--copper); }
.btn.primary:hover { filter: brightness(1.08); }
.btn.ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn.ghost:hover { border-color: var(--copper); color: var(--copper-deep); }

section { padding: 4rem 0; border-top: 1px solid var(--line); }
section.tight { padding: 2.5rem 0; }

.eyebrow {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-deep);
  font-weight: 600;
}

.dek {
  color: var(--ink-soft);
  max-width: 60ch;
  font-size: 1.15rem;
}

.step-grid, .pricing-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.step-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: 700px; }

.card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.6rem;
  box-shadow: 0 2px 4px var(--shadow), 0 10px 28px var(--shadow);
}

.step-num {
  font-family: "IBM Plex Mono", monospace;
  color: var(--copper-deep);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.price-card { display: flex; flex-direction: column; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 0.2rem; }
.price-card .price {
  font-family: "IBM Plex Mono", monospace;
  font-variant-numeric: tabular-nums;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--copper-deep);
  letter-spacing: -0.03em;
  margin: 0.4rem 0 1rem;
}
.price-card .price span { font-size: 1rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0; }
.price-card ul {
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
  font-size: 1rem;
  color: var(--ink);
  flex: 1;
}
.price-card li { margin-bottom: 0.55rem; }
.price-card.featured { border-color: var(--copper); box-shadow: 0 0 0 2px var(--copper), 0 10px 28px var(--shadow); }

.vendor-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.vendor-list li {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 1.05rem; font-weight: 500;
  padding: 1rem 1.2rem;
  background: var(--surface-card); border: 1px solid var(--line); border-radius: 8px;
}
.vendor-region {
  font-size: 0.9rem; font-weight: 600;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 4px;
  padding: 0.1rem 0.5rem; white-space: nowrap;
}
.vendor-status {
  margin-left: auto; color: var(--ink-soft); font-size: 0.95rem;
  font-family: "IBM Plex Mono", monospace; letter-spacing: 0.06em; text-transform: uppercase;
}
.dot-live { width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--good); flex: none; }
.dot-soon { width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--ink-soft); flex: none; opacity: 0.45; }

.faq dt { font-weight: 700; margin-top: 1.6rem; font-size: 1.1rem; }
.faq dd { margin: 0.4rem 0 0; color: var(--ink-soft); font-size: 1.05rem; max-width: 62ch; }

footer.site {
  border-top: 2px solid var(--line);
  background: var(--barrel);
  padding: 2.4rem 0;
  font-size: 1rem;
  color: var(--nav-ink-soft);
}
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: space-between; align-items: center; }
footer.site .legal-links { display: flex; gap: 1.4rem; }
footer.site a { color: var(--nav-ink-soft); }
footer.site a:hover { color: #f0ad6b; }

.legal h1 { font-size: 2.2rem; margin-bottom: 0.4rem; }
.legal .updated { font-family: "IBM Plex Mono", monospace; font-size: 0.95rem; color: var(--ink-soft); }
.legal h2 { font-size: 1.35rem; margin-top: 2.4rem; }
.legal p, .legal li { color: var(--ink); font-size: 1.05rem; max-width: 68ch; }
