@font-face {
  font-family: "WSR Serif";
  src: url("../fonts/source-serif-4-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

@font-face {
  font-family: "WSR Sans";
  src: url("../fonts/atkinson-hyperlegible-next-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #17201d;
  --ink-soft: #34413d;
  --forest: #173d35;
  --forest-deep: #0d2923;
  --petrol: #145b67;
  --copper: #a43d25;
  --copper-dark: #7d2b19;
  --gold: #aa7b1f;
  --ivory: #f5f2e9;
  --paper: #fffdf8;
  --mist: #e9efeb;
  --line: #cbd4ce;
  --white: #ffffff;
  --focus: #ffd24a;
  --shadow: 0 20px 60px rgba(13, 41, 35, 0.14);
  --shadow-small: 0 8px 28px rgba(13, 41, 35, 0.1);
  --content: 1180px;
  --prose: 68ch;
  --radius: 6px;
  --service: var(--forest);
  --service-soft: #dce9e4;
}

body.service-webdesign {
  --service: #155f51;
  --service-soft: #dbece6;
}

body.service-seo {
  --service: #78550e;
  --service-soft: #f1e8cf;
}

body.service-remote-it {
  --service: #19576c;
  --service-soft: #dbe9ee;
}

body.service-legal {
  --service: #145b67;
  --service-soft: #dbe9ee;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(23, 61, 53, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 61, 53, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  font-family: "WSR Sans", "Segoe UI", sans-serif;
  font-size: 1.075rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: var(--petrol);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--copper-dark);
}

:where(a, button, summary, input, textarea, select):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "WSR Serif", Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}

p {
  max-width: var(--prose);
  margin: 0 0 1rem;
}

ul,
ol {
  margin-top: 0;
}

.wrap {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--forest-deep);
  background: var(--focus);
  border: 2px solid var(--forest-deep);
  border-radius: 4px;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  min-height: min(92svh, 840px);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--forest-deep);
}

.site-header::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
}

.site-header::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(8, 28, 24, 0.62);
  content: "";
}

.nav-shell {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 28, 24, 0.78);
}

.primary-nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  text-decoration: none;
}

.brand:hover {
  color: var(--white);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--focus);
  font-family: "WSR Serif", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.brand-name {
  display: grid;
  line-height: 1.1;
}

.brand-name strong {
  font-family: "WSR Serif", Georgia, serif;
  font-size: 1.12rem;
}

.brand-name span {
  margin-top: 0.18rem;
  color: #d9e4df;
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0.65rem 0.8rem;
  color: var(--white);
  border-bottom: 2px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--focus);
  border-bottom-color: var(--focus);
}

.hero {
  display: grid;
  min-height: calc(min(92svh, 840px) - 77px);
  align-content: center;
  padding-block: 3.5rem 4.5rem;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--focus);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 19ch;
  color: var(--white);
  font-size: 3.65rem;
}

.hero-lead {
  max-width: 62ch;
  margin-top: 1.25rem;
  color: #f0f4f2;
  font-size: 1.2rem;
  line-height: 1.55;
}

.hero-location {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  max-width: 68ch;
  margin: 1rem 0 0;
  color: #d5e2dd;
  font-size: 0.94rem;
}

.hero-location svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 0.15rem;
  color: var(--focus);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.button-primary {
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 9px 28px rgba(0, 0, 0, 0.24);
}

.button-primary:hover {
  color: var(--white);
  background: var(--copper-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.16);
}

.button-secondary:hover {
  color: var(--forest-deep);
  background: var(--white);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin: 2.1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-proof div {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.hero-proof span {
  display: block;
  margin-top: 0.18rem;
  color: #cbdad4;
  font-size: 0.82rem;
  line-height: 1.35;
}

.section-index {
  position: relative;
  z-index: 2;
  margin-top: -2.3rem;
}

.section-index-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.section-index a {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  border-right: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.section-index a:last-child {
  border-right: 0;
}

.section-index a:hover {
  color: var(--service);
  background: var(--service-soft);
}

.section-index span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  color: var(--white);
  background: var(--service);
  font-size: 0.78rem;
  font-weight: 800;
}

.accordion-shell {
  padding-block: 5rem;
}

.accordion-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.3rem;
}

.accordion-intro .eyebrow {
  color: var(--service);
}

.accordion-intro h2 {
  color: var(--forest-deep);
}

.accordion-intro p {
  justify-self: end;
  margin: 0;
  color: var(--ink-soft);
}

.accordion-list {
  border-top: 2px solid var(--forest-deep);
}

.content-accordion {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
}

.content-accordion > summary {
  display: grid;
  min-height: 118px;
  grid-template-columns: 54px minmax(0, 0.9fr) minmax(260px, 1.1fr) 48px;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 0.5rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.content-accordion > summary::-webkit-details-marker {
  display: none;
}

.content-accordion > summary:hover {
  color: var(--service);
  background: var(--service-soft);
}

.content-accordion[open] > summary {
  color: var(--service);
  background: var(--service-soft);
  border-bottom: 1px solid var(--line);
}

.accordion-number {
  color: var(--service);
  font-family: "WSR Serif", Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
}

.accordion-title {
  font-family: "WSR Serif", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.15;
}

.accordion-digest {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.accordion-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.accordion-toggle::before,
.accordion-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.accordion-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.content-accordion[open] .accordion-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-content {
  padding: 2.4rem 0.5rem 3.2rem calc(54px + 1.7rem);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 3rem;
  align-items: start;
}

.prose > :first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 1.8rem 0 0.7rem;
  color: var(--forest-deep);
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose strong {
  color: var(--ink);
}

.prose ul,
.prose ol {
  max-width: var(--prose);
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}

.direct-answer {
  max-width: var(--prose);
  margin: 0 0 1.4rem;
  padding: 1rem 1.2rem;
  border-left: 5px solid var(--service);
  color: var(--ink);
  background: var(--service-soft);
  font-size: 1.06rem;
}

.direct-answer strong {
  color: var(--service);
}

.visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: var(--shadow-small);
}

.visual svg {
  width: 100%;
  height: auto;
}

.visual figcaption {
  padding: 0.75rem 1rem 0.9rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 1.5rem 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.fact {
  min-width: 0;
  padding: 1rem;
  background: var(--white);
}

.fact strong {
  display: block;
  color: var(--service);
  font-size: 1.1rem;
}

.fact span {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.4;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.9rem;
  align-items: start;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--service);
  font-weight: 800;
}

.process-list strong,
.process-list small {
  display: block;
}

.process-list small {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.comparison-wrap {
  overflow-x: auto;
  margin-top: 1.4rem;
}

.comparison {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
}

.comparison caption {
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: left;
}

.comparison th,
.comparison td {
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison thead th {
  color: var(--white);
  background: var(--forest-deep);
}

.comparison tbody th {
  color: var(--forest-deep);
  background: var(--ivory);
}

.question-list {
  display: grid;
  gap: 1.4rem;
  margin: 0;
}

.question-list div {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.question-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.question-list dt {
  color: var(--forest-deep);
  font-family: "WSR Serif", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.question-list dd {
  max-width: var(--prose);
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--prose);
  margin-top: 1.8rem;
  padding: 1.2rem;
  color: var(--white);
  background: var(--forest-deep);
}

.inline-cta p {
  max-width: 43ch;
  margin: 0;
  color: #e4ece8;
}

.inline-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  color: #dce5e1;
  background: var(--forest-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

.footer-main h2,
.footer-main h3 {
  color: var(--white);
}

.footer-main h2 {
  max-width: 16ch;
  font-size: 1.8rem;
}

.footer-main h3 {
  margin-bottom: 0.8rem;
  font-family: "WSR Sans", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.footer-main p,
.footer-main address {
  color: #c8d5d0;
  font-size: 0.94rem;
  font-style: normal;
}

.footer-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main li {
  margin-bottom: 0.45rem;
}

.footer-main a {
  color: var(--white);
}

.footer-legal {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
}

.footer-legal-copy {
  display: grid;
  gap: 0.35rem;
  max-width: 74ch;
}

.footer-legal p {
  margin: 0;
  color: #b9c8c2;
}

.footer-disclaimer {
  max-width: 74ch;
  font-size: 0.79rem;
  line-height: 1.55;
}

.footer-trust {
  flex: 0 0 auto;
  align-self: center;
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.4rem;
  box-shadow: var(--shadow-small);
}

.footer-trust img {
  display: block;
  width: min(138px, 100%);
  height: auto;
}

.footer-legal a {
  color: var(--white);
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-credits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  padding-block: 1rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-credits p {
  max-width: none;
  margin: 0;
  color: #b9c8c2;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-credits a {
  color: var(--white);
}

.site-header-legal {
  min-height: auto;
}

.site-header-legal .hero {
  min-height: auto;
  padding-block: 4.5rem 3.5rem;
}

.site-header-legal .hero-content {
  max-width: 78ch;
}

.legal-shell {
  padding-block: 4rem 5rem;
}

.legal-intro {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.legal-toc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.legal-toc a {
  display: block;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border-top: 4px solid var(--service);
  box-shadow: var(--shadow-small);
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--copper-dark);
}

.legal-grid {
  display: grid;
  gap: 1.4rem;
}

.legal-card {
  padding: 1.45rem;
  background: var(--paper);
  border-top: 5px solid var(--service);
  box-shadow: var(--shadow-small);
}

.legal-card > :last-child {
  margin-bottom: 0;
}

.legal-card h2 {
  margin-bottom: 0.9rem;
}

.legal-card h3,
.legal-card h4 {
  margin: 1.2rem 0 0.55rem;
}

.legal-card h4 {
  font-family: "WSR Sans", "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.legal-card p,
.legal-card ul,
.legal-card ol,
.legal-card address {
  max-width: 78ch;
}

.legal-card ul,
.legal-card ol {
  padding-left: 1.2rem;
}

.legal-card li + li {
  margin-top: 0.45rem;
}

.legal-card address {
  font-style: normal;
}

.legal-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
}

.legal-note {
  padding: 0.95rem 1rem;
  background: var(--service-soft);
  border-left: 4px solid var(--service);
}

.legal-note p:last-child {
  margin-bottom: 0;
}

.city-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.45rem 1rem;
  padding: 0;
  list-style: none;
}

.city-link-list li {
  margin: 0;
}

.city-link-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 700;
}

.template-note {
  padding: 0.75rem 1rem;
  color: #4a3607;
  border: 1px solid #c29b42;
  background: #fff4d0;
  font-size: 0.88rem;
}

.source-note {
  max-width: 68ch;
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.source-note a {
  font-weight: 700;
}

.expertise-intro {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.expertise-portrait {
  flex: 0 0 120px;
  width: 120px;
  margin: 0;
}

.expertise-portrait img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.expertise-portrait figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.35;
}

.expertise-lead {
  flex: 1 1 0;
  min-width: 0;
}

.expertise-quals {
  padding-top: 0.25rem;
}

@media (max-width: 600px) {
  .expertise-intro {
    flex-direction: column;
  }
  .expertise-portrait {
    flex: 0 0 90px;
    width: 90px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 761px) {
  h1 {
    font-size: 3.1rem;
  }

  .hero h1 {
    font-size: 4.2rem;
  }
}

@media (max-width: 900px) {
  .primary-nav {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 0.8rem;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero {
    min-height: 650px;
  }

  .content-accordion > summary {
    grid-template-columns: 46px minmax(0, 1fr) 48px;
  }

  .accordion-digest {
    grid-column: 2 / 3;
  }

  .accordion-toggle {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .accordion-content {
    padding-left: calc(46px + 1.7rem);
  }

  .content-grid,
  .accordion-intro {
    grid-template-columns: 1fr;
  }

  .accordion-intro p {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 1rem;
  }

  h1,
  .hero h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .brand-name span {
    display: none;
  }

  .nav-links a {
    padding-inline: 0.55rem;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .hero {
    min-height: calc(92svh - 132px);
    padding-block: 2rem 3rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-content > .eyebrow {
    margin-bottom: 0.7rem;
  }

  .hero-lead {
    margin-top: 0.9rem;
  }

  .hero-location {
    margin-top: 0.7rem;
  }

  .hero-actions {
    margin-top: 1.2rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.35rem;
  }

  .hero-proof div,
  .hero-proof div:first-child {
    padding: 0.75rem 0.35rem;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 0;
    text-align: center;
  }

  .hero-proof div:last-child {
    border-right: 0;
  }

  .hero-proof strong {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .hero-proof span {
    display: none;
  }

  .section-index {
    margin-top: -1.2rem;
  }

  .section-index-inner {
    grid-template-columns: 1fr;
  }

  .section-index a {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-index a:last-child {
    border-bottom: 0;
  }

  .accordion-shell {
    padding-block: 3.5rem;
  }

  .content-accordion > summary {
    min-height: 110px;
    grid-template-columns: 34px minmax(0, 1fr) 42px;
    gap: 0.7rem;
    padding-block: 1rem;
  }

  .accordion-title {
    font-size: 1.28rem;
  }

  .accordion-digest {
    font-size: 0.86rem;
  }

  .accordion-toggle {
    width: 40px;
    height: 40px;
  }

  .accordion-content {
    padding: 1.7rem 0 2.5rem;
  }

  .content-grid {
    gap: 2rem;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .inline-cta,
  .inline-cta .button {
    width: 100%;
  }

  .footer-main,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-main {
    display: grid;
  }

  .footer-main > :first-child {
    grid-column: auto;
  }

  .footer-legal {
    display: grid;
    justify-content: start;
  }

  .footer-trust {
    justify-self: start;
  }

  .footer-credits {
    grid-template-columns: 1fr;
  }

  .legal-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .wrap {
    width: min(100% - 1.25rem, var(--content));
  }

  h1,
  .hero h1 {
    font-size: 2.1rem;
  }

  .content-accordion > summary {
    grid-template-columns: 28px minmax(0, 1fr) 36px;
  }

  .accordion-toggle {
    width: 34px;
    height: 34px;
  }
}

@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;
  }
}

@media (forced-colors: active) {
  .site-header::after {
    background: Canvas;
  }

  .button,
  .accordion-toggle,
  .brand-mark,
  .section-index span,
  .process-list span {
    border: 2px solid ButtonText;
  }

  .content-accordion > summary:hover,
  .content-accordion[open] > summary {
    outline: 2px solid Highlight;
  }
}

@media print {
  .site-header {
    min-height: auto;
    color: #000;
    background: #fff;
  }

  .site-header::before,
  .site-header::after,
  .nav-shell,
  .hero-actions,
  .section-index,
  .site-footer {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-block: 1rem;
  }

  .hero h1,
  .hero-lead,
  .hero-location,
  .hero-proof strong,
  .hero-proof span {
    color: #000;
  }

  .accordion-shell {
    padding-block: 1rem;
  }

  .content-accordion:not([open]) > :not(summary) {
    display: block !important;
  }

  .accordion-toggle {
    display: none;
  }

  .accordion-content {
    padding: 1rem 0;
  }

  .visual,
  .content-accordion {
    break-inside: avoid;
    box-shadow: none;
  }
}