:root {
  --ink: #4A3A32;
  --ink-soft: #6f5b50;
  --paper: #F5EBDD;
  --paper-light: #fffaf3;
  --terracotta: #E77A45;
  --apricot: #FFC38A;
  --lavender: #B9A7E6;
  --line: rgba(74, 58, 50, 0.15);
  --shadow: 0 24px 70px rgba(74, 58, 50, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 8%, rgba(185, 167, 230, 0.22), transparent 28%),
    var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(169, 79, 49, 0.78);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--paper-light);
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 195, 138, 0.18), transparent 30%),
    radial-gradient(circle at 72% 42%, rgba(185, 167, 230, 0.16), transparent 26%),
    #4A3A32;
  transition: opacity 800ms ease, visibility 800ms ease;
}

.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.intro__mist {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 34% 38%, rgba(255, 250, 243, 0.14), transparent 30%),
    radial-gradient(circle at 70% 58%, rgba(231, 122, 69, 0.16), transparent 22%);
  filter: blur(28px);
  animation: drift 9s ease-in-out infinite alternate;
}

.intro__d20,
.choice-hero__d20 {
  position: absolute;
  aspect-ratio: 1;
  pointer-events: none;
}

.intro__d20 {
  width: min(62vw, 520px);
  opacity: 0.78;
}

.intro__line {
  position: relative;
  z-index: 2;
  width: min(92vw, 760px);
  margin: 0;
  color: var(--paper-light);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 650;
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 16px 42px rgba(33, 25, 21, 0.55);
  opacity: 0;
  transform: translateY(18px);
}

.intro__line.is-visible {
  animation: intro-line 1.55s ease forwards;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: rgba(255, 250, 243, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(74, 58, 50, 0.08);
}

.brand {
  flex: 0 0 auto;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(0.85rem, 2vw, 1.5rem);
  font-size: 0.92rem;
}

.site-nav a {
  white-space: nowrap;
  color: var(--ink);
  font-weight: 700;
}

.site-nav .nav-cta {
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(74, 58, 50, 0.18);
  background: rgba(255, 250, 243, 0.72);
}

.choice-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 5.6rem clamp(20px, 5vw, 72px) 2.4rem;
}

.choice-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(245, 235, 221, 0.98), rgba(245, 235, 221, 0.82) 50%, rgba(255, 250, 243, 0.68)),
    image-set(
      url("./assets/img/hero-desk.avif") type("image/avif"),
      url("./assets/img/hero-desk.webp") type("image/webp"),
      url("./assets/img/hero-desk.png") type("image/png")
    ) center / cover no-repeat;
}

.choice-hero__d20 {
  right: clamp(-7rem, -6vw, -2rem);
  top: 18%;
  z-index: -1;
  width: min(44vw, 680px);
  opacity: 0.42;
}

.choice-hero__content {
  width: min(1160px, 100%);
  margin-inline: auto;
}

.choice-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(280px, 360px);
  gap: clamp(1.6rem, 3.4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(1rem, 1.8vw, 1.55rem);
}

  .choice-hero__copy {
    width: 100%;
    max-width: calc(100vw - 2rem);
    min-width: 0;
  }

  .choice-hero__copy p,
  .choice-heading p,
  .choice-card p {
    overflow-wrap: anywhere;
  }

  .choice-hero__copy {
    min-width: 0;
  }

.portrait-card {
  position: relative;
  width: min(100%, 320px);
  margin: 0;
  justify-self: end;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(231, 122, 69, 0.22);
  background:
    radial-gradient(circle at 80% 10%, rgba(185, 167, 230, 0.2), transparent 28%),
    rgba(255, 250, 243, 0.48);
  z-index: -1;
}

.portrait-card__image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(74, 58, 50, 0.16);
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 28px 74px rgba(74, 58, 50, 0.16);
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 34%;
}

.portrait-card figcaption {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 3px solid rgba(231, 122, 69, 0.7);
  color: var(--ink-soft);
  background: rgba(255, 250, 243, 0.76);
  box-shadow: 0 18px 44px rgba(74, 58, 50, 0.08);
}

.portrait-card figcaption span {
  display: block;
  color: #a94f31;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portrait-card figcaption strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--ink);
  line-height: 1.35;
}

.portrait-card figcaption p {
  margin: 0.55rem 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #a94f31;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.choice-hero__kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: 0.26rem 0.48rem 0.22rem;
  border-left: 3px solid var(--terracotta);
  color: #833f2a;
  background: rgba(255, 250, 243, 0.58);
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  letter-spacing: 0.22em;
  line-height: 1.1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 650;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(3.1rem, 5.4vw, 5.25rem);
  line-height: 1;
}

.title-mobile {
  display: none;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.choice-hero__lead {
  max-width: 68ch;
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.choice-hero__signature {
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-weight: 800;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(74, 58, 50, 0.16);
  color: var(--ink);
  background: rgba(255, 250, 243, 0.74);
  font-size: 0.86rem;
  font-weight: 800;
}

.choice-heading {
  max-width: 620px;
  margin-bottom: 0.8rem;
}

.choice-heading .eyebrow {
  margin-bottom: 0.45rem;
}

.choice-heading h2 {
  max-width: 720px;
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
}

.choice-heading p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.choice-section {
  padding: clamp(3.2rem, 6vw, 5.6rem) clamp(20px, 6vw, 88px);
  border-top: 1px solid rgba(74, 58, 50, 0.08);
  background:
    radial-gradient(circle at 86% 6%, rgba(255, 195, 138, 0.16), transparent 28%),
    rgba(255, 250, 243, 0.42);
  scroll-margin-top: 86px;
}

.choice-section__inner {
  width: min(1080px, 100%);
  margin-inline: auto;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1080px;
}

.choice-card {
  display: block;
  min-height: 178px;
  padding: clamp(1.2rem, 2.6vw, 1.8rem);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(231, 122, 69, 0.62);
  color: var(--ink);
  background: rgba(255, 250, 243, 0.76);
  box-shadow: 0 20px 60px rgba(74, 58, 50, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 122, 69, 0.44);
  background: rgba(255, 250, 243, 0.92);
}

.choice-card__kicker {
  color: #a94f31;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.choice-card strong {
  display: block;
  margin: 0.82rem 0 0.55rem;
  font-size: clamp(1.14rem, 1.45vw, 1.32rem);
  line-height: 1.35;
}

.choice-card p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.choice-card span:last-child {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #a94f31;
  font-weight: 800;
}

.choice-card span:last-child::after,
.mini-feature--link::after {
  content: ">";
  margin-left: 0.55rem;
  color: var(--terracotta);
}

.path-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 4.4vw, 4.2rem);
  align-items: start;
  padding: clamp(5rem, 8vw, 8rem) clamp(20px, 6vw, 88px);
  border-top: 1px solid rgba(74, 58, 50, 0.08);
  scroll-margin-top: 86px;
}

.path-section--alt {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 195, 138, 0.18), transparent 30%),
    rgba(255, 250, 243, 0.36);
}

.path-section__intro {
  position: sticky;
  top: 110px;
}

.path-section__intro h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 3.1vw, 3.35rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}
.path-section__intro p,
.final-cta p {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.offer-panel {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 250, 243, 0.84), rgba(245, 235, 221, 0.46));
  box-shadow: var(--shadow);
}

.offer-panel h3 {
  margin-bottom: 1rem;
  font-size: 1.24rem;
}

.offer-panel ul {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.offer-panel li::marker {
  color: var(--terracotta);
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1rem 0 1.2rem;
}

.quick-list span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.72rem 0.86rem;
  border: 1px solid rgba(74, 58, 50, 0.13);
  background: rgba(255, 250, 243, 0.68);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.offer-panel--dnd {
  background:
    radial-gradient(circle at 88% 8%, rgba(185, 167, 230, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 250, 243, 0.86), rgba(245, 235, 221, 0.5));
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 1.4rem;
  padding: 0.82rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: #3b2e28;
  background: #ffc38a;
  box-shadow: 0 14px 28px rgba(231, 122, 69, 0.14);
}

.button--secondary {
  color: var(--ink);
  border-color: rgba(74, 58, 50, 0.22);
  background: rgba(255, 250, 243, 0.78);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.mini-feature {
  margin-top: 1.8rem;
  padding: 1rem;
  border: 1px solid rgba(231, 122, 69, 0.24);
  background: rgba(255, 250, 243, 0.72);
}

.mini-feature--link {
  position: relative;
  display: block;
  padding-right: 2.2rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mini-feature--link:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 122, 69, 0.48);
  background: rgba(255, 250, 243, 0.92);
}

.mini-feature--link::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  margin-left: 0;
  font-weight: 900;
}

.mini-feature span,
.mini-feature a {
  display: block;
  color: #a94f31;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-feature strong {
  display: block;
  margin: 0.2rem 0 0.65rem;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.2;
}

.mini-feature p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.final-cta {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  margin: clamp(3rem, 6vw, 5rem) clamp(20px, 6vw, 88px);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(74, 58, 50, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.85), rgba(255, 195, 138, 0.2));
}

.final-cta h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(20px, 6vw, 88px);
  color: var(--ink-soft);
  border-top: 1px solid rgba(74, 58, 50, 0.1);
}

.site-footer p {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  color: var(--ink);
  font-weight: 700;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.disclaimer-note,
.linkedin-note {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.linkedin-note a {
  color: #a94f31;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-section,
.request-section {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(5rem, 8vw, 8rem) clamp(20px, 6vw, 88px);
  border-top: 1px solid rgba(74, 58, 50, 0.08);
}

.faq-section {
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 195, 138, 0.2), transparent 28%),
    rgba(255, 250, 243, 0.5);
}

.request-section {
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  align-items: start;
  background:
    radial-gradient(circle at 88% 6%, rgba(185, 167, 230, 0.2), transparent 28%),
    var(--paper);
  scroll-margin-top: 86px;
}

.faq-section__intro,
.request-copy {
  max-width: 760px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid details {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 14px 36px rgba(74, 58, 50, 0.06);
}

.faq-grid summary {
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-grid p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.request-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.9);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 800;
}

.request-form label span {
  font-size: 0.92rem;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(74, 58, 50, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-light);
  font: inherit;
}

.request-form textarea {
  min-height: 132px;
  resize: vertical;
}

.request-form__wide {
  grid-column: 1 / -1;
}

.request-form__consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 500;
}

.request-form__consent input {
  width: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.25rem;
}

.bot-field {
  display: none;
}

.thanks-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.resource-page {
  min-height: 100svh;
  padding-top: 6rem;
}

.resource-hero {
  padding: clamp(5rem, 8vw, 8rem) clamp(20px, 6vw, 88px) clamp(3rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 88% 8%, rgba(185, 167, 230, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 243, 0.82), rgba(255, 195, 138, 0.18));
}

.resource-hero h1 {
  max-width: 780px;
  font-size: clamp(2.5rem, 4.8vw, 4.9rem);
  line-height: 1.04;
}

.resource-hero p {
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(20px, 6vw, 88px);
  position: relative;
}

.resource-list::before {
  content: "";
  position: absolute;
  inset: clamp(3.5rem, 7vw, 6rem) clamp(32px, 7vw, 110px);
  border: 1px dashed rgba(231, 122, 69, 0.38);
  pointer-events: none;
}

.resource-list article {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 16px 42px rgba(74, 58, 50, 0.07);
}

.resource-list article:nth-child(even) {
  transform: translateY(1.4rem);
}

.resource-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(231, 122, 69, 0.28);
  color: #a94f31;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 195, 138, 0.18);
}

.resource-list h2 {
  margin-bottom: 0.75rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.3;
}

.resource-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

@keyframes intro-line {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  28%,
  76% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@keyframes drift {
  from {
    transform: translate3d(-1%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(1%, 1%, 0) scale(1.05);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .choice-grid,
  .path-section,
  .request-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .choice-hero__top {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .portrait-card {
    width: min(100%, 320px);
    justify-self: start;
  }

  .path-section__intro {
    position: static;
  }

  .path-section__intro h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 7vw, 3.4rem);
    line-height: 1.1;
  }
.choice-card {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  body,
  main,
  section,
  header,
  footer {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header {
    position: sticky;
    display: block;
    width: 100%;
    padding: 14px 16px 12px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .site-nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.15rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.6rem;
    margin-top: 0.65rem;
    font-size: 0.8rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .site-nav .nav-cta {
    display: none;
  }

  .choice-hero {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 3.5rem 1rem 3.25rem;
    overflow-x: clip;
  }

  .choice-hero__d20 {
    right: -28vw;
    top: 7rem;
    width: min(105vw, 420px);
    max-width: none;
    opacity: 0.28;
  }

  .choice-hero__content {
    width: 100%;
    max-width: 100%;
  }

  .choice-hero *,
  .choice-hero__top,
  .choice-hero__copy {
    min-width: 0;
  }

  .choice-hero__top {
    display: block;
  }

  .choice-hero__kicker {
    margin-bottom: 0.95rem;
    padding: 0.26rem 0.42rem 0.22rem;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
  }

  .choice-hero__top {
    gap: 1.35rem;
    margin-bottom: 2rem;
  }

  .portrait-card {
    width: min(72vw, 245px);
  }

  .portrait-card::before {
    inset: 10px -10px -10px 10px;
  }

  .portrait-card figcaption {
    margin-top: 0.75rem;
    padding: 0.85rem;
  }

  .portrait-card figcaption p {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.4vw, 2.35rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: inline;
  }

  h2 {
    font-size: clamp(1.9rem, 8.8vw, 3rem);
    line-height: 1.1;
    text-wrap: balance;
  }

  .choice-hero__lead,
  .path-section__intro p,
  .final-cta p {
    width: min(100%, 32ch);
    max-width: min(100%, 32ch);
    font-size: 1rem;
    line-height: 1.62;
    overflow-wrap: break-word;
  }

  .choice-heading p:last-child {
    width: min(100%, 32ch);
    max-width: min(100%, 32ch);
  }

  .choice-hero__signature {
    margin-bottom: 2rem;
  }

  .choice-heading {
    margin-bottom: 1rem;
  }

  .choice-grid {
    width: 100%;
    max-width: 100%;
    gap: 0.85rem;
  }

  .choice-card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 1.05rem;
    overflow: hidden;
  }

  .choice-card strong {
    margin: 0.85rem 0 0.55rem;
    max-width: 28ch;
    font-size: 1.08rem;
  }

  .choice-card p {
    max-width: 30ch;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .path-section {
    padding: 3.6rem 1rem;
  }

  .faq-section,
  .request-section {
    padding: 3.6rem 1rem;
  }

  .resource-page {
    padding-top: 0;
  }

  .resource-hero {
    padding: 3.6rem 1rem;
  }

  .resource-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .resource-list {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }

  .resource-list::before {
    inset: 3rem 1.4rem;
  }

  .resource-list article:nth-child(even) {
    transform: none;
  }

  .request-form {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .hero-action-row,
  .hero-action-row .button {
    width: 100%;
  }

  .hero-action-row {
    display: grid;
    width: min(100%, 22rem);
    max-width: calc(100vw - 2rem);
  }

  .hero-action-row .button {
    justify-content: center;
    min-width: 0;
  }

  .offer-panel {
    padding: 1.2rem;
  }

  .quick-list {
    grid-template-columns: 1fr;
  }

  .offer-panel ul {
    gap: 0.72rem;
  }

  .button,
  .action-row,
  .action-row .button {
    width: 100%;
  }

  .final-cta {
    display: block;
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .site-footer {
    display: block;
  }

  .site-footer div {
    margin-top: 1rem;
  }
}

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