:root {
  --blue: #0b4a9c;
  --blue-deep: #082c66;
  --blue-soft: #e9f1fb;
  --yellow: #f1c945;
  --ink: #121820;
  --muted: #5c6672;
  --line: #d8dee8;
  --paper: #ffffff;
  --mist: #f3f6f9;
  --shadow: 0 18px 50px rgb(8 44 102 / 0.14);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.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;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--blue-deep);
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 0.92);
  border-bottom: 1px solid rgb(216 222 232 / 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  width: min(310px, 48vw);
  text-decoration: none;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.site-nav > a,
.nav-dropdown-link,
.header-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-nav > a,
.nav-dropdown-link {
  padding: 8px 13px;
  color: var(--muted);
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown:hover .nav-dropdown-link,
.nav-dropdown:focus-within .nav-dropdown-link,
.nav-dropdown.is-open .nav-dropdown-link {
  color: var(--blue);
  background: var(--blue-soft);
}

.site-nav > a[aria-current="page"],
.nav-dropdown.is-current > .nav-dropdown-link,
.nav-dropdown-link[aria-current="page"] {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: max(100%, 260px);
  height: 14px;
  pointer-events: none;
}

.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after,
.nav-dropdown.is-open::after {
  pointer-events: auto;
}

.nav-dropdown-link {
  border-radius: 999px 0 0 999px;
  padding-right: 8px;
}

.nav-dropdown-toggle {
  min-height: 44px;
  width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown.is-current .nav-dropdown-toggle {
  color: var(--blue);
  background: var(--blue-soft);
}

.nav-dropdown-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::before,
.nav-dropdown:hover .nav-dropdown-toggle::before,
.nav-dropdown:focus-within .nav-dropdown-toggle::before {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  min-width: 260px;
  padding: 8px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  min-height: 40px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  border-radius: calc(var(--radius) - 2px);
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.header-phone {
  padding: 9px 16px;
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 22px rgb(11 74 156 / 0.18);
}

.header-phone:hover,
.header-phone:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:active,
.header-phone:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--blue-deep);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.hero-copy {
  min-height: 560px;
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(233 241 251 / 0.82), transparent 52%),
    white;
}

.section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  max-width: 14ch;
  margin-bottom: 22px;
  color: var(--blue-deep);
  font-size: clamp(3rem, 4.9vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h2 {
  max-width: 14ch;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: clamp(2.15rem, 4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: 28px;
  color: #303946;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.45;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgb(11 74 156 / 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-deep);
}

.button-secondary {
  background: white;
  color: var(--blue-deep);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border: 1px solid rgb(255 255 255 / 0.72);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 14px 30px rgb(8 44 102 / 0.16);
}

.hero-note strong {
  color: var(--blue-deep);
  line-height: 1.2;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.95rem;
}

.proof-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}

.proof-strip div {
  padding: 22px;
  display: grid;
  gap: 5px;
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  color: var(--blue-deep);
  line-height: 1.2;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-pad {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 740px;
}

.section-heading.compact h2 {
  max-width: 15ch;
}

.section-heading p:not(.section-label),
.intro-copy p,
.rot-card p,
.contact-copy p,
.reference-layout p,
.process-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 34px;
  align-items: stretch;
}

.intro-copy {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--mist);
}

.intro-copy p:last-child,
.rot-card p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.trust-panel {
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.trust-panel img {
  width: 100%;
  max-height: 128px;
  object-fit: contain;
  padding: 12px;
  filter: saturate(0.92);
}

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

.service-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgb(11 74 156 / 0.38);
  box-shadow: 0 16px 34px rgb(8 44 102 / 0.12);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  border-top: 1px solid rgb(216 222 232 / 0.72);
  background: var(--paper);
  padding: 20px;
}

.service-card p {
  margin-bottom: 0;
  color: #3f4a57;
  font-size: 0.98rem;
  line-height: 1.65;
}

.featured-services {
  margin-bottom: 24px;
}

.home-service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.accent-card {
  border-color: rgb(11 74 156 / 0.3);
  background: linear-gradient(180deg, white, var(--blue-soft));
}

.process {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.process-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.process-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.steps {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 18px 18px 18px 62px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue-deep);
  font-weight: 900;
  font-size: 0.86rem;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  color: var(--blue-deep);
  line-height: 1.3;
}

.steps span {
  margin-top: 4px;
  color: var(--muted);
}

.rot {
  width: 100%;
  max-width: none;
  background: var(--blue-deep);
  color: white;
}

.rot-card {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.rot .section-label,
.rot h2 {
  color: white;
}

.rot-card p {
  color: rgb(255 255 255 / 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 4px;
  color: white;
  font-weight: 800;
  text-decoration-color: rgb(241 201 69 / 0.75);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link-blue {
  color: var(--blue);
  text-decoration-color: rgb(11 74 156 / 0.32);
}

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

.rot-facts div {
  min-height: 150px;
  padding: 20px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.08);
}

.rot-facts strong {
  color: var(--yellow);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.rot-facts span {
  color: rgb(255 255 255 / 0.82);
}

.reference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 26px;
}

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

.reference-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.reference-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  line-height: 1.25;
}

.reference-list p {
  margin: 0;
}

.reference-photos {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.reference-photos img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}

.reference-photos img:first-child {
  margin-top: 42px;
  max-height: 340px;
}

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

.reference-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 260px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 34px rgb(8 44 102 / 0.08);
}

.reference-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--mist);
}

.reference-card-body {
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 10px;
}

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

.reference-kicker {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.reference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reference-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.reference-gallery article {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.reference-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mist);
}

.reference-gallery strong {
  padding: 18px 18px 0;
  color: var(--blue-deep);
}

.reference-gallery span {
  padding: 4px 18px 20px;
  color: var(--muted);
}

.reference-teaser {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.reference-teaser p {
  color: var(--muted);
}

.reference-teaser .button {
  margin-top: 8px;
}

.reference-points {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.reference-points li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--blue-deep);
  font-weight: 800;
}

.contact {
  width: 100%;
  max-width: none;
  background: var(--mist);
}

.page-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: stretch;
}

.page-hero > div {
  min-width: 0;
  min-height: 500px;
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(233 241 251 / 0.82), transparent 52%),
    white;
}

.page-hero > img {
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.split-page,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 24px;
  align-items: start;
}

.content-card,
.side-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.content-card {
  background: var(--mist);
}

.content-card p,
.side-panel p,
.faq-list p {
  color: var(--muted);
}

.blue-card {
  background: var(--blue-deep);
  color: white;
  border-color: var(--blue-deep);
}

.blue-card h2,
.blue-card p {
  color: white;
}

.side-panel {
  position: sticky;
  top: 104px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--blue) 0 36%, transparent 38%),
    var(--yellow);
}

.guarantee-copy .check-list {
  margin: 24px 0;
}

.guarantee-copy .button {
  margin-top: 8px;
}

.guarantee-panel {
  position: static;
  display: grid;
  gap: 16px;
  text-align: center;
  background: var(--blue-soft);
}

.guarantee-panel img {
  width: min(100%, 280px);
  margin: 0 auto;
}

.guarantee-panel h3,
.guarantee-panel p {
  margin-bottom: 0;
}

.info-band,
.quote-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 86px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--blue-soft);
  border: 1px solid rgb(11 74 156 / 0.18);
}

.info-band h2,
.quote-band h2 {
  max-width: 16ch;
}

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.info-band p,
.quote-band p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
}

.trust-panel-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rot-page {
  padding-bottom: 0;
}

.rot-facts.light div {
  background: white;
  border-color: var(--line);
}

.rot-facts.light span {
  color: var(--muted);
}

.rot-facts.light strong {
  color: var(--blue);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--blue-deep);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.map-section {
  padding-top: 0;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 26px;
  align-items: stretch;
}

.map-copy {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.google-map {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.google-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.google-map iframe[hidden] {
  display: none;
}

.map-consent {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  background:
    linear-gradient(135deg, rgb(233 241 251 / 0.9), rgb(255 255 255 / 0.76)),
    white;
}

.map-consent[hidden] {
  display: none;
}

.map-consent p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.contact-panel {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-copy {
  padding: 34px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
}

.contact-main {
  margin-top: 28px;
  display: grid;
  gap: 8px;
}

.contact-main a {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.contact-main span {
  color: var(--muted);
  font-weight: 700;
}

.people {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  grid-row: 2;
  gap: 14px;
}

.people article {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
}

.people p {
  min-height: 48px;
  margin-bottom: 12px;
  color: var(--muted);
}

.people a,
.site-footer a {
  display: block;
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.quote-form {
  grid-column: 2;
  grid-row: 1;
  padding: 26px;
  display: grid;
  gap: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
}

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

.hidden-field {
  display: none;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full {
  grid-column: 1 / -1;
}

label {
  color: var(--blue-deep);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b8c4d3;
  border-radius: var(--radius);
  padding: 12px 13px;
  background: white;
  color: var(--ink);
}

select {
  min-height: 50px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgb(241 201 69 / 0.45);
  border-color: var(--blue);
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-deep);
  font-weight: 800;
}

.form-status.error {
  color: #9b1c1c;
}

.policy-layout {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.policy-summary {
  position: sticky;
  top: 108px;
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-content h2 {
  max-width: none;
  margin-top: 10px;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.policy-content a {
  color: var(--blue);
  font-weight: 800;
}

.policy-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

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

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(190px, 0.45fr));
  gap: 28px;
  color: var(--muted);
}

.site-footer img {
  width: 260px;
  margin-bottom: 12px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 10px;
  color: var(--blue-deep);
}

.site-footer a + a {
  margin-top: 4px;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgb(11 74 156 / 0.18);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 0.96);
  box-shadow: 0 22px 70px rgb(7 35 75 / 0.18);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1rem;
}

.cookie-banner p {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
}

.cookie-actions a {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgb(241 201 69 / 0.7);
  outline-offset: 3px;
}

.section-reveal {
  transform: translateY(18px);
  transition: transform 620ms ease;
}

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

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

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

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-phone {
    display: none;
  }

  .site-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    align-items: stretch;
    gap: 4px;
    padding: 8px 0 18px;
  }

  .site-nav.is-open > a,
  .site-nav.is-open .nav-dropdown-link {
    border-radius: var(--radius);
    background: var(--mist);
  }

  .site-nav.is-open .nav-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 4px;
  }

  .site-nav.is-open .nav-dropdown::after {
    display: none;
  }

  .site-nav.is-open .nav-dropdown-link {
    border-radius: var(--radius);
  }

  .site-nav.is-open .nav-dropdown-toggle {
    width: 44px;
    min-height: 44px;
    border-radius: var(--radius);
    background: var(--mist);
  }

  .site-nav.is-open .nav-dropdown-menu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    margin: 2px 0 8px;
    display: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-nav.is-open .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .site-nav.is-open .nav-dropdown-menu a {
    background: white;
  }

  .hero,
  .page-hero,
  .intro-grid,
  .split-page,
  .detail-layout,
  .process,
  .rot-card,
  .reference-layout,
  .reference-teaser,
  .contact-panel,
  .map-card,
  .policy-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-media,
  .page-hero > div,
  .page-hero > img {
    min-height: auto;
  }

  .hero-media {
    height: min(68vw, 560px);
  }

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

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

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

  .quote-form {
    grid-column: auto;
    grid-row: auto;
  }

  .people p {
    min-height: 0;
  }

  .side-panel {
    position: static;
  }

  .policy-summary {
    position: static;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .hero,
  .page-hero,
  .proof-strip,
  .section-pad,
  .info-band,
  .quote-band,
  .rot-card,
  .contact-panel,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

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

  .brand {
    width: min(258px, 68vw);
  }

  .hero {
    padding-top: 30px;
    gap: 16px;
  }

  .page-hero {
    padding-top: 30px;
    gap: 16px;
  }

  .hero-copy,
  .page-hero > div,
  .intro-copy,
  .content-card,
  .side-panel,
  .contact-copy,
  .quote-form {
    padding: 22px;
  }

  .map-copy {
    min-height: 0;
  }

  .google-map,
  .google-map iframe,
  .map-consent {
    min-height: 300px;
  }

  h1 {
    max-width: 12ch;
  }

  h2 {
    max-width: 12ch;
  }

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

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 14px;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }

  .proof-strip,
  .info-band,
  .quote-band,
  .service-grid,
  .form-grid,
  .reference-list,
  .reference-photos,
  .reference-card-grid,
  .reference-gallery,
  .trust-panel,
  .rot-facts {
    grid-template-columns: 1fr;
  }

  .quote-actions {
    justify-content: flex-start;
  }

  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-pad {
    padding: 64px 0;
  }

  .page-hero > img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .info-band,
  .quote-band {
    margin-bottom: 64px;
  }

  .service-card {
    grid-template-rows: 210px 1fr;
    border-color: #c8d2df;
    background: var(--paper);
  }

  .service-card div {
    padding: 22px 20px 24px;
  }

  .service-card p {
    color: #263442;
    font-size: 1rem;
  }

  .process-image img {
    aspect-ratio: 4 / 3;
  }

  .steps li {
    padding-left: 56px;
  }

  .reference-photos img,
  .reference-photos img:first-child {
    min-height: auto;
    max-height: none;
    margin-top: 0;
    aspect-ratio: 4 / 3;
  }
}
