:root {
  --navy: #0b1c3d;
  --navy-soft: #16305f;
  --ink: #0b1c3d;
  --muted: #4a5a72;
  --paper: #f2f5f9;
  --surface: #ffffff;
  --red: #e10600;
  --red-deep: #b80500;
  --line: rgba(11, 28, 61, 0.12);
  --header-h: 4rem;
  --banner-h: 2.25rem;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--banner-h) + 0.5rem);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ——— Demo banner ——— */

.demo-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--banner-h);
  padding: 0 1rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.demo-banner:hover {
  color: #fff;
}

/* ——— Header ——— */

.site-header {
  position: fixed;
  inset: var(--banner-h) 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--navy);
}

.site-header__logo {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 1.6rem);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.site-header__nav a:hover {
  color: var(--navy);
}

.site-header__cta {
  color: var(--red) !important;
  font-weight: 600;
}

@media (max-width: 760px) {
  .site-header__nav a:not(.site-header__cta) {
    display: none;
  }
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(16rem, 32rem) 1px minmax(0, 40rem);
  column-gap: clamp(1.75rem, 4vw, 5rem);
  align-items: center;
  justify-content: center;
  padding:
    calc(var(--banner-h) + var(--header-h) + clamp(2rem, 6vh, 4rem))
    clamp(1.25rem, 5vw, 3.5rem)
    clamp(3rem, 8vh, 5.5rem);
  overflow: hidden;
  color: #fff;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      115deg,
      rgba(11, 28, 61, 0.94) 0%,
      rgba(11, 28, 61, 0.78) 42%,
      rgba(22, 48, 95, 0.55) 100%
    ),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 14px,
      rgba(255, 255, 255, 0.02) 14px,
      rgba(255, 255, 255, 0.02) 15px
    ),
    radial-gradient(ellipse 70% 55% at 78% 30%, rgba(225, 6, 0, 0.28), transparent 58%),
    linear-gradient(165deg, #16305f 0%, #0b1c3d 55%, #071226 100%);
}

.hero__wash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 28, 61, 0.9) 0%, rgba(11, 28, 61, 0.76) 55%, rgba(11, 28, 61, 0.62) 100%),
    rgba(11, 28, 61, 0.55);
  pointer-events: none;
}

.hero__wash img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.55) contrast(0.9);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
}

.hero__seal {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 32rem);
  height: auto;
  filter: drop-shadow(0 0.75rem 2rem rgba(7, 18, 38, 0.3));
}

.hero__divider {
  position: relative;
  z-index: 1;
  width: 1px;
  height: min(55vh, 34rem);
  background: rgba(255, 255, 255, 0.35);
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.15rem);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.1rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.hero__support {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hero .btn--ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero .cta-phone a {
  color: rgba(255, 255, 255, 0.72);
}

.hero .cta-phone a:hover {
  color: #fff;
}

@media (max-width: 950px) {
  .hero {
    grid-template-columns: minmax(0, 40rem);
    justify-content: start;
  }

  .hero__seal,
  .hero__divider {
    display: none;
  }
}

/* ——— Buttons / CTA ——— */

.cta-with-phone {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.85rem 1.25rem;
}

.cta-call {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cta-phone {
  font-size: 0.9rem;
  font-weight: 500;
  padding-left: 0.15rem;
}

.cta-phone a {
  color: var(--muted);
}

.cta-phone a:hover {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.4rem;
  border-radius: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--navy);
}

.btn--block {
  width: 100%;
}

/* ——— Sections ——— */

.section {
  padding: clamp(3.75rem, 9vh, 6.25rem) clamp(1.25rem, 5vw, 3.5rem);
}

.section--services {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.section--about {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(225, 6, 0, 0.06), transparent 55%),
    var(--surface);
}

.section--trust {
  background:
    linear-gradient(165deg, var(--navy) 0%, #12274f 55%, #0b1c3d 100%);
  color: #fff;
}

.section--trust .section__lede,
.section--trust .cred {
  color: rgba(255, 255, 255, 0.72);
}

.section--area {
  background:
    linear-gradient(180deg, var(--paper) 0%, #e4eaf2 100%);
}

.section--quote {
  background: var(--surface);
}

.section__inner {
  max-width: 68rem;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 40rem;
}

.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.section__lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 36rem;
}

.section__inner--narrow .section__lede {
  margin-bottom: 1.5rem;
}

/* ——— Services ——— */

.core-services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.core-services li {
  padding: 1.35rem 1.5rem 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.core-services li:nth-child(odd) {
  padding-right: 1.75rem;
  border-right: 1px solid var(--line);
}

.core-services li:nth-child(even) {
  padding-left: 1.75rem;
}

.core-services h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.core-services p {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 28ch;
}

.also-handles {
  margin-top: 2.5rem;
}

.also-handles__label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 0.85rem;
}

.also-handles__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.also-handles__list li {
  position: relative;
}

.also-handles__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.85rem;
  top: 50%;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--line);
  transform: translateY(-50%);
}

/* ——— About ——— */

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
}

.about-photo {
  position: relative;
  min-height: 0;
}

.about-photo img {
  position: absolute;
  inset: 0 0 0 auto;
  display: block;
  width: auto;
  height: 100%;
  border-radius: 0.4rem;
  box-shadow: 0 1.25rem 3rem rgba(11, 28, 61, 0.15);
}

.about-copy {
  align-self: center;
}

.about-copy .section__lede {
  margin-bottom: 1.5rem;
  margin-inline: 0;
}

.about-copy {
  text-align: left;
}

.about-copy .promises {
  justify-items: start;
}

.about-copy .promises li {
  width: fit-content;
  text-align: left;
}

.story {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
}

.promises {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 1.02rem;
}

.promises li {
  padding-left: 1.15rem;
  position: relative;
}

.promises li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--red);
}

@media (max-width: 850px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 40rem;
  }

  .about-photo img {
    position: static;
    width: 100%;
    height: auto;
  }
}

/* ——— Trust ——— */

.section--trust .section__inner {
  max-width: 48rem;
  text-align: center;
}

.section--trust .section__lede {
  margin-inline: auto;
}

.quote {
  margin: 2rem auto 0;
  max-width: 36rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin-bottom: 0.65rem;
}

.quote footer {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.cred {
  margin-top: 2rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ——— Areas ——— */

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  grid-template-areas:
    "map intro"
    "map areas";
  column-gap: clamp(2rem, 5vw, 4rem);
  row-gap: 0.25rem;
  align-items: stretch;
}

.area-intro {
  grid-area: intro;
  align-self: end;
}

.area-map {
  grid-area: map;
  min-height: 24rem;
  display: flex;
  flex-direction: column;
}

.area-map iframe {
  width: 100%;
  min-height: 0;
  flex: 1;
  border: 1px solid var(--line);
  background: #d9e0e8;
}

.area-map a {
  align-self: flex-start;
  margin-top: 0.65rem;
  color: var(--navy-soft);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.area-intro .section__lede {
  margin-bottom: 1.5rem;
}

.areas {
  grid-area: areas;
  list-style: none;
  display: grid;
  gap: 0;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.areas li {
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.areas li:last-child {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85em;
}

/* ——— Quote / form ——— */

.quote-intro .section__lede {
  margin-bottom: 1.5rem;
}

.quote-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem 0 0;
}

.quote-form__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.quote-form__note {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: -0.35rem;
  margin-bottom: 0.35rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  padding: 0.7rem 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 5rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-soft);
  background: #fff;
}

.quote-form__success {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-soft);
  background: color-mix(in srgb, var(--navy) 6%, #fff);
  border: 1px solid var(--line);
  border-radius: 0.3rem;
  padding: 0.85rem 1rem;
}

.quote-back {
  max-width: 68rem;
  margin: 2rem auto 0;
  font-size: 1.08rem;
  font-weight: 600;
  text-align: center;
  color: var(--muted);
}

.quote-back a:hover {
  color: var(--red);
}

/* ——— Footer ——— */

.site-footer {
  padding: 2.5rem clamp(1.25rem, 5vw, 3.5rem) 3rem;
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
  max-width: 68rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: center;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.4rem;
}

.site-footer__note {
  text-align: center;
}

.site-footer__contact {
  text-align: right;
  overflow-wrap: anywhere;
}

.site-footer__meta {
  font-size: 0.95rem;
}

.site-footer__meta a:hover,
.site-footer__note a:hover {
  color: #fff;
}

.site-footer__note a {
  color: #fff;
  font-weight: 600;
}

.site-footer__note,
.site-footer__copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.demo-toast {
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(calc(100% - 2rem), 34rem);
  padding: 0.9rem 1.1rem;
  border-radius: 0.4rem;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 0.75rem 2rem rgba(11, 28, 61, 0.28);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0.75rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.demo-toast [data-demo-toast-message] {
  flex: 1;
}

.demo-toast__close {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.demo-toast__close:hover,
.demo-toast__close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.demo-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* ——— Reveal ——— */

.reveal.is-reveal-pending {
  opacity: 0;
  transform: translateY(0.9rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-reveal-pending.is-visible {
  opacity: 1;
  transform: none;
}

.hero .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero .reveal:nth-child(2) { transition-delay: 0.14s; }
.hero .reveal:nth-child(3) { transition-delay: 0.23s; }
.hero .reveal:nth-child(4) { transition-delay: 0.32s; }

@media (max-width: 800px) {
  .section__inner--split,
  .area-layout {
    grid-template-columns: 1fr;
  }

  .area-layout {
    grid-template-areas:
      "intro"
      "map"
      "areas";
    gap: 1.5rem;
  }

  .area-intro .section__lede {
    margin-bottom: 0;
  }

  .area-map {
    min-height: 20rem;
  }

  .area-layout > .areas {
    margin-top: 0;
  }

  .quote-intro {
    text-align: center;
  }

  .quote-intro .section__lede {
    margin-inline: auto;
  }

  .quote-intro .cta-with-phone {
    justify-content: center;
  }

  .quote-intro .cta-call {
    align-items: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .site-footer__contact {
    grid-row: 3;
    text-align: center;
  }

  .site-footer__note {
    grid-row: 2;
  }

  .site-footer__brand-block {
    grid-row: 1;
  }

  .core-services {
    grid-template-columns: 1fr;
  }

  .core-services li:nth-child(odd),
  .core-services li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn--primary:hover {
    transform: none;
  }
}
