:root {
  --bg: #d8dbe0;
  --bg-2: #eceef2;
  --panel: #ffffff;
  --panel-soft: #f6f7f9;
  --text: #102846;
  --text-strong: #0a1f3a;
  --muted: #606a79;
  --line: rgba(10, 31, 58, 0.12);
  --line-soft: rgba(10, 31, 58, 0.07);
  --navy: #0b2342;
  --navy-2: #16365f;
  --container: 1180px;
  --shadow-soft: 0 12px 34px rgba(10, 23, 40, 0.06);
  --shadow-panel: 0 24px 60px rgba(10, 23, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(11, 35, 66, 0.02), transparent 18%),
    radial-gradient(circle at 86% 14%, rgba(11, 35, 66, 0.018), transparent 16%),
    linear-gradient(180deg, #e1e3e7 0%, #d4d7dc 100%);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

main {
  overflow: hidden;
}

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

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(240, 242, 245, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  min-height: 88px;
  max-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 1.9rem;
  letter-spacing: 0.16em;
  color: var(--navy);
}

.brand-tagline {
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.42em;
  color: var(--muted);
}

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

.site-nav a {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--navy);
}

.site-nav a.active {
  color: var(--navy);
  font-weight: 700;
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--navy);
  opacity: 0.9;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* =========================
   TYPOGRAPHY
========================= */

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

h1, h2, h3 {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
  text-wrap: balance;
}

h2 {
  hyphens: none;
  -webkit-hyphens: none;
}

.eyebrow {
  margin: 0 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-2);
  opacity: 0.95;
}

h1 {
  font-size: clamp(2.6rem, 4.9vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

h2 {
  font-size: clamp(2.05rem, 3.7vw, 3.2rem);
  line-height: 1.01;
  letter-spacing: -0.045em;
  color: var(--text-strong);
}

h3 {
  font-size: 1.22rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

p,
li,
.site-footer a,
.site-footer p {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.page-hero p,
.split-right p,
.list-row p,
.card p {
  color: #5f6b7c;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #12335f 0%, #0b2342 100%);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(11, 35, 66, 0.16);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  border-color: rgba(11, 35, 66, 0.12);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* =========================
   HOME HERO
========================= */

.hero {
  padding: 76px 0 58px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  max-width: 100%;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 530px;
  font-size: 1.05rem;
  line-height: 1.86;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
}

/* =========================
   GENERAL SECTIONS
========================= */

.section {
  padding: 92px 0;
  position: relative;
}

.section-soft {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.10));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.statement {
  padding-top: 34px;
  padding-bottom: 54px;
}

.statement p {
  max-width: 940px;
  margin: 0;
  font-size: clamp(1.4rem, 2.05vw, 2rem);
  line-height: 1.28;
  color: var(--text-strong);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 88px;
  align-items: start;
}

.split-left {
  display: grid;
  gap: 10px;
}

.split-left .eyebrow {
  margin-bottom: 0;
}

.split-left h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  hyphens: none;
  -webkit-hyphens: none;
}

.split-right {
  padding-top: 6px;
}

.split-right p {
  max-width: 650px;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.84;
}

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

.card {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(8, 29, 56, 0.07);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.12;
}

.card p {
  margin-bottom: 0;
  line-height: 1.74;
  font-size: 1rem;
}

.quote-section {
  text-align: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.quote-section blockquote {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--text-strong);
}

.cta-box {
  display: grid;
  gap: 18px;
  padding: 42px 42px 38px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,247,250,0.74));
  border: 1px solid rgba(8, 29, 56, 0.08);
  box-shadow: var(--shadow-panel);
}

.cta-box--fullwidth h2 {
  max-width: 100%;
  width: 100%;
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  line-height: 1.0;
  letter-spacing: -0.045em;
}

.cta-box__footer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
}

.cta-box__footer-row p {
  max-width: 820px;
  margin: 0;
  line-height: 1.82;
}

.cta-box__footer-row .btn {
  min-width: 280px;
  align-self: end;
}

/* =========================
   SUBPAGES
========================= */

.page-hero {
  padding: 96px 0 56px;
}

.page-hero .container {
  display: grid;
  gap: 18px;
}

.page-hero .eyebrow {
  margin-bottom: 0;
}

.page-hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.78;
}

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

.list-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.list-row:first-child {
  border-top: none;
}

.list-row > span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--navy-2);
  font-weight: 700;
  padding-top: 4px;
}

.list-row h3 {
  margin-bottom: 8px;
}

.list-row p {
  max-width: 64ch;
  margin-bottom: 0;
  line-height: 1.86;
}

.clean-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.clean-list li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.team-list {
  display: grid;
  gap: 28px;
}

.team-member {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(8, 29, 56, 0.08);
  box-shadow: var(--shadow-soft);
}

.team-member__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  background: var(--panel-soft);
}

.team-member__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__role {
  margin: 0 0 8px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--navy-2);
  font-weight: 700;
}

.team-member h3 {
  margin: 0 0 14px;
}

.team-member__content p {
  margin: 0;
  line-height: 1.86;
  max-width: 760px;
}

.team-member__meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.team-member__meta a {
  color: var(--navy);
  border-bottom: 1px solid rgba(11, 35, 66, 0.22);
  padding-bottom: 3px;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.contact-panel {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 29, 56, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.contact-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 100%;
  margin-bottom: 14px;
}

.contact-panel > p:not(.eyebrow) {
  max-width: 560px;
  line-height: 1.86;
}

.contact-info-list {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.contact-info-item {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-info-label {
  display: block;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--navy-2);
  font-weight: 700;
}

.contact-info-item a,
.contact-info-item p {
  margin: 0;
  color: var(--navy);
  line-height: 1.8;
  word-break: break-word;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 29, 56, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  padding: 15px 16px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8090a6;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  margin-top: 36px;
  border-top: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.45);
  padding: 38px 0;
}

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

.footer-brand {
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  color: var(--navy);
}

.site-footer h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--navy);
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--navy);
}

/* =========================
   CONTINUOUS FLOW HERO
========================= */

.flow-shell {
  width: min(100%, 620px);
  min-height: 620px;
  padding: 24px 24px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,247,249,0.92));
  border: 1px solid rgba(8, 29, 56, 0.08);
  box-shadow: 0 30px 72px rgba(10, 23, 40, 0.10);
  position: relative;
  overflow: hidden;
}

.flow-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,29,56,0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(8,29,56,0.020) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.5;
  pointer-events: none;
}

.flow-shell__top,
.flow-shell__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flow-shell__top {
  margin-bottom: 18px;
}

.flow-shell__kicker {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-2);
}

.flow-shell__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  color: var(--muted);
}

.flow-shell__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #193a63;
  box-shadow: 0 0 0 6px rgba(25, 58, 99, 0.10);
  animation: flowPulse 3.2s ease-in-out infinite;
}

.flow-viewport {
  position: relative;
  z-index: 2;
  height: 500px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

.flow-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: flowLoop 28s linear infinite;
}

.flow-shell:hover .flow-track {
  animation-play-state: paused;
}

.flow-card {
  width: 320px;
  height: 500px;
  padding: 30px 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,249,251,0.94));
  border: 1px solid rgba(8, 29, 56, 0.08);
  box-shadow: 0 18px 40px rgba(10, 23, 40, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.flow-card__index {
  display: inline-block;
  margin-bottom: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(11, 35, 66, 0.54);
}

.flow-card h3 {
  margin: 0 0 14px;
  font-size: 2.05rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-strong);
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flow-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--muted);
  max-width: 24ch;
}

.flow-shell__footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 35, 66, 0.08);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  color: var(--muted);
}

@keyframes flowLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-1352px, 0, 0); }
}

@keyframes flowPulse {
  0%, 100% { transform: scale(1); opacity: 0.84; }
  50% { transform: scale(1.14); opacity: 1; }
}

/* =========================
   SECTION HEAD
========================= */

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-head .eyebrow {
  margin-bottom: 0;
}

.section-head h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-head p {
  max-width: 760px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.82;
}

/* =========================
   HEADLINE UTILITIES
========================= */

.headline-xl {
  max-width: 100%;
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  color: var(--text-strong);
}

.headline-lg {
  max-width: 100%;
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

/* =========================
   LEGAL PAGES
========================= */

.legal-content {
  padding: 64px 0 80px;
}

.legal-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 48px;
}

.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

/* =========================
   RESPONSIVE – TABLET
========================= */

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .cards-three,
  .cta-box,
  .footer-grid,
  .team-member,
  .contact-split {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 48px;
  }

  .flow-shell {
    min-height: 560px;
  }

  .flow-viewport {
    height: 440px;
  }

  .flow-card {
    width: 290px;
    height: 440px;
    padding: 26px 22px 22px;
  }

  .flow-card h3 {
    font-size: 2rem;
  }

  .flow-card p {
    font-size: 0.96rem;
    max-width: 19ch;
  }

  .page-hero {
    padding: 78px 0 42px;
  }

  @keyframes flowLoop {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-1232px, 0, 0); }
  }
}

/* =========================
   RESPONSIVE – MOBILE
========================= */

@media (max-width: 760px) {

  /* NAVIGATION */
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(245, 247, 250, 0.96);
    border-radius: 12px;
    z-index: 50;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav a.active::after {
    bottom: -6px;
  }

  .brand-logo {
    height: 40px;
  }

  /* HERO */
  .hero {
    padding: 40px 0 48px;
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-visual {
    display: none;
  }

  .flow-shell {
    display: none;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8.5vw, 3rem);
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .hero-text {
    font-size: 0.98rem;
    max-width: 100%;
    line-height: 1.72;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .btn {
    width: 100%;
  }

  /* TYPOGRAPHY */
  h1 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    line-height: 1.02;
  }

  h2 {
    line-height: 1.08;
  }

  /* SECTIONS */
  .section {
    padding: 56px 0;
  }

  .statement {
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .statement p {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  }

  .split {
    gap: 30px;
  }

  .cards-three {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quote-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .quote-section blockquote {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }

  /* CTA BOX */
  .cta-box {
    gap: 24px;
    padding: 28px 24px;
  }

  .cta-box__footer-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-box__footer-row .btn {
    min-width: unset;
    width: 100%;
  }

  /* LIST */
  .list-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* CONTACT */
  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-form .row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* TEAM */
  .team-member {
    grid-template-columns: 1fr;
  }

  .team-member__image {
    aspect-ratio: 3 / 2;
  }

  /* PAGE HERO */
  .page-hero {
    padding: 48px 0 32px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.04;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* HEADLINES */
  .headline-xl {
    font-size: clamp(2.4rem, 9vw, 3.6rem);
    line-height: 0.98;
  }

  .headline-lg {
    font-size: clamp(1.9rem, 7.5vw, 2.8rem);
    line-height: 1.0;
  }
}