@font-face {
  font-family: "Saans";
  src: url("./fonts/Saans-TRIAL-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saans";
  src: url("./fonts/Saans-TRIAL-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saans";
  src: url("./fonts/Saans-TRIAL-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-soft: #fafafa;
  --text: #111111;
  --muted: #5f5f5f;
  --line: rgba(17, 17, 17, 0.14);
  --line-soft: rgba(17, 17, 17, 0.08);
  --navy: #1f3348;
  --radius-xl: 22px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --shadow-1: 0 10px 24px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 16px 30px rgba(0, 0, 0, 0.08);
  --font-sans: "Saans", Arial, sans-serif;
  --font-legal: "EB Garamond", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  background: linear-gradient(180deg, #f8f8f8 0%, #f3f3f3 100%);
  line-height: 1.64;
  overflow-x: clip;
}

.grid-background {
  background-image: linear-gradient(#1d1d2014 1px, #0000 1px), linear-gradient(90deg, #1d1d2014 1px, #0000 1px),
    linear-gradient(180deg, #f8f8f8 0%, #f3f3f3 100%);
  background-size: 50px 50px, 50px 50px, auto;
  background-attachment: fixed;
}

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

a {
  color: inherit;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.email-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

h1,
h2,
h3,
h4,
.h1-like,
.surface h2,
.surface h3,
.topic-card h3,
.review-card h3,
.team-meta h3,
.info-card h3,
.cookie-title {
  font-family: var(--font-legal);
  text-wrap: balance;
}

h1,
h2,
h3,
.h1-like {
  max-width: 100%;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-name {
  margin: 0;
  font-size: 17px;
  line-height: 1;
  color: #151515;
  font-weight: 700;
}

.brand-sub {
  margin: 2px 0 0;
  font-size: 10.5px;
  color: #6a6a6a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2f2f2f;
  border-radius: 7px;
  padding: 7px 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: #efefef;
  color: #111;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: transparent;
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  width: 42px;
  height: 36px;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
}

.nav-toggle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transform: translate(-50%, -50%);
  box-shadow: 0 -5px 0 #111, 0 5px 0 #111;
}

main {
  overflow: visible;
}

.hero-banner {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-image: linear-gradient(108deg, rgba(16, 16, 16, 0.78) 0%, rgba(16, 16, 16, 0.56) 50%, rgba(16, 16, 16, 0.22) 100%),
    url("../banner.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31, 51, 72, 0.22), rgba(0, 0, 0, 0));
  pointer-events: none;
  animation: hero-breathe 18s ease-in-out infinite;
}

@keyframes hero-breathe {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}

.hero-banner > .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 300px);
  gap: 18px;
  align-items: end;
}

.hero-content {
  width: min(840px, 100%);
  padding: 74px 0 76px;
}

.hero-kicker {
  margin: 0 0 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
}

h1,
.h1-like {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 0.92;
}

.hero-content h1 {
  max-width: 19ch;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-content p {
  margin: 14px 0 0;
  font-size: 16px;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.91);
}

.hero-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  padding: 4px 9px;
  font-size: 9.8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-aside {
  margin-bottom: 76px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(4px);
  animation: float-subtle 11s ease-in-out infinite;
}

@keyframes float-subtle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.hero-aside h3 {
  margin: 0;
  font-size: 28px;
  line-height: 0.94;
}

.hero-aside p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12.8px;
}

.hero-aside ul {
  margin: 10px 0 0;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.2px;
}

.button-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 9px;
  border: 1px solid transparent;
  padding: 11px 14px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.45s ease, background 0.45s ease, border-color 0.45s ease;
}

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

.btn-primary {
  background: #222;
  border-color: #222;
  color: #fff;
}

.btn-primary:hover {
  background: #111;
  border-color: #111;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

section {
  padding: 82px 0;
}

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

.section-kicker {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 9.8px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.92;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 72ch;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 16px 14px;
  transition: transform 0.48s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-card strong {
  display: block;
  color: #111;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.intro-panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 20px;
}

.intro-panel h3 {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 0.92;
}

.intro-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.pill-list {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #f5f5f5;
  color: #222;
  padding: 4px 8px;
  font-size: 9.7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.topic-card {
  border: 0;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 18px 16px;
  transition: transform 0.48s ease;
}

.topic-card:hover {
  transform: translateY(-3px);
}

.topic-card h3 {
  margin: 0 0 7px;
  font-size: 26px;
  line-height: 0.92;
  min-height: 1.85em;
}

.topic-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.media-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.media-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: transform 0.52s ease;
}

.media-tile:hover {
  transform: translateY(-3px);
}

.media-tile img {
  width: 100%;
  height: 228px;
  object-fit: cover;
}

.media-body {
  padding: 13px 13px 15px;
}

.media-body h3 {
  margin: 0 0 5px;
  font-size: 26px;
  line-height: 0.92;
}

.media-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12.8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 17px;
}

.process-step {
  color: var(--navy);
  font-size: 9.6px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
}

.process-card h3 {
  margin: 8px 0 7px;
  font-size: 32px;
  line-height: 0.92;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12.8px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review-card {
  position: relative;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 16px;
  display: grid;
  gap: 9px;
  transition: transform 0.48s ease, border-color 0.48s ease;
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 12px;
  top: 7px;
  font-family: var(--font-legal);
  font-size: 46px;
  line-height: 1;
  color: rgba(31, 51, 72, 0.16);
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: #c6c6c6;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.review-head h3 {
  margin: 0;
  font-size: 26px;
  line-height: 0.92;
}

.review-stars {
  color: #8b8b8b;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.review-area {
  display: inline-flex;
  width: fit-content;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  background: #f7f7f7;
  color: #202020;
  padding: 4px 7px;
  font-size: 8.8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}

.review-text {
  margin: 0;
  color: var(--muted);
  font-size: 12.8px;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  font-size: 10.8px;
  color: #4e4e4e;
}

.review-badge {
  color: var(--navy);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

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

.split-media img {
  width: 100%;
  height: min(490px, 52vw);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
}

.surface {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 26px;
}

.surface,
.info-card,
.topic-card,
.review-card,
.team-card {
  min-width: 0;
}

.surface h2,
.surface h3 {
  margin: 0 0 10px;
  font-size: clamp(38px, 3.3vw, 48px);
  line-height: 0.92;
}

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

.legal-content h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.06;
}

.legal-content h3 {
  margin: 18px 0 6px;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.15;
}

.legal-content p,
.legal-content li {
  margin: 0;
  font-size: 14px;
  line-height: 1.58;
  color: #424242;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
  margin-top: 10px;
}

.legal-content ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.legal-content li + li {
  margin-top: 4px;
}

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

.team-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-1);
  transition: transform 0.48s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 20%;
}

.team-meta {
  padding: 15px 15px 17px;
}

.team-meta h3 {
  margin: 0 0 4px;
  font-size: 38px;
  line-height: 0.92;
}

.team-role {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 12.8px;
}

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

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 20px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 0.92;
}

.info-card p,
.info-card li {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.map-card {
  padding-bottom: 14px;
}

.map-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #efefef;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li + li {
  margin-top: 8px;
}

.page-hero {
  padding: 88px 0 56px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
}

.reference-box {
  max-width: 220px;
  margin: 0 auto;
}

.reference-box img {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  box-shadow: var(--shadow-1);
}

.site-footer {
  margin-top: 20px;
  background: #101010;
  color: rgba(255, 255, 255, 0.85);
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.site-footer h4 {
  margin: 0 0 11px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer .email-icon {
  filter: brightness(0) invert(1);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
}

.footer-badges img {
  height: 50px;
  width: auto;
}

.copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
  padding: 14px;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: slide-up 0.26s ease;
}

@keyframes slide-up {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.cookie-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cookie-title {
  margin: 0;
  font-size: 30px;
  line-height: 0.92;
}

.cookie-text {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12.6px;
}

.cookie-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4d4d4;
  border-radius: 999px;
  background: #f7f7f7;
  color: #222;
  padding: 4px 8px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-details {
  margin-top: 11px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #f9f9f9;
  display: grid;
  gap: 7px;
}

.cookie-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
}

.cookie-row strong {
  font-size: 12px;
}

.cookie-row span {
  color: var(--muted);
  font-size: 11px;
}

.cookie-status {
  color: var(--navy);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.cookie-switch {
  width: 36px;
  height: 20px;
}

.cookie-actions {
  margin-top: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.btn-cookie {
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  background: #fff;
  color: #111;
  padding: 8px 10px;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.btn-cookie.primary {
  border-color: #2a2a2a;
  background: #2a2a2a;
  color: #fff;
}

.btn-cookie.primary:hover {
  background: #181818;
}

.btn-cookie.ghost:hover {
  background: #f2f2f2;
}

.cookie-links {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 10.5px;
}

.cookie-links a {
  color: var(--navy);
  text-decoration: none;
}

.cookie-links a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.1s ease, transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .stat-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topics-grid,
  .cards-3,
  .media-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    padding: 64px 0 62px;
  }

  .split {
    gap: 18px;
  }

  .surface h2,
  .surface h3 {
    font-size: clamp(34px, 3.2vw, 42px);
  }

  .team-meta h3 {
    font-size: clamp(30px, 3vw, 36px);
  }

  .info-card h3 {
    font-size: clamp(30px, 3vw, 34px);
  }
}

@media (max-width: 930px) {
  section {
    padding: 72px 0;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
    padding: 10px 20px 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    font-size: 11px;
    padding: 8px 8px;
  }

  .hero-layout,
  .intro-grid,
  .split,
  .cards-2,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    margin-bottom: 20px;
    max-width: 520px;
  }

  .hero-content {
    padding: 56px 0 42px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .section-head h2 {
    font-size: clamp(30px, 5.2vw, 42px);
    line-height: 1.02;
  }

  .section-head p,
  .surface p,
  .legal-content p,
  .legal-content li {
    font-size: 14px;
  }

  .surface {
    padding: 22px;
  }

  .split-media img {
    height: min(420px, 64vw);
  }

  .split.reverse .split-media,
  .split.reverse .split-copy {
    order: initial;
  }

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

  .cookie-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cookie-banner {
    max-height: min(78vh, 740px);
    overflow: auto;
  }

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

  .h1-like,
  .hero-content h1,
  .section-head h2,
  .surface h2,
  .surface h3,
  .intro-panel h3,
  .topic-card h3,
  .media-body h3,
  .review-head h3,
  .process-card h3,
  .team-meta h3,
  .info-card h3 {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(1240px, calc(100% - 24px));
  }

  .nav-wrap {
    min-height: 62px;
  }

  .brand-sub {
    display: none;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    top: 62px;
    padding: 10px 12px 14px;
  }

  .hero-banner {
    min-height: 58vh;
    background-position: center top;
  }

  .hero-content {
    padding: 52px 0 36px;
  }

  .hero-content h1 {
    font-size: clamp(27px, 8.1vw, 36px);
    line-height: 1.04;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-aside h3 {
    font-size: clamp(24px, 7.8vw, 30px);
  }

  .hero-aside p,
  .hero-aside ul {
    font-size: 12.5px;
  }

  section {
    padding: 56px 0;
  }

  .page-hero {
    padding: 72px 0 40px;
  }

  .topics-grid,
  .cards-3,
  .stat-grid,
  .process-grid,
  .review-grid,
  .media-mosaic,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .h1-like {
    font-size: clamp(27px, 8.2vw, 36px);
    line-height: 1.04;
  }

  .section-head h2 {
    font-size: clamp(26px, 7.8vw, 34px);
    line-height: 1.05;
  }

  .surface h2,
  .surface h3 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.05;
  }

  .intro-panel h3,
  .topic-card h3,
  .media-body h3,
  .review-head h3 {
    font-size: clamp(22px, 6.6vw, 29px);
    line-height: 1.06;
  }

  .process-card h3,
  .team-meta h3,
  .info-card h3 {
    font-size: clamp(23px, 6.9vw, 30px);
    line-height: 1.06;
  }

  .team-grid,
  .cards-2 {
    gap: 10px;
  }

  .team-card img {
    height: clamp(228px, 60vw, 280px);
  }

  .review-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .split-media img {
    height: clamp(220px, 58vw, 340px);
  }

  .map-embed iframe {
    min-height: 280px;
  }

  .footer-badges img {
    height: 40px;
  }

  .cookie-banner {
    left: 8px;
    right: 8px;
    padding: 12px;
    border-radius: 10px;
  }

  .cookie-head {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-title {
    font-size: clamp(24px, 8.3vw, 30px);
  }

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

  .btn-cookie {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1240px, calc(100% - 20px));
  }

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

  .button-row .btn {
    width: 100%;
  }

  .surface {
    padding: 18px;
  }

  .hero-content,
  .page-hero {
    overflow: hidden;
  }

  .legal-content h2 {
    font-size: clamp(22px, 8vw, 30px);
    line-height: 1.08;
  }

  .legal-content h3 {
    font-size: clamp(16px, 5.8vw, 21px);
    line-height: 1.2;
  }

  .legal-content p,
  .legal-content li {
    font-size: 14px;
    line-height: 1.62;
  }

  .site-footer {
    padding: 44px 0 20px;
  }

  .section-head p,
  .surface p,
  .legal-content p,
  .legal-content li,
  .stat-card span,
  .info-card p,
  .info-card li {
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
