:root {
  --chalk: #f6f1e8;
  --cream: #fffdf8;
  --ink: #2d2a26;
  --moss: #3e4b3c;
  --moss-dark: #303b2f;
  --copper: #a85f3d;
  --copper-dark: #8d4d31;
  --sand: #d9ccb8;
  --line: #d8d0c3;
  --muted: #69635c;
  --danger: #8c382f;
  --shell: 1380px;
  --reading: 760px;
  --pad: clamp(20px, 5vw, 80px);
  --section: clamp(76px, 9vw, 132px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 155px;
}

body {
  margin: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - (2 * var(--pad))), var(--shell));
  margin-inline: auto;
}

.reading {
  width: min(calc(100% - (2 * var(--pad))), var(--reading));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 18px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--cream);
}

.skip-link:focus {
  top: 18px;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  letter-spacing: -0.025em;
}

p {
  margin: 0 0 1.25rem;
}

.lead {
  font-size: clamp(1.15rem, 1.5vw, 1.42rem);
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 20px;
  border: 1px solid var(--moss);
  border-radius: 0;
  background: var(--moss);
  color: var(--cream);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  border-color: var(--moss-dark);
  background: var(--moss-dark);
}

.button--secondary {
  background: transparent;
  color: var(--moss);
}

.button--light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--moss);
}

.text-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--moss);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.brand-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: block;
  width: 190px;
}

.brand img {
  width: 100%;
  height: auto;
}

.direct-contact {
  display: flex;
  gap: 28px;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  text-decoration: none;
}

.direct-contact span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sand);
  color: var(--copper);
  font-size: 0.72rem;
}

.primary-nav {
  border-top: 1px solid var(--line);
}

.primary-nav__inner {
  display: grid;
  grid-template-columns: 0.75fr 1.1fr 0.65fr 1.35fr;
}

.primary-nav a {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 10px 24px;
  border-left: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:last-child {
  border-right: 1px solid var(--line);
}

.primary-nav a[aria-current="page"]::after {
  position: absolute;
  right: 24px;
  bottom: -1px;
  left: 24px;
  height: 3px;
  background: var(--copper);
  content: "";
}

.primary-nav .nav-request {
  justify-content: center;
  padding-inline: 32px;
  background: var(--moss);
  color: var(--cream);
  font-size: 0.92rem;
  transition: background 180ms ease;
}

.primary-nav .nav-request:hover {
  background: var(--moss-dark);
}

.primary-nav .nav-request[aria-current="page"]::after {
  background: var(--cream);
}

.mobile-nav {
  display: none;
}

.home-hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.home-hero__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(70px, 8vw, 140px) var(--pad);
}

.home-hero__copy h1 {
  max-width: 740px;
  color: var(--moss);
}

.home-hero__copy .lead {
  max-width: 650px;
  margin: 30px 0 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

.home-hero__request {
  width: min(100%, 390px);
  min-height: 64px;
  justify-content: space-between;
  padding-inline: 26px;
}

.home-hero__image {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.home-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__image figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  max-width: 360px;
  padding: 12px 14px;
  background: rgba(45, 42, 38, 0.82);
  color: var(--cream);
  font-size: 0.76rem;
  line-height: 1.45;
}

.section {
  padding-block: var(--section);
}

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

.section--moss {
  background: var(--moss);
  color: var(--cream);
}

.section--moss .eyebrow {
  color: #e1b193;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 82px);
}

.section-heading > p {
  max-width: 560px;
  margin: 0;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar-card {
  min-height: 395px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(30px, 4vw, 54px);
  border-left: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.pillar-card:last-child {
  border-right: 1px solid var(--line);
}

.pillar-card > span {
  color: var(--copper);
  font-family: var(--serif);
  font-style: italic;
}

.pillar-card .eyebrow {
  margin-top: 54px;
}

.pillar-card h3 {
  margin-bottom: 20px;
}

.pillar-card p:not(.eyebrow) {
  color: var(--muted);
}

.pillar-card b {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  color: var(--moss);
  font-size: 0.86rem;
}

.pillar-card i {
  font-style: normal;
}

.pillar-card:hover {
  background: var(--moss);
  color: var(--cream);
}

.pillar-card:hover p,
.pillar-card:hover b,
.pillar-card:hover .eyebrow,
.pillar-card:hover > span {
  color: var(--cream);
}

.story-grid,
.everyday-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.75fr);
  gap: clamp(54px, 10vw, 160px);
  align-items: start;
}

.story-copy {
  padding-top: 12px;
}

.story-copy blockquote {
  margin-top: 46px;
  padding: 28px 0 4px 30px;
  border-left: 5px solid var(--copper);
  color: var(--moss);
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.process-grid li {
  min-height: 275px;
  padding: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.process-grid li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.process-grid span {
  color: #e1b193;
  font-family: var(--serif);
  font-style: italic;
}

.process-grid h3 {
  margin: 58px 0 16px;
  font-size: 1.55rem;
}

.process-grid p {
  margin: 0;
  color: #e1ddd5;
  font-size: 0.9rem;
}

.pillar-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.pillar-hero__copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: clamp(70px, 8vw, 130px) var(--pad);
}

.pillar-hero__copy h1 {
  max-width: 760px;
  color: var(--moss);
  font-size: clamp(3.6rem, 6vw, 6.4rem);
}

.pillar-hero__copy .lead {
  max-width: 650px;
  margin: 28px 0 30px;
}

.pillar-hero__image {
  min-height: 620px;
  overflow: hidden;
}

.pillar-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.situation-card {
  position: relative;
  min-height: 245px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.situation-card > span {
  color: var(--copper);
  font-family: var(--serif);
  font-style: italic;
}

.situation-card h3 {
  max-width: 560px;
  margin: 34px 0 14px;
}

.situation-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.situation-card b {
  position: absolute;
  right: 34px;
  bottom: 28px;
  color: var(--copper);
}

.situation-card:hover {
  background: var(--moss);
  color: var(--cream);
}

.situation-card:hover p,
.situation-card:hover > span,
.situation-card:hover b {
  color: var(--cream);
}

.article-index {
  border-top: 1px solid var(--line);
}

.article-index > a {
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  gap: 25px;
  align-items: center;
  padding: 30px 12px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 180ms ease, color 180ms ease;
}

.article-index > a:hover {
  padding-right: 0;
  padding-left: 24px;
  color: var(--copper-dark);
}

.article-index span {
  color: var(--copper);
  font-family: var(--serif);
  font-style: italic;
}

.article-index h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.article-index p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.unsure-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(50px, 9vw, 145px);
  padding: clamp(42px, 6vw, 84px);
  border: 1px solid var(--line);
  background: var(--cream);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.unsure-panel:hover,
.unsure-panel:focus-visible {
  border-color: var(--copper);
  background: var(--chalk);
}

.unsure-panel p {
  max-width: 620px;
}

.unsure-panel .button {
  width: 100%;
  margin-top: 16px;
  justify-content: space-between;
}

.page-hero,
.article-hero {
  padding-block: clamp(85px, 10vw, 145px);
  background: var(--moss);
  color: var(--cream);
}

.page-hero--compact h1 {
  font-size: clamp(3.4rem, 6vw, 6.2rem);
}

.page-hero .lead,
.article-hero .lead {
  margin: 28px 0 0;
  color: #e4dfd6;
}

.article-hero .back-link {
  margin-bottom: 70px;
  color: var(--cream);
}

.article-hero h1 {
  font-size: clamp(3.5rem, 6.4vw, 6.7rem);
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, var(--reading));
  justify-content: center;
  gap: clamp(50px, 8vw, 110px);
  padding-block: var(--section);
}

.article-context {
  position: sticky;
  top: 175px;
  align-self: start;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
}

.article-context strong,
.article-context a {
  display: block;
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.article-context a[aria-current="page"] {
  color: var(--copper);
  font-weight: 700;
}

.prose {
  min-width: 0;
}

.prose h2 {
  margin: 76px 0 24px;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

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

.prose h3 {
  margin: 42px 0 16px;
}

.prose p,
.prose li {
  max-width: 720px;
}

.prose ul {
  padding-left: 24px;
}

.prose blockquote {
  margin: 42px 0;
  padding: 26px 28px;
  border-left: 5px solid var(--copper);
  background: var(--cream);
  color: var(--moss);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

.prose a {
  color: var(--copper-dark);
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--moss);
  color: var(--cream);
}

.article-nav a,
.article-nav span {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.article-nav a:hover {
  background: var(--moss-dark);
}

.contact-cta {
  padding-block: var(--section);
  background: var(--copper);
  color: var(--cream);
}

.contact-cta__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: clamp(55px, 10vw, 160px);
  align-items: start;
}

.contact-cta__main {
  display: block;
  margin: calc(clamp(24px, 3vw, 42px) * -1);
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-cta__main:hover,
.contact-cta__main:focus-visible {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.contact-cta__main .button {
  width: 100%;
  justify-content: space-between;
}

.contact-cta h2 {
  margin-bottom: 26px;
}

.contact-cta .eyebrow {
  color: var(--cream);
}

.contact-list {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.contact-list span {
  font-weight: 700;
}

.contact-list small {
  color: #f3dfd5;
}

.contact-list b {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
}

.contact-routes {
  border-top: 1px solid var(--line);
}

.contact-routes article {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.contact-routes article > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
}

.contact-routes h2 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.contact-routes p {
  margin: 0;
}

.form-intro {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.tip,
.review-note {
  margin-top: 34px;
  padding: 24px 26px;
  border-left: 5px solid var(--copper);
  background: var(--cream);
}

.tip p,
.review-note {
  margin-bottom: 0;
}

.request-form {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--cream);
}

.request-form fieldset {
  margin: 0 0 36px;
  padding: 0 0 36px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.request-form legend {
  width: 100%;
  margin-bottom: 24px;
  color: var(--moss);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.request-form legend span {
  margin-right: 10px;
  color: var(--copper);
  font-style: italic;
}

.request-form label:not(.privacy-check) {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 700;
}

.request-form input,
.request-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #aaa197;
  border-radius: 0;
  background: var(--cream);
}

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

.request-form input[type="file"] {
  min-height: 0;
  padding: 12px 0;
  border: 0;
}

.request-form small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-row label {
  position: relative;
  margin: 0 !important;
  padding: 11px 16px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.choice-row input {
  width: auto;
  min-height: 0;
  margin-right: 8px;
}

.privacy-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin: 22px 0;
  font-size: 0.84rem;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.file-list {
  margin-top: 12px;
  color: var(--moss);
  font-size: 0.82rem;
}

.form-status {
  display: none;
  margin: 20px 0 0;
  padding: 18px;
  border-left: 5px solid var(--copper);
  background: var(--chalk);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-left-color: var(--danger);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.question-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.question-list li {
  min-height: 220px;
  padding: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.question-list li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.question-list span {
  color: #e1b193;
  font-family: var(--serif);
  font-style: italic;
}

.question-list p {
  margin-top: 50px;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.3;
}

.legal h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
}

.inline-button,
.footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding-block: var(--section);
}

.not-found h1 {
  color: var(--moss);
}

.not-found .lead {
  margin: 28px 0 34px;
}

.site-footer {
  padding: 78px 0 34px;
  background: var(--ink);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr 0.85fr;
  gap: clamp(35px, 6vw, 80px);
}

.footer-intro img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.footer-intro p {
  max-width: 310px;
  margin-top: 22px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--sand);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p,
.site-footer .footer-link {
  display: block;
  margin: 0 0 9px;
  color: #e6e0d7;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: left;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer .footer-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 62px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #bcb5ab;
  font-size: 0.72rem;
}

.consent-banner {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  left: 22px;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  margin-inline: auto;
  padding: 28px;
  border: 1px solid var(--sand);
  background: var(--cream);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner h2 {
  font-size: 1.9rem;
}

.consent-banner p {
  max-width: 620px;
  margin: 12px 0 4px;
  font-size: 0.88rem;
}

.consent-banner a {
  font-size: 0.78rem;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 1040px) {
  .home-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    order: 2;
  }

  .home-hero__image {
    min-height: 520px;
  }

  .pillar-hero {
    grid-template-columns: 1fr;
  }

  .pillar-hero__image {
    min-height: 520px;
    order: -1;
  }

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

  .pillar-card {
    min-height: 280px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .pillar-card:last-child {
    border-bottom: 0;
  }

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

  .process-grid li:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  .process-grid li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-context {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .article-context strong,
  .article-context a {
    border-right: 1px solid var(--line);
  }

  .form-intro {
    grid-template-columns: 1fr;
  }

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

  .question-list li {
    min-height: 0;
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .question-list p {
    margin: 0;
  }

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

@media (max-width: 760px) {
  :root {
    --pad: 18px;
    --section: 74px;
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 65px;
    font-size: 16px;
  }

  h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .brand-row {
    min-height: 70px;
  }

  .brand {
    width: 150px;
  }

  .direct-contact {
    gap: 8px;
  }

  .direct-contact a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
  }

  .direct-contact a strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .direct-contact span {
    border: 0;
  }

  .primary-nav {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 65px;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.98);
    backdrop-filter: blur(14px);
  }

  .mobile-nav a {
    position: relative;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    border-right: 1px solid var(--line);
    font-size: 0.62rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav a[aria-current="page"]::before {
    position: absolute;
    top: -1px;
    right: 10px;
    left: 10px;
    height: 3px;
    background: var(--copper);
    content: "";
  }

  .mobile-nav span {
    color: var(--copper);
    font-family: var(--serif);
    font-size: 0.9rem;
  }

  .home-hero__copy {
    padding-block: 58px 70px;
  }

  .home-hero__image {
    min-height: 0;
  }

  .home-hero__image img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .home-hero__image figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .section-heading,
  .story-grid,
  .everyday-panel,
  .unsure-panel,
  .contact-cta__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-cta__main {
    margin: 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

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

  .process-grid li,
  .process-grid li:nth-child(2),
  .process-grid li:nth-child(3),
  .process-grid li:nth-child(4) {
    min-height: 0;
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .process-grid h3 {
    margin: 20px 0 10px;
  }

  .pillar-hero__image {
    min-height: 440px;
  }

  .pillar-hero__copy {
    padding-block: 58px 72px;
  }

  .pillar-hero__copy h1 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

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

  .situation-card {
    min-height: 225px;
  }

  .article-index > a {
    grid-template-columns: 42px 1fr 24px;
    gap: 12px;
  }

  .article-index p {
    font-size: 0.86rem;
  }

  .article-hero .back-link {
    margin-bottom: 48px;
  }

  .article-context {
    grid-template-columns: 1fr;
  }

  .article-context strong,
  .article-context a {
    border-right: 0;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav a,
  .article-nav span {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .contact-routes article {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .contact-routes .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .request-form {
    padding: 26px 20px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .consent-banner {
    bottom: 76px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .consent-actions {
    flex-direction: column-reverse;
  }

  .consent-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
