:root {
  --ink: #141821;
  --ink-2: #3a4150;
  --ink-3: #6b7384;
  --paper: #f4efe6;
  --sheet: #fffdf8;
  --line: #e4ddd0;
  --copper: #c45c26;
  --copper-2: #9a3f14;
  --copper-tint: #f7ebe3;
  --slate: #1f5f62;
  --slate-2: #2f7c80;
  --night: #0e1218;
  --gold: #d4a04a;
  --display: "Source Serif 4", "Noto Serif", "Times New Roman", Georgia, serif;
  --sans: "Source Sans 3", "Noto Sans", "Segoe UI", Roboto, sans-serif;
  --measure: 42rem;
  --wide: 68rem;
  --radius: 20px;
  --shadow: 0 24px 60px -28px rgba(20, 24, 33, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  background:
    radial-gradient(900px 420px at 80% -10%, #fff8ee 0%, transparent 55%),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 19px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate); }
a:focus-visible {
  outline: 2px solid var(--slate);
  outline-offset: 3px;
}
::selection { background: var(--copper); color: #fff; }

.wrap {
  width: min(var(--wide), calc(100% - 32px));
  margin-inline: auto;
}
.prose { width: min(var(--measure), 100%); margin-inline: auto; }

/* ---------- masthead ---------- */
.mast {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--night) 92%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  color: #fff;
}
.mast__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
  padding: 8px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand__mark { flex: 0 0 auto; }
.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  line-height: 1;
}
.brand__name span { color: var(--gold); font-weight: 500; }
.brand__tag {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #b7c0cc;
}
.badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--night);
  background: var(--gold);
  border-radius: 999px;
  padding: 7px 12px;
  white-space: nowrap;
}
.progress {
  display: block;
  height: 3px;
  width: 100%;
  background: rgba(255,255,255,.12);
}
.progress > i {
  display: block;
  height: 100%;
  width: calc(var(--progress, 0) * 100%);
  background: linear-gradient(90deg, var(--slate-2), var(--gold), var(--copper));
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px) 0 8px;
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.05fr .95fr;
    align-items: end;
    gap: 48px;
    padding-top: 56px;
  }
}
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate);
  margin: 0 0 14px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--slate), var(--copper));
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.6vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.byline__who { font-size: .92rem; color: var(--ink-2); }
.byline__who b { color: var(--ink); }
.byline__meta { color: var(--ink-3); }
.byline__sponsor {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper-2);
}
.shares { display: flex; gap: 8px; }
.shares a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sheet);
  border: 1px solid var(--line);
  color: var(--ink-2);
  text-decoration: none;
}
.shares a:hover { border-color: var(--slate); color: var(--slate); }
.hero__media {
  position: relative;
}
.hero__media img {
  width: 100%;
  border-radius: 28px 8px 28px 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero__chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--night);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 999px;
}

/* ---------- article ---------- */
.lede {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-left: 5px solid var(--copper);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 36px auto 8px;
  font-size: 1.05rem;
}
.lede p { margin: 0; }
.story { padding: 8px 0 40px; }
.story p { margin: 0 0 1.05em; }
.story h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 2.2em 0 .7em;
}
.figure {
  margin: 1.6em auto;
  max-width: min(54rem, 100%);
}
.figure img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pull {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 1.6em 0;
  padding: 8px 0 8px 22px;
  border-left: 3px solid var(--gold);
}

/* weeks */
.weeks {
  display: grid;
  gap: 12px;
  margin: 1.4em 0 1.6em;
  padding: 0;
  list-style: none;
}
@media (min-width: 760px) {
  .weeks { grid-template-columns: 1fr 1fr; }
}
.weeks li {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px 16px 18px;
}
.weeks b {
  display: block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}

/* therapy */
.therapy {
  display: grid;
  gap: 14px;
  margin: 1.4em 0;
}
@media (min-width: 800px) {
  .therapy { grid-template-columns: repeat(3, 1fr); }
}
.therapy article {
  background: var(--night);
  color: #ece7dc;
  border-radius: 18px;
  padding: 22px 20px 20px;
}
.therapy h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 10px 0 8px;
  color: #fff;
}
.therapy p { margin: 0; font-size: .95rem; color: #c9c2b6; }
.therapy .n {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--night);
  font-weight: 800;
  font-size: 13px;
}

/* quotes */
.quotes { display: grid; gap: 28px; margin: 28px 0 8px; }
.quote {
  display: grid;
  gap: 14px;
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
@media (min-width: 720px) {
  .quote { grid-template-columns: 220px 1fr; align-items: stretch; }
  .quote--flip { grid-template-columns: 1fr 220px; }
  .quote--flip > img { order: 2; }
}
.quote > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  border-radius: 0;
  box-shadow: none;
}
.quote blockquote {
  margin: 0;
  padding: 20px 22px 18px;
  font-size: 1.02rem;
}
.quote footer {
  margin-top: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.stars {
  display: inline-block;
  width: 92px;
  height: 15px;
  flex: 0 0 auto;
  object-fit: contain;
  min-height: 0;
}

.offer {
  background: var(--copper-tint);
  border: 1px solid #edcbb8;
  border-radius: 20px;
  padding: 22px 22px 8px;
  margin: 1.5em 0;
}
.perks {
  display: grid;
  gap: 8px;
  margin: 0 0 1.1em;
  padding: 0;
  list-style: none;
}
.perks li {
  padding-left: 28px;
  position: relative;
}
.perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--slate) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M5 12.5l4.2 4.2L19 7'/></svg>") center / 10px no-repeat;
}

.cta {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  background: var(--copper);
  box-shadow: 0 8px 0 0 var(--copper-2);
  border-radius: 14px;
  padding: 16px 18px;
  font-weight: 800;
  font-size: 1.05rem;
  margin: 8px 0 28px;
  transition: transform .12s, background .12s;
}
.cta:hover { background: #d1662c; transform: translateY(-1px); }
.cta:active { transform: translateY(4px); box-shadow: 0 3px 0 0 var(--copper-2); }

.alert {
  background: var(--night);
  color: #ece7dc;
  border-radius: 16px;
  padding: 18px 20px;
  margin: 1.4em 0;
}
.alert strong { color: #fff; }

/* form */
.formwrap {
  scroll-margin-top: 76px;
  margin: 36px auto 8px;
  max-width: min(34rem, 100%);
}
.form {
  background: var(--night);
  color: #d8d3c8;
  border-radius: 24px;
  padding: clamp(22px, 4vw, 32px);
  box-shadow: var(--shadow);
}
.form__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.form h2 {
  font-family: var(--display);
  color: #fff;
  margin: 0 0 8px;
  font-size: 1.7rem;
}
.form__lede { margin: 0 0 22px; }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 6px;
  color: #ece7dc;
}
.field input {
  width: 100%;
  border: 1px solid #343b48;
  background: #1a202b;
  color: #fff;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
}
.field input:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}
.field__err {
  color: #f0a090;
  font-size: .85rem;
  margin: 6px 0 0;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .92rem;
  margin: 8px 0 16px;
}
.consent input { margin-top: 5px; }
.consent a { color: var(--gold); }
.form button {
  width: 100%;
  border: 0;
  cursor: pointer;
  background: var(--copper);
  color: #fff;
  font: inherit;
  font-weight: 800;
  padding: 15px;
  border-radius: 12px;
}
.form button:hover:not(:disabled) { background: #d1662c; }
.form button:disabled { opacity: .62; cursor: default; }
.form__note { text-align: center; font-size: .88rem; color: #9aa3b2; margin: 12px 0 0; }
.form__fail { color: #f0a090; }
.done { text-align: center; padding: 12px 0; }
.done h3 { color: #fff; font-family: var(--display); }
.done-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--slate);
  color: #fff;
  margin-bottom: 8px;
}

/* footer */
.legal {
  margin-top: 56px;
  padding: 36px 0 100px;
  background: var(--night);
  color: #a8b0bc;
  font-size: 14px;
  line-height: 1.65;
}
.legal .wrap { width: min(48rem, calc(100% - 32px)); }
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.legal-nav a { color: #fff; text-decoration: none; font-weight: 600; }
.legal p { margin: 0 0 1em; }
.legal a { color: var(--gold); }

.sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  transform: translateY(140%);
  transition: transform .28s ease;
}
.sticky.is-on { transform: none; }
.sticky a {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--copper);
  color: #fff;
  font-weight: 800;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(20,24,33,.35);
}
@media (min-width: 760px) { .sticky { display: none; } }

@media (max-width: 640px) {
  .mast__row { gap: 8px; }
  .brand__tag { display: none; }
  .badge { font-size: 9px; padding: 6px 8px; letter-spacing: .08em; }
  .hero__media img { aspect-ratio: 16/11; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cta, .sticky { transition: none; }
}
