:root {
  --red: #df0808;
  --red-dark: #b80606;
  --navy: #062a63;
  --navy-dark: #011d49;
  --ink: #071936;
  --text: #263550;
  --muted: #667189;
  --line: #e4e8ef;
  --soft: #f5f7fb;
  --white: #ffffff;
  --gold: #f3a61d;
  --shadow: 0 18px 45px rgba(7, 25, 54, 0.12);
  --max: 1536px;
  --topbar-height: 48px;
  --nav-height: 104px;
  --trust-height: clamp(148px, 16.5vh, 164px);
  --fold-bottom-safe-space: clamp(32px, 4vh, 52px);
  --hero-fit-height: calc(100vh - var(--topbar-height) - var(--nav-height) - var(--trust-height) - var(--fold-bottom-safe-space));
}

@supports (height: 100svh) {
  :root {
    --hero-fit-height: calc(100svh - var(--topbar-height) - var(--nav-height) - var(--trust-height) - var(--fold-bottom-safe-space));
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.icon {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  background: currentColor;
  vertical-align: -0.16em;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 25, 54, 0.08);
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.93rem;
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--topbar-height);
  padding: 0 56px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-link,
.topbar-claim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-claim {
  margin-left: auto;
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--nav-height);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand-mark img {
  width: 252px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--navy-dark);
  font-weight: 750;
}

.nav-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.cta-nav {
  min-height: 54px;
  padding: 0 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
}

.cta-nav::after {
  display: none;
}

.cta-nav:hover,
.cta-nav.active {
  background: var(--red);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle .icon {
  width: 0.8em;
  height: 0.8em;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  width: 310px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
}

.dropdown-link:hover {
  background: var(--soft);
  color: var(--red);
}

.dropdown-link.all {
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: 4px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
}

.hero {
  position: relative;
  min-height: var(--hero-fit-height);
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.97) 32%, rgba(255, 255, 255, 0.42) 52%, rgba(255, 255, 255, 0.04) 72%),
    var(--hero-image);
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-content {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--hero-fit-height);
  padding: clamp(28px, 3.4vh, 50px) 56px clamp(18px, 2.4vh, 36px);
  display: flex;
  align-items: flex-start;
}

.hero-copy {
  width: min(650px, 47vw);
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 850;
}

.hero .eyebrow {
  display: none;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0 0 clamp(10px, 1.8vh, 18px);
  color: var(--navy);
  font-size: clamp(3.35rem, 6.25vh, 4.22rem);
  line-height: 1.04;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 595px;
  margin-bottom: clamp(8px, 1.2vh, 12px);
  color: var(--ink);
  font-size: clamp(1.05rem, 1.9vh, 1.16rem);
  line-height: 1.34;
}

.benefit-grid {
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4px, 0.7vh, 6px) 12px;
  margin: 0 0 clamp(10px, 1.4vh, 14px);
}

.benefit-pill {
  min-height: clamp(42px, 5.2vh, 48px);
  display: grid;
  grid-template-columns: 30px 1fr 16px;
  align-items: center;
  gap: 10px;
  padding: clamp(7px, 0.9vh, 9px) 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(7, 25, 54, 0.08);
}

.benefit-pill .icon {
  color: var(--navy);
  font-size: 1.24rem;
}

.benefit-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.benefit-status .icon {
  width: 0.78em;
  height: 0.78em;
  color: var(--navy);
  font-size: 1rem;
}

.hero-actions,
.page-hero-actions,
.footer-actions,
.contact-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hero-actions .btn {
  width: 100%;
  min-height: clamp(54px, 6.6vh, 64px);
  font-size: 1.12rem;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 0;
  border-radius: 5px;
  font-weight: 850;
  color: var(--white);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(7, 25, 54, 0.16);
}

.btn-red {
  background: var(--red);
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-blue {
  background: var(--navy);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.trust-strip {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 0;
  height: var(--trust-height);
  padding: clamp(16px, 2.2vh, 28px) 0 clamp(6px, 1vh, 18px) 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(245px, 340px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 12px rgba(7, 25, 54, 0.08);
}

.trust-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 8px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:nth-of-type(4) {
  border-right: 0;
  padding-right: 0;
}

.skyline-silhouette {
  width: clamp(245px, 21.5vw, 340px);
  max-width: 100%;
  align-self: end;
  justify-self: end;
  transform: translateY(-10px);
  pointer-events: none;
}

.trust-item > .icon {
  width: 42px;
  height: 42px;
  color: var(--navy);
}

.trust-item h3 {
  margin: 0 0 5px;
  font-size: 1.03rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 48px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-intro h2,
.area-band h2,
.contact-band h2,
.footer-cta h2 {
  margin-bottom: 14px;
  font-size: 2.8rem;
  font-weight: 900;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: var(--red);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

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

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

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

.service-card,
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.service-card:hover,
.post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 8, 8, 0.32);
  box-shadow: var(--shadow);
}

.service-card a,
.post-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image {
  aspect-ratio: 16 / 10;
  background: var(--soft);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.service-card:hover .card-image img,
.post-card:hover .card-image img {
  transform: scale(1.04);
}

.card-body {
  position: relative;
  flex: 1;
  padding: 28px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: 1.35rem;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
}

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

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--red);
  font-weight: 850;
}

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

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

.process-step {
  position: relative;
  padding: 4px 30px 4px 0;
  border-right: 1px solid var(--line);
}

.process-step + .process-step {
  padding-left: 30px;
}

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

.step-number {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.process-step > .icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--navy);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.area-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 48px;
  display: grid;
  grid-template-columns: 1.15fr 1.45fr auto;
  gap: 32px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.area-band .eyebrow,
.area-band h2,
.area-band p {
  color: var(--white);
}

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

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
  font-weight: 750;
}

.area-list:not(.compact) span {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.muted-section {
  max-width: none;
  padding-left: max(48px, calc((100vw - var(--max)) / 2 + 48px));
  padding-right: max(48px, calc((100vw - var(--max)) / 2 + 48px));
  background: var(--soft);
}

.post-date {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-band {
  max-width: var(--max);
  margin: 0 auto 88px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: var(--white);
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 58%, var(--navy) 58%, var(--navy) 100%);
}

.contact-band .eyebrow,
.contact-band h2,
.contact-band p {
  color: var(--white);
}

.contact-band p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 68px 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 4rem;
  font-weight: 900;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.13rem;
}

.page-hero-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-layout,
.contact-layout,
.area-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: start;
}

.prose {
  color: var(--text);
}

.prose.wide {
  max-width: 980px;
}

.prose h2 {
  margin: 0 0 24px;
  font-size: 2.2rem;
}

.prose h3 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-size: 1.32rem;
}

.prose p {
  max-width: 76ch;
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.detail-aside,
.article-aside {
  position: sticky;
  top: 178px;
  display: grid;
  gap: 18px;
}

.aside-box,
.contact-card,
.contact-form,
.area-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 25, 54, 0.06);
}

.aside-box h3,
.contact-card h2,
.area-panel h2 {
  margin-bottom: 18px;
}

.aside-box.blue {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.aside-box.blue h3,
.aside-box.blue p {
  color: var(--white);
}

.aside-box.blue p {
  color: rgba(255, 255, 255, 0.84);
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.benefit-row:last-child {
  border-bottom: 0;
}

.article-page {
  max-width: var(--max);
  margin: 0 auto;
}

.article-hero {
  padding: 66px 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.9fr);
  gap: 54px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  margin-bottom: 18px;
  font-size: 3.5rem;
  font-weight: 900;
}

.article-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-shell {
  padding: 72px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 64px;
  align-items: start;
}

.article-body {
  max-width: 820px;
}

.blog-tools {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.search-box {
  width: min(100%, 520px);
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.faq-list {
  max-width: 1040px;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--muted);
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 410px;
}

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

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(6, 42, 99, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 24px;
  font-weight: 800;
}

.form-status.error {
  color: var(--red);
}

.form-status.success {
  color: #14783d;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
}

.contact-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
}

.area-panel {
  background: var(--soft);
}

.area-panel .area-list {
  margin-top: 18px;
}

.empty-state,
.not-found {
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-dark);
}

.footer-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 48px;
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-cta .eyebrow,
.footer-cta h2 {
  color: var(--white);
}

.footer-cta p {
  max-width: 700px;
  margin: 0;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 48px;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr 0.95fr;
  gap: 44px;
}

.footer-logo {
  width: 240px;
  margin-bottom: 18px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-grid a {
  display: block;
  margin: 0 0 9px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 48px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1180px) {
  :root {
    --nav-height: 86px;
  }

  .topbar-inner,
  .nav-shell,
  .hero-content,
  .section,
  .page-hero,
  .article-hero,
  .article-shell,
  .trust-strip,
  .footer-cta,
  .footer-grid,
  .footer-bottom {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-shell {
    min-height: 86px;
  }

  .brand-mark img {
    width: 215px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .trust-strip {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .skyline-silhouette {
    grid-column: 1 / -1;
    justify-self: end;
    margin-right: -28px;
  }

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

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

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

  .process-step,
  .process-step + .process-step {
    padding: 0;
    border-right: 0;
  }

  .area-band {
    grid-template-columns: 1fr;
    padding-left: 28px;
    padding-right: 28px;
  }

  .detail-layout,
  .contact-layout,
  .area-page,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .detail-aside,
  .article-aside {
    position: static;
  }
}

@media (min-width: 1181px) and (max-height: 950px) {
  :root {
    --fold-bottom-safe-space: clamp(28px, 3.2vh, 40px);
  }

  .hero-content {
    padding-top: clamp(22px, 2.8vh, 34px);
    padding-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.95vh, 4rem);
  }

  .benefit-pill {
    min-height: 42px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .hero-actions .btn {
    min-height: 54px;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 64px;
  }

  .topbar-inner {
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 0.82rem;
  }

  .topbar-claim {
    display: none;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-mark img {
    width: 190px;
  }

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

  .main-nav {
    position: fixed;
    inset: 120px 0 0;
    z-index: 80;
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 22px 28px 120px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: inset 0 1px 0 var(--line);
  }

  .menu-open .main-nav {
    display: grid;
  }

  .nav-link,
  .cta-nav {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--navy);
  }

  .nav-link::after {
    display: none;
  }

  .cta-nav {
    margin-top: 14px;
    padding: 0 18px;
    justify-content: center;
    color: var(--white);
    background: var(--red);
    border-bottom: 0;
    border-radius: 5px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    padding: 6px 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown.open .dropdown-panel {
    display: grid;
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.35) 100%),
      var(--hero-image);
    background-position: center bottom;
  }

  .hero::before {
    width: 5px;
  }

  .hero-content {
    min-height: 720px;
    padding-top: 50px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

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

  .hero-actions,
  .page-hero-actions,
  .contact-band-actions,
  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .service-grid.full,
  .service-grid.three,
  .post-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-intro h2,
  .area-band h2,
  .contact-band h2,
  .footer-cta h2 {
    font-size: 2.2rem;
  }

  .page-hero,
  .article-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: 2.7rem;
  }

  .detail-layout,
  .contact-layout,
  .area-page,
  .article-shell {
    gap: 34px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

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

  .contact-band,
  .footer-cta,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-band {
    margin-bottom: 64px;
    background: var(--red);
  }

  .blog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--white);
    box-shadow: 0 -8px 22px rgba(7, 25, 54, 0.14);
  }

  .mobile-sticky-cta a {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: var(--red);
    font-weight: 900;
  }

  .mobile-sticky-cta a + a {
    background: var(--navy);
  }
}

@media (max-width: 520px) {
  .topbar-inner,
  .nav-shell,
  .hero-content,
  .section,
  .page-hero,
  .article-hero,
  .article-shell,
  .trust-strip,
  .area-band,
  .footer-cta,
  .footer-grid,
  .footer-bottom,
  .contact-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-mark img {
    width: 168px;
  }

  .main-nav {
    inset: 112px 0 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .skyline-silhouette {
    margin-right: -18px;
  }

  .hero-content {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: 2.25rem;
  }

  .section-intro h2,
  .area-band h2,
  .contact-band h2,
  .footer-cta h2 {
    font-size: 1.95rem;
  }

  .card-body,
  .aside-box,
  .contact-card,
  .contact-form,
  .area-panel {
    padding: 22px;
  }
}
