:root {
  --ink: #071322;
  --ink-soft: #314156;
  --muted: #637083;
  --line: #d9dee6;
  --paper: #ffffff;
  --paper-warm: #f8f6f1;
  --navy: #071322;
  --burgundy: #8b0015;
  --gold: #b98b3b;
  --green: #1d6b58;
  --shadow: 0 18px 42px rgba(7, 19, 34, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--paper);
  overflow-x: hidden;
}

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

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

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 222, 230, 0.84);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: 245px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: #f2eee7;
  color: var(--burgundy);
}

.nav-links a.button-primary,
.nav-links a.button-primary:hover {
  background: var(--burgundy);
  color: #fff;
}

.button,
button.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 12px 24px rgba(139, 0, 21, 0.22);
}

.button-primary:hover {
  background: #750012;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.button-gold {
  background: var(--gold);
  color: #0f1724;
}

.button svg,
.nav-toggle svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

main {
  flex: 1;
}

.hero {
  position: relative;
  min-height: calc(100svh - 128px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: url("assets/commercial-building.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 25, 0.72);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 12px;
  background: var(--gold);
}

.hero-inner {
  position: relative;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 42px 0 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  font-weight: 700;
}

.page-hero h1 {
  margin: 0;
  max-width: 920px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  font-weight: 700;
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  color: rgba(255, 255, 255, 0.88);
}

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

.micro-actions {
  max-width: 970px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.micro-action {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.micro-action:hover {
  border-color: rgba(185, 139, 59, 0.72);
  background: rgba(185, 139, 59, 0.16);
}

.micro-action strong {
  font-size: 1rem;
  line-height: 1.15;
}

.micro-action span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.35;
}

.metrics-band {
  padding: 24px 0;
  background: var(--navy);
}

.hero-metrics {
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.18);
}

.metric {
  min-height: 116px;
  padding: 22px;
  background: rgba(7, 19, 34, 0.66);
}

.metric strong {
  display: block;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.28rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
}

.section {
  padding: 92px 0;
}

.section-compact {
  padding: 68px 0;
}

.section-muted {
  background: var(--paper-warm);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head h2,
.split-copy h2,
.cta-band h2,
.form-panel h2,
.content-block h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.section-head p,
.split-copy p,
.content-block p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.proposal-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.proposal-copy {
  max-width: 470px;
}

.proposal-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.06;
}

.proposal-copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.proposal-item {
  min-height: 214px;
  display: grid;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 19, 34, 0.06);
}

.proposal-item span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  font-size: 0.82rem;
}

.proposal-item h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.18;
}

.proposal-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-dark .section-head p,
.section-dark .split-copy p,
.section-dark .content-block p {
  color: rgba(255, 255, 255, 0.74);
}

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

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

.service-card,
.proof-card,
.faq-item,
.faq-accordion,
.fit-card,
.contact-card,
.offer-card,
.industry-card,
.portal-panel,
.portal-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 19, 34, 0.06);
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.service-body {
  padding: 24px;
  border-top: 1px solid var(--line);
  flex: 1;
}

.tier-label {
  margin: 0 0 6px;
  color: var(--burgundy);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-body h3,
.proof-card h3,
.faq-item h3,
.faq-accordion h3,
.fit-card h3,
.contact-card h3,
.offer-card h3,
.industry-card h3,
.portal-side h3,
.timeline-step h3,
.callout h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.22;
}

.service-body p,
.proof-card p,
.faq-item p,
.fit-card p,
.contact-card p,
.offer-card p,
.industry-card p,
.portal-panel p,
.timeline-step p,
.callout p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-body ul,
.check-list,
.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-body li,
.check-list li,
.plain-list li {
  position: relative;
  margin: 10px 0 0;
  padding-left: 24px;
  color: var(--ink-soft);
}

.service-body li::before,
.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.section-dark .plain-list li,
.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

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

.split-media {
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.process {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.process-item {
  min-height: 168px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-item:last-child {
  border-right: 0;
}

.process-item::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  display: block;
  color: var(--gold);
  font-weight: 900;
  font-size: 0.9rem;
}

.process-item h3 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 1.08rem;
}

.process-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f2eee7;
  color: var(--ink-soft);
  font-size: 0.87rem;
  font-weight: 800;
}

.section-dark .pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 36px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--burgundy);
  box-shadow: var(--shadow);
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  position: relative;
  padding: 96px 0 82px;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: var(--gold);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
}

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

.timeline-step {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.timeline-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
}

.callout {
  padding: 24px;
  border-left: 5px solid var(--gold);
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 19, 34, 0.06);
}

.proof-card,
.faq-item,
.fit-card,
.contact-card,
.offer-card,
.industry-card,
.portal-side {
  padding: 24px;
}

.proof-card svg,
.fit-card svg,
.contact-card svg,
.industry-card svg {
  width: 28px;
  height: 28px;
  color: var(--burgundy);
  margin-bottom: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-accordion {
  padding: 0;
  overflow: hidden;
}

.faq-accordion summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--burgundy);
  transition: transform 160ms ease;
}

.faq-accordion[open] summary {
  color: var(--burgundy);
  border-bottom: 1px solid var(--line);
}

.faq-accordion[open] summary svg {
  transform: rotate(180deg);
}

.faq-accordion p {
  margin: 0;
  padding: 18px 22px 22px;
  color: var(--muted);
}

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

.industry-card {
  min-height: 208px;
  display: grid;
  align-content: start;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

a.industry-card:hover {
  border-color: rgba(185, 139, 59, 0.72);
  box-shadow: 0 16px 34px rgba(7, 19, 34, 0.1);
  transform: translateY(-2px);
}

.industry-card .tier-label {
  margin-bottom: 12px;
}

.industry-card .text-link {
  margin-top: 18px;
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 900;
}

.industry-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 5px solid var(--gold);
  background: var(--paper-warm);
}

.industry-note svg {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--burgundy);
}

.industry-note p {
  margin: 0;
  color: var(--ink-soft);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.portal-panel {
  padding: 34px;
  box-shadow: var(--shadow);
}

.portal-panel > svg {
  width: 32px;
  height: 32px;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.portal-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.portal-panel .portal-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 19, 34, 0.06);
}

.watch-item {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.watch-item:last-child {
  border-right: 0;
}

.watch-item strong {
  color: var(--burgundy);
  font-size: 1.04rem;
  line-height: 1.2;
}

.watch-item span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

.mini-cta-stack {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mini-cta-stack a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 900;
  background: #fbfaf7;
}

.mini-cta-stack a:hover {
  border-color: var(--gold);
  background: #f2eee7;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 38px;
  align-items: start;
}

.form-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

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

.field label {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfd6df;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(185, 139, 59, 0.28);
  border-color: var(--gold);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.form-status {
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #050b14;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  max-width: 520px;
}

.footer img {
  width: 255px;
  max-width: 100%;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
}

.footer-motto {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-motto::before {
  content: "";
  width: 44px;
  height: 2px;
  background: currentColor;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-weight: 700;
}

.footer small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.48);
}

.footer-legal {
  grid-column: 1 / -1;
  max-width: 980px;
  margin: 4px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: -10px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
}

@media (max-width: 1080px) {
  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 205px;
  }

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

  .nav-links {
    position: absolute;
    inset: 68px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    justify-content: space-between;
  }

  .nav-links .button {
    width: 100%;
  }

  .grid-3,
  .grid-2,
  .split,
  .form-layout,
  .proposal-strip,
  .faq-layout,
  .portal-layout,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .micro-actions,
  .proposal-grid,
  .industry-grid,
  .watch-grid {
    grid-template-columns: 1fr;
  }

  .watch-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .watch-item:last-child {
    border-bottom: 0;
  }

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

  .process-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-item:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-legal {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, var(--max));
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 190px;
  }

  .nav-toggle {
    flex: 0 0 42px;
    margin-left: auto;
  }

  .hero-inner {
    padding: 76px 0 82px;
  }

  .eyebrow {
    max-width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1.35;
  }

  .eyebrow::before {
    flex: 0 0 28px;
    margin-top: 0.6em;
  }

  .hero .eyebrow {
    max-width: 30ch;
    font-size: 0.74rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 13vw, 3.25rem);
    overflow-wrap: break-word;
  }

  .hero-copy,
  .page-hero p {
    max-width: 31ch;
    overflow-wrap: break-word;
  }

  .section-head h2,
  .split-copy h2,
  .cta-band h2,
  .form-panel h2,
  .content-block h2,
  .proposal-copy h2 {
    max-width: 100%;
    font-size: clamp(1.6rem, 6vw, 1.9rem);
    overflow-wrap: break-word;
  }

  .hero-actions,
  .micro-actions {
    max-width: 360px;
  }

  .section {
    padding: 68px 0;
  }

  .page-hero {
    padding: 74px 0 66px;
  }

  .hero-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .split-media,
  .split-media img {
    min-height: 320px;
  }

  .cta-band {
    padding: 26px;
  }
}
