@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Serif";
  src: url("assets/fonts/ibm-plex-serif-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Serif";
  src: url("assets/fonts/ibm-plex-serif-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --turquoise: #52b7c1;
  --turquoise-soft: #e8f6f7;
  --turquoise-deep: #378f98;
  --blue: #2d3c4b;
  --blue-deep: #202d39;
  --gold: #ffa600;
  --gold-deep: #d88700;
  --union-black: #1b191d;
  --white: #ffffff;
  --paper: #f5f7f8;
  --line: #d7dfe3;
  --muted: #5a6875;
  --social-navy: #14213d;
  --social-orange: #ec6f0e;
  --header-height: 88px;
  --page-width: 1240px;
  --shadow: 0 24px 60px rgba(32, 45, 57, 0.16);
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--blue);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 1rem;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

::selection {
  background: var(--gold);
  color: var(--blue-deep);
}

h1,
h2,
h3,
.brand,
.main-nav,
.button,
.eyebrow,
.lead,
figcaption,
.email-card,
.contact-social,
.site-footer {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

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

h2 {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  color: var(--blue);
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.8rem;
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--blue-deep);
  font-family: "Inter", sans-serif;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: min(calc(100% - 48px), var(--page-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(45, 60, 75, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 30px rgba(32, 45, 57, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 40px), 1440px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 50px);
}

.brand {
  flex: 0 0 auto;
  display: grid;
  color: var(--blue);
  line-height: 1.1;
  text-decoration: none;
}

.brand-name {
  font-size: clamp(0.92rem, 1.4vw, 1.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-role {
  margin-top: 5px;
  color: var(--turquoise-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.55vw, 28px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  padding: 30px 0 27px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-tools,
.social-links {
  display: flex;
  align-items: center;
}

.header-tools {
  flex: 0 0 auto;
  gap: 10px;
}

.social-links {
  gap: 7px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 33, 61, 0.15);
  border-radius: 50%;
  color: var(--social-navy);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.social-link svg {
  width: 21px;
  height: 21px;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(236, 111, 14, 0.35);
  background: rgba(236, 111, 14, 0.08);
  color: var(--social-orange);
  transform: translateY(-2px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 10px;
  border: 0;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  background: var(--paper);
}

.hero-image-wrap {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--blue-deep);
}

.hero-image-wrap img {
  width: min(100%, 1920px);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-bar {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.hero-bar-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--page-width));
  min-height: 144px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 28px;
}

.hero-bar p {
  max-width: 660px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.45;
}

.hero-bar strong {
  color: var(--gold);
  font-weight: 800;
}

.hero-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid transparent;
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button--gold {
  background: var(--gold);
  color: var(--blue-deep);
}

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

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue);
}

.content-section {
  position: relative;
  padding-block: clamp(76px, 9vw, 132px);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.content-section--tint {
  background: var(--turquoise-soft);
}

.content-section--blue {
  overflow: hidden;
  background: var(--blue);
  color: rgba(255, 255, 255, 0.86);
}

.content-section--blue::before {
  position: absolute;
  top: -260px;
  right: -220px;
  width: 580px;
  height: 580px;
  border: 90px solid rgba(82, 183, 193, 0.18);
  border-radius: 50%;
  content: "";
}

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(46px, 7vw, 108px);
}

.split-layout--reverse {
  grid-template-columns: minmax(420px, 1.06fr) minmax(0, 0.94fr);
}

.section-copy {
  position: relative;
  z-index: 1;
}

.section-copy p:not(.eyebrow):not(.lead) {
  color: #40505e;
}

.section-copy .lead {
  margin-bottom: 1.5rem;
  color: var(--blue);
  font-size: clamp(1.1rem, 1.65vw, 1.35rem);
  font-weight: 600;
  line-height: 1.48;
}

.section-copy--light h2,
.section-copy--light .lead {
  color: var(--white);
}

.section-copy--light p:not(.eyebrow):not(.lead) {
  color: rgba(255, 255, 255, 0.8);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  color: var(--turquoise-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 4px;
  background: currentColor;
  content: "";
}

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

.eyebrow--blue {
  color: var(--blue);
}

.image-panel,
.wide-banner {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #cdd8dd;
  box-shadow: var(--shadow);
}

.image-panel {
  aspect-ratio: 4 / 5;
}

.image-panel::before,
.wide-banner::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 9px;
  height: 100%;
  background: var(--gold);
  content: "";
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.image-panel--portrait img {
  object-position: 64% center;
}

.image-panel:hover img,
.wide-banner:hover img {
  transform: scale(1.018);
}

.image-panel figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 9px;
  padding: 16px 20px;
  background: rgba(45, 60, 75, 0.92);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.image-panel--light {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-weight: 750;
  text-underline-offset: 5px;
}

.text-link span {
  font-size: 1.3em;
  transition: transform 160ms ease;
}

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

.text-link--light {
  color: var(--white);
}

.section-heading {
  margin-bottom: clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 48px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-intro {
  max-width: 620px;
  margin: 0;
  padding-left: 28px;
  border-left: 4px solid var(--gold);
  color: #40505e;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 550;
  line-height: 1.5;
}

.wide-banner {
  width: 100%;
  aspect-ratio: 16 / 7;
}

.wide-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wide-banner--topics img {
  object-position: center 42%;
}

.prose-columns {
  margin-top: clamp(36px, 5vw, 62px);
  columns: 3 260px;
  column-gap: clamp(28px, 4vw, 60px);
}

.prose-columns p {
  break-inside: avoid;
  margin-bottom: 0;
  color: #40505e;
}

.topic-grid {
  margin-top: clamp(42px, 6vw, 74px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.topic-card {
  position: relative;
  min-height: 300px;
  padding: clamp(26px, 3.5vw, 42px);
  overflow: hidden;
  border-top: 6px solid var(--turquoise);
  background: var(--white);
  box-shadow: 0 15px 40px rgba(45, 60, 75, 0.09);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.topic-card:hover {
  border-top-color: var(--gold);
  box-shadow: 0 22px 50px rgba(45, 60, 75, 0.15);
  transform: translateY(-6px);
}

.topic-card p {
  margin-bottom: 0;
  color: #4f5f6c;
  font-size: 0.96rem;
  line-height: 1.65;
}

.topic-number {
  display: block;
  margin-bottom: 22px;
  color: var(--turquoise-deep);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.topic-number::after {
  width: 42px;
  height: 2px;
  display: inline-block;
  margin: 0 0 3px 12px;
  background: currentColor;
  content: "";
}

.goal-section {
  position: relative;
  padding-block: clamp(86px, 10vw, 148px);
  overflow: hidden;
  background: var(--turquoise);
  color: var(--blue-deep);
}

.goal-section::after {
  position: absolute;
  top: 50%;
  right: -14vw;
  width: 52vw;
  height: 52vw;
  border: clamp(35px, 5vw, 88px) solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.goal-inner {
  position: relative;
  z-index: 1;
}

.goal-inner h2 {
  max-width: 950px;
  margin-bottom: 30px;
  color: var(--blue-deep);
}

.goal-inner > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 580;
  line-height: 1.5;
}

.contact-section {
  padding-block: clamp(80px, 9vw, 132px);
  background: var(--blue-deep);
  color: var(--white);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(46px, 8vw, 120px);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.email-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: clamp(26px, 4vw, 42px) clamp(66px, 6vw, 92px) clamp(26px, 4vw, 42px) clamp(26px, 4vw, 42px);
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.email-card:hover {
  background: var(--turquoise-soft);
  transform: translateY(-4px);
}

.email-card-label {
  color: var(--turquoise-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.email-card strong {
  font-size: clamp(0.95rem, 2vw, 1.28rem);
  overflow-wrap: anywhere;
}

.email-card-arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  color: var(--gold-deep);
  font-size: 2rem;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.email-card:hover .email-card-arrow {
  transform: translate(5px, -50%);
}

.contact-social {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
}

.social-links--large .social-link {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.4);
  background: var(--white);
}

.social-links--large .social-link:hover {
  border-color: var(--social-orange);
  background: #fff5ed;
}

.site-footer {
  padding-block: 32px;
  border-top: 5px solid var(--gold);
  background: #17222c;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
}

.footer-inner > div {
  display: grid;
  gap: 2px;
}

.footer-inner strong {
  color: var(--white);
  font-size: 0.9rem;
}

.footer-inner nav {
  display: flex;
  gap: 20px;
}

.footer-inner a {
  color: var(--white);
  font-weight: 650;
  text-underline-offset: 4px;
}

.copyright {
  margin: 0;
  white-space: nowrap;
}

.footer-credit {
  grid-column: 1 / -1;
  justify-self: stretch;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.48);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.025em;
  line-height: 1.5;
  text-align: center;
}

.footer-inner .footer-credit a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  text-decoration-color: rgba(255, 166, 0, 0.55);
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-inner .footer-credit a:hover {
  color: var(--social-orange);
  text-decoration-color: var(--social-orange);
}

.legal-back {
  margin-left: auto;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  position: relative;
  padding-block: clamp(70px, 9vw, 126px);
  overflow: hidden;
  background: var(--blue);
}

.legal-hero::after {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 440px;
  height: 440px;
  border: 65px solid rgba(82, 183, 193, 0.2);
  border-radius: 50%;
  content: "";
}

.legal-hero .section-shell {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.legal-content {
  padding-block: clamp(66px, 8vw, 110px);
}

.legal-card {
  padding: clamp(28px, 5vw, 58px);
  border-top: 8px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card > h2,
.legal-copy h2 {
  max-width: none;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.legal-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: 34px;
}

.legal-grid--privacy {
  grid-template-columns: 1.4fr 1fr;
}

.legal-grid > div {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-grid h3 {
  font-size: 1rem;
}

.legal-grid p,
.legal-copy p {
  color: #40505e;
}

.legal-grid address,
.legal-copy address {
  color: #40505e;
  font-style: normal;
}

.legal-grid a,
.legal-copy a {
  color: var(--turquoise-deep);
  font-weight: 600;
  text-underline-offset: 4px;
}

.legal-copy {
  max-width: 900px;
  padding-top: clamp(58px, 8vw, 100px);
}

.legal-copy section + section {
  margin-top: 52px;
}

.legal-copy .legal-intro {
  margin: 0 0 clamp(52px, 7vw, 84px);
  color: var(--blue);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.65;
}

.legal-copy ul {
  margin: 20px 0 24px;
  padding-left: 1.35em;
  color: #40505e;
}

.legal-copy li + li {
  margin-top: 8px;
}

.legal-highlight {
  padding: clamp(24px, 4vw, 38px);
  border-left: 6px solid var(--gold);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(45, 60, 75, 0.08);
}

.legal-highlight h2 {
  margin-top: 0;
}

.legal-copy h2:not(:first-child) {
  margin-top: 52px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 22px 24px 34px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 45px rgba(32, 45, 57, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav ul {
    width: min(100%, 720px);
    margin-inline: auto;
    display: grid;
    gap: 0;
  }

  .main-nav a {
    width: 100%;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a::after {
    right: auto;
    bottom: -1px;
    width: 70px;
  }

  .header-tools {
    margin-left: auto;
  }

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

@media (max-width: 920px) {
  .split-layout,
  .split-layout--reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse .image-panel {
    order: 2;
  }

  .image-panel {
    aspect-ratio: 16 / 10;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro {
    max-width: 720px;
  }

  .hero-bar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-grid {
    gap: 44px;
  }

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

  .copyright {
    grid-column: 1 / -1;
  }

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

@media (max-width: 700px) {
  :root {
    --header-height: 72px;
  }

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

  body {
    font-size: 0.98rem;
  }

  .section-shell,
  .hero-bar-inner {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .header-inner {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .brand-role {
    display: none;
  }

  .brand-name {
    max-width: 142px;
    font-size: 0.82rem;
    line-height: 1.16;
  }

  .legal-back {
    display: none;
  }

  .legal-hero .legal-title--long {
    overflow-wrap: anywhere;
    font-size: clamp(1.75rem, 9vw, 3.15rem);
    letter-spacing: -0.045em;
  }

  .header-tools {
    gap: 5px;
  }

  .header-tools .social-links {
    gap: 3px;
  }

  .header-tools .social-link {
    width: 36px;
    height: 36px;
    border-color: transparent;
  }

  .header-tools .social-link svg {
    width: 19px;
    height: 19px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-image-wrap {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-image-wrap img {
    height: auto;
    object-fit: contain;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .content-section {
    padding-block: 72px;
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.15rem);
  }

  .split-layout {
    gap: 38px;
  }

  .wide-banner {
    aspect-ratio: 4 / 3;
  }

  .wide-banner img {
    object-position: 58% center;
  }

  .wide-banner--topics img {
    object-position: 62% center;
  }

  .prose-columns {
    columns: auto;
  }

  .prose-columns p + p {
    margin-top: 1rem;
  }

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

  .topic-card {
    min-height: 0;
  }

  .goal-section::after {
    right: -45vw;
    width: 90vw;
    height: 90vw;
  }

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

  .contact-actions {
    min-width: 0;
  }

  .email-card {
    padding-right: 58px;
  }

  .email-card-arrow {
    right: 20px;
  }

  .contact-social {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
  }

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

@media (max-width: 390px) {
  .brand-name {
    max-width: 118px;
    font-size: 0.76rem;
  }

  .header-tools .social-link {
    width: 32px;
  }

  .menu-toggle {
    width: 40px;
  }
}

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