:root {
  --ink: #1a1208;
  --paper: #f4ecdc;
  --paper-2: #ebe0c8;
  --amber: #b87333;
  --amber-deep: #6b3e1a;
  --rust: #a3341a;
  --moss: #4a5d2a;
  --gold: #d4a437;
  --shadow: rgba(26, 18, 8, 0.18);
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", "Palatino Linotype", serif;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(212, 164, 55, 0.08) 0, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(163, 52, 26, 0.06) 0, transparent 45%);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Bebas Neue", "Oswald", "Arial Narrow", "Helvetica Neue", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  color: var(--amber-deep);
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

a { color: var(--rust); text-decoration: none; border-bottom: 1px dashed var(--rust); }
a:hover { background: var(--gold); color: var(--ink); }

/* ===== Header / Nav ===== */
.site-header {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 4px double var(--gold);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  border: none;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.brand:hover { background: transparent; color: var(--gold); }
.brand svg { width: 38px; height: 38px; }
.brand img {
  width: 44px; height: 44px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--ink);
}

.brand-text small {
  display: block;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-top: -3px;
}

.nav-toggle {
  background: none;
  border: 1px solid var(--paper);
  color: var(--paper);
  padding: 0.3rem 0.6rem;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.2rem;
}
nav a {
  color: var(--paper);
  border: none;
  padding: 0.4rem 0.8rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.1em;
  font-size: 1rem;
}
nav a:hover, nav a.active {
  background: var(--gold);
  color: var(--ink);
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  nav { width: 100%; display: none; }
  nav.open { display: block; }
  .nav-wrap { flex-wrap: wrap; }
  nav ul { flex-direction: column; gap: 0; width: 100%; }
  nav a { display: block; border-top: 1px solid #333; }
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 5rem 1.2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(107,62,26,0.04) 14px 15px);
  pointer-events: none;
}
.hero .roach-big {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  filter: drop-shadow(0 8px 18px var(--shadow));
  animation: scuttle 6s ease-in-out infinite;
}
@keyframes scuttle {
  0%, 100% { transform: translateX(0) rotate(0); }
  25% { transform: translateX(8px) rotate(2deg); }
  75% { transform: translateX(-8px) rotate(-2deg); }
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  max-width: 640px;
  margin: 1rem auto 1.6rem;
  font-style: italic;
}
.slogan {
  display: inline-block;
  background: var(--ink);
  color: var(--gold);
  padding: 0.4rem 1rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.15em;
  border: 2px solid var(--gold);
  transform: rotate(-1.5deg);
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn {
  display: inline-block;
  background: var(--rust);
  color: var(--paper);
  padding: 0.8rem 1.4rem;
  border: 2px solid var(--ink);
  border-radius: 2px;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn.secondary { background: var(--moss); }

/* ===== Sections ===== */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.2rem 4rem;
}

.page-header {
  text-align: center;
  padding: 3rem 1.2rem 2rem;
  border-bottom: 1px dashed var(--amber);
  margin-bottom: 2rem;
}
.page-header .kicker {
  display: inline-block;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  color: var(--rust);
  letter-spacing: 0.2em;
  margin-bottom: 0.3rem;
}

.grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--paper-2);
  border: 1px solid var(--amber);
  padding: 1.3rem;
  box-shadow: 4px 4px 0 var(--shadow);
}
.card h3 { color: var(--amber-deep); }
.card .num {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 2.4rem;
  color: var(--rust);
  display: block;
  line-height: 1;
}

.callout {
  background: var(--ink);
  color: var(--paper);
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 2.5rem 0;
  border-left: 6px solid var(--gold);
  font-style: italic;
}
.callout strong { color: var(--gold); font-style: normal; }

/* Manifesto list */
.principles {
  counter-reset: principle;
  list-style: none;
  padding: 0;
}
.principles li {
  counter-increment: principle;
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 4.5rem;
  margin-bottom: 1rem;
  background: var(--paper-2);
  border-left: 4px solid var(--amber);
}
.principles li::before {
  content: counter(principle, decimal-leading-zero);
  position: absolute;
  left: 1rem; top: 1rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 2rem;
  color: var(--rust);
}
.principles li h3 { margin-bottom: 0.2rem; }

/* Leaders */
.leader-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.leader {
  text-align: center;
  background: var(--paper-2);
  padding: 1.5rem 1rem;
  border: 1px solid var(--amber);
}
.leader .avatar {
  width: 110px; height: 110px;
  margin: 0 auto 0.8rem;
  background: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--gold);
  overflow: hidden;
}
.leader .avatar svg { width: 70%; height: 70%; }
.leader .avatar img.photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.leader .role {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  color: var(--rust);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}
.leader p { font-size: 0.95rem; }

/* Forms */
form {
  background: var(--paper-2);
  padding: 1.5rem;
  border: 1px solid var(--amber);
  max-width: 620px;
  margin: 0 auto;
}
label {
  display: block;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.08em;
  margin-top: 1rem;
  color: var(--amber-deep);
}
input, textarea, select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--amber-deep);
  background: var(--paper);
  font-family: inherit;
  font-size: 1rem;
  margin-top: 0.3rem;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--gold);
}
textarea { resize: vertical; min-height: 110px; }
.check-row { display: flex; align-items: flex-start; gap: 0.5rem; margin-top: 1rem; }
.check-row input { width: auto; margin-top: 0.4rem; }

.form-success {
  display: none;
  background: var(--moss);
  color: var(--paper);
  padding: 1rem;
  margin-top: 1rem;
  text-align: center;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.1em;
}
.form-success.show { display: block; }

/* Press */
.press-item {
  padding: 1.2rem 0;
  border-bottom: 1px dashed var(--amber);
}
.press-item:last-child { border-bottom: none; }
.press-item .date {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  color: var(--rust);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.press-item h3 { margin: 0.2rem 0; }

/* ===== Shop ===== */
.shop-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.product {
  background: var(--paper-2);
  border: 1px solid var(--amber);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 4px 0 var(--shadow);
}
.product .thumb {
  background: var(--paper);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--amber);
  position: relative;
  overflow: hidden;
}
.product .thumb svg { width: 80%; height: 80%; }
.product .badge {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--rust);
  color: var(--paper);
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
}
.product-body { padding: 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.product h3 { margin: 0 0 0.3rem; color: var(--ink); }
.product .price {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 1.4rem;
  color: var(--rust);
  margin: 0.2rem 0 0.6rem;
}
.product .desc { font-size: 0.92rem; margin: 0 0 1rem; flex: 1; }
.product .size-row { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.product .size-row span {
  border: 1px solid var(--amber-deep);
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.08em;
}
.product .btn { width: 100%; text-align: center; }

.shop-note {
  background: var(--paper-2);
  border: 1px dashed var(--amber-deep);
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.shop-note strong { color: var(--rust); }

.cart-link {
  position: relative;
  padding-right: 1.6rem !important;
}
.cart-count {
  display: none;
  background: var(--rust);
  color: var(--paper);
  border-radius: 999px;
  padding: 0 0.4rem;
  font-size: 0.7rem;
  position: absolute;
  top: 3px; right: 2px;
  min-width: 16px;
  text-align: center;
}

.shop-category {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.15em;
  color: var(--amber-deep);
  border-bottom: 2px solid var(--amber);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.3rem;
}

/* ===== Product detail page ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
@media (max-width: 760px) { .product-detail { grid-template-columns: 1fr; gap: 1.5rem; } }

.product-detail .gallery {
  background: var(--paper-2);
  border: 1px solid var(--amber);
  padding: 1rem;
}
.product-detail .gallery .main {
  background: var(--paper);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.product-detail .gallery img { max-width: 95%; max-height: 95%; }
.product-detail .breadcrumbs {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--amber-deep);
}
.product-detail h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.2rem; }
.product-detail .pd-price {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 1.8rem;
  color: var(--rust);
  margin: 0.6rem 0 0.2rem;
}
.product-detail .pd-shipping {
  font-size: 0.88rem;
  color: var(--amber-deep);
  margin-bottom: 1rem;
}
.product-detail .pd-short { font-style: italic; margin-bottom: 1rem; }
.product-detail .pd-bullets {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.product-detail .pd-bullets li {
  background: var(--paper-2);
  border: 1px solid var(--amber);
  padding: 0.25rem 0.6rem;
  font-size: 0.82rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.08em;
}
.size-pick { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.4rem 0 1rem; }
.size-pick button {
  border: 1px solid var(--amber-deep);
  background: var(--paper);
  padding: 0.45rem 0.7rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
  min-width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}
.size-pick button strong { font-size: 1rem; }
.size-pick button .size-sub {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
  font-family: Georgia, serif;
  font-style: italic;
  margin-top: 2px;
}
.size-pick button:hover { background: var(--gold); }
.size-pick button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.size-pick button.active .size-sub { opacity: 0.9; }

.pd-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }
.pd-actions .btn { flex: 1; min-width: 160px; text-align: center; }
.pd-qty { width: 70px; padding: 0.5rem; }
.pd-msg { margin-top: 0.6rem; min-height: 1.2em; font-family: "Bebas Neue", "Oswald", sans-serif; letter-spacing: 0.1em; color: var(--moss); }
.pd-msg.error { color: var(--rust); }

.pd-section { background: var(--paper-2); padding: 1rem 1.2rem; border: 1px solid var(--amber); margin-top: 1rem; }
.pd-section h3 { font-size: 1rem; margin: 0 0 0.4rem; color: var(--amber-deep); }
.pd-section p { margin: 0.3rem 0; font-size: 0.93rem; }

.related-title { margin-top: 3rem; }

/* ===== Homepage redesign (scoped via body.home-page) ===== */
.home-page main {
  max-width: 980px;
  text-align: center;
}
.home-page main > section {
  padding: 3.5rem 0 1rem;
  border-top: 1px dashed rgba(107, 62, 26, 0.25);
}
.home-page main > section:first-of-type { border-top: none; padding-top: 2rem; }
.home-page main h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 1.4rem;
}
.home-page main h2::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  background: var(--gold);
  margin: 0.7rem auto 0;
}
.home-page main p { max-width: 64ch; margin-left: auto; margin-right: auto; }
.home-page main .grid { text-align: center; }
.home-page main .grid .card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.6rem 1.3rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.home-page main .grid .card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--shadow);
}
.home-page main .grid .card h3 { margin-top: 0.4rem; }
.home-page main .grid .card .num { margin-bottom: 0.3rem; }
.home-page main .grid .card p { margin: 0.4rem auto 0; }

/* Hero — bigger, more dramatic, fully centered */
.home-page .hero { padding: 5.5rem 1.2rem 4.5rem; }
.home-page .hero .roach-big {
  width: clamp(88px, 12vw, 130px);
  height: auto;
  border-radius: 14px;
  background: var(--ink);
  padding: 0.4rem;
  margin-bottom: 1.4rem;
  animation: none;
  filter: drop-shadow(0 10px 22px rgba(26,18,8,0.35));
}
.home-page .hero .slogan { margin-top: 1.4rem; }
.home-page .hero .eyebrow {
  display: inline-block;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  color: var(--rust);
  letter-spacing: 0.32em;
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
  padding: 0.3rem 0.9rem;
  border-top: 1px solid var(--amber);
  border-bottom: 1px solid var(--amber);
}
.home-page .hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  margin: 0 auto 0.4rem;
  max-width: 14ch;
  line-height: 0.95;
}
.home-page .hero h1 .accent {
  display: block;
  color: var(--rust);
  font-style: italic;
}
.home-page .hero .hindi {
  display: block;
  font-family: "Georgia", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--amber-deep);
  margin: 0.4rem 0 0;
}
.home-page .hero p.lead {
  text-align: center;
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}
.home-page .hero-meta {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.18em;
  color: var(--amber-deep);
  font-size: 0.85rem;
  margin-top: 2.2rem;
}

/* Stats strip */
.home-page .stats-strip {
  background: var(--ink);
  color: var(--paper);
  margin: 0;
  padding: 2.4rem 1.2rem;
  border-top: 4px double var(--gold);
  border-bottom: 4px double var(--gold);
}
.home-page .stats-strip .stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.home-page .stats-strip .stat .num {
  display: block;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
}
.home-page .stats-strip .stat .label {
  display: block;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #c9b890;
  margin-top: 0.3rem;
}
@media (max-width: 640px) {
  .home-page .stats-strip .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}

/* Slogan marquee band */
.home-page .marquee-band {
  background: var(--gold);
  color: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.25em;
  font-size: 1.05rem;
  margin: 0 0 2.5rem;
}
.home-page .marquee-band .marquee-track {
  display: inline-block;
  animation: marquee 24s linear infinite;
  padding-left: 100%;
}
.home-page .marquee-band .marquee-track span { margin: 0 1.4rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Origin quote — centered, big, pull-quote feel */
.home-page .origin {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.home-page .origin blockquote {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 auto 1.4rem;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-style: italic;
  position: relative;
}
.home-page .origin blockquote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  display: block;
  line-height: 0.6;
  margin-bottom: 0.6rem;
}
.home-page .origin blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.16em;
  color: var(--amber-deep);
  font-size: 0.85rem;
}
.home-page .origin p { margin: 1rem auto; max-width: 60ch; }

/* Center the "what people are saying" press cards as quote-style */
.home-page .quote-card {
  background: var(--paper-2);
  border: 1px solid var(--amber);
  padding: 1.6rem 1.3rem 1.3rem;
  text-align: center;
  position: relative;
  box-shadow: 4px 4px 0 var(--shadow);
}
.home-page .quote-card::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  top: 0.2rem; left: 0.7rem;
  line-height: 1;
  pointer-events: none;
}
.home-page .quote-card p:first-of-type { font-style: italic; }
.home-page .quote-card .outlet {
  display: block;
  margin-top: 0.8rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.14em;
  color: var(--rust);
  font-size: 0.9rem;
}

/* Voices section centered */
.home-page #voices { text-align: center; }
.home-page #voices .kicker {
  display: inline-block;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  color: var(--rust);
  letter-spacing: 0.22em;
  margin-bottom: 0.4rem;
}
.home-page #voices .voice-form {
  margin: 1.4rem auto 0;
  text-align: left;
}
.home-page #voices #voice-msg { text-align: center; }
.home-page #voices .voice-card { text-align: center; }

/* FAQ — centered with constrained width */
.home-page main details {
  max-width: 720px;
  margin: 0.6rem auto;
  text-align: left;
  background: var(--paper-2);
  border: 1px solid var(--amber);
  padding: 0.8rem 1.1rem;
}
.home-page main details summary {
  cursor: pointer;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.08em;
  color: var(--amber-deep);
  font-size: 1rem;
}
.home-page main details[open] summary { color: var(--rust); }
.home-page main details p { margin: 0.6rem 0 0.2rem; max-width: none; }

/* Closing CTA band */
.home-page .closing-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 1.2rem;
  text-align: center;
  border-top: 4px double var(--gold);
}
.home-page .closing-cta h2 {
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.home-page .closing-cta h2::after { background: var(--paper); }
.home-page .closing-cta p { color: #d9c79f; max-width: 56ch; margin: 0 auto 1.4rem; }
.home-page .closing-cta .cta-row { margin-top: 1.6rem; }

/* ===== Footer ===== */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 2rem 1.2rem;
  text-align: center;
  border-top: 4px double var(--gold);
}
footer a { color: var(--gold); border-color: var(--gold); }
footer .disclaimer {
  font-size: 0.8rem;
  font-style: italic;
  color: #c9b890;
  max-width: 640px;
  margin: 1rem auto 0;
}
footer .ascii {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--gold);
  font-size: 0.85rem;
  margin: 0.5rem 0;
}
