:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #242424;
  --ink-soft: #3b3b3b;
  --muted: #6b6b6b;
  --muted-light: #8f8f8f;
  --line: #e6e6e6;
  --line-soft: #f2f2f2;
  --surface: #f7f7f2;
  --surface-strong: #f2f2ea;
  --green: #1a8917;
  --green-dark: #156d12;
  --green-soft: #e8f3e8;
  --blue: #536471;
  --amber: #c58f2c;
  --shadow: 0 18px 54px rgba(36, 36, 36, 0.1);
  --radius: 8px;
  --max: 1400px;
  --font-ui: "Sohne", "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Charter, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, ui-serif, serif;
  --font-display: var(--font-ui);
  font-family: var(--font-ui);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow-x: hidden;
}

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

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

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

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(230, 230, 230, 0.94);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 188px;
}

.brand img {
  height: 32px;
  width: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
}

.nav-item {
  position: static;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 72px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 560;
  cursor: pointer;
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-item.is-open .nav-trigger {
  color: #000;
}

.mega-panel a:focus-visible,
.footer-list a:focus-visible,
.language-selector:focus-visible,
.mobile-group summary:focus-visible,
.footer-mobile-group summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.nav-trigger:focus-visible {
  outline: 0;
  box-shadow: inset 0 -2px 0 var(--green);
}

.nav-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 180ms ease;
}

.nav-item.is-open .nav-trigger svg,
.nav-item:focus-within .nav-trigger svg,
.nav-item:hover .nav-trigger svg {
  transform: rotate(180deg);
}

.mega-panel {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  width: 100vw;
  min-height: 300px;
  transform: translateY(-6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition:
    opacity 160ms ease,
    visibility 160ms ease,
    transform 160ms ease;
}

.mega-panel-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 48px clamp(24px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 1fr);
  gap: clamp(48px, 7vw, 112px);
}

.nav-item.is-open .mega-panel,
.nav-item:focus-within .mega-panel,
.nav-item:hover .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-section-title {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mega-list,
.footer-list,
.mobile-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-list a,
.mobile-list a {
  display: flex;
  align-items: center;
  min-height: 58px;
  color: var(--ink);
}

.mega-list a:hover,
.mobile-list a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mega-list strong,
.mobile-list strong {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.mega-list em,
.mobile-list em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.mega-column + .mega-column .mega-list {
  gap: 3px;
}

.mega-column + .mega-column .mega-list strong {
  font-size: 17px;
  letter-spacing: -0.01em;
}

.mega-feature-link {
  display: block;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.mega-feature-link strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mega-feature-link span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.mega-feature-link:hover strong {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-link {
  font-size: 14px;
  font-weight: 560;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

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

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

.button-dark:hover {
  background: #000;
  border-color: #000;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover,
.button-ghost:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(640px, calc(92svh - 72px), 960px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 22%, rgba(255, 255, 255, 0.62) 48%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 22%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  min-height: clamp(640px, calc(92svh - 72px), 960px);
  margin: 0 auto;
  padding: clamp(70px, 10vh, 130px) clamp(22px, 4vw, 64px) 84px;
  display: grid;
  align-content: center;
}

.hero-copy {
  width: min(620px, 100%);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 730;
  font-family: var(--font-display);
}

.hero p {
  margin: 28px 0 0;
  max-width: 560px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.34;
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-next {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 64px);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.hero-next::before {
  content: "";
  width: 72px;
  height: 1px;
  background: var(--line);
}

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

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 128px) clamp(22px, 4vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: start;
  margin-bottom: clamp(44px, 7vw, 88px);
}

.section-label {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.page-section h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
  font-family: var(--font-serif);
  font-weight: 500;
}

.section-heading p {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
  font-family: var(--font-serif);
}

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

.feature-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.feature-card svg,
.editorial-link svg,
.focus-icon {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex: 0 0 auto;
}

.feature-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.feature-card p,
.editorial-link p,
.purpose-item p,
.page-card p,
.policy-row p {
  margin: 0;
  color: var(--muted);
}

.feature-card a,
.text-link {
  margin-top: auto;
  color: var(--green);
  font-size: 15px;
  font-weight: 660;
}

.feature-card a:hover,
.text-link:hover {
  color: var(--green-dark);
}

.business-band {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, auto);
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.business-band h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.08;
  font-family: var(--font-serif);
  font-weight: 500;
}

.business-band p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 680px;
  font-family: var(--font-serif);
  line-height: 1.55;
}

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

.purpose-item,
.editorial-link,
.page-card,
.policy-row {
  background: #fff;
  padding: clamp(24px, 4vw, 42px);
}

.purpose-item {
  display: grid;
  gap: 18px;
}

.purpose-item h3,
.editorial-link h3,
.page-card h3,
.policy-row h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.focus-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.focus-row {
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.6fr) minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.focus-row h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1;
  font-family: var(--font-serif);
  font-weight: 500;
}

.focus-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-family: var(--font-serif);
  line-height: 1.5;
}

.editorial-link {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.editorial-link .text-link {
  margin-top: auto;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}

.page-hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(80px, 13vw, 170px) clamp(22px, 4vw, 64px) clamp(58px, 9vw, 110px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--ink);
}

.page-hero h1 {
  font-size: clamp(48px, 8vw, 112px);
  font-family: var(--font-serif);
  font-weight: 500;
}

.page-hero p {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.36;
  font-family: var(--font-serif);
}

.page-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 110px) clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(36px, 6vw, 92px);
  min-width: 0;
}

.page-toc {
  position: sticky;
  top: 98px;
  align-self: start;
  display: grid;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

.page-toc a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 620;
}

.page-toc a:hover {
  color: var(--green);
}

.page-content {
  display: grid;
  gap: 70px;
  min-width: 0;
}

.page-section {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.page-section h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.page-section > p {
  max-width: 830px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 20px;
  font-family: var(--font-serif);
  line-height: 1.58;
}

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

.page-card {
  min-height: 220px;
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
}

.page-card p,
.page-card li {
  overflow-wrap: break-word;
}

.page-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--surface);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}

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

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

.form-note {
  margin: 0;
  color: var(--green);
  font-weight: 650;
}

.policy-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.policy-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band {
  background: #191919;
  color: #fff;
}

.cta-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.cta-band p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
  font-family: var(--font-serif);
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  color: #111;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px clamp(22px, 4vw, 64px) 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(180px, 0.95fr) repeat(4, minmax(140px, 1fr));
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.footer-brand img {
  width: 172px;
  height: auto;
}

.footer-brand p {
  max-width: 280px;
  margin: 20px 0 0;
  color: #4f4f4f;
  font-size: 15px;
  line-height: 1.5;
}

.footer-column {
  display: grid;
  gap: 32px;
}

.footer-group h2 {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-list {
  gap: 7px;
}

.footer-list a {
  color: #111;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.footer-list a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-mobile {
  display: none;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  color: #111;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-social {
  min-height: 1px;
}

.language-selector {
  justify-self: end;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 14px;
  cursor: pointer;
}

.language-selector:hover {
  background: var(--line-soft);
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-link,
  .header-actions .button {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 72px 0 0;
    height: calc(100svh - 72px);
    max-height: calc(100svh - 72px);
    overflow: auto;
    display: none;
    padding: 8px clamp(18px, 5vw, 34px) 34px;
    border-top: 1px solid var(--line);
    z-index: 250;
    background: #fff;
  }

  body.menu-open .mobile-menu {
    display: block;
  }

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

  .mobile-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.025em;
    cursor: pointer;
    list-style: none;
  }

  .mobile-group summary::-webkit-details-marker {
    display: none;
  }

  .mobile-group summary svg {
    width: 16px;
    height: 16px;
    transition: transform 180ms ease;
  }

  .mobile-group[open] summary svg {
    transform: rotate(180deg);
  }

  .mobile-column {
    padding: 0 0 22px;
  }

  .mobile-column p {
    margin: 8px 0 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
  }

  .mobile-list a {
    min-height: 54px;
  }

  .mobile-list strong {
    font-size: 17px;
    letter-spacing: -0.01em;
  }

  .mobile-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 24px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(52px, 12vw, 92px);
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-band,
  .section-heading,
  .page-layout,
  .cta-band .section-inner {
    grid-template-columns: 1fr;
  }

  .page-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .footer-top {
    grid-template-columns: minmax(180px, 1fr) repeat(2, minmax(0, 1fr));
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .brand {
    width: 164px;
  }

  .brand img {
    height: auto;
  }

  .mobile-menu {
    top: 64px;
    bottom: 0;
    height: calc(100svh - 64px);
    max-height: calc(100svh - 64px);
  }

  .hero,
  .hero-inner {
    min-height: clamp(620px, calc(88svh - 64px), 760px);
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 54%, rgba(255, 255, 255, 0.62) 100%),
      linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.7) 58%, rgba(255, 255, 255, 0.18) 100%);
  }

  .hero-inner {
    align-content: start;
    padding-top: 70px;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 44px);
  }

  .hero p {
    max-width: min(100%, 320px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(40px, 12vw, 48px);
  }

  .hero p,
  .page-hero p {
    font-size: 19px;
  }

  .page-hero-inner,
  .page-layout {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .page-hero p,
  .page-section > p {
    max-width: min(100%, 340px);
  }

  .page-card h3,
  .page-card p,
  .page-card ul {
    max-width: min(100%, 280px);
  }

  .page-toc {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 22px;
    padding-right: 22px;
    scrollbar-width: none;
  }

  .page-toc::-webkit-scrollbar {
    display: none;
  }

  .page-toc a {
    flex: 0 0 auto;
  }

  .hero-next {
    right: auto;
    left: 22px;
  }

  .hero-next::before {
    width: 38px;
  }

  .feature-grid,
  .purpose-grid,
  .editorial-grid,
  .page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 230px;
  }

  .business-band {
    align-items: stretch;
  }

  .business-band .button {
    width: 100%;
  }

  .focus-row,
  .policy-row {
    grid-template-columns: 1fr;
  }

  .focus-icon {
    width: 32px;
    height: 32px;
  }

  .cta-band .button {
    width: 100%;
  }

  .mobile-ctas {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding: 44px 22px 28px;
  }

  .footer-top {
    display: none;
  }

  .footer-mobile {
    display: grid;
    border-top: 1px solid var(--line);
  }

  .footer-mobile-group {
    border-bottom: 1px solid var(--line);
  }

  .footer-mobile-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    color: #111;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.015em;
    cursor: pointer;
    list-style: none;
  }

  .footer-mobile-group summary::-webkit-details-marker {
    display: none;
  }

  .footer-mobile-group summary svg {
    width: 16px;
    height: 16px;
    transition: transform 180ms ease;
  }

  .footer-mobile-group[open] summary svg {
    transform: rotate(180deg);
  }

  .footer-mobile-group .footer-list {
    padding: 0 0 18px;
  }

  .footer-mobile-group .footer-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
    padding-top: 24px;
  }

  .language-selector {
    justify-self: start;
  }
}

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