:root {
  --teal: #12403B;
  --teal-deep: #0C2E2A;
  --amber: #F0B429;
  --amber-ink: #8A6212;
  --cream: #FAF6EE;
  --cream-deep: #F4EEE1;
  --terracotta: #D96C4A;
  --ink: #1E231F;
  --muted: #4A544C;
  --caption: #6B665A;
  --line: #E4DCC8;
  --white: #FFFFFF;
  --on-teal: #E8E4D8;
  --on-teal-dim: #9FC2BC;
  --green: #1D6B52;
  --red: #B4452C;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
  --container: 1120px;
  --gutter: 20px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.15; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--amber-ink); }

.sprite { position: absolute; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--teal);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--amber-ink);
  outline-offset: 3px;
  border-radius: 4px;
}

[data-placeholder] { border-style: dashed !important; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.btn--amber { background: var(--amber); color: var(--ink); }
.btn--amber:hover { background: #E0A518; color: var(--ink); }

.btn--ghost { background: transparent; border-color: var(--teal); color: var(--teal); }
.btn--ghost:hover { background: var(--teal); color: var(--cream); }

.btn--quiet {
  background: transparent;
  border-color: rgba(250, 246, 238, .45);
  color: var(--on-teal);
}
.btn--quiet:hover { background: rgba(250, 246, 238, .12); color: var(--cream); }

.btn--sm { min-height: 44px; padding: 10px 18px; font-size: 15px; }
.btn--lg { min-height: 56px; padding: 16px 32px; font-size: 17px; }

/* ---------- Lockup ---------- */

.lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal);
  text-decoration: none;
}
.lockup__mark { width: 34px; height: 34px; flex-shrink: 0; color: currentColor; }
.lockup__text { display: flex; flex-direction: column; gap: 2px; }
.lockup__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
  color: var(--teal);
  white-space: nowrap;
}
.lockup__strap {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber-ink);
}
.lockup--reversed { color: var(--cream); }
.lockup--reversed .lockup__name { color: var(--cream); }
.lockup--reversed .lockup__strap { color: var(--amber); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 246, 238, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}
.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 15.5px;
  font-weight: 500;
}
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--teal); text-decoration: underline; }
.site-nav a[aria-current="page"] { color: var(--teal); font-weight: 600; }

@media (max-width: 800px) {
  .site-nav { display: none; }
  .site-header__inner { justify-content: space-between; gap: 12px; }
  .lockup__strap { display: none; }
}

@media (max-width: 480px) {
  .site-header .lockup__name { font-size: 18px; }
  .site-header .lockup__mark { width: 28px; height: 28px; }
  .site-header .lockup { gap: 9px; }
  .site-header .btn--sm { padding: 10px 14px; font-size: 14px; white-space: nowrap; }
}

/* ---------- Hero ---------- */

.hero { padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 64px); }
.hero--page { padding-bottom: clamp(32px, 4vw, 48px); }
.hero__inner { max-width: 780px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--amber-ink);
  margin-bottom: 18px;
}
.eyebrow a { color: inherit; }
.eyebrow--on-teal { color: var(--amber); }

.hero__title {
  font-size: clamp(36px, 5.6vw, 58px);
  letter-spacing: -0.5px;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero__lede {
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__note { margin-top: 18px; font-size: 14.5px; color: var(--caption); max-width: 60ch; }

/* ---------- Above the fold ---------- */

.fold { padding: clamp(40px, 6vw, 76px) 0 clamp(48px, 7vw, 80px); }
.fold__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 940px) {
  .fold__inner { grid-template-columns: 1fr; }
}

.fold__title {
  font-size: clamp(33px, 4.9vw, 52px);
  letter-spacing: -0.5px;
  line-height: 1.12;
  color: var(--teal);
  margin-bottom: 20px;
}
.fold__lede {
  font-size: clamp(16.5px, 1.8vw, 18.5px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 14px;
}
.fold__lede--tight { color: var(--ink); font-weight: 500; margin-bottom: 0; }
.fold__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.fold__note { margin-top: 18px; font-size: 14.5px; color: var(--caption); max-width: 52ch; }

/* ---------- The split visual ---------- */

.split {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(18, 64, 59, .07);
}

.split__side { display: flex; flex-direction: column; gap: 10px; }
.split__label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--caption);
}
.split__label--menu { color: var(--amber-ink); }

.searchbar {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
}
.searchbar--ghost { opacity: .62; }
.searchbar__icon { width: 17px; height: 17px; flex-shrink: 0; color: var(--caption); }
.searchbar__text { font-size: 15px; line-height: 1.35; color: var(--ink); }

.split__vs {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--caption);
  text-align: center;
  display: flex;
  align-items: center;
  gap: 14px;
}
.split__vs::before, .split__vs::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.split__side--menu {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.devicelist { display: flex; flex-direction: column; }
.devicelist li {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--teal);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.devicelist li:last-child { border-bottom: 0; }
.devicelist__note {
  margin-top: 12px;
  font-size: 13.5px;
  font-style: italic;
  color: var(--amber-ink);
}

/* ---------- Strip ---------- */

.strip { background: var(--teal); color: var(--on-teal); padding: 22px 0; }
.strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.strip__item { display: flex; flex-direction: column; gap: 3px; }
.strip__k { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--amber); }
.strip__v { font-size: 13.5px; color: var(--on-teal-dim); }

@media (max-width: 720px) {
  .strip__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ---------- Print trail ---------- */

.trail {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  color: var(--teal);
}
.trail__print { width: 26px; height: 26px; flex-shrink: 0; }
.trail__print--a { opacity: .22; transform: rotate(-8deg); }
.trail__print--b { opacity: .38; transform: rotate(4deg) translateY(14px); }
.trail__print--c { opacity: .55; transform: rotate(-6deg); }
.trail__print--amber { color: var(--amber); transform: rotate(3deg) translateY(14px); }

.trail--cta { color: var(--cream); margin-bottom: 26px; }
.trail--cta .trail__print { width: 30px; height: 30px; }

/* ---------- Sections ---------- */

.section { padding: clamp(56px, 8vw, 92px) 0; }
.section--cream-deep { background: var(--cream-deep); }
.section--teal { background: var(--teal); color: var(--on-teal); }

.section__head { max-width: 680px; margin-bottom: clamp(32px, 5vw, 52px); }
.section__title { font-size: clamp(28px, 4vw, 40px); color: var(--teal); margin-bottom: 14px; }
.section__title--on-teal { color: var(--cream); }
.section__lede { font-size: 17px; color: var(--muted); }
.section--teal .section__lede { color: var(--on-teal); }
.on-teal { color: var(--on-teal); font-size: 17px; line-height: 1.6; }

/* ---------- Problems list ---------- */

.problems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 40px;
  border-top: 1px solid var(--line);
}
@media (max-width: 820px) { .problems { grid-template-columns: 1fr; } }

.problem {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.problem__n {
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--amber-ink);
  width: 26px;
}
.problem p { font-size: 15.5px; line-height: 1.55; color: var(--muted); }

/* ---------- Steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .steps--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .steps, .steps--4 { grid-template-columns: 1fr; } }

.step { display: flex; flex-direction: column; gap: 10px; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--amber);
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 4px;
}
.step__title { font-size: 20px; font-weight: 600; color: var(--teal); }
.step p { font-size: 15.5px; line-height: 1.55; color: var(--muted); }

/* ---------- Ticks and crosses ---------- */

.ticks { display: flex; flex-direction: column; gap: 10px; }
.ticks--tight { gap: 8px; }
.ticks li, .crosses li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--muted);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 11px;
  height: 6px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}
.crosses { display: flex; flex-direction: column; gap: 10px; }
.crosses li::before {
  content: "×";
  position: absolute;
  left: 4px;
  top: -1px;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--red);
}

/* ---------- The offer ---------- */

.offer {
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.offer__head { background: var(--teal); color: var(--on-teal); padding: clamp(28px, 4vw, 44px); }
.offer__eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.offer__title { font-size: clamp(30px, 4.4vw, 46px); color: var(--cream); margin-bottom: 14px; }
.offer__lede { font-size: 17px; line-height: 1.6; color: var(--on-teal); max-width: 58ch; }

.offer__body { padding: clamp(24px, 4vw, 44px); display: flex; flex-direction: column; gap: 36px; }

.offer__part-title {
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--amber-ink);
  margin-bottom: 8px;
}

.stack { display: flex; flex-direction: column; }
.stack__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.stack__item:first-child { padding-top: 0; }
.stack__main { flex-grow: 1; display: flex; flex-direction: column; gap: 6px; }
.stack__title { font-family: var(--display); font-weight: 600; font-size: 19px; color: var(--teal); }
.stack__main p { font-size: 15.5px; line-height: 1.55; color: var(--muted); }
.stack__value {
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  color: var(--caption);
}

@media (max-width: 600px) {
  .stack__item { flex-direction: column; gap: 8px; }
}

.stack--bonus .stack__item { border-bottom-style: dashed; }
.stack__kills {
  font-size: 14.5px !important;
  font-style: italic;
  color: var(--amber-ink) !important;
  margin-top: 2px;
}

.total {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.total__row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.total__k { font-size: 13px; font-weight: 600; letter-spacing: 1.3px; text-transform: uppercase; color: var(--caption); }
.total__v { font-family: var(--display); font-weight: 700; font-size: 26px; color: var(--teal); text-align: right; }
.total__v--struck { color: var(--caption); text-decoration: line-through; text-decoration-thickness: 2px; }
.total__row--price { border-top: 1px solid var(--line); padding-top: 12px; }
.total__row--price .total__v { font-size: 32px; }
.total__sub { display: block; font-family: var(--body); font-size: 15px; font-weight: 500; color: var(--caption); }

.limits { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .limits { grid-template-columns: 1fr; } }
.limit {
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.limit__title { font-family: var(--display); font-weight: 600; font-size: 19px; color: var(--teal); }
.limit p { font-size: 15px; line-height: 1.55; color: var(--muted); }

.guarantee {
  background: #FDF3E0;
  border: 2px solid #EAD9B0;
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guarantee__title { font-family: var(--display); font-weight: 600; font-size: 19px; color: #6B5326; }
.guarantee p { font-size: 15.5px; line-height: 1.55; color: #5C4A23; }
.guarantee__note { font-size: 14px !important; color: #8A6212 !important; }

.offer__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.offer__cta-note { font-size: 14.5px; color: var(--caption); }

.offer__transparency {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  border-left: 4px solid var(--amber);
  padding-left: 18px;
  max-width: 62ch;
}
.offer__smallprint { font-size: 14.5px; line-height: 1.55; color: var(--caption); max-width: 68ch; }

.stack__per {
  display: block;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--caption);
}
@media (max-width: 600px) {
  .stack__per { display: inline; }
}

/* ---------- Value equation ---------- */

.veq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 820px) { .veq { grid-template-columns: 1fr; } }

.veq__item {
  background: var(--teal-deep);
  border: 1px solid rgba(250, 246, 238, .14);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.veq__item--hero { border-color: var(--amber); }
.veq__k {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--on-teal-dim);
}
.veq__item--hero .veq__k { color: var(--amber); }
.veq__title { font-family: var(--display); font-weight: 600; font-size: 21px; color: var(--cream); }
.veq__item p:last-child { font-size: 15.5px; line-height: 1.55; color: var(--on-teal); }
.veq__note {
  margin-top: 24px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--on-teal-dim);
  max-width: 68ch;
}

.veq--light .veq__item { background: var(--white); border-color: var(--line); }
.veq--light .veq__k { color: var(--amber-ink); }
.veq--light .veq__title { color: var(--teal); }
.veq--light .veq__item p:last-child { color: var(--muted); }

/* ---------- Case teaser ---------- */

.case-teaser { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (max-width: 900px) { .case-teaser { grid-template-columns: 1fr; } }

.case-teaser__copy { display: flex; flex-direction: column; }
.case-teaser__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.case-teaser__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.case-teaser__facts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  background: var(--teal-deep);
  border-radius: var(--radius);
}
.fact__v { font-family: var(--display); font-weight: 700; font-size: 28px; color: var(--amber); line-height: 1; }
.fact__k { font-size: 12.5px; line-height: 1.4; color: var(--on-teal-dim); }

.case-teaser__facts--light li { background: var(--teal); }
.case-teaser__facts--light .fact__k { color: var(--on-teal-dim); }

/* ---------- Qualify ---------- */

.qualify { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 800px) { .qualify { grid-template-columns: 1fr; } }

.qualify__col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.qualify__col--yes { border-left: 5px solid var(--green); }
.qualify__col--no { border-left: 5px solid var(--red); }
.qualify__title { font-family: var(--display); font-weight: 600; font-size: 20px; color: var(--teal); }

/* ---------- FAQ ---------- */

.faq { display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
}
.faq__q {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--teal);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-family: var(--body);
  font-size: 26px;
  font-weight: 400;
  color: var(--amber-ink);
  flex-shrink: 0;
  line-height: 1;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a { padding: 0 0 20px; }
.faq__a p { font-size: 15.5px; line-height: 1.6; color: var(--muted); max-width: 68ch; }

/* ---------- Prose (articles) ---------- */

.prose { max-width: 720px; }
.prose h2 {
  font-size: clamp(24px, 3vw, 31px);
  color: var(--teal);
  margin: 44px 0 16px;
}
.prose h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  color: var(--teal);
  margin: 32px 0 12px;
}
.prose > :first-child { margin-top: 0; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--ink); margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 26px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { font-size: 17px; line-height: 1.7; color: var(--ink); margin-bottom: 10px; padding-left: 4px; }
.prose li::marker { color: var(--amber-ink); }
.prose strong { font-weight: 600; }
.prose em { font-style: italic; }

.callout {
  background: var(--cream-deep);
  border: 2px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 30px 0;
}
.callout p { font-size: 16px; line-height: 1.6; color: var(--muted); margin-bottom: 12px; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Blog list ---------- */

.postlist { display: flex; flex-direction: column; gap: 22px; max-width: 800px; }
.postcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.postcard__meta { font-size: 13px; color: var(--caption); }
.postcard__tag { font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; color: var(--amber-ink); }
.postcard__title { font-size: 24px; font-weight: 700; line-height: 1.25; }
.postcard__title a { color: var(--teal); text-decoration: none; }
.postcard__title a:hover { text-decoration: underline; }
.postcard__excerpt { font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.postcard__more a { font-size: 15px; font-weight: 600; }

/* ---------- CTA ---------- */

.cta__panel {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  color: var(--on-teal);
}
.cta__title { font-size: clamp(27px, 4vw, 40px); color: var(--cream); margin-bottom: 16px; max-width: 20ch; }
.cta__lede { font-size: 17px; line-height: 1.6; color: var(--on-teal); max-width: 58ch; }
.cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 32px; }
.cta__alt { font-size: 15.5px; color: var(--on-teal-dim); }
.cta__alt a { color: var(--cream); }
.cta__alt a:hover { color: var(--amber); }

/* ---------- Footer ---------- */

.site-footer { background: var(--teal-deep); color: var(--on-teal); padding: clamp(44px, 6vw, 64px) 0 28px; }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 44px; justify-content: space-between; }
.site-footer__brand { max-width: 320px; display: flex; flex-direction: column; gap: 14px; }
.site-footer__descriptor { font-size: 15px; color: var(--on-teal-dim); line-height: 1.55; }

.site-footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.site-footer__heading {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.site-footer__list { display: flex; flex-direction: column; gap: 9px; font-size: 15px; }
.site-footer__list a { color: var(--on-teal); text-decoration: none; }
.site-footer__list a:hover { color: var(--amber); text-decoration: underline; }
.site-footer__list li { color: var(--on-teal-dim); }

.site-footer__legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 246, 238, .14);
  font-size: 13.5px;
  color: var(--on-teal-dim);
}
