:root {
  --ink: #11161d;
  --ink-soft: #293440;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #dbe2dd;
  --green: #386f61;
  --green-dark: #1f4b42;
  --copper: #9a5d39;
  --copper-light: #c4865a;
  --blue: #3f6476;
  --shadow: 0 18px 48px rgba(17, 22, 29, 0.11);
  --max: 1180px;
  --header: 82px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  transform: translateY(calc(-100% - 24px));
}

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

.section[id],
.decision-summary[id],
.contact-section[id] {
  scroll-margin-top: calc(var(--header) + 24px);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2.5vw, 32px);
  padding: 8px clamp(20px, 5vw, 72px);
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(219, 226, 221, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 245, 0.96);
  box-shadow: 0 12px 36px rgba(17, 22, 29, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 2.1vw, 34px);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.site-nav a {
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--copper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  --hero-photo-width: min(30vw, 440px);
  --hero-photo-gap: clamp(32px, 4vw, 56px);
  position: relative;
  min-height: min(760px, calc(100svh - var(--header)));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 22, 29, 0.96) 0%, rgba(17, 22, 29, 0.93) 58%, rgba(17, 22, 29, 0.78) 100%),
    #11161d;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(90deg, rgba(56, 111, 97, 0.18), transparent 34%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: var(--hero-photo-width);
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 22, 29, 0.74) 0%, rgba(17, 22, 29, 0.22) 38%, rgba(17, 22, 29, 0.16) 100%),
    url("assets/thomas-haeser-hero.jpg") center / cover no-repeat;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green), var(--copper), var(--blue));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, min(28vw, 340px)) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  padding: clamp(64px, 10vh, 120px) calc(var(--hero-photo-width) + var(--hero-photo-gap)) clamp(64px, 10vh, 120px) 0;
}

.hero-logo-card {
  width: min(100%, 340px);
  margin: clamp(25px, 2vw, 33px) 0 0;
  align-self: start;
  padding: clamp(10px, 1.4vw, 18px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.hero-logo {
  width: 100%;
  height: auto;
}

.hero-copy {
  max-width: 820px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.section-dark .section-kicker {
  color: var(--copper-light);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.hero-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  font-weight: 800;
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #7d4a2f;
}

.button-secondary {
  color: currentColor;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.contact-section .button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.signal-band,
.section,
.contact-section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 4vw, 56px);
}

.credibility-strip {
  padding: 20px clamp(20px, 4vw, 56px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.credential-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.credential-copy {
  display: grid;
  gap: 3px;
}

.credential-copy span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.credential-copy strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
}

.station-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.station-list li {
  padding: 7px 10px;
  border: 1px solid #d9e1dc;
  border-radius: 4px;
  color: var(--ink-soft);
  background: #fafbf9;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.signal-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.decision-summary {
  padding: clamp(54px, 7vw, 86px) clamp(20px, 4vw, 56px);
  background:
    linear-gradient(135deg, rgba(56, 111, 97, 0.09), transparent 34%),
    #f8faf7;
  border-bottom: 1px solid var(--line);
}

.decision-inner {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.decision-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.08;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(17, 22, 29, 0.07);
}

.decision-grid article {
  min-height: 242px;
  padding: clamp(22px, 3vw, 30px);
}

.decision-grid article + article {
  border-left: 1px solid var(--line);
}

.decision-grid span,
.service-type {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-grid h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.decision-grid p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.content-grid,
.section-heading,
.cards,
.service-list,
.asset-grid,
.process-list,
.timeline,
.contact-panel,
.legal-note {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.content-grid {
  display: grid;
  gap: 40px;
}

.signal-grid,
.two-column {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.signal-grid h2,
.section-heading h2,
.contact-panel h2,
.two-column h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.signal-grid p,
.section-heading p,
.copy-stack p,
.contact-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-top: 16px;
}

.section-tint {
  background: #eef4f0;
  border-block: 1px solid var(--line);
}

.cards {
  display: grid;
  gap: 16px;
}

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

.card,
.service-list article,
.asset-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(17, 22, 29, 0.015);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.service-list article:hover,
.asset-grid article:hover {
  border-color: rgba(56, 111, 97, 0.42);
  background: #fbfcfa;
  box-shadow: 0 10px 26px rgba(17, 22, 29, 0.05);
}

.card-index {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 24px;
}

.card h3,
.service-list h3,
.asset-grid h3,
.timeline h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: 0;
}

.card p,
.service-list p,
.asset-grid p,
.timeline p,
.process-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

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

.service-list article {
  min-height: 170px;
  border-top: 3px solid rgba(56, 111, 97, 0.48);
}

.service-type {
  margin-bottom: 12px;
  color: var(--copper);
}

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

.asset-grid article {
  grid-column: span 2;
}

.asset-grid article:nth-child(4),
.asset-grid article:nth-child(5),
.asset-grid article:nth-child(6) {
  grid-column: span 2;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-dark .section-heading h2 {
  color: var(--white);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.75);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.process-list li {
  padding: 26px;
  background: var(--ink);
}

.process-list span {
  display: inline-block;
  color: #f0b889;
  font-size: 20px;
  font-weight: 850;
}

.process-list p {
  color: rgba(255, 255, 255, 0.76);
}

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

.timeline article {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--green);
  font-weight: 850;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.network-points {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.network-points li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 17px;
}

.network-points li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 2px;
  content: "";
  background: var(--copper);
}

.contact-section {
  background: var(--white);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(56, 111, 97, 0.08), transparent 38%),
    var(--white);
}

.contact-panel > * {
  min-width: 0;
}

.contact-actions {
  margin-top: 0;
  align-content: center;
  min-width: 0;
}

.contact-actions .button {
  min-width: 0;
  overflow-wrap: anywhere;
}

.legal-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

.legal-note a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 94px) clamp(20px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 22, 29, 0.97), rgba(17, 22, 29, 0.9)),
    #11161d;
}

.legal-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--copper), var(--blue));
}

.legal-hero-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.legal-hero-logo {
  width: min(240px, 100%);
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.legal-hero-copy {
  max-width: 900px;
}

.legal-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.legal-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 21px);
}

.legal-hero .button {
  margin-top: 28px;
}

.legal-page {
  padding: clamp(44px, 7vw, 90px) clamp(20px, 4vw, 56px);
}

.legal-content {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-meta {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content section:first-of-type {
  border-top: 0;
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.16;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
  hyphens: none;
}

.legal-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-actions .button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

@media (min-width: 981px) and (max-width: 1320px) {
  .hero {
    --hero-photo-width: clamp(320px, 34vw, 380px);
    --hero-photo-gap: 28px;
  }

  .hero-inner {
    width: min(1180px, calc(100% - 48px));
    grid-template-columns: minmax(160px, 200px) minmax(0, 1fr);
    gap: clamp(22px, 2.6vw, 32px);
    align-items: center;
    padding-top: clamp(48px, 7vh, 72px);
    padding-bottom: clamp(48px, 7vh, 72px);
  }

  .hero-logo-card {
    width: min(200px, 100%);
    margin-top: 0;
    padding: 10px;
  }

  .hero h1 {
    font-size: clamp(38px, 4.1vw, 48px);
  }

  .hero-lead {
    max-width: 540px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.46;
  }

  .hero-actions {
    margin-top: 24px;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(247, 248, 245, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-right: 0;
  }

  .hero-logo-card {
    width: min(300px, 54vw);
    margin-top: 0;
  }

  .hero {
    --mobile-photo-height: clamp(285px, 39svh, 420px);
    min-height: auto;
    background:
      linear-gradient(0deg, rgba(17, 22, 29, 0.96) 0%, rgba(17, 22, 29, 0.82) 42%, rgba(17, 22, 29, 0.26) 100%),
      url("assets/thomas-haeser-mobile.jpg") right 24% top / auto var(--mobile-photo-height) no-repeat,
      #11161d;
    align-items: start;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    padding-top: calc(var(--mobile-photo-height) + clamp(24px, 4vw, 44px));
    padding-bottom: clamp(42px, 7vw, 70px);
  }

  .signal-grid,
  .two-column,
  .legal-hero-inner,
  .contact-panel,
  .credential-inner,
  .decision-inner {
    grid-template-columns: 1fr;
  }

  .station-list {
    justify-content: flex-start;
  }

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

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

  .decision-grid article {
    min-height: auto;
  }

  .decision-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .asset-grid article,
  .asset-grid article:nth-child(4),
  .asset-grid article:nth-child(5),
  .asset-grid article:nth-child(6) {
    grid-column: span 1;
  }

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

@media (min-width: 700px) and (max-width: 980px) {
  .hero {
    --mobile-photo-height: clamp(315px, 39svh, 420px);
  }

  .hero-inner {
    grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
  }

  .hero-logo-card {
    width: min(250px, 100%);
  }

  .hero h1 {
    font-size: clamp(36px, 5vw, 44px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 12px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  :root {
    --header: 74px;
  }

  .site-header {
    gap: 12px;
    padding: 10px 16px;
  }

  .site-header {
    justify-content: flex-end;
  }

  .hero {
    --mobile-photo-height: clamp(255px, 36svh, 320px);
    min-height: auto;
  }

  .hero-inner {
    padding-top: calc(var(--mobile-photo-height) + clamp(18px, 5vw, 28px));
    padding-bottom: 32px;
  }

  .hero-logo-card {
    position: absolute;
    top: clamp(28px, 6svh, 52px);
    left: 0;
    width: min(118px, 30vw);
    padding: 6px;
    z-index: 2;
  }

  .hero h1 {
    font-size: clamp(31px, 8.8vw, 37px);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .credibility-strip {
    padding-block: 18px;
  }

  .credential-inner {
    gap: 14px;
  }

  .station-list {
    gap: 6px;
  }

  .station-list li {
    font-size: 11px;
    padding: 6px 8px;
  }

  .cards-3,
  .service-list,
  .asset-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .card,
  .service-list article,
  .asset-grid article {
    padding: 20px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-panel {
    padding: 22px;
  }

  .legal-note {
    display: grid;
  }

  .legal-hero {
    padding-block: 42px;
  }

  .legal-hero-logo {
    width: min(180px, 48vw);
  }

  .legal-hero h1 {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.06;
  }

  .legal-page {
    padding-block: 34px;
  }

  .legal-content {
    padding: 22px;
  }

  .legal-content section {
    padding: 22px 0;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    gap: 6px;
  }

  .legal-hero h1 {
    font-size: clamp(25px, 8vw, 29px);
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 9px 8px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .hero-logo-card {
    width: min(104px, 29vw);
  }

  .hero-inner {
    padding-top: calc(var(--mobile-photo-height) + 16px);
  }

  .hero h1 {
    font-size: clamp(31px, 8.8vw, 34px);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.34;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .contact-panel h2 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 340px) {
  .hero {
    --mobile-photo-height: 174px;
  }

  .hero-inner {
    padding-top: calc(var(--mobile-photo-height) + 12px);
  }

  .hero-logo-card {
    top: 22px;
    width: min(84px, 27vw);
    padding: 5px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1.25;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.28;
  }

  .hero-actions {
    margin-top: 10px;
  }

  .hero-actions .button {
    white-space: normal;
    line-height: 1.1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
