:root {
  --ink: #101918;
  --ink-soft: #42504e;
  --paper: #f6f3eb;
  --paper-strong: #fffdfa;
  --soft: #e9efeb;
  --brand: #0a3535;
  --brand-deep: #061f20;
  --brand-light: #1e6864;
  --accent: #d99a62;
  --accent-soft: #f0d7bf;
  --line: rgba(10, 53, 53, 0.16);
  --white: #ffffff;
  --success: #19613c;
  --danger: #9b2c2c;
  --shadow: 0 24px 60px rgba(7, 31, 32, 0.12);
  --radius: 24px;
  --radius-small: 14px;
  --container: min(1180px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  max-width: 14ch;
  margin-bottom: 28px;
}

h1 em {
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--brand);
  border-radius: 8px;
}

.skip-link:focus {
  transform: none;
}

.icon {
  display: inline-flex;
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.section {
  padding-block: clamp(78px, 10vw, 130px);
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(30, 104, 100, 0.45), transparent 34%),
    var(--brand-deep);
}

.section-dark .eyebrow,
.section-dark .text-link {
  color: var(--accent);
}

.section-accent {
  background: var(--accent-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-dark .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.large-copy {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.large-copy strong {
  color: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 30px rgba(10, 53, 53, 0.2);
}

.button-primary:hover {
  background: var(--brand-light);
  box-shadow: 0 16px 34px rgba(10, 53, 53, 0.28);
}

.button-secondary {
  color: var(--brand);
  background: var(--paper-strong);
  border-color: var(--line);
}

.button-light {
  color: var(--brand);
  background: var(--white);
}

.button-ghost {
  color: var(--brand);
  border-color: rgba(10, 53, 53, 0.28);
}

.page-hero .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.text-link .icon {
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(5px);
}

.text-link-light {
  color: var(--white);
}

.contact-rail {
  position: relative;
  z-index: 52;
  color: rgba(255, 255, 255, 0.78);
  background: var(--brand-deep);
  font-size: 0.82rem;
}

.contact-rail-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-rail p {
  margin: 0;
}

.contact-rail-inner > div {
  display: flex;
  gap: 24px;
}

.contact-rail a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(246, 243, 235, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(7, 31, 32, 0.08);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: block;
  width: 215px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-link,
.nav-more summary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.is-active,
.nav-more summary:hover,
.nav-more[open] summary {
  color: var(--brand);
  background: rgba(10, 53, 53, 0.08);
}

.nav-more {
  position: relative;
}

.nav-more summary {
  list-style: none;
}

.nav-more summary::-webkit-details-marker {
  display: none;
}

.nav-more summary::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-more-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 270px;
  padding: 10px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.nav-more:not([open]) > .nav-more-panel {
  display: none;
}

.nav-more[open] summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.nav-more-panel a {
  padding: 11px 13px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-more-panel a:hover,
.nav-more-panel a.is-active {
  color: var(--brand);
  background: var(--soft);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.breadcrumb a {
  text-decoration: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 9vw, 120px);
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(6, 31, 32, 0.98) 0%, rgba(10, 53, 53, 0.96) 56%, rgba(24, 96, 92, 0.88) 100%);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.page-hero::before {
  width: 540px;
  height: 540px;
  right: -180px;
  top: -220px;
}

.page-hero::after {
  width: 340px;
  height: 340px;
  left: 48%;
  bottom: -260px;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.page-hero-copy {
  max-width: 730px;
}

.page-hero .eyebrow {
  color: var(--accent);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.page-hero .button-primary {
  color: var(--brand-deep);
  background: var(--accent);
}

.page-hero .button-primary:hover {
  background: #efb47c;
}

.page-hero-compact {
  padding-block: clamp(60px, 7vw, 88px);
}

.page-hero-compact h1 {
  font-size: clamp(2.5rem, 5vw, 4.65rem);
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(6, 31, 32, 0.78));
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-image-tag {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-image-tag span {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(217, 154, 98, 0.2);
}

.hero-collage {
  position: relative;
  padding: 0 34px 36px 0;
}

.hero-collage .hero-image img {
  aspect-ratio: 482 / 358;
}

.hero-base-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: min(48%, 230px);
  overflow: hidden;
  color: var(--white);
  background: var(--brand-deep);
  border: 6px solid var(--brand);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero-base-card img {
  width: 100%;
  aspect-ratio: 591 / 208;
  object-fit: cover;
}

.hero-base-card span {
  display: block;
  padding: 10px 12px;
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 750;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.hero-signal {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.hero-signal span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-signal p {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-signal i {
  grid-column: 1 / -1;
  width: 1px;
  height: 28px;
  margin: 10px 0 10px 29px;
  background: rgba(255, 255, 255, 0.26);
}

.fact-strip {
  position: relative;
  z-index: 3;
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-grid > div {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
  border-left: 1px solid var(--line);
}

.fact-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.fact-grid strong {
  color: var(--brand);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}

.fact-grid span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.split-intro {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(40px, 8vw, 120px);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}

.benefit-card {
  min-height: 270px;
  padding: 32px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(7, 31, 32, 0.06);
}

.benefit-card > .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 42px;
  color: var(--brand-light);
}

.benefit-card h3 {
  margin-bottom: 13px;
}

.benefit-card p {
  color: var(--ink-soft);
}

.cargo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.cargo-chips li {
  padding: 9px 14px;
  color: var(--brand);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.service-focus-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.service-focus .large-copy {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
}

.service-checks {
  display: grid;
  gap: 2px;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-checks > div {
  display: flex;
  gap: 18px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.07);
}

.service-checks .icon {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.service-checks span {
  display: grid;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.service-checks strong {
  color: var(--white);
  font-size: 1.03rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 290px;
  padding: 32px 28px;
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid li:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.process-grid li:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.process-grid li::after {
  position: absolute;
  z-index: 1;
  right: -7px;
  top: 50%;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--paper-strong);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: translateY(-50%) rotate(45deg);
}

.process-grid li:last-child::after {
  display: none;
}

.process-grid span {
  display: block;
  margin-bottom: 75px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-grid p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}

.image-story-photo,
.history-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-story-photo img,
.history-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  image-rendering: auto;
}

.image-story-photo > span,
.history-photo > span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(6, 31, 32, 0.88);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 18px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  margin: 0;
  background: var(--brand-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.photo-card:hover img {
  transform: scale(1.025);
}

.photo-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 13px;
  color: var(--white);
  background: rgba(6, 31, 32, 0.88);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.photo-card.photo-card-wide {
  grid-column: span 2;
}

.photo-card.photo-card-wide img {
  aspect-ratio: 1.9 / 1;
}

.section-photo-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-photo-intro .section-heading {
  margin-bottom: 0;
}

.section-photo-intro > p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
}

.mini-facts {
  display: flex;
  gap: 42px;
  padding-block: 24px;
  margin-block: 25px;
  border-block: 1px solid var(--line);
}

.mini-facts > div {
  display: flex;
  flex-direction: column;
}

.mini-facts strong {
  color: var(--brand);
  font-size: 2rem;
}

.mini-facts span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.quote-layout .section-heading {
  position: sticky;
  top: 140px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(50px, 8vw, 105px);
}

.sticky-heading {
  position: sticky;
  top: 140px;
}

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

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

.faq-item summary {
  position: relative;
  padding: 26px 54px 26px 0;
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  right: 6px;
  top: 50%;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--brand);
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-item > div {
  padding: 0 54px 26px 0;
  color: var(--ink-soft);
}

.cta-band {
  padding-block: clamp(60px, 8vw, 90px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(6, 31, 32, 0.98), rgba(10, 53, 53, 0.94)),
    var(--brand);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band h2 {
  max-width: 800px;
  margin-bottom: 12px;
}

.cta-band p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-band .eyebrow {
  color: var(--accent);
}

.cta-band-actions {
  display: grid;
  flex: 0 0 auto;
  justify-items: start;
  gap: 17px;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: clamp(55px, 9vw, 125px);
}

.prose {
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.prose h2 {
  padding-top: 24px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.prose h2:first-child {
  padding-top: 0;
}

.prose a {
  color: var(--brand);
}

.prose li + li {
  margin-top: 8px;
}

.notice-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  margin-top: 32px;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.notice-card > .icon {
  width: 34px;
  height: 34px;
  color: var(--brand);
}

.notice-card h3 {
  color: var(--ink);
  margin-bottom: 8px;
}

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

.data-card {
  min-height: 235px;
  padding: 28px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.data-card > span,
.service-row > span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.data-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.two-column-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-panel {
  min-height: 430px;
  padding: clamp(34px, 5vw, 60px);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-panel p:not(.eyebrow) {
  max-width: 520px;
  color: var(--ink-soft);
}

.feature-panel-dark {
  color: var(--white);
  background: var(--brand);
}

.feature-panel-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.service-list {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding-block: 45px;
  border-bottom: 1px solid var(--line);
}

.service-row:first-child {
  border-top: 1px solid var(--line);
}

.service-row > span {
  margin: 6px 0 0;
}

.service-row > div {
  display: grid;
  grid-template-columns: 65px minmax(250px, 0.7fr) minmax(300px, 1.3fr);
  align-items: start;
  gap: 28px;
}

.service-row > div > .icon {
  width: 44px;
  height: 44px;
  color: var(--brand-light);
}

.service-row h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.service-row p {
  color: var(--ink-soft);
}

.service-row .text-link {
  grid-column: 3;
}

.boundaries-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.boundaries-list {
  display: grid;
  gap: 2px;
  overflow: hidden;
  border-radius: var(--radius);
}

.boundaries-list p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 21px 24px;
  margin: 0;
  background: rgba(255, 255, 255, 0.07);
}

.boundaries-list .icon {
  color: var(--accent);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.coverage-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.coverage-copy .button {
  margin-top: 16px;
}

.coverage-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 53, 53, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 53, 53, 0.06) 1px, transparent 1px),
    var(--soft);
  background-size: 42px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.coverage-origin {
  position: absolute;
  z-index: 3;
  left: 46%;
  top: 45%;
  display: flex;
  flex-direction: column;
  padding: 15px 18px 15px 38px;
  background: var(--brand);
  color: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.coverage-origin > span {
  position: absolute;
  left: 17px;
  top: 23px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.coverage-origin small {
  color: rgba(255, 255, 255, 0.65);
}

.city {
  position: absolute;
  z-index: 2;
  padding: 8px 11px;
  color: var(--brand);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(7, 31, 32, 0.08);
}

.city-1 { left: 18%; top: 64%; }
.city-2 { left: 25%; top: 78%; }
.city-3 { right: 16%; top: 28%; }
.city-4 { left: 10%; top: 27%; }
.city-5 { right: 9%; top: 12%; }
.city-6 { right: 7%; bottom: 10%; }

.route-line {
  position: absolute;
  left: 49%;
  top: 50%;
  width: 270px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 14px);
  transform-origin: left;
}

.route-a { transform: rotate(-38deg); }
.route-b { transform: rotate(145deg); width: 250px; }
.route-c { transform: rotate(33deg); width: 260px; }

.map-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
}

.history-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.timeline article {
  min-height: 310px;
  padding: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 1px solid var(--line);
}

.timeline span {
  display: block;
  margin-bottom: 85px;
  color: var(--brand-light);
  font-weight: 900;
}

.timeline p {
  color: var(--ink-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: start;
  gap: clamp(55px, 8vw, 100px);
}

.value-list {
  display: grid;
}

.value-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

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

.value-list > article > span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.value-list p {
  color: var(--ink-soft);
}

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

.three-pillars article {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.three-pillars .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 65px;
  color: var(--accent);
}

.three-pillars h2 {
  font-size: 1.65rem;
}

.three-pillars p {
  color: rgba(255, 255, 255, 0.68);
}

.section-form {
  background: var(--soft);
}

.form-page-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: clamp(45px, 8vw, 95px);
}

.form-aside {
  position: sticky;
  top: 140px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 32px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
}

.check-list .icon {
  color: var(--brand-light);
}

.direct-card {
  display: grid;
  gap: 8px;
  padding: 25px;
  margin-top: 38px;
  color: var(--white);
  background: var(--brand);
  border-radius: var(--radius);
}

.direct-card h3 {
  margin-bottom: 12px;
}

.direct-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.aside-note {
  padding: 20px;
  color: var(--ink-soft);
  background: var(--paper-strong);
  border-left: 3px solid var(--accent);
}

.form-card {
  padding: clamp(28px, 5vw, 54px);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-card-compact {
  box-shadow: none;
}

.form-heading {
  margin-bottom: 34px;
}

.form-heading h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.form-heading > p:not(.eyebrow) {
  color: var(--ink-soft);
}

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

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

.field > span {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 750;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(10, 53, 53, 0.25);
  border-radius: 10px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 0 4px rgba(30, 104, 100, 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(155, 44, 44, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7b8987;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.check-field input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.check-field a {
  color: var(--brand);
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.form-submit > p {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-submit > p a {
  color: var(--brand);
  font-weight: 800;
}

.form-status {
  display: none;
  padding: 14px 16px;
  margin-top: 20px;
  border-radius: 10px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--success);
  background: rgba(25, 97, 60, 0.1);
}

.form-status.is-error {
  color: var(--danger);
  background: rgba(155, 44, 44, 0.1);
}

.form-card[id] {
  scroll-margin-top: 120px;
}

.contact-facility-photo {
  margin: 24px 0;
}

.image-story-spaced {
  margin-top: 54px;
}

.form-reassurance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  margin-top: 18px;
  color: var(--ink-soft);
  background: var(--soft);
  border-radius: 10px;
  font-size: 0.82rem;
}

.form-reassurance .icon {
  margin-top: 1px;
  color: var(--brand-light);
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.slim-content {
  max-width: 820px;
  margin-inline: auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-card {
  display: flex;
  min-height: 150px;
  align-items: flex-start;
  gap: 16px;
  padding: 25px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7, 31, 32, 0.1);
}

.contact-card > .icon {
  width: 27px;
  height: 27px;
  color: var(--brand-light);
}

.contact-card span {
  display: grid;
  min-width: 0;
}

.contact-card small {
  color: var(--ink-soft);
}

.contact-card strong {
  overflow-wrap: anywhere;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: clamp(40px, 7vw, 90px);
}

.address {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
}

.address .icon {
  color: var(--brand-light);
}

.map-consent {
  display: grid;
  min-height: 440px;
  margin-top: 30px;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(rgba(10, 53, 53, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 53, 53, 0.07) 1px, transparent 1px),
    var(--paper-strong);
  background-size: 34px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-consent > div {
  max-width: 390px;
  padding: 30px;
  text-align: center;
}

.map-consent p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.map-consent iframe {
  width: 100%;
  min-height: 440px;
  border: 0;
}

.article {
  background: var(--paper-strong);
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: center;
  align-items: start;
  gap: 80px;
}

.article-index {
  position: sticky;
  top: 135px;
  display: grid;
  padding: 24px;
  background: var(--soft);
  border-radius: var(--radius-small);
}

.article-index p {
  margin-bottom: 12px;
  color: var(--brand);
  font-weight: 850;
}

.article-index a {
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-decoration: none;
}

.article-content {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.article-intro {
  color: var(--ink);
  font-size: 1.32rem;
}

.article-content > section {
  padding-block: 36px;
  border-top: 1px solid var(--line);
}

.article-content > section > span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
}

.article-content h2 {
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.example {
  padding: 20px;
  margin-top: 22px;
  color: var(--ink);
  background: var(--accent-soft);
  border-radius: var(--radius-small);
}

.checklist-box {
  padding: 38px !important;
  margin-top: 36px;
  color: var(--white);
  background: var(--brand);
  border: 0 !important;
  border-radius: var(--radius);
}

.checklist-box .eyebrow {
  color: var(--accent);
}

.checklist-box h2 {
  color: var(--white);
}

.checklist-box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 26px;
  padding-left: 20px;
  margin-bottom: 30px;
}

.legal-content {
  background: var(--paper-strong);
}

.not-found {
  display: grid;
  min-height: 65vh;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  max-width: 760px;
  margin-inline: auto;
}

.site-footer {
  padding-top: 78px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--brand-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1.1fr;
  gap: 55px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 330px;
}

.footer-since {
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
}

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

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  overflow-wrap: anywhere;
}

.footer-contact .icon {
  margin-top: 2px;
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  margin-top: 65px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  text-decoration: none;
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal-delay {
  transition-delay: 100ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .contact-rail {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    max-height: calc(100vh - 76px);
    align-items: stretch;
    flex-direction: column;
    gap: 3px;
    padding: 22px 20px 35px;
    overflow: auto;
    color: var(--ink);
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(7, 31, 32, 0.15);
  }

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

  .nav-link,
  .nav-more summary {
    min-height: 50px;
    padding-inline: 16px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .nav-more-panel {
    position: static;
    width: 100%;
    padding: 4px 10px 10px 25px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-more-panel a {
    padding-block: 10px;
  }

  .nav-cta {
    margin-top: 12px;
  }

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

  .page-hero-copy {
    max-width: 850px;
  }

  .hero-image {
    max-width: 780px;
  }

  .hero-collage {
    max-width: 780px;
  }

  .hero-image img {
    height: 400px;
  }

  .hero-signal {
    max-width: 650px;
  }

  .benefit-grid,
  .data-grid,
  .three-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-grid li,
  .process-grid li:first-child,
  .process-grid li:last-child {
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .process-grid li::after {
    display: none;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 30px, 700px);
    --radius: 20px;
  }

  body {
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .section {
    padding-block: 76px;
  }

  .breadcrumb {
    padding-top: 16px;
  }

  .page-hero {
    padding-block: 68px;
  }

  .page-hero-grid {
    gap: 45px;
  }

  .hero-image img {
    height: 320px;
  }

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

  .fact-grid > div {
    min-height: 100px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .split-intro,
  .service-focus-grid,
  .image-story,
  .quote-layout,
  .faq-layout,
  .content-grid,
  .boundaries-grid,
  .coverage-grid,
  .map-layout,
  .history-grid,
  .values-grid,
  .form-page-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .quote-layout .section-heading,
  .sticky-heading,
  .form-aside,
  .article-index {
    position: static;
  }

  .benefit-grid,
  .data-grid,
  .two-column-cards,
  .three-pillars,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card img {
    min-height: 300px;
  }

  .photo-card.photo-card-wide {
    grid-column: auto;
  }

  .section-photo-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-card > .icon {
    margin-bottom: 28px;
  }

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

  .process-grid li {
    min-height: auto;
  }

  .process-grid span {
    margin-bottom: 42px;
  }

  .service-row {
    grid-template-columns: 58px 1fr;
  }

  .service-row > div {
    grid-template-columns: 50px 1fr;
  }

  .service-row > div > p,
  .service-row .text-link {
    grid-column: 1 / -1;
  }

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

  .timeline article {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .timeline article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .timeline span {
    margin-bottom: 48px;
  }

  .coverage-visual {
    min-height: 500px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .article-index {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 18px;
  }

  .article-index p {
    grid-column: 1 / -1;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .mobile-actions {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: rgba(6, 31, 32, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    font-size: 0.7rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-actions .icon {
    color: var(--accent);
  }
}

@media (max-width: 560px) {
  .brand {
    width: 175px;
  }

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

  .hero-actions .button,
  .cta-band-actions .button,
  .form-submit .button {
    width: 100%;
  }

  .hero-image {
    border-radius: 18px;
  }

  .hero-collage {
    padding: 0 0 48px;
  }

  .hero-base-card {
    right: 12px;
    width: 48%;
    border-width: 4px;
  }

  .hero-image img {
    height: 255px;
  }

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

  .fact-grid strong {
    font-size: 1.55rem;
  }

  .fact-grid span {
    font-size: 0.76rem;
  }

  .service-checks > div {
    padding: 20px;
  }

  .image-story-photo img,
  .history-photo img {
    height: 260px;
  }

  .photo-card,
  .photo-card img {
    min-height: 250px;
  }

  .mini-facts {
    gap: 22px;
  }

  .cta-band-inner {
    align-items: stretch;
    flex-direction: column;
  }

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

  .service-row > span {
    margin-bottom: 22px;
  }

  .coverage-visual {
    min-height: 420px;
  }

  .city {
    font-size: 0.68rem;
  }

  .coverage-origin {
    left: 36%;
  }

  .city-1 { left: 4%; top: 66%; }
  .city-2 { left: 17%; top: 82%; }
  .city-3 { right: 6%; top: 25%; }
  .city-4 { left: 4%; top: 22%; }
  .city-5 { right: 3%; top: 7%; }
  .city-6 { right: 2%; bottom: 8%; }

  .route-line {
    left: 43%;
    width: 180px;
  }

  .form-card {
    padding: 25px 20px;
  }

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

  .field-span-2 {
    grid-column: auto;
  }

  .contact-cards,
  .footer-grid,
  .checklist-box ul {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 115px;
  }

  .article-index {
    grid-template-columns: 1fr;
  }

  .article-index p {
    grid-column: auto;
  }

  .checklist-box {
    padding: 28px 22px !important;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .contact-rail,
  .site-header,
  .mobile-actions,
  .cta-band,
  .site-footer,
  .hero-actions,
  .breadcrumb {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    padding: 0;
  }

  .page-hero,
  .section-dark {
    color: #000;
    background: #fff;
  }
}

/* Renovación visual final: sistema industrial, sobrio y basado en fotografías reales. */
@media screen {
  :root {
    --ink: #10201f;
    --ink-soft: #50605d;
    --paper: #f4f1e9;
    --paper-strong: #fffefa;
    --soft: #e8eee9;
    --brand: #0a3b3b;
    --brand-deep: #042829;
    --brand-light: #21706b;
    --accent: #de9552;
    --accent-soft: #f2dcc6;
    --line: rgba(10, 59, 59, 0.15);
    --shadow: 0 24px 70px rgba(4, 40, 41, 0.14);
    --radius: 22px;
    --radius-small: 12px;
    --container: min(1220px, calc(100% - 48px));
    --font: "Segoe UI Variable", "Aptos", Inter, ui-sans-serif, -apple-system,
      BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  body {
    background:
      linear-gradient(rgba(10, 59, 59, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10, 59, 59, 0.025) 1px, transparent 1px),
      var(--paper);
    background-size: 44px 44px;
  }

  h1,
  h2,
  h3 {
    text-wrap: balance;
  }

  h1 {
    letter-spacing: -0.055em;
  }

  h2 {
    letter-spacing: -0.045em;
  }

  p {
    text-wrap: pretty;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .section {
    position: relative;
    padding-block: clamp(72px, 8vw, 112px);
  }

  .section-soft {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 48%),
      var(--soft);
    border-block: 1px solid rgba(10, 59, 59, 0.07);
  }

  .section-dark {
    background:
      radial-gradient(circle at 88% 15%, rgba(45, 133, 125, 0.34), transparent 30%),
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      var(--brand-deep);
    background-size: auto, 54px 54px, 54px 54px, auto;
  }

  .eyebrow {
    color: var(--brand-light);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }

  .eyebrow::before {
    width: 34px;
  }

  .button {
    min-height: 54px;
    border-radius: 10px;
    box-shadow: none;
  }

  .button-primary {
    background: var(--brand);
    box-shadow: 0 12px 30px rgba(4, 40, 41, 0.17);
  }

  .button-primary:hover {
    background: #12514f;
  }

  .button-ghost {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.04);
  }

  .button-small {
    min-height: 46px;
    padding-inline: 18px;
  }

  .contact-rail {
    background: #031f20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .contact-rail-inner {
    min-height: 34px;
  }

  .site-header {
    color: var(--white);
    background: #042829;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
  }

  .site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(3, 31, 32, 0.22);
  }

  .header-inner {
    min-height: 84px;
    gap: 26px;
  }

  .brand {
    width: 176px;
    height: 74px;
  }

  .brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .main-nav {
    gap: 2px;
  }

  .nav-link {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.87rem;
  }

  .nav-link:hover,
  .nav-link.is-active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
  }

  .nav-link.is-active {
    box-shadow: inset 0 -2px var(--accent);
  }

  .nav-cta.button-primary {
    margin-left: 24px;
    color: var(--brand-deep);
    background: var(--accent);
    box-shadow: none;
  }

  .nav-cta.button-primary:hover {
    background: #efad70;
  }

  .menu-toggle {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
  }

  .breadcrumb {
    display: none;
  }

  .page-hero {
    background:
      radial-gradient(circle at 84% 18%, rgba(49, 139, 132, 0.3), transparent 29%),
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(112deg, #042829 0%, #0a3b3b 62%, #185f5c 100%);
    background-size: auto, 54px 54px, 54px 54px, auto;
  }

  .page-hero::before {
    width: 620px;
    height: 620px;
    border-color: rgba(255, 255, 255, 0.06);
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
    gap: clamp(44px, 6vw, 84px);
  }

  .page-hero h1 {
    max-width: 12ch;
    font-size: clamp(3.15rem, 6vw, 6rem);
  }

  .page-hero-compact h1 {
    max-width: 14ch;
    font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  }

  .hero-lead {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
  }

  .page-hero .button-primary {
    color: var(--brand-deep);
    background: var(--accent);
  }

  .hero-proof {
    gap: 12px 20px;
  }

  .hero-image {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 32px 80px rgba(1, 22, 23, 0.38);
  }

  .hero-image img {
    height: clamp(390px, 42vw, 510px);
  }

  .hero-image-tag {
    left: 22px;
    bottom: 18px;
    padding: 10px 13px;
    background: rgba(4, 40, 41, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }

  .home-hero {
    min-height: 690px;
    padding-block: clamp(68px, 8vw, 110px);
  }

  .home-hero h1 {
    max-width: 11ch;
  }

  .home-hero-media {
    position: relative;
    min-height: 540px;
  }

  .home-hero-primary,
  .home-hero-secondary {
    position: absolute;
    overflow: hidden;
    margin: 0;
    background: var(--brand-deep);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 80px rgba(1, 22, 23, 0.38);
  }

  .home-hero-primary {
    top: 0;
    right: 0;
    width: 84%;
    border-radius: 18px;
  }

  .home-hero-primary::after,
  .home-hero-secondary::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent 48%, rgba(3, 31, 32, 0.78));
  }

  .home-hero-primary img {
    width: 100%;
    height: 410px;
    object-fit: cover;
  }

  .home-hero-secondary {
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 62%;
    border: 7px solid var(--brand);
    border-radius: 14px;
  }

  .home-hero-secondary img {
    width: 100%;
    height: 165px;
    object-fit: cover;
  }

  .home-hero-primary figcaption,
  .home-hero-secondary figcaption {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .home-hero-primary figcaption {
    left: 18px;
    top: 18px;
    bottom: auto;
    padding: 8px 10px;
    background: rgba(4, 40, 41, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 7px;
    backdrop-filter: blur(8px);
  }

  .home-hero-secondary figcaption {
    left: 14px;
    bottom: 10px;
  }

  .home-hero-primary figcaption span {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(222, 149, 82, 0.2);
  }

  .home-hero-seal {
    position: absolute;
    z-index: 4;
    right: 8px;
    bottom: 22px;
    display: grid;
    width: 112px;
    height: 112px;
    place-content: center;
    justify-items: center;
    color: var(--brand-deep);
    text-align: center;
    background: var(--accent);
    border: 6px solid var(--brand);
    border-radius: 50%;
    transform: rotate(-6deg);
  }

  .home-hero-seal strong {
    font-size: 2.2rem;
    line-height: 0.95;
    letter-spacing: -0.08em;
  }

  .home-hero-seal span {
    display: block;
    max-width: 70px;
    margin-top: 5px;
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .fact-strip {
    box-shadow: 0 18px 50px rgba(4, 40, 41, 0.06);
  }

  .fact-grid > div {
    min-height: 108px;
    border-right-color: rgba(10, 59, 59, 0.12);
  }

  .fact-grid strong {
    color: var(--brand);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
  }

  .split-intro {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .service-board {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    margin-top: 58px;
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .service-board-main {
    padding: clamp(34px, 5vw, 66px);
    border-right: 1px solid var(--line);
  }

  .service-board-main h3 {
    max-width: 20ch;
    margin-bottom: 22px;
    color: var(--brand);
    font-size: clamp(1.9rem, 3.4vw, 3.25rem);
  }

  .service-board-main > p:not(.eyebrow) {
    max-width: 620px;
    color: var(--ink-soft);
  }

  .service-board-data {
    display: grid;
    align-content: stretch;
    background:
      linear-gradient(135deg, rgba(222, 149, 82, 0.12), transparent 58%),
      var(--soft);
  }

  .service-board-data article {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 16px;
    padding: 22px 30px;
    border-bottom: 1px solid var(--line);
  }

  .service-board-data article:last-child {
    border-bottom: 0;
  }

  .service-board-data article > span {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
  }

  .service-board-data h3,
  .service-board-data p {
    margin: 0;
  }

  .service-board-data h3 {
    color: var(--brand);
    font-size: 1.12rem;
  }

  .service-board-data p {
    color: var(--ink-soft);
    font-size: 0.9rem;
  }

  .home-advantages .section-heading {
    max-width: 880px;
  }

  .advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block: 1px solid rgba(255, 255, 255, 0.15);
  }

  .advantage-grid article {
    min-height: 310px;
    padding: 38px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .advantage-grid article:last-child {
    border-right: 0;
  }

  .advantage-grid article > span {
    display: block;
    margin-bottom: 58px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
  }

  .advantage-grid h3 {
    color: var(--white);
  }

  .advantage-grid p {
    color: rgba(255, 255, 255, 0.7);
  }

  .section-photo-intro {
    align-items: end;
  }

  .photo-mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: 18px;
  }

  .photo-mosaic .photo-card {
    height: 100%;
    margin: 0;
  }

  .photo-mosaic .photo-card-lead {
    grid-row: 1 / 3;
  }

  .photo-mosaic .photo-card img {
    height: 100%;
    min-height: 260px;
  }

  .photo-mosaic .photo-card-lead img {
    min-height: 550px;
  }

  .section-link {
    margin-top: 30px;
  }

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

  .process-grid-three li {
    min-height: 280px;
  }

  .process-grid-three li::after {
    width: 14px;
  }

  .coverage-panel {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    align-items: stretch;
    background: var(--accent-soft);
    border: 1px solid rgba(126, 78, 34, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .coverage-panel-copy {
    padding: clamp(38px, 6vw, 76px);
  }

  .coverage-panel-copy > p:not(.eyebrow) {
    max-width: 600px;
    margin-bottom: 30px;
    color: #5d5145;
    font-size: 1.08rem;
  }

  .coverage-panel-route {
    position: relative;
    display: grid;
    min-height: 410px;
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
    padding: 58px 46px;
    color: var(--white);
    background:
      radial-gradient(circle at 70% 30%, rgba(54, 142, 134, 0.4), transparent 34%),
      linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
      var(--brand-deep);
    background-size: auto, 36px 36px, 36px 36px, auto;
  }

  .route-marker {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .route-marker > span {
    width: 18px;
    height: 18px;
    margin-bottom: 14px;
    background: var(--accent);
    border: 4px solid var(--brand-deep);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(222, 149, 82, 0.23);
  }

  .route-marker-destination > span {
    background: var(--white);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.14);
  }

  .route-marker strong {
    font-size: 1.12rem;
  }

  .route-marker small {
    color: rgba(255, 255, 255, 0.62);
  }

  .route-track {
    position: relative;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
  }

  .route-track::before {
    position: absolute;
    inset: -2px auto auto 0;
    width: 58%;
    height: 3px;
    content: "";
    background: var(--accent);
  }

  .route-track i {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .route-track i:nth-child(1) {
    left: 20%;
  }

  .route-track i:nth-child(2) {
    left: 50%;
  }

  .route-track i:nth-child(3) {
    right: 18%;
  }

  .coverage-page-route {
    min-height: 500px;
    border-radius: var(--radius);
  }

  .faq-item {
    background: rgba(255, 254, 250, 0.72);
    border-bottom-color: var(--line);
  }

  .faq-item summary {
    min-height: 72px;
  }

  .cta-band {
    background:
      linear-gradient(100deg, rgba(4, 40, 41, 0.98), rgba(15, 76, 73, 0.96)),
      var(--brand-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cta-band-inner {
    min-height: 320px;
  }

  .form-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(4, 40, 41, 0.12);
  }

  .field input,
  .field textarea,
  .field select {
    border-radius: 9px;
  }

  .field input:focus,
  .field textarea:focus,
  .field select:focus {
    border-color: var(--brand-light);
    box-shadow: 0 0 0 4px rgba(33, 112, 107, 0.12);
  }

  .field-error {
    display: block;
    min-height: 1.3em;
    margin-top: 6px;
    color: var(--danger);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .check-field .field-error {
    flex-basis: 100%;
    margin-left: 32px;
  }

  .check-field {
    flex-wrap: wrap;
  }

  .form-status {
    border-radius: 10px;
  }

  .jobs-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: start;
  }

  .application-card {
    padding: clamp(34px, 5vw, 60px);
    background:
      linear-gradient(135deg, rgba(222, 149, 82, 0.16), transparent 48%),
      var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .application-card > p:not(.eyebrow):not(.application-note) {
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: 1.08rem;
  }

  .application-note {
    margin-top: 20px;
    color: var(--ink-soft);
    font-size: 0.82rem;
  }

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

  .legal-hero h1 {
    margin-bottom: 16px;
  }

  .legal-hero .hero-lead {
    margin-bottom: 0;
  }

  .legal-content .prose {
    padding: clamp(34px, 5vw, 64px);
    background: var(--paper-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .checklist-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }

  .copy-status {
    min-height: 1.5em;
    margin-top: 12px;
    color: var(--success);
    font-size: 0.86rem;
    font-weight: 700;
  }

  .site-footer {
    background:
      linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
      #031f20;
    background-size: 52px 52px;
  }

  .footer-brand img {
    width: 190px;
    height: auto;
    object-fit: contain;
  }

  .mobile-actions {
    background: rgba(4, 40, 41, 0.98);
    border-top-color: rgba(255, 255, 255, 0.12);
  }
}

@media screen and (max-width: 1180px) {
  .main-nav {
    gap: 0;
  }

  .nav-link {
    padding-inline: 9px;
    font-size: 0.82rem;
  }

  .brand {
    width: 158px;
  }
}

@media screen and (max-width: 1080px) {
  .header-inner {
    min-height: 76px;
  }

  .brand {
    width: 156px;
    height: 66px;
  }

  .main-nav {
    top: 76px;
    color: var(--ink);
    background: var(--paper-strong);
    border-top: 1px solid var(--line);
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    color: var(--ink-soft);
    font-size: 1rem;
  }

  .nav-link:hover,
  .nav-link.is-active {
    color: var(--brand);
    background: var(--soft);
    box-shadow: none;
  }

  .nav-cta {
    width: 100%;
    margin-left: 0;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }

  .home-hero-media {
    min-height: 480px;
  }

  .home-hero-primary img {
    height: 360px;
  }

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

  .advantage-grid article:nth-child(2) {
    border-right: 0;
  }

  .advantage-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .coverage-panel {
    grid-template-columns: 1fr;
  }

  .coverage-panel-route {
    min-height: 330px;
  }
}

@media screen and (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 1220px);
  }

  .contact-rail {
    display: none;
  }

  .page-hero {
    padding-block: 64px;
  }

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

  .page-hero h1,
  .home-hero h1 {
    max-width: 13ch;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-media {
    width: min(100%, 600px);
    min-height: 490px;
    margin-inline: auto;
  }

  .home-hero-primary {
    width: 88%;
  }

  .home-hero-primary img {
    height: 370px;
  }

  .home-hero-secondary {
    width: 62%;
  }

  .service-board {
    grid-template-columns: 1fr;
  }

  .service-board-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 250px;
  }

  .photo-mosaic .photo-card-lead {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .photo-mosaic .photo-card-lead img {
    min-height: 380px;
  }

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

  .process-grid-three li {
    min-height: auto;
  }

  .jobs-layout {
    grid-template-columns: 1fr;
  }

  .coverage-page-route {
    min-height: 360px;
  }
}

@media screen and (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
  }

  body {
    background-size: 36px 36px;
  }

  .section {
    padding-block: 64px;
  }

  .page-hero {
    padding-block: 52px 58px;
  }

  .page-hero h1,
  .page-hero-compact h1,
  .home-hero h1 {
    max-width: none;
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

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

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

  .hero-actions .button {
    width: 100%;
  }

  .home-hero-media {
    min-height: 390px;
  }

  .home-hero-primary {
    width: 92%;
  }

  .home-hero-primary img {
    height: 285px;
  }

  .home-hero-secondary {
    width: 68%;
    border-width: 5px;
  }

  .home-hero-secondary img {
    height: 122px;
  }

  .home-hero-seal {
    right: 4px;
    bottom: 16px;
    width: 88px;
    height: 88px;
    border-width: 4px;
  }

  .home-hero-seal strong {
    font-size: 1.7rem;
  }

  .home-hero-seal span {
    max-width: 58px;
    margin-top: 3px;
    font-size: 0.46rem;
    letter-spacing: 0.06em;
  }

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

  .fact-grid > div {
    min-height: 94px;
    padding: 18px;
  }

  .service-board {
    margin-top: 36px;
  }

  .service-board-main {
    padding: 30px 22px;
  }

  .service-board-data article {
    padding: 19px 22px;
  }

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

  .advantage-grid article {
    min-height: auto;
    padding: 30px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .advantage-grid article:last-child {
    border-bottom: 0;
  }

  .advantage-grid article > span {
    margin-bottom: 25px;
  }

  .photo-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .photo-mosaic .photo-card-lead {
    grid-column: auto;
  }

  .photo-mosaic .photo-card img,
  .photo-mosaic .photo-card-lead img {
    min-height: 270px;
  }

  .coverage-panel-copy {
    padding: 32px 24px 38px;
  }

  .coverage-panel-route {
    min-height: 285px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 68px 1fr;
    padding: 32px 24px;
  }

  .route-track {
    width: 2px;
    height: 58px;
    margin-inline: auto;
  }

  .route-track::before {
    inset: 0 auto auto -1px;
    width: 3px;
    height: 58%;
  }

  .route-track i {
    top: auto;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }

  .route-track i:nth-child(1) {
    top: 12%;
  }

  .route-track i:nth-child(2) {
    top: 48%;
  }

  .route-track i:nth-child(3) {
    top: 84%;
  }

  .application-card {
    padding: 30px 22px;
  }

  .legal-content .prose {
    padding: 30px 22px;
  }

  .checklist-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .checklist-actions .button {
    width: 100%;
  }
}
