/* Gullah Geechee Biz — bolder brand site */

:root {
  --bg: #efe8d8;
  --bg-deep: #e0d5c0;
  --surface: #faf6ec;
  --ink: #0e1613;
  --ink-soft: #2f3d37;
  --ink-faint: #5c6b64;
  --line: #c4b69a;
  --marsh: #0f2f29;
  --marsh-mid: #1a4d43;
  --marsh-deep: #0a1f1b;
  --gold: #c48a1a;
  --gold-hot: #e8a820;
  --gold-soft: #f0c14d;
  --radius: 10px;
  --max: 1120px;
  --narrow: 680px;
  --font-display: "Sentient", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-body: "Switzer", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;
  --space-10: 64px;
  --space-12: 88px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(ellipse 100% 60% at 100% -5%, rgba(196, 138, 26, 0.14), transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 90%, rgba(15, 47, 41, 0.12), transparent 55%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--marsh-mid);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--marsh);
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--marsh);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  z-index: 100;
  font-weight: 700;
}

.skip:focus {
  left: var(--space-4);
  top: var(--space-4);
}

.wrap {
  width: min(100% - 2 * var(--space-5), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2 * var(--space-5), var(--narrow));
}

/* Header — solid, high contrast */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--marsh-deep);
  border-bottom: 3px solid var(--gold-hot);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 72px;
  padding-block: var(--space-3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: #faf6ec;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand:hover {
  color: var(--gold-soft);
}

.mark {
  color: var(--gold-hot);
  flex-shrink: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  font-size: 0.9rem;
}

.nav a {
  color: #d8e0dc;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav a:hover {
  color: var(--gold-soft);
}

/* Hero */
.hero {
  padding: clamp(var(--space-10), 12vw, 6rem) 0 clamp(var(--space-8), 9vw, var(--space-12));
  border-bottom: 3px solid var(--ink);
}

.hero-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-10);
  }
}

.eyebrow {
  margin: 0 0 var(--space-4);
  display: inline-block;
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marsh-deep);
  background: var(--gold-soft);
  border: 2px solid var(--ink);
}

.hero h1 {
  margin: 0 0 var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.lede {
  margin: 0 0 var(--space-6);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-note {
  margin: var(--space-5) 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hero-seal {
  justify-self: center;
  width: min(320px, 74vw);
}

.hero-seal img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid var(--ink);
  box-shadow:
    8px 8px 0 var(--gold-hot),
    0 24px 48px rgba(14, 22, 19, 0.2);
}

/* Buttons — thick, bold */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s var(--ease), background 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.btn-primary {
  background: var(--marsh);
  color: #faf6ec;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  background: var(--marsh-mid);
  color: #fff;
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--gold-hot);
}

.btn-ghost:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.btn-on-dark {
  background: var(--gold-hot);
  border: 3px solid #faf6ec;
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
}

.btn-on-dark:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

/* Quote band */
.quote-band {
  background: var(--marsh-deep);
  color: #faf6ec;
  padding: clamp(var(--space-10), 9vw, 5.5rem) 0;
  text-align: center;
  border-block: 4px solid var(--gold-hot);
}

.quote {
  margin: 0 0 var(--space-5);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #faf6ec;
}

.quote-attr {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* Sections */
.section {
  padding: clamp(var(--space-10), 8vw, var(--space-12)) 0;
}

.section h2 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-head {
  margin-bottom: var(--space-6);
  max-width: 42ch;
}

.section-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 500;
}

.about {
  background: var(--bg-deep);
  border-bottom: 3px solid var(--ink);
}

.about-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: var(--space-10);
  }
}

.about > .wrap > div > p,
.about-grid > div > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
  font-weight: 500;
}

.pillars {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.pillars li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--marsh);
}

.pillar-num {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding-top: 0.15rem;
}

.pillars strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pillars li p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Cards */
.cards {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: var(--space-5);
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-height: 100%;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--gold-hot);
}

.card-featured {
  background: var(--marsh);
  color: #faf6ec;
  border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--gold-hot);
}

.card-featured h3,
.card-featured p {
  color: #faf6ec;
}

.card-featured .card-label {
  color: var(--gold-soft);
}

.card-featured .text-link {
  color: var(--gold-soft);
}

.card-featured .text-link:hover {
  color: #fff;
}

.card-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1;
}

.text-link {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: var(--space-2);
  color: var(--marsh-mid);
}

.text-link:hover {
  text-decoration: underline;
  color: var(--marsh);
}

.muted {
  color: var(--ink-faint);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-featured .muted {
  color: color-mix(in srgb, #faf6ec 55%, transparent);
}

/* Listen */
.listen {
  background: var(--marsh-deep);
  color: #faf6ec;
  border-block: 4px solid var(--gold-hot);
}

.listen h2 {
  color: #faf6ec;
}

.listen p {
  color: #d5e0db;
  margin: 0 0 var(--space-5);
  font-size: 1.1rem;
  font-weight: 500;
  max-width: 38ch;
}

.listen-grid {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 720px) {
  .listen-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.listen-card {
  padding: var(--space-6);
  border-radius: var(--radius);
  background: var(--marsh-mid);
  border: 3px solid var(--gold-hot);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.35);
}

.listen-kicker {
  margin: 0 0 var(--space-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.listen-title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: #faf6ec;
}

.listen-meta {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #c5d4ce;
}

/* Join / Substack / Donate */
.substack {
  background: var(--bg-deep);
  border-bottom: 3px solid var(--ink);
}

.substack .card-label {
  margin-bottom: var(--space-3);
  display: inline-block;
}

.join-grid {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (min-width: 800px) {
  .join-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }
}

.join-panel {
  padding: var(--space-6);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.join-free {
  background: var(--surface);
  box-shadow: 5px 5px 0 var(--marsh);
}

.join-member {
  background: var(--marsh-deep);
  color: #faf6ec;
  box-shadow: 5px 5px 0 var(--gold-hot);
  justify-content: center;
}

.join-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.join-member .join-kicker {
  color: var(--gold-soft);
}

.join-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

.join-member h3 {
  color: #faf6ec;
}

.join-copy {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink-soft);
  flex: 1;
}

.join-member .join-copy {
  color: #d5e0db;
}

.email-box {
  margin-top: var(--space-2);
  padding: var(--space-3);
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: 6px;
  min-height: 72px;
}

/* Substack widget fills the open box */
#custom-substack-embed,
.email-box .custom-substack-widget {
  width: 100% !important;
  max-width: 100% !important;
}

.email-box input,
.email-box button {
  font-family: var(--font-body) !important;
}

.join-fallback {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-faint);
}

.join-fallback a {
  color: var(--marsh-mid);
  font-weight: 800;
}

.join-member .btn {
  align-self: flex-start;
  margin-top: var(--space-2);
}

/* Donate tiers */
.donate-block {
  padding-top: var(--space-6);
  border-top: 3px solid var(--ink);
}

.donate-head {
  margin-bottom: var(--space-5);
  max-width: 48ch;
}

.donate-head h3 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.donate-tiers {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .donate-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .donate-tiers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.donate-tier {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: var(--space-4);
  background: var(--surface);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--marsh);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
  min-height: 100%;
}

.donate-tier:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--gold-hot);
  color: var(--ink);
}

.donate-tier-featured {
  background: var(--marsh);
  color: #faf6ec;
  box-shadow: 3px 3px 0 var(--gold-hot);
}

.donate-tier-featured:hover {
  color: #faf6ec;
}

.donate-name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.donate-tier-featured .donate-name {
  color: var(--gold-soft);
}

.donate-amt {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.donate-note {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.donate-tier-featured .donate-note {
  color: #c5d4ce;
}

.donate-fine {
  margin: var(--space-4) 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-faint);
}

/* Connect */
.social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.social a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.6rem 1.15rem;
  border-radius: 6px;
  border: 3px solid var(--ink);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 var(--marsh);
}

.social a:hover {
  background: var(--gold-soft);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

/* Footer */
.site-footer {
  border-top: 3px solid var(--ink);
  padding: var(--space-8) 0;
  background: var(--ink);
  color: #d8e0dc;
}

.footer-inner {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .footer-meta {
    text-align: right;
  }
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #faf6ec;
}

.footer-brand p {
  margin: var(--space-2) 0 0;
  color: #a8b5af;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-meta p {
  margin: 0 0 var(--space-2);
  font-size: 0.85rem;
  color: #a8b5af;
  font-weight: 500;
}

.footer-meta .muted {
  color: #6e7c75;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

/* Visitor counter */
.visitor-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-top: var(--space-4);
  padding: 0.55rem 0.9rem;
  border: 3px solid var(--gold-hot);
  background: var(--marsh-mid);
  border-radius: 6px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
}

.visitor-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.visitor-count {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #faf6ec;
  font-variant-numeric: tabular-nums;
  min-width: 1.5ch;
}

@media (min-width: 640px) {
  .visitor-counter {
    margin-left: auto;
  }

  .footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .card {
    transition: none;
  }

  .btn:active,
  .card:hover {
    transform: none;
  }
}

/* Merch section */
.merch-cards {
  margin-bottom: var(--space-6);
}

.merch-thumb {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 6px;
  margin-bottom: var(--space-4);
}

.merch-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.merch-note {
  flex: 1 1 100%;
  margin: 0 0 var(--space-3);
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 56ch;
}

.hero-seal img[src*="merch"] {
  border-radius: 12px;
}

/* ============================================================
   Season 1 promo band on home page
   ============================================================ */
.s1-promo {
  background:
    radial-gradient(ellipse 60% 60% at 100% 50%, rgba(232, 168, 32, 0.14), transparent 65%),
    linear-gradient(180deg, var(--marsh), var(--marsh-deep));
  color: var(--surface);
  padding: var(--space-10) 0;
  border-top: 1px solid rgba(240, 193, 77, 0.2);
  border-bottom: 1px solid rgba(240, 193, 77, 0.2);
}
.s1-promo-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: center;
}
.s1-promo-eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 var(--space-3);
}
.s1-promo-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 var(--space-4);
  color: var(--surface);
}
.s1-promo-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(250, 246, 236, 0.86);
  max-width: 620px;
  margin: 0 0 var(--space-5);
}
.s1-promo-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.s1-promo-actions .btn-ghost {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}
.s1-promo-actions .btn-ghost:hover {
  background: rgba(240, 193, 77, 0.1);
}
.s1-promo-count { text-align: center; }
.s1-mini-countdown {
  display: grid;
  grid-template-columns: repeat(3, 72px);
  gap: 8px;
  margin-bottom: 8px;
}
.s1-mini-countdown .cd-cell {
  background: rgba(250, 246, 236, 0.08);
  border: 1px solid rgba(240, 193, 77, 0.28);
  border-radius: var(--radius);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.s1-mini-countdown .cd-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-hot);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.s1-mini-countdown .cd-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 236, 0.72);
}
.s1-promo-count-cap {
  font-size: 12px;
  color: rgba(250, 246, 236, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 800px) {
  .s1-promo-inner { grid-template-columns: 1fr; }
  .s1-promo-count { display: flex; flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   QA FIXES — promo band separation, card equal heights, mobile nav
   ============================================================ */

/* Promo band: switch to cream/light so it visually separates from the dark hero above */
.s1-promo {
  background:
    linear-gradient(180deg, var(--bg-deep), var(--bg));
  color: var(--ink);
  border-top: 4px solid var(--marsh);
  border-bottom: 1px solid var(--line);
}
.s1-promo-eyebrow { color: var(--marsh-mid); }
.s1-promo-h { color: var(--marsh-deep); }
.s1-promo-sub { color: var(--ink-soft); }
.s1-promo-actions .btn-ghost {
  border-color: var(--marsh);
  color: var(--marsh);
}
.s1-promo-actions .btn-ghost:hover {
  background: rgba(15, 47, 41, 0.06);
}
.s1-mini-countdown { grid-template-columns: repeat(4, 62px); }
.s1-mini-countdown .cd-cell {
  background: var(--surface);
  border: 1px solid var(--line);
}
.s1-mini-countdown .cd-num { color: var(--gold); }
.s1-mini-countdown .cd-label { color: var(--ink-faint); }
.s1-promo-count-cap { color: var(--ink-faint); }

/* Mobile hamburger nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--marsh);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  align-items: center;
  gap: 4px;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--marsh);
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle-bar + .nav-toggle-bar { margin-top: 5px; }

@media (max-width: 820px) {
  .header-inner { flex-wrap: nowrap; }
  .nav-toggle { display: inline-flex; flex-direction: column; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms var(--ease);
  }
  .nav.is-open { max-height: 600px; }
  .nav a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--marsh-deep);
  }
  .nav a:hover { color: var(--marsh); background: rgba(15,47,41,0.04); }
  .nav a:last-child { border-bottom: none; }
  .brand-text { font-size: 15px; white-space: nowrap; }
  .site-header { position: relative; }
}
