:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #edf2fc;
  --text: #17191d;
  --muted: #5f6670;
  --line: #d4d9e0;
  --accent: #0b50e3;
  --accent-hover: #083bad;
  --accent-ink: #06328f;
  --focus: #ffb400;
  --max-width: 1400px;
  --nav-height: 72px;
  --page-pad: clamp(20px, 4vw, 64px);
  --section-space: clamp(80px, 10vw, 152px);
  --font: "Helvetica Neue", Aptos, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

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

button {
  border: 0;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  max-width: 12ch;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 5.6vw, 6.25rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.35rem, 4.25vw, 4.7rem);
  font-weight: 680;
}

h3 {
  font-size: clamp(1.4rem, 2.1vw, 2.15rem);
  font-weight: 650;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--accent);
  color: white;
}

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

.section-shell,
.nav-shell,
.scope-strip {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

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

.section--large {
  padding-block: clamp(96px, 12vw, 176px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(52px, 7vw, 96px);
}

.section-heading p,
.about__statement p,
.hero__intro,
.support__copy > p,
.service-area p,
.safety__heading > p,
.final-cta p {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--accent-ink);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button--small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.94rem;
}

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

.button--secondary:hover {
  border-color: var(--accent);
  background: var(--surface-soft);
  color: var(--accent-ink);
}

.mobile-sticky-cta {
  display: none;
}

.fine-print {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.84rem !important;
  line-height: 1.55;
}

/* Shared secondary-page system */
.page-hero {
  padding-block: clamp(72px, 9vw, 128px);
  border-bottom: 1px solid var(--line);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.page-hero h1 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5.75rem);
}

.page-hero__intro {
  max-width: 42ch;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.page-content {
  padding-block: clamp(72px, 9vw, 132px);
}

.content-shell {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(44px, 8vw, 120px);
}

.article-aside {
  align-self: start;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.article-aside p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-aside a {
  display: block;
  margin-top: 14px;
  color: var(--accent-ink);
  font-weight: 680;
}

.article-body {
  max-width: 760px;
}

.article-body > section + section {
  margin-top: clamp(64px, 8vw, 104px);
}

.article-body h2 {
  max-width: 15ch;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.article-body h3 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.article-body p,
.article-body li {
  color: #3f4650;
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-body ul,
.article-body ol {
  margin: 24px 0 0;
  padding-left: 1.25rem;
}

.article-body li + li {
  margin-top: 14px;
}

.content-callout {
  margin-top: 48px;
  padding: clamp(28px, 4vw, 48px);
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
}

.content-callout h2,
.content-callout h3 {
  max-width: none;
  margin-top: 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
}

.policy-grid > article {
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
}

.policy-grid h3 {
  margin-top: 0;
}

.guide-index {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}

.guide-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 64px);
  background: var(--surface);
  text-decoration: none;
}

.guide-card:first-child {
  grid-row: span 2;
  min-height: 601px;
  background: var(--surface-soft);
}

.guide-card h3 {
  max-width: 12ch;
  margin-bottom: 20px;
}

.guide-card p {
  max-width: 46ch;
  color: var(--muted);
}

.guide-card span {
  color: var(--accent-ink);
  font-weight: 700;
}

.guide-card:hover span {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.related-guides {
  padding-block: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--line);
}

.related-guides__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.related-guides__links a {
  padding: 28px;
  background: var(--surface);
  color: var(--accent-ink);
  font-weight: 700;
}

.meta-line {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.nav-shell {
  display: grid;
  min-height: var(--nav-height);
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 32px;
}

.wordmark {
  width: max-content;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.nav-links a {
  position: relative;
  font-size: 0.94rem;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  content: "";
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
}

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

.hero {
  display: grid;
  min-height: calc(100dvh - var(--nav-height));
  grid-template-columns: minmax(0, 7fr) minmax(420px, 5fr);
  border-bottom: 1px solid var(--line);
}

.hero__copy {
  display: flex;
  min-height: 640px;
  justify-content: center;
  padding: clamp(72px, 9vw, 136px) var(--page-pad);
  flex-direction: column;
}

.hero__copy > * {
  width: min(100%, 760px);
  margin-left: auto;
}

.hero__copy .button {
  width: max-content;
  margin-top: 12px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hero__actions .button {
  margin-top: 0;
}

.hero__intro {
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__media {
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

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

.scope-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.scope-strip p {
  margin: 0;
  font-size: 0.93rem;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: start;
}

.about__statement {
  position: sticky;
  top: calc(var(--nav-height) + 48px);
}

.about__statement h2 {
  max-width: 12ch;
}

.fact-list {
  margin: 0;
  border-top: 1px solid var(--text);
}

.fact-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.fact-list dt {
  font-weight: 700;
}

.fact-list dd {
  margin: 0;
  color: var(--muted);
}

.categories {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.category {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.category:nth-child(1) {
  grid-column: span 7;
}

.category:nth-child(2) {
  grid-column: span 5;
}

.category:nth-child(3) {
  grid-column: span 5;
}

.category:nth-child(4) {
  grid-column: span 7;
}

.category--media {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
}

.category--media:nth-child(3) {
  grid-template-columns: 1fr;
}

.category--media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.category--media:nth-child(3) img {
  height: 280px;
}

.category__body {
  display: flex;
  justify-content: center;
  padding: clamp(32px, 4vw, 64px);
  flex-direction: column;
}

.category__body h3 {
  max-width: 10ch;
  margin-bottom: 24px;
}

.category__body p {
  max-width: 42ch;
  color: var(--muted);
}

.category__note {
  margin-top: auto;
  padding-top: 36px;
  font-size: 0.9rem;
}

.category--accent {
  background: var(--accent);
  color: white;
}

.category--accent .category__body p {
  color: rgb(255 255 255 / 0.82);
}

.review {
  border-bottom: 1px solid var(--line);
}

.review__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: start;
}

.review__intro {
  position: sticky;
  top: calc(var(--nav-height) + 48px);
}

.review__intro h2 {
  max-width: 11ch;
}

.review__intro p {
  max-width: 34ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.review__items {
  border-top: 1px solid var(--text);
}

.review-item {
  padding-block: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.review-item h3 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.review-item p {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--muted);
}

.questions {
  background: var(--surface);
}

.question-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--text);
}

.question-group {
  padding: clamp(40px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.question-group + .question-group {
  border-left: 1px solid var(--line);
}

.question-group h3 {
  margin-bottom: 40px;
}

.question-group ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 28px;
  list-style: none;
}

.question-group li {
  max-width: 40ch;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  font-size: 1.05rem;
  font-weight: 560;
}

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

.support__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.support__media {
  min-height: 720px;
  margin: 0;
  overflow: hidden;
}

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

.support__copy {
  display: flex;
  justify-content: center;
  padding: clamp(48px, 7vw, 104px);
  border: 1px solid var(--line);
  flex-direction: column;
}

.support__copy h2 {
  max-width: 11ch;
}

.support-limits {
  margin-block: 36px;
  border-top: 1px solid var(--text);
}

.support-limits > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.support-limits h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.support-limits p {
  margin: 0;
  color: var(--muted);
}

.support__copy .button {
  width: max-content;
}

.service-area {
  padding-block: clamp(56px, 7vw, 88px);
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.service-area__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.service-area h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.service-area p {
  margin-bottom: 0;
}

.safety {
  background: var(--surface-soft);
}

.safety__heading {
  max-width: 900px;
  margin-bottom: clamp(56px, 8vw, 104px);
}

.safety__heading h2 {
  max-width: 13ch;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--accent-ink);
}

.safety-item {
  padding: clamp(32px, 4vw, 52px) clamp(24px, 4vw, 52px);
  border-bottom: 1px solid rgb(6 50 143 / 0.24);
}

.safety-item:nth-child(odd) {
  border-right: 1px solid rgb(6 50 143 / 0.24);
}

.safety-item h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.safety-item p {
  max-width: 50ch;
  margin-bottom: 0;
  color: #465064;
}

.faq {
  background: var(--surface);
}

.faq__shell {
  max-width: 1120px;
}

.faq__shell > h2 {
  margin-bottom: clamp(48px, 7vw, 80px);
}

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

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

.faq-list summary {
  display: grid;
  min-height: 76px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-block: 22px;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--accent);
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 70ch;
  margin: 0;
  padding: 0 56px 28px 0;
  color: var(--muted);
}

.final-cta {
  padding-block: clamp(72px, 9vw, 128px);
  border-top: 1px solid var(--line);
}

.final-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.final-cta h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.final-cta .button {
  margin-top: 12px;
}

.site-footer {
  padding-top: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--text);
  background: #eceff2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: clamp(48px, 8vw, 120px);
  padding-bottom: 64px;
}

.site-footer h2 {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  font-size: 0.92rem;
}

.footer-summary {
  max-width: 30ch;
  margin-top: 24px;
  color: var(--muted);
}

.footer-grid > div:last-child {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid > div:last-child a {
  margin-bottom: 10px;
}

.pending-contact {
  color: var(--accent-ink);
  font-weight: 650;
}

.legal-summaries {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.legal-summaries section {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-summaries section p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 28px;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links {
    justify-self: end;
    gap: 22px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 6fr) minmax(360px, 4fr);
  }

  .category--media {
    grid-template-columns: 1fr;
  }

  .category--media img {
    height: 300px;
  }
}

@media (max-width: 820px) {
  :root {
    --nav-height: 64px;
    --section-space: 80px;
  }

  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 16px;
    z-index: 40;
    display: flex;
    min-height: 56px;
    box-shadow: 0 16px 40px rgb(6 50 143 / 0.24);
  }

  html {
    scroll-padding-top: calc(var(--nav-height) + 12px);
  }

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

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 0 8px 12px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    gap: 12px;
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-toggle__lines::before {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
    transform: rotate(90deg);
  }

  .mobile-menu {
    position: fixed;
    inset: var(--nav-height) 0 0;
    z-index: 29;
    padding: 36px var(--page-pad);
    background: var(--bg);
  }

  .mobile-menu:not([hidden]) {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-menu a {
    padding-block: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 1.3rem;
    font-weight: 620;
    text-decoration: none;
  }

  .mobile-menu .button {
    margin-top: 24px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    min-height: auto;
    padding-block: 72px;
  }

  .hero__copy > * {
    margin-left: 0;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__media {
    min-height: auto;
    aspect-ratio: 4 / 3;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .scope-strip,
  .about__grid,
  .review__grid,
  .service-area__grid,
  .final-cta__grid {
    grid-template-columns: 1fr;
  }

  .scope-strip {
    gap: 12px;
  }

  .about__grid,
  .review__grid,
  .service-area__grid,
  .final-cta__grid {
    gap: 48px;
  }

  .about__statement,
  .review__intro {
    position: static;
  }

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

  .category:nth-child(n) {
    grid-column: auto;
  }

  .category {
    min-height: 0;
  }

  .category--media:nth-child(n) {
    grid-template-columns: 1fr;
  }

  .category--media:nth-child(n) img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .question-groups,
  .support__grid,
  .safety-grid,
  .footer-grid,
  .legal-summaries {
    grid-template-columns: 1fr;
  }

  .question-group + .question-group,
  .safety-item:nth-child(odd) {
    border-left: 0;
    border-right: 0;
  }

  .support__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .support-limits > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-grid {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .page-hero__grid,
  .editorial-layout,
  .policy-grid,
  .guide-index,
  .related-guides__links {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    max-width: 12ch;
  }

  .article-aside {
    position: static;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }

  .guide-card:first-child {
    grid-row: auto;
    min-height: 360px;
  }

  .guide-card {
    min-height: 260px;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .hero__copy .button,
  .support__copy .button,
  .final-cta .button {
    width: 100%;
  }

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

  .category__body,
  .question-group,
  .support__copy,
  .legal-summaries section {
    padding: 28px 22px;
  }

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

@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;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem max(1.25rem, calc((100vw - 1160px) / 2));
  color: #0d1726;
  background: #f4f6f8;
  border-top: 2px solid #0d1726;
  box-shadow: 0 -18px 50px rgba(13, 23, 38, 0.14);
}

.cookie-banner h2 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.cookie-banner p {
  max-width: 760px;
  margin: 0 0 0.35rem;
  color: #455064;
  font-size: 0.875rem;
}

.cookie-banner a,
.cookie-settings-link {
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner .button {
  border: 1px solid #0b50e3;
  cursor: pointer;
}

.cookie-banner .button--secondary {
  color: #0d1726;
  background: transparent;
  border-color: #0d1726;
}

.cookie-settings-link {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.1rem 1rem;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner .button {
    width: 100%;
  }

  .privacy-choice-open .mobile-sticky-cta {
    display: none !important;
  }
}
