:root {
  --cream: #f7f6f2;
  --paper: #efede6;
  --ink: #17181a;
  --charcoal: #28242b;
  --red: #ce2b1e;
  --red-dark: #a81f14;
  --rose: #c98d7e;
  --blush: #f4e3dc;
  --muted: #626266;
  --line: rgba(23, 24, 26, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Geist", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: clip;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: 84px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 242, 0.97);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand span {
  color: var(--red);
}

.site-header nav,
footer nav {
  display: flex;
  gap: 29px;
  align-items: center;
}

.site-header nav a {
  padding: 31px 0 27px;
  color: #56565a;
  font-size: 13px;
  font-weight: 650;
  border-bottom: 3px solid transparent;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.header-cta {
  justify-self: end;
  background: var(--red);
  color: white;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta span,
.button span {
  margin-left: 8px;
}

.hero {
  padding: 94px 0 82px;
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 141, 126, 0.11), transparent 31%),
    var(--charcoal);
  color: var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 78px;
  align-items: center;
}

.eyebrow,
.kicker,
.mini-label,
.phase-label,
.card-label {
  margin: 0;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.eyebrow {
  color: var(--rose);
  margin-bottom: 25px;
}

.hero h1,
h2,
h3 {
  font-family: "Geist", Arial, sans-serif;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(54px, 6.1vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.062em;
}

.hero h1 em {
  display: inline;
  color: var(--rose);
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-dek {
  max-width: 715px;
  margin: 27px 0 0;
  color: rgba(247, 246, 242, 0.77);
  font-size: 18px;
  line-height: 1.65;
}

.hero-dek strong {
  color: white;
  font-weight: 680;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 23px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--red);
  color: white;
}

.button.primary:hover {
  background: white;
  color: var(--red);
}

.text-link {
  color: white;
  font-size: 13px;
  font-weight: 750;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--rose);
}

.credential-line {
  display: flex;
  gap: 15px 27px;
  flex-wrap: wrap;
  margin-top: 42px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.credential-line span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.credential-line span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

.mandate-card {
  position: relative;
  padding: 36px 36px 34px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 20px 20px 0 var(--red);
}

.card-label {
  display: block;
  color: var(--red);
  margin-bottom: 22px;
}

.mandate-card > p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(24px, 2.2vw, 31px);
  line-height: 1.37;
  letter-spacing: -0.018em;
}

.mandate-card > p strong {
  font-family: "Geist", Arial, sans-serif;
}

.signature {
  margin-top: 25px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.signature b {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: white;
}

.stat-bar > div {
  padding: 30px 18px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-bar > div:first-child {
  border-left: 0;
}

.stat-bar b {
  display: block;
  font-size: 29px;
  letter-spacing: -0.035em;
}

.stat-bar span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.57);
  text-transform: uppercase;
  font-size: 9.5px;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.section {
  padding: 112px 0;
}

.kicker {
  color: var(--red);
  margin-bottom: 19px;
}

.kicker.light {
  color: var(--rose);
}

h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 4.3vw, 61px);
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
}

.sticky-copy {
  align-self: start;
}

.callout {
  margin-top: 34px;
  padding: 24px 25px;
  border-left: 4px solid var(--red);
  background: var(--blush);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.62;
}

.problem-list {
  border-top: 1px solid var(--line);
}

.problem-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.problem-list article > span {
  padding-top: 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.problem-list h3 {
  margin: 0 0 8px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.problem-list p,
.phase-card > p,
.offer-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.64;
}

.approach-section {
  background: var(--paper);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 58px;
  align-items: end;
}

.split-heading .lead {
  max-width: 440px;
  margin: 0 0 2px;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.phase-card {
  min-height: 445px;
  padding: 34px 30px;
  background: white;
  border-top: 5px solid var(--red);
  display: flex;
  flex-direction: column;
}

.phase-card.featured {
  background: var(--charcoal);
  color: white;
  border-color: var(--rose);
}

.phase-number {
  color: var(--red);
  font-size: 48px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.05em;
}

.featured .phase-number,
.featured .phase-label {
  color: var(--rose);
}

.phase-label {
  margin-top: 20px;
  color: var(--muted);
}

.phase-card h3 {
  margin: 8px 0 14px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.featured > p {
  color: rgba(255, 255, 255, 0.7);
}

.phase-card ul,
.fit-card ul,
.offer-card ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.phase-card li,
.offer-card li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.35;
}

.phase-card li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.featured li {
  border-color: rgba(255, 255, 255, 0.14);
}

.featured li::before {
  color: var(--rose);
}

.fit-section {
  background: var(--charcoal);
  color: white;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}

.fit-card {
  padding: 37px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.fit-card.good {
  background: white;
  color: var(--ink);
  border: 0;
}

.mini-label {
  display: block;
  color: var(--rose);
  margin-bottom: 17px;
}

.fit-card.good .mini-label,
.offer-card .mini-label {
  color: var(--red);
}

.fit-card h3,
.offer-card h3 {
  margin: 0 0 18px;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.fit-card li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14.5px;
  line-height: 1.45;
}

.fit-card.good li {
  border-color: var(--line);
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 23px;
  width: 9px;
  height: 2px;
  background: var(--rose);
}

.fit-card.good li::before {
  background: var(--red);
}

.credibility-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 83px;
  align-items: center;
}

.portrait {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.portrait::after {
  content: "";
  position: absolute;
  left: -15px;
  bottom: -15px;
  width: 58%;
  height: 46%;
  background: var(--red);
  z-index: -1;
}

.portrait img {
  width: 100%;
  height: 610px;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.9);
}

.receipt-list {
  margin-top: 37px;
  border-top: 1px solid var(--line);
}

.receipt-list > div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 24px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.receipt-list b {
  color: var(--red);
  font-size: 22px;
}

.receipt-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.offers-section {
  background: var(--blush);
}

.section-heading .lead {
  max-width: 690px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 22px;
  margin-top: 54px;
}

.offer-card {
  padding: 40px;
  background: white;
  border-top: 5px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.primary-offer {
  background: var(--charcoal);
  color: white;
  border-color: var(--rose);
}

.offer-card h3 {
  margin-top: 3px;
  font-size: clamp(29px, 3vw, 39px);
}

.offer-card .timing {
  margin: -7px 0 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.primary-offer .mini-label,
.primary-offer .timing {
  color: var(--rose);
}

.primary-offer > p {
  color: rgba(255, 255, 255, 0.72);
}

.offer-card ul {
  width: 100%;
  margin-bottom: 31px;
}

.offer-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
}

.primary-offer li {
  border-color: rgba(255, 255, 255, 0.14);
}

.primary-offer li::before {
  color: var(--rose);
}

.button.outline {
  margin-top: auto;
  color: var(--red);
  border: 1px solid var(--red);
}

.button.outline:hover {
  background: var(--red);
  color: white;
}

.light-button {
  margin-top: auto;
  background: white;
  color: var(--red);
}

.light-button:hover {
  background: var(--rose);
  color: var(--ink);
}

.faq-shell {
  max-width: 1000px;
}

.faq-list {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 750;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  color: var(--red);
  font-size: 23px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 790px;
  margin: -4px 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.final-cta {
  padding: 112px 0;
  background: var(--red);
  color: white;
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto;
}

.final-cta > .shell > p:not(.kicker) {
  max-width: 610px;
  margin: 22px auto 31px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.65;
}

.final-cta .light-button {
  margin: 0;
}

.final-cta small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 11px;
}

footer {
  padding: 65px 0 28px;
  background: var(--ink);
  color: white;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: start;
}

.footer-brand {
  font-size: 28px;
}

.footer-top p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

footer nav a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
}

footer nav a:hover {
  color: white;
}

.copyright {
  margin-top: 45px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.39);
  font-size: 10px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-grid,
  .problem-grid,
  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

  .split-heading {
    display: block;
  }

  .split-heading .lead {
    margin-top: 22px;
  }

  .phase-grid {
    grid-template-columns: 1fr;
  }

  .phase-card {
    min-height: 0;
  }

  .portrait {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 34px), 1180px);
  }

  .site-header {
    min-height: 72px;
    padding: 0 17px;
  }

  .brand {
    font-size: 22px;
  }

  .header-cta {
    padding: 12px 13px;
    font-size: 10.5px;
  }

  .hero {
    padding: 68px 0 62px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .hero-dek {
    font-size: 16px;
  }

  .mandate-card {
    padding: 29px;
    box-shadow: 11px 11px 0 var(--red);
  }

  .stat-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stat-bar > div {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section,
  .final-cta {
    padding: 80px 0;
  }

  .fit-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .fit-card,
  .offer-card {
    padding: 29px 25px;
  }

  .portrait img {
    height: 520px;
  }

  .receipt-list > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer-top {
    display: block;
  }

  footer nav {
    margin-top: 34px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
