@font-face {
  font-family: "Geogrotesque";
  src:
    local("Geogrotesque"),
    local("Geogrotesque Regular"),
    local("Geogrotesque Medium");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-base: "Geogrotesque", "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Geogrotesque", "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --bg: #edf1f6;
  --bg-strong: #d9e1ec;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #f7f9fc;
  --ink: #191e28;
  --ink-soft: #4a5568;
  --accent: #1f3855;
  --accent-strong: #162a40;
  --accent-soft: #345170;
  --accent-tint: #7d93ad;
  --line: rgba(25, 30, 40, 0.12);
  --white: #f9fbff;
  --shadow: 0 24px 60px rgba(17, 25, 38, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(125, 147, 173, 0.18), transparent 32%),
    radial-gradient(circle at 80% 12%, rgba(25, 30, 40, 0.14), transparent 26%),
    linear-gradient(180deg, #f4f7fb 0%, #edf1f6 42%, #e4eaf2 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-topbar {
  background: rgba(13, 18, 32, 0.95);
  color: rgba(249, 251, 255, 0.9);
  font-size: 0.92rem;
}

.site-topbar__inner,
.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-topbar__inner {
  padding: 10px 0;
}

.site-topbar__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-topbar__cta {
  color: #c5d2e6;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(245, 247, 251, 0.84);
  border-bottom: 1px solid rgba(25, 30, 40, 0.08);
}

.site-header__inner {
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand__eyebrow {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  font-weight: 700;
}

.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.site-nav__links a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease;
}

.site-nav__links a:hover::after,
.site-nav__links a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button--secondary {
  color: var(--ink);
  border-color: rgba(25, 30, 40, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(249, 251, 255, 0.28);
  background: rgba(249, 251, 255, 0.08);
}

.page-hero,
.section {
  padding: 34px 0 84px;
}

.page-hero {
  padding-top: 48px;
}

.hero-card,
.band,
.panel,
.cta,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero-card {
  min-height: 580px;
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(22, 42, 64, 0.97), rgba(52, 81, 112, 0.92)),
    linear-gradient(180deg, rgba(125, 147, 173, 0.16), transparent);
  color: var(--white);
}

.hero-card::before,
.hero-card::after,
.band::before,
.panel--accent::before,
.cta::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-card::before {
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(125, 147, 173, 0.3), transparent 70%);
}

.hero-card::after {
  left: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.hero-grid,
.split,
.contact-grid,
.service-grid,
.article-grid,
.card-grid,
.icon-grid,
.stats,
.steps,
.footer-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  align-items: end;
  min-height: 468px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c9d6ea;
  font-weight: 800;
}

.hero-card h1,
.page-head h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-card p,
.page-head p {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 1.07rem;
  color: rgba(249, 251, 255, 0.88);
}

.hero-actions,
.page-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-rail,
.mini-card,
.service-card,
.article-card,
.contact-card,
.reference-card,
.detail-list,
.process-card,
.faq-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-rail {
  padding: 22px;
  align-self: stretch;
  display: grid;
  gap: 16px;
}

.hero-rail__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c6d3e6;
}

.hero-rail__item {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-rail__item:first-of-type {
  border-top: 0;
  padding-top: 4px;
}

.hero-rail__item strong,
.stat strong,
.service-card h3,
.article-card h3,
.page-head h2,
.panel h3,
.contact-card h3,
.reference-card h3,
.faq-card h3 {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-rail__item span {
  display: block;
  margin-top: 8px;
  color: rgba(249, 251, 255, 0.78);
}

.section-head,
.page-head {
  margin-bottom: 32px;
}

.section-head h2,
.panel h2,
.cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-head p,
.panel p,
.cta p,
.service-card p,
.article-card p,
.reference-card p,
.contact-card p,
.detail-list li {
  color: var(--ink-soft);
}

.section-head p {
  max-width: 68ch;
  margin: 14px 0 0;
}

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

.service-card,
.article-card,
.reference-card,
.contact-card,
.process-card,
.faq-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 100%;
}

.service-card__index,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: #f4f7fd;
  background: rgba(43, 60, 87, 0.92);
}

.service-card h3,
.article-card h3,
.contact-card h3,
.reference-card h3,
.faq-card h3 {
  margin: 18px 0 12px;
}

.service-card a,
.article-card a,
.reference-card a,
.inline-link {
  font-weight: 700;
  color: var(--accent-strong);
}

.band {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(217, 225, 236, 0.88), rgba(245, 248, 252, 0.94));
}

.band::before {
  top: -80px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(25, 30, 40, 0.08), transparent 72%);
}

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

.stat {
  padding: 18px 0 0;
  border-top: 1px solid rgba(25, 30, 40, 0.12);
}

.stat strong {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 8px;
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.split--reverse .split__visual {
  order: -1;
}

.panel {
  padding: clamp(26px, 4vw, 40px);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
}

.panel--accent {
  background: linear-gradient(135deg, rgba(22, 42, 64, 0.97), rgba(52, 81, 112, 0.92));
  color: var(--white);
}

.panel--accent p,
.panel--accent li,
.panel--accent .kicker {
  color: rgba(249, 251, 255, 0.82);
}

.panel--accent::before,
.cta::before {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(125, 147, 173, 0.24), transparent 70%);
}

.kicker {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.detail-list,
.steps {
  margin: 24px 0 0;
}

.detail-list {
  padding: 22px;
  list-style: none;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
}

.detail-list li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(25, 30, 40, 0.12);
}

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

.process-card strong {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-soft);
}

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

.icon-item {
  padding: 18px 0;
  border-top: 1px solid rgba(25, 30, 40, 0.12);
}

.icon-item:first-child,
.icon-item:nth-child(2) {
  border-top: 0;
  padding-top: 0;
}

.icon-item strong {
  display: block;
  margin-bottom: 8px;
}

.reference-card {
  min-height: 100%;
}

.reference-card__visual,
.art,
.media-card {
  min-height: 240px;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, rgba(22, 42, 64, 0.97), rgba(52, 81, 112, 0.92));
}

.art,
.media-card {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  color: var(--white);
  text-align: left;
}

.art::before,
.art::after,
.media-card::before,
.media-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
}

.art::before,
.media-card::before {
  width: 180px;
  height: 180px;
  right: -30px;
  top: -30px;
  background: radial-gradient(circle, rgba(125, 147, 173, 0.28), transparent 72%);
}

.art::after,
.media-card::after {
  width: 140px;
  height: 140px;
  left: -30px;
  bottom: -30px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 72%);
}

.art__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  padding: 28px;
  border-radius: 26px;
  background: rgba(249, 251, 255, 0.08);
  border: 1px solid rgba(249, 251, 255, 0.16);
}

.art__title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2.3rem);
  line-height: 1.05;
}

.art__text {
  display: block;
  margin-top: 14px;
  max-width: 28ch;
  color: rgba(249, 251, 255, 0.82);
}

.art--warm {
  background: linear-gradient(135deg, rgba(22, 42, 64, 0.96), rgba(52, 81, 112, 0.9));
}

.art--light {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(248, 250, 253, 0.96), rgba(221, 229, 239, 0.98));
}

.art--light .art__frame {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(25, 30, 40, 0.08);
}

.art--light .art__text {
  color: var(--ink-soft);
}

.media-card::after {
  inset: auto 0 0 0;
  width: auto;
  height: 60%;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  background: linear-gradient(180deg, transparent, rgba(22, 42, 64, 0.88));
}

.media-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card--contain {
  background: linear-gradient(135deg, rgba(246, 249, 252, 0.96), rgba(221, 229, 239, 0.92));
}

.media-card--contain .media-card__img {
  object-fit: contain;
  padding: 24px;
}

.media-card__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 26px;
}

.media-card__title {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.media-card__text {
  display: block;
  max-width: 34ch;
  margin-top: 10px;
  color: rgba(249, 251, 255, 0.84);
}

.media-card--light .media-card__overlay {
  color: var(--ink);
}

.media-card--light .media-card__text {
  color: var(--ink-soft);
}

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

.contact-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.contact-card ul,
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card ul li + li,
.footer-links li + li,
.footer-contact li + li {
  margin-top: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-note {
  margin: 10px 0 0;
  font-size: 0.95rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(25, 30, 40, 0.18);
  border-radius: 16px;
}

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

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.field-error {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.9rem;
  color: #9d2f21;
}

.field input.is-invalid,
.field textarea.is-invalid,
.field select.is-invalid {
  border-color: rgba(157, 47, 33, 0.7);
  background: rgba(255, 245, 242, 0.98);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
}

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

.form-status--success {
  color: #1f3855;
  background: rgba(217, 226, 238, 0.82);
  border-color: rgba(31, 56, 85, 0.16);
}

.form-status--error {
  color: #6b2117;
  background: rgba(248, 217, 211, 0.82);
  border-color: rgba(157, 47, 33, 0.2);
}

.cta {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, rgba(22, 42, 64, 0.98), rgba(52, 81, 112, 0.93));
}

.cta__row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.footer {
  margin-top: 60px;
  padding: 34px 0 46px;
  color: rgba(249, 251, 255, 0.84);
  background: #162a40;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
}

.footer .brand__name,
.footer .brand__eyebrow {
  color: var(--white);
}

.footer-title {
  margin: 0 0 16px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #becce1;
}

.footer p,
.footer li,
.footer a {
  color: rgba(249, 251, 255, 0.78);
}

.page-head {
  margin-bottom: 0;
}

.page-shell {
  display: grid;
  gap: 28px;
}

.page-head {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(22, 42, 64, 0.96), rgba(52, 81, 112, 0.92));
  color: var(--white);
  box-shadow: var(--shadow);
}

.page-head p {
  color: rgba(249, 251, 255, 0.82);
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.page-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(249, 251, 255, 0.08);
  border: 1px solid rgba(249, 251, 255, 0.14);
}

.home-main {
  display: grid;
  gap: 0;
}

.home-hero,
.home-teasers,
.home-news,
.home-split,
.home-statement,
.home-facts,
.home-contact-band {
  padding: 36px 0;
}

.home-hero {
  padding-top: 48px;
}

.home-hero__grid,
.home-split__grid,
.statement-grid,
.contact-band {
  display: grid;
  gap: 28px;
}

.home-hero__grid,
.home-split__grid,
.statement-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.home-hero__copy,
.home-split__content,
.statement-copy {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.home-hero__copy h1,
.home-split__content h2,
.statement-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.home-hero__lead,
.home-split__content p,
.statement-copy p {
  color: var(--ink-soft);
}

.home-hero__media,
.home-split__image,
.statement-media {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.home-hero__media img,
.home-split__image img,
.statement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-teasers__grid,
.news-grid,
.facts-grid {
  display: grid;
  gap: 24px;
}

.home-teasers__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.teaser-card,
.news-card,
.fact-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.teaser-card img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.teaser-card__body,
.news-card,
.fact-card {
  padding: 22px;
}

.teaser-card__body h2,
.news-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.05;
}

.teaser-card__body p,
.news-card p,
.fact-card span {
  color: var(--ink-soft);
}

.teaser-card__body a,
.news-card a {
  font-weight: 700;
  color: var(--accent-strong);
}

.section-head--compact {
  margin-bottom: 24px;
}

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

.news-card__meta {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 700;
}

.home-split--reverse .home-split__image {
  order: 2;
}

.home-split--reverse .home-split__content {
  order: 1;
}

.home-list {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.home-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(25, 30, 40, 0.12);
  color: var(--ink-soft);
}

.home-list li:last-child {
  border-bottom: 1px solid rgba(25, 30, 40, 0.12);
}

.home-statement {
  background: linear-gradient(180deg, rgba(221, 229, 239, 0.45), rgba(221, 229, 239, 0.12));
}

.statement-copy {
  background: linear-gradient(135deg, rgba(22, 42, 64, 0.96), rgba(52, 81, 112, 0.92));
  color: var(--white);
}

.statement-copy p,
.statement-quote {
  color: rgba(249, 251, 255, 0.8);
}

.statement-quote {
  font-size: 1.18rem;
  line-height: 1.5;
}

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

.fact-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.contact-band {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(221, 229, 239, 0.72));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.contact-band p {
  color: var(--ink-soft);
}

.text-columns {
  columns: 2 280px;
  gap: 32px;
}

.text-columns p {
  margin-top: 0;
}

.legal h2 {
  margin-top: 0;
}

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

.muted {
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .card-grid,
  .article-grid,
  .stats,
  .steps,
  .home-hero__grid,
  .home-split__grid,
  .statement-grid,
  .home-teasers__grid,
  .news-grid,
  .facts-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__visual {
    order: 0;
  }

  .home-split--reverse .home-split__image,
  .home-split--reverse .home-split__content {
    order: initial;
  }

  .site-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav__links {
    position: fixed;
    inset: 86px 16px auto;
    z-index: 30;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 24px;
    background: rgba(245, 247, 251, 0.98);
    border: 1px solid rgba(25, 30, 40, 0.12);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav__links {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav > .button {
    display: none;
  }

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

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

@media (max-width: 640px) {
  .hero-card,
  .page-head,
  .panel,
  .band,
  .cta,
  .home-hero__copy,
  .home-split__content,
  .statement-copy,
  .contact-band {
    padding: 24px;
    border-radius: 26px;
  }

  .hero-card h1,
  .page-head h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .section,
  .page-hero {
    padding: 28px 0 68px;
  }

  .reference-card__visual,
  .art {
    min-height: 200px;
  }
}
