/* Styles for BaseLayout subpages (how-it-works, faq, audience pages) and the
   shared site footer used on every page. Token defaults below let the footer
   render on legacy pages that do not load styles.css; pages that define their
   own tokens later in the cascade keep their values. */

:root {
  --bg: #161210;
  --bg-2: #1f1916;
  --bg-3: #2a221e;
  --gold: #e8a862;
  --gold-lt: #f5c98c;
  --gold-line: rgba(232, 168, 98, 0.24);
  --gold-text: #161210;
  --on: #f6efe6;
  --on-2: rgba(207, 194, 177, 0.85);
  --on-3: rgba(207, 194, 177, 0.58);
  --on-muted: rgba(154, 142, 126, 0.7);
  --font-d: 'Bebas Neue', 'Oswald', sans-serif;
  --font-b: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --track-d: -0.02em;
  --track-lbl: 0.12em;
  --w: min(1160px, calc(100% - 48px));
  --w-copy: min(720px, 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
}

body.subpage {
  background: var(--bg);
  color: var(--on);
  font-family: var(--font-b);
}

body.subpage main {
  padding-top: 72px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--gold-text);
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 100%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.92;
  box-shadow: 0 18px 30px rgba(232, 168, 98, 0.15);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(20px, 5vw, 48px);
  background: rgba(22, 18, 16, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

body.nav-open {
  overflow: hidden;
}

.site-nav__brand {
  color: var(--on);
  font-family: var(--font-d);
  font-size: clamp(22px, 2.7vw, 30px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__links {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 28px);
}

.site-nav__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  color: var(--on-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--gold-lt);
}

.site-nav__brand:focus-visible,
.site-nav__link:focus-visible,
.site-nav__mobile-link:focus-visible,
.site-nav__toggle:focus-visible,
.site-nav .btn-primary:focus-visible,
.site-nav__mobile .btn-primary:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 4px;
}

/* Page hero */
.page-hero {
  padding: clamp(70px, 9vw, 120px) 0 clamp(40px, 5vw, 70px);
  text-align: center;
}

.page-hero__inner,
.page-section__inner {
  width: var(--w);
  margin: 0 auto;
}

.page-hero__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: var(--track-d);
  line-height: 1.02;
  margin: 0 auto 20px;
  max-width: 880px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--gold-lt);
}

.page-hero__sub {
  max-width: var(--w-copy);
  margin: 0 auto 30px;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--on-2);
}

/* Sections */
.page-section {
  padding: clamp(48px, 6vw, 90px) 0;
}

.page-section--alt {
  background: var(--bg-2);
}

.page-section h2 {
  font-family: var(--font-d);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: var(--track-d);
  line-height: 1.05;
  margin: 0 0 14px;
}

.page-section h2 em {
  font-style: normal;
  color: var(--gold-lt);
}

.page-section__lead {
  max-width: var(--w-copy);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--on-2);
  margin: 0 0 34px;
}

.page-section p {
  line-height: 1.7;
}

/* Step cards (how-it-works) */
.step-list {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 32px);
}

.step-card__num {
  font-family: var(--font-d);
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
  min-width: 44px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.step-card p {
  margin: 0;
  color: var(--on-2);
  font-weight: 300;
}

/* Card grid (audience pages, benefits) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.info-card {
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 30px);
}

.info-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--gold-lt);
}

.info-card p {
  margin: 0;
  color: var(--on-2);
  font-weight: 300;
  font-size: 15px;
}

/* Comparison table */
.compare-table-wrap {
  overflow-x: auto;
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: clamp(14px, 2vw, 20px);
  border-bottom: 1px solid var(--gold-line);
  white-space: nowrap;
}

.compare-table thead th {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  color: var(--gold);
  white-space: normal;
}

.compare-table tbody th {
  font-weight: 600;
  color: var(--gold-lt);
  white-space: normal;
}

.compare-table td {
  color: var(--on-2);
  font-weight: 300;
  white-space: normal;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:last-child {
  background: rgba(232, 168, 98, 0.06);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary::after {
  content: '+';
  font-family: var(--font-d);
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 24px 22px;
  color: var(--on-2);
  font-weight: 300;
  line-height: 1.7;
}

.faq-item__answer p {
  margin: 0 0 12px;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(60px, 8vw, 110px) 0;
  background: var(--bg-2);
}

.cta-band h2 {
  font-family: var(--font-d);
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: var(--track-d);
  margin: 0 0 16px;
}

.cta-band p {
  max-width: var(--w-copy);
  margin: 0 auto 28px;
  color: var(--on-2);
  font-weight: 300;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--gold-line);
  background: var(--bg-2);
  padding: clamp(48px, 6vw, 72px) 0 32px;
}

.site-footer__inner {
  width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer__name {
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

.site-footer__tagline {
  color: var(--on-3);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
  margin: 0;
}

.site-footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.site-footer__col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer__col a {
  color: var(--on-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
}

.site-footer__col a:hover {
  color: var(--gold-lt);
}

.site-footer__copyright {
  width: var(--w);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 168, 98, 0.1);
  color: var(--on-muted);
  font-size: 12px;
}

/* Mobile navigation */
.site-nav__toggle {
  display: none;
  flex: 0 0 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--on);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav__toggle--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav__toggle--open span:nth-child(2) {
  opacity: 0;
}

.site-nav__toggle--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav__mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: calc(100dvh - 72px);
  padding: 12px 24px 24px;
  overflow-y: auto;
  display: grid;
  gap: 4px;
  background: rgba(22, 18, 16, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-line);
}

.site-nav__mobile[hidden] {
  display: none;
}

.site-nav__mobile-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 14px 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  color: var(--on-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 168, 98, 0.1);
}

.site-nav__mobile-link:last-of-type {
  border-bottom: 0;
}

.site-nav__mobile-link.site-nav__link--active {
  color: var(--gold-lt);
}

.site-nav__mobile-cta {
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  justify-self: stretch;
}

@media (max-width: 1080px) {
  .site-nav {
    height: 72px;
    padding: 12px 18px;
  }

  .site-nav__links {
    display: none;
  }

  .site-nav .btn-primary--nav {
    display: none;
  }

  .site-nav__toggle {
    display: flex;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1081px) {
  .site-nav__mobile {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-nav__brand {
    overflow: hidden;
    font-size: 24px;
    text-overflow: ellipsis;
  }

  .site-nav__mobile {
    padding-inline: 18px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__copyright {
    margin-top: 32px;
  }
}

/* Individuals page: hero media */
.page-hero--media {
  padding-bottom: 0;
}

.hero-media {
  position: relative;
  margin-top: clamp(30px, 4vw, 52px);
}

.hero-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-2);
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(22, 18, 16, 0.65) 0%,
    rgba(22, 18, 16, 0.08) 30%,
    rgba(22, 18, 16, 0.12) 65%,
    rgba(22, 18, 16, 0.85) 100%
  );
}

/* CTA stacks (button + microcopy) */
.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.cta-stack--center {
  align-items: center;
  text-align: center;
}

.cta-microcopy {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--on-3);
  line-height: 1.6;
}

/* Hero trust cue */
.page-hero__trust {
  margin: 20px auto 0;
  max-width: var(--w-copy);
  font-size: 14px;
  font-weight: 300;
  color: var(--on-2);
  line-height: 1.6;
}

/* Inline text links (e.g. the study link) */
.inline-link {
  color: var(--gold-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Routing strip: one line per life area */
.area-group__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  color: var(--gold);
  margin: 28px 0 12px;
}

.area-group__label:first-of-type {
  margin-top: 24px;
}

.area-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: var(--w-copy);
}

.area-lines li {
  font-weight: 300;
  color: var(--on-2);
  line-height: 1.7;
  padding: 10px 0 10px 16px;
  border-left: 2px solid var(--gold-line);
  margin-bottom: 6px;
}

.area-lines li strong {
  color: var(--on);
  font-weight: 600;
}

/* Trust strip */
.trust-section {
  padding: clamp(28px, 4vw, 44px) 0;
}

.trust-strip {
  width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.trust-strip__item {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-2);
  border-left: 2px solid var(--gold-line);
  padding-left: 16px;
}

.trust-strip__item strong {
  display: block;
  color: var(--on);
  font-weight: 600;
  margin-bottom: 4px;
}

/* Narrow prose sections */
.page-section__inner--narrow {
  max-width: var(--w-copy);
}

.page-section__inner--narrow p {
  color: var(--on-2);
  font-weight: 300;
  margin: 0 0 18px;
}

.page-section__copy {
  max-width: var(--w-copy);
}

.page-section__copy p {
  color: var(--on-2);
  font-weight: 300;
  margin: 0 0 18px;
}

.transition-line {
  font-family: var(--font-d);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: var(--track-d);
  color: var(--gold-lt) !important;
  margin-top: 28px;
}

/* Method cards (Future Memory Method) */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.method-card {
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 28px);
}

.method-card__media {
  margin: 0 0 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.method-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
}

.method-card__num {
  font-family: var(--font-d);
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.method-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
}

.method-card p {
  margin: 0;
  color: var(--on-2);
  font-weight: 300;
  font-size: 15px;
}

.method-close {
  max-width: var(--w-copy);
  margin: 30px 0 0;
  color: var(--on-2);
  font-weight: 300;
  font-style: italic;
}

/* Offer stack */
.offer-stack {
  max-width: 720px;
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3.5vw, 40px);
}

.offer-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--gold-line);
}

.offer-item:first-child {
  padding-top: 0;
}

.offer-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.offer-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--gold-lt);
}

.offer-item__value {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--track-lbl);
  text-transform: uppercase;
  color: var(--on-3);
  white-space: nowrap;
}

.offer-item p {
  margin: 0;
  color: var(--on-2);
  font-weight: 300;
  font-size: 15px;
}

.offer-total {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: var(--track-d);
  color: var(--on-2);
  margin: 24px 0 0;
}

.offer-total strong {
  color: var(--gold-lt);
  font-weight: 400;
}

.offer-note {
  max-width: var(--w-copy);
  margin: 26px 0 0;
  color: var(--on-3);
  font-weight: 300;
  font-size: 15px;
}

.offer-recap {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  gap: 10px;
  max-width: var(--w-copy);
}

.offer-recap li {
  color: var(--on-2);
  font-weight: 300;
  padding-left: 22px;
  position: relative;
}

.offer-recap li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--font-d);
}

/* Comparison table note */
.table-note {
  max-width: var(--w-copy);
  margin: 22px 0 0;
  color: var(--on-3);
  font-weight: 300;
  font-size: 14px;
}

/* Life-area poster cards */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.area-card {
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.area-card img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.area-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 18px 20px 8px;
  color: var(--gold-lt);
}

.area-card p {
  margin: 0 20px 20px;
  color: var(--on-2);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
}

.section-close {
  max-width: var(--w-copy);
  margin: 30px 0 0;
  color: var(--on-2);
  font-weight: 300;
  font-style: italic;
}

/* Step cards with media */
.step-card--media {
  grid-template-columns: auto 1fr minmax(140px, 220px);
}

.step-card__media img {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

@media (max-width: 640px) {
  .step-card--media {
    grid-template-columns: auto 1fr;
  }

  .step-card--media .step-card__media {
    grid-column: 1 / -1;
  }
}

.step-microline {
  margin: 22px 0 0;
  color: var(--on-3);
  font-weight: 300;
  font-size: 14px;
}

/* Proof wall */
.proof-subhead {
  font-family: var(--font-d);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: var(--track-d);
  color: var(--gold-lt);
  margin: clamp(36px, 5vw, 56px) 0 20px;
}

.proof-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.proof-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  background: #000;
}

.proof-video__caption {
  margin: 0 0 10px;
  color: var(--on-2);
  font-weight: 300;
  font-size: 14px;
}

.proof-video__caption strong {
  color: var(--on);
  font-weight: 600;
}

.proof-caption {
  margin: 18px 0 0;
  color: var(--on-3);
  font-weight: 300;
  font-size: 13px;
}

.reaction-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.reaction-gallery img {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-line);
}

.research-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 820px;
  display: grid;
  gap: 14px;
}

.research-list li {
  min-width: 0;
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--on-2);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.research-list strong {
  color: var(--on);
  font-weight: 600;
}

.research-list a {
  color: var(--gold-lt);
}

.pull-quote {
  max-width: 820px;
  margin: clamp(30px, 4vw, 44px) 0 0;
  padding: clamp(20px, 3vw, 30px);
  border-left: 3px solid var(--gold);
  background: var(--bg-3);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pull-quote p {
  margin: 0 0 12px;
  color: var(--on-2);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
}

.pull-quote cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-lt);
}

/* Guarantee box */
.guarantee-box {
  max-width: 720px;
  margin-top: 26px;
  background: var(--bg-3);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: clamp(22px, 3vw, 34px);
}

.guarantee-box h3 {
  font-family: var(--font-d);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  letter-spacing: var(--track-d);
  color: var(--gold-lt);
  margin: 0 0 12px;
}

.guarantee-box p {
  margin: 0;
  color: var(--on-2);
  font-weight: 300;
  line-height: 1.7;
}

/* CTA band with backdrop image */
.cta-band--backdrop {
  position: relative;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-band--backdrop::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(22, 18, 16, 0.82);
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  width: var(--w);
  margin: 0 auto;
}

/* Legal pages (privacy, terms) */
.legal-wrap {
  width: min(700px, 100% - 48px);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) 0 clamp(60px, 8vw, 100px);
}

.legal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.legal-wrap h1 {
  font-family: var(--font-d);
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--on);
  margin-bottom: 12px;
  line-height: 1.15;
}

.legal-meta {
  font-size: 13px;
  color: var(--on-muted);
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.legal-wrap h2 {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 48px;
  margin-bottom: 14px;
}

.legal-wrap p {
  font-size: 15px;
  color: var(--on-2);
  margin-bottom: 16px;
  line-height: 1.75;
}

.legal-wrap ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-wrap ul li {
  font-size: 15px;
  color: var(--on-2);
  margin-bottom: 8px;
  line-height: 1.75;
}

.legal-wrap a {
  color: var(--gold-lt);
}

.legal-wrap strong {
  color: var(--on);
  font-weight: 600;
}
