/* KneeForge — Johannesburg night forge catalog
   THESIS: Hard industrial retail for knee supports — not soft health brochure.
   OWN-WORLD: Charcoal workshop, bone catalogue band, forge-amber signal, Epilogue + Karla.
   STORY: Specs → contact → thanks. No cure promises.
   FIRST VIEWPORT: Dark split hero, oversized headline, dominant product plane.
   FORM: Strong redesign — committed dark forge, light catalogue interruption. */

:root {
  --bg: #0E1114;
  --bg-band: #F2EEE6;
  --ink: #F4F1EA;
  --ink-on-light: #14181D;
  --muted: #9AA3AD;
  --muted-light: #5A6169;
  --line: #2A3138;
  --line-light: #D5CFC4;
  --accent: #E2A12B;
  --accent-hover: #C48916;
  --surface: #171B20;
  --surface-light: #FFFEFA;
  --disclaimer: #1A1F26;
  --radius: 0;
  --font-display: "Epilogue", system-ui, sans-serif;
  --font-body: "Karla", system-ui, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-offset: 8.5rem;
  --touch: 2.75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #f0c35a;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  background: var(--surface);
  padding: 0.5rem 1rem;
  color: var(--ink);
}

/* Health strip — high visibility on dark */
.health-strip {
  background: #080A0C;
  color: var(--muted);
  border-bottom: 3px solid var(--accent);
  padding: 1.05rem 1.25rem;
}

.health-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 0.4rem;
}

.health-strip-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.health-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
}

.health-strip-list {
  margin: 0.15rem 0 0;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}

.health-strip-list li {
  margin-bottom: 0.12rem;
}

.health-strip a {
  color: var(--ink);
  font-weight: 700;
}

.health-strip-compact {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.health-strip-compact strong {
  color: var(--ink);
  font-weight: 700;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(14, 17, 20, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.95rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
  color: var(--ink);
  text-decoration: none;
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: var(--touch);
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  align-items: center;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  min-height: var(--touch);
  min-width: var(--touch);
  padding: 0.4rem 0.75rem;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.5rem;
  }

  .nav.is-open {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  min-height: var(--touch);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: #14181D;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #14181D;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

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

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* HERO — full conviction */
.hero {
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: min(78vh, 720px);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.hero::before {
  content: "KNEEFORGE";
  position: absolute;
  left: -0.05em;
  bottom: -0.18em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4rem, 18vw, 12rem);
  letter-spacing: -0.07em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 241, 234, 0.07);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.hero > div:first-child {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 36rem;
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  max-width: 10ch;
  color: var(--ink);
}

.hero h1::after {
  content: "";
  display: block;
  width: 5.5rem;
  height: 5px;
  background: var(--accent);
  margin-top: 1.25rem;
}

.hero-lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 34ch;
  font-size: 1.1rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 420px;
  background: #12161A;
  overflow: hidden;
  border-left: 1px solid var(--line);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  animation: forge-wipe 1.05s var(--ease) 0.05s forwards;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: forge-settle 1.2s var(--ease) 0.1s forwards;
}

.hero-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.85rem 1.25rem;
}

@keyframes forge-wipe {
  from {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  to {
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes forge-settle {
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual,
  .hero-visual img {
    animation: none;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero::before {
    font-size: clamp(3.5rem, 22vw, 7rem);
  }

  .hero-visual {
    clip-path: none;
    border-left: none;
    border-top: 1px solid var(--line);
    min-height: 320px;
    order: -1;
  }

  .hero > div:first-child {
    max-width: none;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem;
  position: relative;
}

.section-alt {
  background: var(--surface);
}

/* Light catalogue interruption */
#products {
  background: var(--bg-band);
  color: var(--ink-on-light);
}

#products .section-head {
  border-bottom-color: var(--ink-on-light);
}

#products .section-head h2 {
  color: var(--ink-on-light);
}

#products .section-head p,
#products .product-body p,
#products .specs,
#products .price-note,
#products .catalog-note {
  color: var(--muted-light);
}

#products .product-body h3,
#products .price {
  color: var(--ink-on-light);
}

#products .product-row {
  border-color: var(--line-light);
}

#products .product-thumb {
  border-color: var(--line-light);
  background: var(--surface-light);
  box-shadow: 10px 10px 0 rgba(20, 24, 29, 0.12);
}

#products .specs li::before {
  background: var(--accent);
}

#products a:not(.btn) {
  color: #8A5A00;
}

#products .btn-primary {
  background: var(--ink-on-light);
  color: var(--bg-band);
}

#products .btn-primary:hover {
  background: #000;
  color: #fff;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  margin: 0 0 2.75rem;
  max-width: 44rem;
  padding-bottom: 1.1rem;
  border-bottom: 3px solid var(--ink);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 0.55rem;
  line-height: 1;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 46ch;
}

.product-row {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2.25rem 0;
  border-top: 1px solid var(--line);
}

.product-row:last-of-type {
  border-bottom: 1px solid var(--line);
}

@media (max-width: 800px) {
  .product-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.product-thumb {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #1a1f25;
  transition: transform 0.45s var(--ease);
}

.product-row:hover .product-thumb img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .product-row:hover .product-thumb img {
    transform: none;
  }
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  letter-spacing: -0.03em;
}

.product-body p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  max-width: 52ch;
}

.specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

.specs li {
  padding-left: 0.95rem;
  position: relative;
}

.specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--accent);
}

.price-block {
  text-align: right;
  min-width: 10rem;
}

@media (max-width: 800px) {
  .price-block {
    text-align: left;
  }
}

.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  margin: 0 0 0.15rem;
}

.price-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.catalog-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 2.5rem;
}

@media (max-width: 800px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}

.feature-list h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.975rem;
  max-width: 34ch;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.35rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  min-height: var(--touch);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  max-width: 60ch;
}

.reviews {
  display: grid;
  gap: 0;
}

.review {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.review:last-child {
  border-bottom: 1px solid var(--line);
}

.review p {
  margin: 0 0 0.5rem;
  max-width: 58ch;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.review cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--muted);
}

.disclaimer-block {
  background: var(--disclaimer);
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid var(--line);
  padding: 3rem 1.25rem;
}

.disclaimer-block .section-inner {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 2rem 1.6rem;
  box-shadow: 12px 12px 0 rgba(226, 161, 43, 0.18);
  max-width: var(--max);
  margin: 0 auto;
}

.disclaimer-block .section-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.disclaimer-kicker {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.disclaimer-block ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
  max-width: 70ch;
  font-size: 1.05rem;
  line-height: 1.55;
}

.disclaimer-block li {
  margin-bottom: 0.85rem;
}

.disclaimer-block li:last-child {
  margin-bottom: 0;
}

.disclaimer-block li strong {
  color: var(--ink);
}

.disclaimer-block .type-note {
  margin: 1.35rem 0 0;
  padding: 1rem 1.1rem;
  background: #12161A;
  border-top: 3px solid var(--accent);
  color: var(--ink);
  font-weight: 600;
  max-width: 70ch;
}

.disclaimer-more {
  margin-top: 0.85rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.site-footer {
  background: #080A0C;
  color: var(--muted);
  padding: 3.5rem 1.25rem 2rem;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--ink);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 0.65rem;
}

.footer-contact {
  margin-top: 0.85rem;
}

.footer-grid h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.45rem;
}

.footer-meta {
  max-width: var(--max);
  margin: 2.75rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: #6B737C;
}

.todo-flag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent);
  color: #14181D;
  padding: 0.15rem 0.4rem;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 1.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 0.55rem;
  line-height: 1;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.prose {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.1rem 0 0.65rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.65rem;
  box-shadow: 10px 10px 0 rgba(226, 161, 43, 0.12);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact-card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.contact-card strong {
  color: var(--ink);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.req {
  color: var(--accent);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--line);
  padding: 0.7rem 0;
  border-radius: 0;
  min-height: var(--touch);
}

.form-field select {
  background: var(--surface);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form-field.is-invalid input,
.form-field.is-invalid textarea,
.form-field.is-invalid select {
  border-bottom-color: #E07070;
}

.field-error {
  display: none;
  font-size: 0.8125rem;
  color: #E07070;
  margin-top: 0.35rem;
}

.form-field.is-invalid .field-error {
  display: block;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: #12161A;
  font-size: 0.9375rem;
  color: var(--muted);
}

.form-status.is-visible {
  display: block;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.cookie-bar {
  position: fixed;
  left: max(1rem, env(safe-area-inset-left));
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 1000;
  max-width: 440px;
  margin-left: auto;
  background: #171B20;
  color: #F4F1EA;
  border: 1px solid #E2A12B;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  display: none;
  flex-direction: column;
  gap: 0.9rem;
}

.cookie-bar.is-visible {
  display: flex;
}

.cookie-bar p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #9AA3AD;
}

.cookie-bar a:not(.btn) {
  color: #F4F1EA;
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.cookie-bar .btn {
  min-height: 2.5rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.cookie-bar .btn-ghost {
  color: #F4F1EA;
  border-color: #4A5560;
  background: transparent;
}

.cookie-bar .btn-ghost:hover {
  background: #F4F1EA;
  color: #0E1114;
  border-color: #F4F1EA;
}

.cookie-bar .cookie-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #E2A12B;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  margin-left: 0.15rem;
}

.cookie-bar .cookie-link:hover {
  color: #f0c35a;
}

@media (max-width: 520px) {
  .cookie-bar {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-bar .btn,
  .cookie-bar .cookie-link {
    text-align: center;
  }
}

.muted {
  color: var(--muted);
}

.cta-band {
  padding: 4rem 1.25rem;
  text-align: center;
  background: var(--accent);
  color: #14181D;
  border-top: 1px solid var(--accent);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 0.55rem;
  letter-spacing: -0.035em;
  color: #14181D;
}

.cta-band p {
  margin: 0 auto 1.35rem;
  color: rgba(20, 24, 29, 0.78);
  max-width: 40ch;
}

.cta-band .btn-primary {
  background: #14181D;
  color: var(--ink);
}

.cta-band .btn-primary:hover {
  background: #000;
  color: #fff;
}

.legal-footer {
  background: #080A0C;
  color: #6B737C;
  padding: 1.5rem 1.25rem;
  font-size: 0.8125rem;
  border-top: 1px solid var(--line);
}

.legal-footer .inner {
  max-width: var(--max);
  margin: 0 auto;
}

.legal-footer a {
  color: var(--ink);
}

.thanks-hero {
  text-align: center;
  padding-bottom: 1rem;
}

.thanks-hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
}

.thanks-hero #thanks-lead,
.thanks-hero p {
  margin-left: auto;
  margin-right: auto;
}

.thanks-panel {
  max-width: 36rem;
  margin: 0 auto 3rem;
  padding: 0 1.25rem;
}

.thanks-actions {
  margin-top: 1.25rem;
  justify-content: center;
}

/* Light-band sections that need readable links */
#use a,
#shipping-summary a,
#faq a,
#reviews a {
  color: var(--accent);
}
