:root {
  --ink: #18212b;
  --muted: #5d6875;
  --line: #dbe2ea;
  --paper: #fbfcfd;
  --white: #ffffff;
  --red: #e3372d;
  --red-dark: #b9231d;
  --teal: #0c9488;
  --teal-soft: #dcf7f3;
  --amber: #ffbf3d;
  --blue: #2f6fed;
  --lime: #a7d129;
  --steel: #2f3b48;
  --shadow: 0 18px 46px rgba(24, 33, 43, 0.14);
  --shadow-strong: 0 26px 70px rgba(24, 33, 43, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(12, 148, 136, .08) 0%, rgba(255, 191, 61, .08) 44%, rgba(227, 55, 45, .07) 100%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 252, 253, .9);
  border-bottom: 1px solid rgba(219, 226, 234, .86);
  backdrop-filter: blur(14px);
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--amber), var(--teal), var(--blue), var(--red));
  background-size: 260% 100%;
  animation: colorRun 8s linear infinite;
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--amber) 48%, var(--teal));
  border-radius: 7px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(227, 55, 45, .28);
  transform: rotate(-2deg);
  transition: transform .25s ease, box-shadow .25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(2deg) scale(1.06);
  box-shadow: 0 18px 34px rgba(12, 148, 136, .24);
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 19px;
  height: 2px;
  content: "";
  display: block;
  background: var(--ink);
}

.nav-toggle {
  gap: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .28rem;
}

.nav-links a {
  padding: .62rem .78rem;
  color: var(--steel);
  border-radius: 5px;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 750;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--red-dark);
  background: #fff1ef;
  transform: translateY(-1px);
}

.nav-cta {
  margin-left: .35rem;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--red), #ff7a45) !important;
  box-shadow: 0 12px 28px rgba(227, 55, 45, .24);
}

.hero {
  position: relative;
  min-height: clamp(660px, 82vh, 820px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -2;
  background: #121920;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 25, 32, .9) 0%, rgba(18, 25, 32, .68) 38%, rgba(18, 25, 32, .16) 72%),
    linear-gradient(140deg, rgba(227, 55, 45, .48) 0%, rgba(255, 191, 61, .18) 34%, rgba(12, 148, 136, .24) 78%),
    linear-gradient(180deg, rgba(18, 25, 32, .08) 0%, rgba(18, 25, 32, .58) 100%);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center right;
  transform: scale(1.045);
  transition: opacity 1.1s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.085) translateX(-10px);
}

.hero .eyebrow,
.hero h1,
.hero-lead,
.hero-actions,
.hero-proof {
  animation: riseIn .75s ease both;
}

.hero h1 {
  animation-delay: .08s;
}

.hero-lead {
  animation-delay: .16s;
}

.hero-actions {
  animation-delay: .24s;
}

.hero-proof {
  animation-delay: .34s;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.35rem;
}

.hero-dots button {
  width: 38px;
  height: 8px;
  padding: 0;
  background: rgba(255,255,255,.42);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width .25s ease, background .25s ease, transform .25s ease;
}

.hero-dots button:hover,
.hero-dots button:focus-visible {
  background: rgba(255,255,255,.78);
  transform: translateY(-1px);
}

.hero-dots button.is-active {
  width: 54px;
  background: linear-gradient(90deg, var(--amber), var(--red));
  box-shadow: 0 8px 22px rgba(255, 191, 61, .28);
}

.hero-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 8rem 0 4.5rem;
}

.eyebrow {
  margin: 0 0 .9rem;
  color: var(--amber);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section .eyebrow,
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .35rem .58rem;
  color: var(--red-dark);
  background: linear-gradient(135deg, #fff0ea, #fff8e6);
  border: 1px solid #ffd7c6;
  border-radius: 5px;
}

.section .eyebrow::before,
.page-hero .eyebrow::before {
  width: .48rem;
  height: .48rem;
  content: "";
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(12, 148, 136, .14);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.65rem, 6vw, 5.7rem);
  font-weight: 920;
  text-shadow: 0 16px 42px rgba(0,0,0,.36);
}

.hero-lead {
  max-width: 670px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.7rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24, 33, 43, .18);
}

.button:hover::after {
  transform: translateX(130%);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ff7043);
  box-shadow: 0 14px 30px rgba(227, 55, 45, .24);
}

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

.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 2.2rem;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-proof div {
  padding: 1rem;
  color: var(--white);
  background: rgba(24, 33, 43, .66);
  transition: background .22s ease, transform .22s ease;
}

.hero-proof div:hover {
  background: rgba(12, 148, 136, .82);
  transform: translateY(-2px);
}

.hero-proof strong {
  display: block;
  font-size: 1.08rem;
}

.hero-proof span {
  display: block;
  color: rgba(255,255,255,.77);
  font-size: .9rem;
}

.section {
  padding: clamp(3.4rem, 8vw, 6.8rem) 0;
  position: relative;
}

.station-card-section {
  position: relative;
  z-index: 2;
  margin: -2.2rem 0 0;
  padding: 0 0 1.2rem;
}

.hero + .station-card-section {
  margin-top: -3.4rem;
}

.station-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 1.2rem;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 248, 230, .94)),
    var(--white);
  border: 1px solid rgba(255, 191, 61, .44);
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}

.station-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--amber), var(--teal), var(--blue));
}

.station-card::after {
  position: absolute;
  right: -64px;
  bottom: -84px;
  width: 210px;
  height: 210px;
  content: "";
  background: radial-gradient(circle, rgba(12, 148, 136, .18), transparent 68%);
  pointer-events: none;
}

.station-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 .72rem;
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.station-label::before {
  width: .55rem;
  height: .55rem;
  content: "";
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 191, 61, .22);
}

.station-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.station-card-main p:not(.station-label) {
  max-width: 760px;
  margin: .72rem 0 0;
  color: var(--steel);
}

.station-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.15rem;
}

.station-details {
  display: grid;
  gap: .7rem;
}

.station-details div {
  position: relative;
  padding: .9rem .95rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(219, 226, 234, .86);
  border-radius: 8px;
}

.station-details div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: linear-gradient(180deg, var(--red), var(--teal));
}

.station-details span {
  display: block;
  margin-bottom: .2rem;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.station-details strong {
  display: block;
  color: var(--ink);
  line-height: 1.3;
}

.station-details small {
  display: block;
  margin-top: .18rem;
  color: var(--muted);
  font-size: .92rem;
}

.station-details a {
  color: inherit;
  text-decoration: none;
}

.section.alt {
  background:
    linear-gradient(90deg, rgba(255, 191, 61, .08), rgba(12, 148, 136, .08)),
    var(--white);
}

.section-header {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2,
.page-intro h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--ink);
}

.section-header p,
.page-intro p {
  margin: .9rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.service-card,
.area-card,
.info-card,
.faq-item,
.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(24, 33, 43, .06);
}

.service-card,
.area-card,
.info-card {
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card::before,
.area-card::before,
.info-card::before,
.faq-item::before,
.contact-box::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--amber), var(--teal));
}

.service-card:hover,
.area-card:hover,
.info-card:hover {
  border-color: rgba(12, 148, 136, .36);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-media {
  position: relative;
  height: 168px;
  margin: -1.35rem -1.35rem 1.15rem;
  overflow: hidden;
  background: #eef2f6;
  border-radius: 8px 8px 0 0;
}

.service-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(24, 33, 43, .28));
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease, filter .45s ease;
}

.service-card:hover .service-media img {
  filter: saturate(1.12) contrast(1.03);
  transform: scale(1.09);
}

.service-card strong,
.area-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 6px;
  font-size: 1.05rem;
  box-shadow: 0 12px 24px rgba(12, 148, 136, .24);
}

.service-card h3,
.area-card h3,
.info-card h3 {
  font-size: 1.2rem;
}

.service-card p,
.area-card p,
.info-card p,
.faq-item p {
  margin: .65rem 0 0;
  color: var(--muted);
}

.service-card ul,
.area-card ul,
.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.area-card li,
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--steel);
  margin-top: .5rem;
}

.service-card li::before,
.area-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: .12rem;
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.highlight-panel {
  padding: 1.45rem;
  background:
    linear-gradient(135deg, rgba(12, 148, 136, .16), rgba(255, 191, 61, .22)),
    var(--white);
  border: 1px solid #bde8e2;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.highlight-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--red));
}

.highlight-panel h3 {
  font-size: 1.35rem;
}

.highlight-panel p {
  color: var(--steel);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 33, 43, .06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.step:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
}

.step::before {
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  width: 38px;
  height: 38px;
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--amber));
  border-radius: 6px;
  font-weight: 900;
}

.step p {
  margin: .4rem 0 0;
  color: var(--muted);
}

.page-hero {
  padding: 4.5rem 0 3.2rem;
  background:
    linear-gradient(120deg, rgba(227, 55, 45, .12), rgba(255, 191, 61, .14), rgba(12, 148, 136, .12)),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: .92rem;
}

.breadcrumbs a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 750;
}

.page-intro {
  max-width: 860px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .35rem .65rem;
  color: var(--steel);
  background: linear-gradient(135deg, #eef2f6, #fff8e6);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: .92rem;
  font-weight: 750;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-table th,
.price-table td {
  padding: .95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.price-table th {
  color: var(--white);
  background: var(--steel);
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: .85rem;
}

.faq-item {
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.faq-item h3 {
  font-size: 1.1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
}

.map-section {
  background:
    linear-gradient(135deg, rgba(12, 148, 136, .08), rgba(255, 191, 61, .12)),
    var(--paper);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .7fr);
  gap: 1.2rem;
  align-items: stretch;
}

.map-card,
.map-info {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card {
  min-height: 420px;
  aspect-ratio: 16 / 10;
}

.map-card::before,
.map-info::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--teal));
}

.map-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.map-info {
  padding: 1.35rem;
}

.map-info h3 {
  font-size: 1.45rem;
}

@media (max-width: 980px) {
  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-card {
    width: 100%;
    min-height: 360px;
    aspect-ratio: auto;
  }
}

.contact-box {
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.contact-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.contact-list li {
  padding: .75rem 0;
  border-top: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  color: var(--muted);
  font-size: .83rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-list a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.form {
  display: grid;
  gap: .85rem;
}

.form label {
  display: grid;
  gap: .35rem;
  color: var(--steel);
  font-weight: 750;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: .85rem .9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

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

.notice {
  padding: 1rem;
  color: var(--steel);
  background: #fff7e7;
  border: 1px solid #f4d79c;
  border-radius: 8px;
}

.cta-band {
  padding: 3rem 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(227, 55, 45, .9), rgba(47, 111, 237, .58), rgba(12, 148, 136, .82)),
    var(--steel);
  background-size: 180% 180%;
  animation: ctaFlow 10s ease-in-out infinite alternate;
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.cta-band p {
  margin: .5rem 0 0;
  color: rgba(255,255,255,.78);
}

.site-footer {
  color: rgba(255,255,255,.82);
  background:
    linear-gradient(135deg, #121920 0%, #1b2632 46%, #122f33 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes colorRun {
  0% { background-position: 0% 50%; }
  100% { background-position: 260% 50%; }
}

@keyframes heroBreath {
  from { transform: scale(1.035) translateX(0); }
  to { transform: scale(1.075) translateX(-12px); }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaFlow {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 2rem;
  padding: 3rem 0;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer p {
  margin: .65rem 0 0;
}

.site-footer a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
}

.footer-links {
  display: grid;
  gap: .45rem;
  margin-top: .8rem;
}

.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.64);
  font-size: .9rem;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .65rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(18, 25, 32, .94) 0%, rgba(18, 25, 32, .78) 58%, rgba(18, 25, 32, .28) 100%),
      linear-gradient(180deg, rgba(18, 25, 32, .12) 0%, rgba(18, 25, 32, .68) 100%);
  }

  .hero-proof,
  .station-card,
  .grid-3,
  .grid-2,
  .split,
  .contact-layout,
  .map-layout,
  .cta-band .section-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-band .section-inner {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand-text span {
    display: none;
  }

  .hero-inner {
    padding-bottom: 3rem;
  }

  .hero-proof {
    display: none;
  }

  .station-card-section,
  .hero + .station-card-section {
    margin-top: 0;
    padding-top: 1rem;
  }

  .button {
    width: 100%;
  }

  .map-card {
    min-height: 340px;
    aspect-ratio: 1 / 1;
  }

  .price-table {
    display: block;
    overflow-x: auto;
  }
}
