@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3/source-sans-3-400.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-sans-3/source-sans-3-600.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/source-sans-3/source-sans-3-700.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/source-sans-3/source-sans-3-800.ttf") format("truetype");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/source-sans-3/source-sans-3-900.ttf") format("truetype");
}

:root {
  --ink: #10211d;
  --muted: #5b6862;
  --paper: #f5f6f3;
  --surface: #ffffff;
  --line: #dfe3df;
  --forest: #102820;
  --forest-2: #17362c;
  --therm-green: #007a3a;
  --therm-green-bright: #00a94e;
  --therm-green-dark: #005f2f;
  --therm-gray: #93979c;
  --solar: #00ae4d;
  --blue: #4e727d;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(16, 33, 29, 0.16);
  --content-max: 1950px;
  --section-pad: clamp(18px, 5vw, 72px);
  font-family: "Source Sans 3", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--therm-green-dark);
  font-weight: 900;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid rgba(16, 33, 29, 0.08);
  box-shadow: 0 10px 28px rgba(16, 33, 29, 0.08);
}

.brand,
.nav,
.header-phone,
.header-cta,
.button {
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 0;
  background: transparent;
}

.brand img {
  display: block;
  width: min(206px, 42vw);
  max-height: 90px;
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover {
  color: var(--therm-green-dark);
  opacity: 1;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-phone {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  gap: 8px;
}

.header-phone:hover {
  color: var(--therm-green-dark);
}

.phone-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  border: 1px solid var(--therm-green);
  background: var(--therm-green);
  font-weight: 700;
}

.header-cta:hover {
  border-color: var(--therm-green-dark);
  background: var(--therm-green-dark);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  align-items: start;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 10, 8, 0.93) 0%, rgba(11, 30, 24, 0.74) 34%, rgba(11, 30, 24, 0.2) 66%, rgba(11, 30, 24, 0.04) 100%),
    linear-gradient(0deg, rgba(4, 10, 8, 0.82), rgba(4, 10, 8, 0.06) 46%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: clamp(116px, 12vw, 148px) 0 clamp(32px, 7vw, 86px) clamp(18px, 7vw, 96px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--therm-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.legal-hero .section-kicker {
  color: var(--therm-green-bright);
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  min-height: 4.2em;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  opacity: 1;
  transition: opacity 260ms ease;
}

.hero-copy.is-fading {
  opacity: 0;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-dot::after {
  display: block;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  content: '';
}

.hero-dot:hover,
.hero-dot.is-active {
  background: transparent;
}

.hero-dot:hover::after,
.hero-dot.is-active::after {
  border-color: var(--therm-green-bright);
  background: var(--therm-green-bright);
}

.hero-pause {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.hero-pause:hover {
  border-color: var(--therm-green-bright);
  color: var(--therm-green-bright);
}

.hero-pause-icon-pause {
  display: flex;
  gap: 4px;
}

.hero-pause-icon-pause::before,
.hero-pause-icon-pause::after {
  display: block;
  width: 3px;
  height: 12px;
  border-radius: 2px;
  background: currentColor;
  content: '';
}

.hero-pause-icon-play {
  display: none;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
}

.hero-pause.is-paused .hero-pause-icon-pause {
  display: none;
}

.hero-pause.is-paused .hero-pause-icon-play {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy {
    transition: none;
  }
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 800;
}

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

.button.primary:hover {
  background: var(--therm-green-dark);
}

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

.button.light {
  color: var(--therm-green);
  border-color: var(--therm-green);
  background: var(--white);
}

.button.light:hover {
  color: var(--white);
  background: var(--therm-green);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-strip div {
  padding: 18px 20px 0 0;
}

.trust-strip dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 0;
  font-weight: 800;
}

.section {
  padding-block: clamp(72px, 10vw, 132px);
  padding-inline: max(
    var(--section-pad),
    calc((100vw - var(--content-max)) / 2 + var(--section-pad))
  );
}

.intro {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

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

.audience-card {
  overflow: hidden;
  min-height: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(245, 246, 243, 0.42);
}

.audience-card summary {
  cursor: pointer;
  list-style: none;
}

.audience-card summary::-webkit-details-marker {
  display: none;
}

.audience-card h3 {
  margin: 0;
  font-size: 1.22rem;
}

.audience-summary {
  display: grid;
  gap: 20px;
}

.audience-image {
  display: block;
  width: calc(100% + 52px);
  max-width: none;
  aspect-ratio: 16 / 10;
  margin-inline: -26px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.46);
}

.audience-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-toggle {
  display: inline-block;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}

.audience-toggle::before {
  content: "+";
}

.audience-card[open] .audience-toggle::before {
  content: "-";
}

.audience-detail {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.audience-detail p + p {
  margin-top: 16px;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.intro h2,
.section-heading h2,
.proof-panel h2,
.contact h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p,
.section-intro,
.proof-panel p,
.contact p {
  color: var(--muted);
  font-size: 1.12rem;
}

.section-intro {
  max-width: 680px;
  margin: 18px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: 32px;
  margin-bottom: 34px;
}

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

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

.service-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.58);
}

.service-icon {
  display: block;
  width: 108px;
  height: 108px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.24rem;
}

.service-card p {
  color: var(--muted);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  background: var(--forest);
  color: var(--white);
}

.proof .section-kicker {
  color: #71e3a4;
}

.proof-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.proof-panel p + p {
  margin-top: 18px;
}

.proof-panel strong {
  color: var(--white);
}

.proof-visual {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.proof-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.projects {
  background: var(--surface);
}

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

.project-card {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  border: 1px dashed rgba(31, 45, 38, 0.22);
  background: rgba(255, 253, 248, 0.64);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
  padding-block: clamp(72px, 10vw, 130px);
  padding-inline: max(
    var(--section-pad),
    calc((100vw - var(--content-max)) / 2 + var(--section-pad))
  );
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 14, 11, 0.97), rgba(0, 88, 45, 0.92)),
    var(--forest);
}

.contact h2 {
  max-width: 900px;
}

.contact p {
  margin-bottom: 30px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-details {
  display: grid;
  gap: 3px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.5;
}

.contact-details strong {
  color: var(--white);
}

.contact-details a {
  color: inherit;
}

.contact-spacer {
  margin-top: 14px;
}

.contact-tools {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-row-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(4, 18, 14, 0.46);
  font: inherit;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form textarea {
  resize: vertical;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.form-consent input {
  width: auto;
  margin: 4px 0 0;
  accent-color: var(--therm-green);
}

.form-consent a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-copy a {
  color: var(--therm-green);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-copy a:hover {
  color: var(--therm-green-dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(113, 227, 164, 0.45);
  outline-offset: 1px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status[data-tone='success'] {
  color: #9cf2bf;
}

.form-status[data-tone='error'] {
  color: #ffc1b9;
}

.form-status[data-tone='pending'] {
  color: rgba(255, 255, 255, 0.82);
}

.map-card {
  display: grid;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.map-consent {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.map-consent p {
  max-width: 440px;
  margin: 0;
  line-height: 1.55;
}

.map-consent a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
  filter: grayscale(0.18) contrast(0.95);
}

.map-card address {
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #0a1714;
}

.footer-brand {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-brand p {
  margin: 0;
  font-weight: 800;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
}

.social-links a:hover {
  color: var(--white);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-end;
}

.legal-main {
  padding-top: 116px;
}

.legal-hero {
  padding: 82px var(--section-pad) 48px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 40, 32, 0.96), rgba(0, 122, 58, 0.86)),
    #102820;
}

.legal-hero-inner,
.legal-content {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 860px;
  margin: 12px 0 18px;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 6rem);
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.legal-content {
  display: grid;
  gap: 26px;
  padding: 42px var(--section-pad) 74px;
}

.legal-card {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(16, 33, 29, 0.1);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 33, 29, 0.08);
}

.legal-card h2,
.legal-card h3,
.legal-card h4 {
  margin: 0;
}

.legal-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.legal-card h3 {
  margin-top: 8px;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
}

.legal-card h4 {
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p,
.legal-list {
  margin: 0;
}

.legal-list {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
}

.legal-emphasis {
  padding: 18px;
  border-left: 4px solid var(--therm-green);
  background: rgba(0, 122, 58, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.legal-address {
  line-height: 1.7;
}

.legal-source {
  font-size: 0.94rem;
}

.legal-data {
  display: grid;
  gap: 10px;
  margin: 0;
}

.legal-data div {
  display: grid;
  grid-template-columns: minmax(160px, 0.36fr) 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.legal-data dt {
  color: var(--ink);
  font-weight: 900;
}

.legal-data dd {
  margin: 0;
  color: var(--muted);
}

.legal-placeholder {
  color: var(--therm-green-dark);
  font-weight: 900;
}

.back-to-top {
  position: fixed;
  z-index: 19;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: var(--therm-green);
  box-shadow: 0 14px 34px rgba(16, 33, 29, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.back-to-top:hover {
  background: var(--therm-green-dark);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top span {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .intro-grid,
  .section-heading,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .contact {
    align-items: start;
  }

  .proof-image {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    padding: 14px 16px;
  }

  .header-actions {
    gap: 0;
  }

  .header-phone {
    min-height: 40px;
    font-size: 0.86rem;
    gap: 6px;
  }

  .phone-icon {
    width: 15px;
    height: 15px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 63% 50%;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 88px 16px 30px;
  }

  .hero-copy {
    min-height: 6.5em;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.2rem);
  }

  .hero-actions,
  .trust-strip,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .trust-strip div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .audience-grid,
  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

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

  .audience-card,
  .service-card {
    min-height: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .legal-main {
    padding-top: 82px;
  }

  .legal-hero {
    padding-top: 56px;
  }

  .legal-data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
