@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Merriweather";
  src: url("../fonts/merriweather-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-latin-500-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/dm-sans-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #211a17;
  --ink-soft: #382c25;
  --paper: #f5f1e9;
  --paper-deep: #ebe3d6;
  --white: #fbf9f4;
  --gold: #c5a267;
  --gold-pale: #ead7b1;
  --text-muted: #736a60;
  --line: rgba(57, 44, 35, .18);
  --font-display: "Merriweather", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --max-width: 1240px;
  --gutter: clamp(22px, 5.2vw, 84px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.wrap {
  width: min(100% - (var(--gutter) * 2), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
  text-decoration: none;
}

.wordmark-mark {
  width: 34px;
  height: 34px;
  color: var(--gold-pale);
}

.wordmark-accent {
  color: var(--gold-pale);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  margin-left: auto;
}

.desktop-nav a,
.header-cta,
.mobile-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  color: rgba(255, 255, 255, .82);
  transition: color .2s ease;
}

.desktop-nav a:hover {
  color: var(--gold-pale);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(234, 215, 177, .7);
  padding: 0 16px;
  color: var(--white);
  white-space: nowrap;
}

.header-cta span,
.mobile-nav span {
  color: var(--gold-pale);
  font-size: 17px;
  line-height: 1;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(820px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 54%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(29, 22, 18, .95) 0%, rgba(29, 22, 18, .82) 34%, rgba(29, 22, 18, .25) 71%, rgba(29, 22, 18, .12) 100%),
    linear-gradient(0deg, rgba(29, 22, 18, .66), transparent 45%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(32px, 5.8vw, 76px);
  position: relative;
  z-index: 1;
  padding-top: 126px;
  padding-bottom: 82px;
}

.hero-copy-block {
  min-width: 0;
}

.hero-form-wrap {
  width: 100%;
  max-width: 700px;
  justify-self: end;
  padding: clamp(22px, 3vw, 38px);
}

.hero-form-wrap .request-form {
  padding-top: 17px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #8b6b3e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 27px;
  height: 1px;
  flex: 0 0 27px;
  background: currentColor;
}

.hero-eyebrow {
  color: var(--gold-pale);
}

.hero h1 {
  max-width: 100%;
  margin: 24px 0 20px;
  font: 400 clamp(2.6rem, 4.4vw, 4.25rem)/1.08 var(--font-display);
  letter-spacing: -.075em;
}

.hero-copy {
  max-width: 445px;
  margin: 0;
  color: rgba(255, 255, 255, .83);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}

.hero-note {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  padding: 0 23px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

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

.button span {
  font-size: 19px;
  line-height: 1;
}

.button-gold {
  color: var(--ink);
  background: var(--gold-pale);
}

.button-gold:hover {
  background: #f3e6c9;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ink-soft);
}

.hero-footnote {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 25px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .69);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-rule {
  width: min(110px, 12vw);
  height: 1px;
  background: rgba(255, 255, 255, .42);
}

.section-pad {
  padding-block: clamp(86px, 11vw, 154px);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
}

.intro-grid h2,
.section-heading h2,
.approach-heading h2 {
  margin: 0;
  font: 400 clamp(2.25rem, 4.5vw, 4.35rem)/1.12 var(--font-display);
  letter-spacing: -.055em;
}

.intro-grid h2 {
  max-width: 740px;
}

.intro-copy {
  max-width: 570px;
  margin: 24px 0 22px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: #997743;
  font-size: 17px;
  line-height: 1;
}

.topics-section {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  max-width: 700px;
}

.topics-section .eyebrow,
.approach-section .eyebrow,
.questions-section .eyebrow,
.request-section .eyebrow {
  margin-bottom: 25px;
}

.topics-section .eyebrow,
.approach-section .eyebrow,
.request-section .eyebrow {
  color: var(--gold-pale);
}

.section-heading > p:last-child {
  max-width: 450px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.topics-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, .65);
}

.topic-list {
  margin-top: clamp(48px, 7vw, 82px);
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.topic-row {
  display: grid;
  grid-template-columns: 54px minmax(180px, .7fr) minmax(260px, 1fr) 30px;
  align-items: center;
  gap: clamp(16px, 3.4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding: 30px 0;
}

.topic-index {
  align-self: start;
  padding-top: 4px;
  color: var(--gold-pale);
  font: 400 12px var(--font-display);
}

.topic-row h3 {
  margin: 0;
  font: 400 clamp(1.45rem, 2.3vw, 2rem)/1.2 var(--font-display);
  letter-spacing: -.035em;
}

.topic-row p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  line-height: 1.7;
}

.topic-row > a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--gold-pale);
  font-size: 16px;
  text-decoration: none;
  transition: background .2s ease;
}

.topic-row > a:hover {
  background: rgba(255, 255, 255, .1);
}

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

.approach-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9vw;
}

.approach-heading h2 {
  max-width: 520px;
}

.approach-steps {
  border-top: 1px solid var(--line);
}

.approach-steps article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 23px 0 25px;
}

.approach-steps article > span {
  padding-top: 2px;
  color: #967748;
  font: 400 12px var(--font-display);
}

.approach-steps h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.approach-steps p {
  max-width: 490px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.questions-section {
  background: var(--white);
}

.questions-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 10vw;
}

.questions-heading {
  position: sticky;
  top: 32px;
  align-self: start;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 77px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

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

.faq-list summary span {
  color: #967748;
  font-size: 22px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 670px;
  margin: -4px 45px 22px 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.75;
}

.form-wrap {
  padding: clamp(24px, 4vw, 44px);
  color: var(--ink);
  background: var(--paper);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
  color: #856a43;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.request-form {
  padding-top: 22px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 14px;
}

.field {
  min-width: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 7px;
  font-size: 11px;
  font-weight: 700;
}

.field label > span:first-child {
  color: #9f7741;
}

.field input,
.field select {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(57, 44, 35, .23);
  border-radius: 0;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input::placeholder {
  color: #989085;
}

.field input:focus,
.field select:focus {
  border-color: #947444;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(197, 162, 103, .18);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #a14135;
}

.field-hint {
  display: block;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.5;
}

.carrier-field-disclosure {
  max-width: 620px;
  font-size: 11px;
}

.carrier-field-disclosure a {
  color: #684e2e;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.consent-block {
  display: grid;
  gap: 14px;
  margin-top: 23px;
  border-top: 1px solid var(--line);
  padding-top: 19px;
}

.consent-row {
  display: grid;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 10px;
  color: #5f584f;
  font-size: 11px;
  line-height: 1.7;
  cursor: pointer;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--ink);
  cursor: pointer;
}

.consent-row strong {
  color: var(--ink);
  font-weight: 700;
}

.consent-row a,
.legal-content a {
  color: #684e2e;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.sms-consent {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.carrier-note {
  margin: -4px 0 0 27px;
  color: #746c61;
  font-size: 10px;
  line-height: 1.65;
}

.form-submit {
  width: 100%;
  margin-top: 19px;
}

.form-privacy {
  margin: 12px 0 0;
  color: #777065;
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}

.form-error {
  margin: 16px 0 0;
  border-left: 2px solid #a14135;
  padding: 4px 0 4px 12px;
  color: #8a342a;
  font-size: 12px;
}

.form-success {
  padding-block: 25px 7px;
}

.success-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 25px;
  border: 1px solid #9d7e4d;
  border-radius: 50%;
  color: #866a3c;
  font-size: 22px;
}

.form-success .eyebrow {
  margin-bottom: 14px;
}

.form-success h3 {
  max-width: 440px;
  margin: 0;
  font: 400 clamp(1.9rem, 3.5vw, 3rem)/1.15 var(--font-display);
  letter-spacing: -.05em;
}

.form-success > p:not(.eyebrow) {
  max-width: 470px;
  margin: 16px 0 22px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  color: rgba(255, 255, 255, .78);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
  padding-block: 66px 56px;
}

.footer-wordmark {
  color: var(--white);
}

.footer-brand-block > p {
  max-width: 250px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.footer-links > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-links h2 {
  margin: 0 0 9px;
  color: var(--gold-pale);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, .67);
  font-size: 11px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-legal-line a:hover {
  color: var(--gold-pale);
}

.footer-disclosures {
  border-top: 1px solid rgba(255, 255, 255, .17);
  padding-block: 24px 22px;
}

.footer-disclosures > p {
  max-width: 1000px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  line-height: 1.7;
}

.footer-disclosures strong {
  color: rgba(255, 255, 255, .78);
}

.footer-legal-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
}

.footer-legal-line span {
  margin-right: auto;
}

.footer-legal-line a {
  color: rgba(255, 255, 255, .69);
  text-decoration: none;
}

.legal-hero {
  padding: 164px 0 59px;
  color: var(--white);
  background: var(--ink);
}

.legal-hero .eyebrow {
  color: var(--gold-pale);
}

.legal-hero h1 {
  max-width: 920px;
  margin: 25px 0 12px;
  font: 400 clamp(2.6rem, 7vw, 5.7rem)/1.05 var(--font-display);
  letter-spacing: -.065em;
}

.legal-updated {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  letter-spacing: .04em;
}

.legal-section {
  min-height: 45vh;
  background: var(--paper);
}

.legal-content {
  max-width: 840px;
  margin-inline: auto;
}

.legal-content > p,
.legal-content > ul {
  margin: 0 0 20px;
  color: #5d554c;
  font-size: 14px;
  line-height: 1.8;
}

.legal-content > ul {
  padding-left: 22px;
}

.legal-content h2 {
  margin: 42px 0 12px;
  font: 400 1.45rem/1.3 var(--font-display);
  letter-spacing: -.03em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-callout {
  margin: 25px 0;
  border-left: 2px solid #9e7d4a;
  padding: 16px 20px;
  background: rgba(197, 162, 103, .12);
}

.legal-callout p {
  margin: 0;
  color: #55493b;
  font-size: 13px;
  line-height: 1.75;
}

.consent-quote {
  margin: 20px 0 26px;
  border-left: 2px solid #9e7d4a;
  padding: 12px 20px;
  color: #55493b;
  background: rgba(197, 162, 103, .12);
  font-size: 13px;
  line-height: 1.8;
}

.legal-button {
  margin-top: 6px;
}

.privacy-request-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 7vw;
}

.privacy-request-grid .legal-content {
  margin: 0;
}

.small-note {
  border-left: 1px solid #9e7d4a;
  padding-left: 13px;
  color: #796f63 !important;
  font-size: 11px !important;
}

.preference-form-wrap {
  padding: clamp(22px, 3.3vw, 36px);
}

.preference-form {
  padding-top: 0;
}

.preference-certify {
  margin-top: 19px;
}

.optional-label {
  color: #807569 !important;
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .hero {
    min-height: 0;
  }

  .hero-content {
    max-width: 840px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
    padding-top: 132px;
    padding-bottom: 100px;
  }

  .hero-copy-block {
    max-width: 620px;
  }

  .hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(3.2rem, 8vw, 5.3rem);
  }

  .hero-copy {
    max-width: 530px;
  }

  .hero-form-wrap {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 940px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a,
  .header-cta {
    font-size: 10px;
  }

  .intro-grid,
  .approach-grid,
  .questions-grid,
  .privacy-request-grid {
    gap: 6vw;
  }

  .topic-row {
    grid-template-columns: 35px minmax(150px, .75fr) minmax(240px, 1fr) 30px;
  }

  .footer-main {
    grid-template-columns: .7fr 1.3fr;
    gap: 5vw;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 22px;
  }

  .header-inner {
    min-height: 74px;
    gap: 12px;
  }

  .wordmark {
    font-size: 17px;
  }

  .wordmark-mark {
    width: 30px;
    height: 30px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, .36);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: var(--white);
  }

  .mobile-nav:not([hidden]) {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    padding: 10px var(--gutter) 18px;
    background: rgba(33, 26, 23, .97);
  }

  .mobile-nav a {
    display: flex;
    min-height: 47px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
  }

  .hero {
    min-height: 0;
    align-items: flex-start;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(29, 22, 18, .82), rgba(29, 22, 18, .3)), linear-gradient(0deg, rgba(29, 22, 18, .85), transparent 78%);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 112px;
    padding-bottom: 100px;
  }

  .hero h1 {
    max-width: 540px;
    margin: 21px 0 18px;
    font-size: clamp(3.35rem, 13vw, 5.5rem);
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 360px;
    font-size: 15px;
  }

  .hero-note {
    margin-top: 15px;
  }

  .hero .hero-form-wrap {
    max-width: none;
    justify-self: stretch;
    margin-inline: 0;
    padding: 24px;
  }

  .hero-footnote {
    bottom: 19px;
    font-size: 8px;
    letter-spacing: .1em;
  }

  .section-pad {
    padding-block: 84px;
  }

  .intro-grid,
  .approach-grid,
  .questions-grid,
  .privacy-request-grid,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .intro-grid h2,
  .section-heading h2,
  .approach-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .intro-grid > .eyebrow {
    margin-bottom: -15px;
  }

  .topics-section .section-heading > p:last-child {
    max-width: 360px;
  }

  .topic-list {
    margin-top: 43px;
  }

  .topic-row {
    grid-template-columns: 30px 1fr 30px;
    gap: 12px;
    padding-block: 23px;
  }

  .topic-row h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.45rem;
  }

  .topic-row p {
    grid-column: 2 / 3;
    grid-row: 2;
    font-size: 12px;
  }

  .topic-index {
    grid-column: 1;
    grid-row: 1;
  }

  .topic-row > a {
    grid-column: 3;
    grid-row: 1;
  }

  .approach-heading {
    max-width: 500px;
  }

  .questions-heading {
    position: static;
  }

  .faq-list summary {
    min-height: 72px;
    font-size: 13px;
  }

  .faq-list details > p {
    margin-right: 0;
    font-size: 12px;
  }

  .form-wrap {
    margin-inline: calc(var(--gutter) * -1);
    padding: 27px var(--gutter);
  }

  .footer-main {
    gap: 38px;
    padding-block: 51px 42px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .footer-legal-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .legal-hero {
    padding: 135px 0 45px;
  }

  .legal-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .legal-content h2 {
    margin-top: 32px;
    font-size: 1.3rem;
  }

  .legal-content > p,
  .legal-content > ul {
    font-size: 13px;
  }

  .preference-form-wrap {
    margin-inline: 0;
  }
}

@media (max-width: 420px) {
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .hero-footnote {
    flex-wrap: wrap;
    gap: 9px;
  }
}

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