@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Saira+Condensed:wght@700;800;900&display=swap");

:root {
  --azure-50: #f1f8fc;
  --azure-100: #d8ecf7;
  --azure-400: #65b8e7;
  --azure-500: #287daa;
  --azure-600: #246f98;
  --azure-700: #1d5f83;
  --navy-700: #282865;
  --navy-800: #202052;
  --navy-900: #18183e;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f8;
  --gray-200: #dde4ef;
  --gray-400: #97a3ba;
  --gray-500: #6b7791;
  --gray-700: #363e52;
  --white: #fff;
  --shadow-sm: 0 2px 8px rgba(40, 40, 101, 0.08), 0 1px 2px rgba(40, 40, 101, 0.05);
  --shadow-md: 0 18px 48px rgba(40, 40, 101, 0.15);
  --container: 1180px;
  --wide-container: 1760px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-700);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--azure-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy-700);
}

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

:focus-visible {
  outline: 3px solid var(--azure-700);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  background: var(--white);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(221, 228, 239, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

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

.home-page .brand img {
  width: 214px;
  height: 70px;
}

.header-phone {
  display: inline-flex;
  min-height: 44px;
  padding: 0 16px;
  margin-left: auto;
  align-items: center;
  border: 1px solid var(--azure-100);
  border-radius: var(--radius-md);
  color: var(--navy-700);
  background: var(--azure-50);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--azure-700);
  border-color: var(--azure-300);
  background: var(--white);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--navy-700);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--azure-700);
  background: var(--azure-50);
}

.nav-cta {
  margin-left: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-wrap {
  position: relative;
  gap: 14px;
}

.nav-toggle {
  display: block;
  margin-left: auto;
}

.header-phone + .nav-toggle {
  margin-left: 0;
}

.site-nav {
  position: absolute;
  z-index: 110;
  inset: calc(100% + 8px) 0 auto auto;
  width: min(300px, calc(100vw - 30px));
  max-height: 0;
  padding: 0 10px;
  overflow: hidden;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: 0 20px 30px rgba(40, 40, 101, 0.16);
  transition: max-height 180ms ease, padding 180ms ease, opacity 160ms ease, transform 160ms ease;
}

.site-nav[data-open="true"] {
  max-height: calc(100vh - 96px);
  padding: 10px;
  overflow-y: auto;
  border-color: var(--gray-200);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 13px 14px;
}

.nav-cta {
  margin: 8px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--azure-500);
  box-shadow: 0 10px 26px rgba(101, 184, 231, 0.27);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--azure-600);
  box-shadow: 0 13px 30px rgba(101, 184, 231, 0.36);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 14px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-800);
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 420px at 88% -12%, rgba(101, 184, 231, 0.38), transparent 62%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.025), transparent 45%);
  content: "";
}

.hero-grid {
  position: relative;
  min-height: 650px;
  padding-block: 78px 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 64px;
}

.evidence-free-hero {
  max-width: 860px;
}

.evidence-free-hero .hero-copy,
.evidence-free-hero > div {
  max-width: 760px;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
}

.home-hero-layout {
  position: relative;
  min-height: 660px;
  padding-block: 104px 88px;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(56px, 7vw, 116px);
}

.home-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.property-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.property-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.property-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(40, 40, 101, 0.78);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-property-photo {
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.section-property-photo {
  height: 390px;
  margin-bottom: 34px;
}

.section-property-photo img {
  object-position: center 56%;
}

.property-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 52px;
}

.page-property-photo {
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.residential-property-photo img {
  object-position: center 60%;
}

.hero.home-hero h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 4.1vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-transform: none;
}

.home-hero .hero-copy > .hero-audiences {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--azure-400);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.45;
}

.hero-audiences strong,
.hero-audiences span {
  display: block;
}

.hero-audiences strong {
  color: var(--azure-400);
}

.hero-audiences span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9em;
  font-weight: 500;
}

.home-hero .hero-copy > .hero-summary {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
}

.home-tagline {
  margin-top: 34px !important;
  margin-bottom: 0 !important;
  color: rgba(101, 184, 231, 0.7) !important;
  font-family: var(--font-heading);
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.2 !important;
  letter-spacing: 0.15em;
}

.home-tagline span {
  margin-inline: 8px;
  color: rgba(255, 255, 255, 0.48);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.46);
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  box-shadow: none;
}

.button-quiet:hover {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.hero-art {
  position: relative;
  min-height: 500px;
  align-self: stretch;
  border-left: 1px solid rgba(101, 184, 231, 0.3);
  overflow: hidden;
  opacity: 0.78;
}

.hero-art-arc {
  position: absolute;
  top: 32px;
  left: 42px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(101, 184, 231, 0.58);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-art-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 150%;
  height: 1px;
  background: rgba(101, 184, 231, 0.5);
  transform: rotate(45deg);
  transform-origin: left center;
}

.hero-art-shield {
  position: absolute;
  right: -28px;
  bottom: -118px;
  width: 300px;
  height: 360px;
  border: 1px solid rgba(101, 184, 231, 0.55);
  border-radius: 12px 12px 48% 48%;
  transform: rotate(0.5deg);
}

.hero-art-spark {
  position: absolute;
  right: 108px;
  bottom: 82px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(101, 184, 231, 0.7);
  transform: rotate(45deg);
}

.hero-art-spark::before,
.hero-art-spark::after {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(101, 184, 231, 0.65);
  content: "";
}

.hero-art-spark::after {
  inset: 23px;
  background: rgba(101, 184, 231, 0.55);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--azure-700);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.contact-card .eyebrow {
  color: var(--azure-400);
}

.eyebrow-light {
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-900);
  line-height: 1.08;
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(58px, 7vw, 86px);
  line-height: 0.93;
}

.hero h1 span {
  color: var(--azure-400);
}

.hero-copy > p {
  max-width: 610px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.58;
}

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

.hero-brand-panel {
  min-height: 420px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.96)),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(101, 184, 231, 0.06) 14px 28px);
  box-shadow: var(--shadow-md);
}

.hero-brand-panel img {
  width: min(100%, 440px);
  margin: 0 auto 30px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.service-pills span {
  padding: 7px 12px;
  border: 1px solid var(--azure-100);
  border-radius: 999px;
  color: var(--navy-700);
  background: var(--azure-50);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip {
  color: var(--white);
  background: var(--navy-900);
}

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

.trust-item {
  position: relative;
  padding: 26px 28px 25px 22px;
}

.trust-item::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 3px;
  border-radius: 2px;
  background: var(--azure-500);
  content: "";
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--azure-400);
  font-family: var(--font-heading);
  font-size: 18px;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding-block: 92px;
}

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

.section-dark {
  color: var(--white);
  background: var(--navy-800);
}

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

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

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(43px, 5vw, 58px);
}

.section-heading p {
  margin: 0;
  color: var(--gray-500);
  font-size: 18px;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: var(--white);
}

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

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

.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--azure-500);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card-number,
.card-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--azure-700);
  background: var(--azure-50);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 9px;
  font-size: 24px;
}

.card p {
  margin: 0;
  color: var(--gray-500);
}

.card-dark {
  border-color: rgba(255, 255, 255, 0.15);
  border-top-color: var(--azure-500);
  color: var(--white);
  background: var(--navy-800);
}

.card-dark h3 {
  color: var(--white);
}

.card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.services-hero .container {
  padding-block: 62px 64px;
}

.services-hero p {
  max-width: 760px;
  font-size: 22px;
}

.services-section {
  padding-block: 72px 42px;
}

.commercial-services-section {
  padding-block: 42px 88px;
}

.services-heading {
  margin-bottom: 38px;
}

.services-heading .eyebrow {
  margin-bottom: 12px;
}

.services-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 58px);
}

.service-cards {
  gap: 25px;
}

.service-card {
  min-height: 305px;
  padding: 30px;
  border-top-width: 5px;
  border-radius: 17px;
  box-shadow: 0 8px 22px rgba(40, 40, 101, 0.13);
}

.service-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 23px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--azure-600);
  background: var(--azure-50);
}

.service-icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 2.2;
}

.service-card h3 {
  margin-bottom: 9px;
  font-size: 27px;
}

.service-card p {
  font-size: 18px;
  line-height: 1.6;
}

.service-card.card-dark {
  background: var(--navy-800);
}

.service-card.card-dark .service-icon {
  color: var(--azure-400);
  background: rgba(255, 255, 255, 0.1);
}

.service-card.card-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.service-area-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.service-area-grid li {
  padding: 18px 20px;
  border: 1px solid var(--azure-100);
  border-left: 4px solid var(--azure-500);
  border-radius: var(--radius-md);
  color: var(--navy-800);
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

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

.faq-item {
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: var(--navy-800);
  font-size: 23px;
}

.faq-item p {
  margin: 0;
  color: var(--gray-500);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 72px;
}

.split h2 {
  margin-bottom: 16px;
  font-size: clamp(43px, 5vw, 58px);
}

.split p {
  margin: 0 0 22px;
  color: var(--gray-500);
  font-size: 18px;
}

.feature-panel {
  padding: 38px;
  border-radius: 24px;
  color: var(--white);
  background: var(--navy-800);
  box-shadow: var(--shadow-md);
}

.feature-panel h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 31px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--azure-500);
  box-shadow: 0 0 0 5px rgba(101, 184, 231, 0.14);
  content: "";
}

.cta-band {
  color: var(--white);
  background: var(--navy-900);
}

.cta-band .container,
.site-footer .container {
  width: min(calc(100% - 72px), var(--wide-container));
}

.cta-inner {
  padding-block: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-inner h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 58px);
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.page-hero .container {
  position: relative;
  padding-block: 76px 70px;
}

.page-hero h1 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(54px, 7vw, 74px);
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding-top: 70px;
  counter-increment: steps;
}

.process-step::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--azure-500);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  content: "0" counter(steps);
}

.process-step h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.process-step p {
  margin: 0;
  color: var(--gray-500);
}

.empty-state {
  max-width: 850px;
  margin-inline: auto;
  padding: 64px;
  border: 2px dashed var(--gray-400);
  border-radius: 24px;
  text-align: center;
  background: var(--gray-50);
}

.empty-state-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--azure-700);
  background: var(--azure-100);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
}

.empty-state h2 {
  margin-bottom: 12px;
  font-size: 45px;
}

.empty-state p {
  max-width: 600px;
  margin: 0 auto 26px;
  color: var(--gray-500);
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: 46px;
}

.quote-form {
  padding: 34px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-800);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  color: var(--gray-700);
  background: var(--white);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--azure-500);
  outline: none;
  box-shadow: 0 0 0 4px var(--azure-50);
}

.form-note,
.form-status {
  margin: 16px 0 0;
  color: var(--gray-500);
  font-size: 14px;
}

.field-help {
  margin: 8px 0 0;
  color: var(--gray-500);
  font-size: 14px;
}

.sms-consent {
  margin: 4px 0 22px;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-50);
}

.sms-consent label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.55;
}

.sms-consent-copy p {
  margin: 0 0 16px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.65;
}

.sms-consent-copy a {
  overflow-wrap: anywhere;
}

.sms-consent-options {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

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

.sms-consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--azure-600);
}

.sms-consent input:focus-visible {
  outline: 3px solid var(--azure-200);
  outline-offset: 3px;
}

.sms-consent p {
  margin: 10px 0 0 32px;
  font-size: 14px;
}

.sms-consent a,
.policy-content a,
.footer-legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--azure-700);
  background: var(--azure-50);
}

.contact-aside {
  display: grid;
  gap: 20px;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-800);
}

.contact-card h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 34px;
}

.contact-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-card a {
  color: var(--azure-400);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-card h3 {
  margin: 24px 0 10px;
  color: var(--white);
  font-size: 20px;
}

.contact-socials,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-socials a,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
}

.contact-socials img,
.social-links img {
  display: block;
  width: 22px;
  height: 22px;
}

.contact-socials a:hover,
.social-links a:hover {
  border-color: var(--azure-400);
  color: var(--azure-400);
}

.area-card {
  padding: 26px;
  border: 1px solid var(--azure-100);
  border-radius: var(--radius-lg);
  background: var(--azure-50);
}

.area-card h3 {
  margin-bottom: 8px;
  color: var(--azure-700);
  font-size: 22px;
}

.area-card p {
  margin: 0;
  color: var(--navy-700);
}

.area-list {
  margin: 0;
  padding-left: 20px;
  color: var(--navy-700);
}

.area-list li + li {
  margin-top: 5px;
}

.site-footer {
  color: var(--white);
  background: var(--navy-800);
}

.footer-grid {
  padding-block: 48px;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(130px, 0.6fr) minmax(250px, 1fr) minmax(180px, 0.75fr);
  align-items: start;
  gap: clamp(30px, 4vw, 64px);
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  width: 210px;
  margin: 0 auto 16px;
}

.footer-brand p,
.footer-col p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
}

.footer-brand p {
  max-width: 460px;
  margin-inline: auto;
}

.footer-col h2 {
  margin-bottom: 13px;
  color: var(--azure-400);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-subheading {
  margin: 22px 0 8px;
  color: var(--azure-400);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-area-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.footer-area-list li + li {
  margin-top: 3px;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--azure-400);
}

.footer-col .social-links a {
  display: inline-flex;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .container {
  padding-block: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-legal a {
  color: inherit;
}

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

.policy-content {
  max-width: 860px;
}

.policy-content h2 {
  margin-top: 38px;
  font-size: clamp(26px, 3vw, 34px);
}

.policy-content h3 {
  margin-top: 28px;
  font-size: 21px;
}

.policy-content p,
.policy-content li {
  color: var(--gray-600);
  line-height: 1.75;
}

.policy-content ul,
.policy-content ol {
  padding-left: 24px;
}

.policy-updated {
  color: var(--gray-500);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .home-hero-layout {
    min-height: auto;
    padding-block: 72px;
    grid-template-columns: 1fr;
  }

  .hero-art {
    display: none;
  }

  .home-hero-grid,
  .property-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-property-photo,
  .page-property-photo {
    height: 360px;
  }

  .hero-brand-panel {
    min-height: 340px;
  }

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

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

  .service-card {
    min-height: 280px;
    padding: 22px 20px;
  }

  .service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }

  .service-icon svg {
    width: 25px;
    height: 25px;
  }

  .service-card h3 {
    font-size: clamp(20px, 3vw, 25px);
  }

  .service-card p {
    font-size: clamp(15px, 2.1vw, 17px);
    line-height: 1.5;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .cta-band .container,
  .site-footer .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand img {
    width: 156px;
    height: 60px;
  }

  .home-page .brand img {
    width: 140px;
    height: 58px;
  }

  .header-phone {
    font-size: 13px;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .hero-grid {
    padding-block: 58px 64px;
  }

  .home-hero-grid,
  .property-hero-grid {
    gap: 34px;
  }

  .hero-property-photo,
  .page-property-photo,
  .section-property-photo {
    height: 280px;
    border-radius: 16px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 70px);
  }

  .home-hero-layout {
    min-height: auto;
    padding-block: 62px 64px;
    display: block;
  }

  .hero.home-hero h1 {
    max-width: 360px;
    font-size: 40px;
    line-height: 1.08;
  }

  .home-hero .eyebrow {
    max-width: 340px;
    line-height: 1.6;
  }

  .home-hero .hero-copy > .hero-audiences {
    font-size: 17px;
  }

  .home-hero .hero-copy > .hero-summary {
    font-size: 17px;
    line-height: 1.65;
  }

  .hero-art {
    display: none;
  }

  .hero-copy > p,
  .page-hero p {
    font-size: 18px;
  }

  .services-section,
  .commercial-services-section {
    padding-block: 54px;
  }

  .service-card {
    min-height: 260px;
    padding: 18px 14px;
  }

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

  .service-card h3 {
    font-size: clamp(18px, 3.8vw, 23px);
  }

  .service-card p {
    font-size: clamp(14px, 2.8vw, 16px);
  }

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

  .hero-brand-panel {
    min-height: 280px;
    padding: 26px 20px;
  }

  .trust-grid,
  .cards,
  .process-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding-block: 18px;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading h2,
  .split h2 {
    font-size: 43px;
  }

  .cta-inner {
    padding-block: 52px;
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-inner .button {
    width: 100%;
  }

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

  .empty-state {
    padding: 42px 22px;
  }

  .empty-state h2 {
    font-size: 39px;
  }

  .quote-form {
    padding: 24px 20px;
  }

  .footer-bottom .container {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .service-area-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cards.service-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: 0;
    padding: 26px;
  }

  .service-card h3 {
    font-size: 25px;
  }

  .service-card p {
    font-size: 17px;
  }
}

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

/* Booking demo */
.booking-page {
  min-height: 100vh;
  background: #f3f7fb;
}

.booking-header .nav-wrap {
  min-height: 72px;
}

.booking-header-label {
  padding-left: 20px;
  border-left: 1px solid var(--gray-200);
  color: var(--gray-500);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-main {
  min-height: calc(100vh - 72px);
}

.booking-shell {
  padding-block: 44px 78px;
}

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

.booking-intro .eyebrow {
  margin-bottom: 8px;
}

.booking-intro h1 {
  margin-bottom: 4px;
  font-size: clamp(48px, 6vw, 66px);
}

.booking-intro p {
  max-width: 660px;
  margin: 0;
  color: var(--gray-500);
  font-size: 18px;
}

.demo-pill {
  padding: 8px 13px;
  border: 1px solid #bde8d0;
  border-radius: 999px;
  color: #176c43;
  background: #e9f9f0;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.demo-pill span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #22a864;
  box-shadow: 0 0 0 4px rgba(34, 168, 100, 0.13);
}

.booking-progress {
  position: relative;
  margin-bottom: 26px;
  padding: 18px 32px 17px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 92px;
}

.booking-progress ol {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.booking-progress li {
  min-width: 80px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  color: var(--gray-400);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-progress li span {
  width: 31px;
  height: 31px;
  border: 2px solid var(--gray-200);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gray-500);
  background: var(--white);
  font-size: 13px;
}

.booking-progress li.is-active,
.booking-progress li.is-complete {
  color: var(--navy-700);
}

.booking-progress li.is-active span,
.booking-progress li.is-complete span {
  border-color: var(--azure-500);
  color: var(--white);
  background: var(--azure-500);
}

.progress-track {
  position: absolute;
  z-index: 1;
  top: 33px;
  right: 11%;
  left: 11%;
  height: 2px;
  overflow: hidden;
  background: var(--gray-200);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--azure-500);
  transition: width 240ms ease;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 26px;
}

.booking-form,
.summary-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.booking-form {
  min-height: 620px;
  padding: 42px 46px 32px;
}

.booking-step[hidden],
.booking-confirmation[hidden] {
  display: none;
}

.booking-step.is-active {
  animation: booking-step-in 180ms ease-out;
}

@keyframes booking-step-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--azure-700);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-step h2 {
  margin-bottom: 8px;
  font-size: clamp(38px, 4vw, 49px);
}

.step-lead {
  margin: 0 0 30px;
  color: var(--gray-500);
  font-size: 17px;
}

.choice-group,
.date-picker,
.time-picker {
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.choice-group legend,
.date-picker legend,
.time-picker legend {
  width: 100%;
  margin-bottom: 10px;
  color: var(--navy-800);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.property-choice legend,
.service-choice legend {
  grid-column: 1 / -1;
}

.choice-card {
  position: relative;
  min-height: 122px;
  padding: 19px 18px 17px 64px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border 140ms ease, background 140ms ease, transform 140ms ease;
}

.choice-card:hover {
  border-color: var(--azure-400);
  transform: translateY(-1px);
}

.choice-card:has(input:checked) {
  border-color: var(--azure-500);
  background: var(--azure-50);
  box-shadow: 0 0 0 3px rgba(101, 184, 231, 0.08);
}

.choice-card input {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 19px;
  height: 19px;
  accent-color: var(--azure-500);
}

.choice-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--azure-700);
  background: var(--azure-50);
  font-size: 22px;
  font-weight: 700;
}

.choice-card:has(input:checked) .choice-icon {
  color: var(--white);
  background: var(--azure-500);
}

.choice-card strong {
  padding-right: 24px;
  color: var(--navy-800);
  font-family: var(--font-heading);
  font-size: 19px;
}

.choice-card small {
  margin-top: 3px;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.4;
}

.booking-address-grid {
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--gray-500);
  font-size: 13px;
}

.coverage-note {
  margin: 0;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  color: var(--navy-700);
  background: var(--azure-50);
  font-size: 13px;
}

.coverage-note span {
  margin-right: 6px;
  color: #176c43;
  font-weight: 700;
}

.service-option {
  min-height: 154px;
  padding: 25px 18px 18px;
}

.service-option em {
  margin-top: auto;
  padding-top: 15px;
  color: var(--azure-700);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.service-badge {
  position: absolute;
  top: -10px;
  left: 14px;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--white);
  background: var(--azure-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.date-options,
.time-options {
  display: grid;
  gap: 9px;
}

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

.date-options label,
.time-options label {
  cursor: pointer;
}

.date-options input,
.time-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.date-options span {
  min-height: 92px;
  padding: 10px 4px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  transition: border 140ms ease, background 140ms ease;
}

.date-options small,
.date-options em {
  color: var(--gray-500);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.date-options strong {
  margin: 5px 0 3px;
  color: var(--navy-800);
  font-size: 25px;
}

.date-options input:checked + span,
.time-options input:checked + span {
  border-color: var(--azure-500);
  color: var(--navy-800);
  background: var(--azure-50);
  box-shadow: 0 0 0 3px rgba(101, 184, 231, 0.08);
}

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

.time-options span {
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  display: block;
  color: var(--navy-800);
  font-family: var(--font-heading);
  font-weight: 700;
}

.time-options small {
  margin-left: 5px;
  color: var(--gray-500);
  font-family: var(--font-body);
  font-weight: 400;
}

.arrival-note {
  margin: 12px 0 0;
  color: var(--gray-500);
  font-size: 13px;
}

.booking-step .field label span {
  color: var(--gray-400);
  font-weight: 500;
  text-transform: none;
}

.booking-step .field textarea {
  min-height: 105px;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--gray-700);
  font-size: 14px;
}

.consent-check input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--azure-500);
}

.form-error {
  margin: 20px 0 0;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  color: #9c2d2d;
  background: #fff0f0;
  font-size: 14px;
}

.booking-actions {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.booking-next,
.booking-submit {
  margin-left: auto;
}

.booking-back {
  min-height: 48px;
  padding: 10px 20px;
  border: 0;
  color: var(--navy-700);
  background: transparent;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
}

.booking-summary {
  position: sticky;
  top: 98px;
}

.summary-card {
  overflow: hidden;
}

.summary-heading {
  padding: 17px 20px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-800);
  font-family: var(--font-heading);
  font-weight: 700;
}

.summary-lock {
  color: #176c43;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
}

.summary-placeholder {
  padding: 42px 30px;
  text-align: center;
}

.summary-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 15px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-800);
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 900;
}

.summary-placeholder p {
  margin: 0;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.5;
}

.summary-card dl {
  margin: 0;
  padding: 8px 20px;
}

.summary-card dl div {
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-200);
}

.summary-card dl div:last-child {
  border-bottom: 0;
}

.summary-card dt {
  color: var(--gray-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-card dd {
  margin: 3px 0 0;
  color: var(--navy-800);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.summary-support {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  color: var(--gray-500);
  background: var(--gray-50);
  font-size: 13px;
}

.summary-support strong {
  color: var(--navy-800);
}

.review-list {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.review-row {
  padding: 17px 18px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

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

.review-row span {
  display: block;
  margin-bottom: 3px;
  color: var(--gray-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-row strong {
  color: var(--navy-800);
  font-size: 15px;
  line-height: 1.45;
}

.review-row strong small {
  color: var(--gray-500);
  font-weight: 500;
}

.review-row button {
  padding: 2px;
  border: 0;
  color: var(--azure-700);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.booking-disclaimer {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--azure-500);
  border-radius: 8px;
  color: var(--navy-800);
  background: var(--azure-50);
}

.booking-disclaimer p {
  margin: 2px 0 0;
  color: var(--gray-500);
  font-size: 13px;
}

.booking-confirmation {
  min-height: calc(100vh - 72px);
  padding: 58px 20px 80px;
  background:
    radial-gradient(700px 340px at 50% 0, rgba(101, 184, 231, 0.18), transparent 70%),
    var(--gray-50);
}

.confirmation-card {
  width: min(100%, 690px);
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.confirmation-check {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #20a463;
  box-shadow: 0 0 0 9px #e6f7ee;
  font-size: 31px;
  font-weight: 700;
}

.confirmation-card h1 {
  margin-bottom: 9px;
  font-size: clamp(45px, 7vw, 62px);
}

.confirmation-lead {
  margin: 0 auto 24px;
  color: var(--gray-500);
  font-size: 17px;
}

.confirmation-number {
  width: fit-content;
  margin: 0 auto 25px;
  padding: 10px 18px;
  border-radius: 10px;
  color: var(--navy-800);
  background: var(--azure-50);
}

.confirmation-number span {
  margin-right: 8px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.confirmation-number strong {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.confirmation-details {
  margin-bottom: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  text-align: left;
  overflow: hidden;
}

.confirmation-details div {
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 15px;
}

.confirmation-details div:last-child {
  border-bottom: 0;
}

.confirmation-details span {
  color: var(--gray-500);
  font-size: 13px;
}

.confirmation-details strong {
  color: var(--navy-800);
  font-size: 14px;
}

.demo-notice {
  margin: 0 0 25px;
  padding: 13px;
  border-radius: 8px;
  color: #715a22;
  background: #fff8df;
  font-size: 13px;
}

.confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.button-light {
  border-color: var(--gray-200);
  color: var(--navy-700);
  background: var(--white);
  box-shadow: none;
}

.button-light:hover {
  color: var(--azure-700);
  background: var(--gray-50);
  box-shadow: none;
}

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

  .booking-summary {
    position: static;
    grid-row: 1;
  }

  .summary-placeholder {
    padding: 22px;
  }

  .summary-mark {
    display: none;
  }

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

  .summary-card dl div {
    border: 0;
  }
}

@media (max-width: 680px) {
  .booking-header-label {
    display: none;
  }

  .booking-header .header-phone {
    padding: 0 10px;
    font-size: 0;
  }

  .booking-header .header-phone::after {
    font-size: 13px;
    content: "Call us";
  }

  .booking-shell {
    padding-block: 30px 55px;
  }

  .booking-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .booking-intro h1 {
    font-size: 49px;
  }

  .booking-progress {
    padding: 13px 11px 12px;
  }

  .booking-progress li {
    min-width: 0;
    font-size: 9px;
  }

  .booking-progress li span {
    width: 27px;
    height: 27px;
  }

  .progress-track {
    top: 26px;
    right: 10%;
    left: 10%;
  }

  .booking-form {
    min-height: 0;
    padding: 28px 20px 24px;
  }

  .property-choice,
  .service-choice,
  .booking-address-grid,
  .time-options {
    grid-template-columns: 1fr;
  }

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

  .date-options span {
    min-height: 79px;
  }

  .summary-card dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .summary-card dl div {
    border-bottom: 1px solid var(--gray-200);
  }

  .summary-support {
    flex-direction: column;
  }

  .booking-next,
  .booking-submit {
    flex: 1;
  }

  .confirmation-card {
    padding: 38px 20px;
  }

  .confirmation-details div {
    grid-template-columns: 85px 1fr;
  }

  .confirmation-actions {
    flex-direction: column;
  }
}

/* Version 2.2 coordinated visual system */
.brand img,
.home-page .brand img {
  width: 214px;
  height: 70px;
}

body:not(.booking-page) main h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-transform: none;
}

body:not(.booking-page) main .section-heading h2,
body:not(.booking-page) main .split h2,
body:not(.booking-page) main .cta-inner h2 {
  font-size: clamp(36px, 4vw, 48px);
}

.internal-hero::before {
  background:
    radial-gradient(700px 360px at 90% 0%, rgba(101, 184, 231, 0.24), transparent 66%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.018), transparent 48%);
}

.internal-hero .container {
  padding-block: clamp(68px, 8vw, 104px);
}

.internal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.internal-hero-copy {
  max-width: 760px;
}

.internal-hero h1 {
  max-width: 16ch;
  margin: 10px 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 5.3vw, 58px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: none;
}

.internal-hero .hero-supporting-line {
  max-width: 650px;
  margin-bottom: 16px;
  color: var(--azure-300);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 25px);
  font-weight: 700;
  line-height: 1.35;
}

.internal-hero .internal-hero-copy > p:not(.hero-supporting-line) {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
}

.internal-hero .button {
  margin-top: 22px;
}

.hero-detail-panel {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid var(--azure-400);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.hero-detail-panel h2 {
  margin: 10px 0 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: none;
}

.hero-detail-panel p {
  font-size: 17px;
  line-height: 1.65;
}

.services-index-hero {
  color: var(--navy-900);
  background: var(--gray-50);
}

.services-index-hero::before {
  background:
    radial-gradient(700px 360px at 92% -6%, rgba(101, 184, 231, 0.2), transparent 66%),
    linear-gradient(120deg, rgba(40, 40, 101, 0.025), transparent 48%);
}

.services-index-hero h1 {
  color: var(--navy-900);
}

.services-index-hero .eyebrow {
  color: var(--azure-700);
}

.services-index-hero .hero-supporting-line {
  color: var(--navy-700);
}

.services-index-hero .internal-hero-copy > p:not(.hero-supporting-line) {
  color: var(--gray-600);
}

.hero-detail-panel-light {
  border-color: var(--gray-200);
  border-left-color: var(--azure-500);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.hero-detail-panel-light h2 {
  color: var(--navy-900);
}

.hero-detail-panel-light p {
  color: var(--gray-500);
}

.commercial-service-index .section-heading,
.commercial-services-section .section-heading,
.services-section .section-heading {
  max-width: 700px;
}

.commercial-card-grid,
.service-cards {
  align-items: stretch;
}

.commercial-card-grid .card,
.service-card {
  min-height: 0;
}

.contact-hero {
  color: var(--navy-900);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.contact-hero::before {
  background:
    radial-gradient(680px 330px at 86% 5%, rgba(101, 184, 231, 0.18), transparent 66%),
    linear-gradient(120deg, rgba(40, 40, 101, 0.02), transparent 48%);
}

.contact-hero h1 {
  color: var(--navy-900);
}

.contact-hero .eyebrow {
  color: var(--azure-700);
}

.contact-hero .internal-hero-copy > p {
  max-width: 720px;
  color: var(--gray-600);
}

.contact-form-section {
  padding-block: clamp(58px, 7vw, 86px);
}

.contact-form-section .quote-form {
  box-shadow: 0 14px 38px rgba(40, 40, 101, 0.09);
}

.contact-form-section .contact-card {
  padding: clamp(28px, 4vw, 38px);
}

.contact-form-section .contact-card h2 {
  max-width: 14ch;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-transform: none;
}

.footer-grid {
  grid-template-columns: minmax(280px, 1.35fr) minmax(130px, 0.55fr) minmax(250px, 0.95fr) minmax(210px, 0.8fr);
  gap: clamp(28px, 3.5vw, 54px);
}

.footer-brand {
  text-align: left;
}

.footer-brand img {
  margin: 0 0 16px;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
}

.footer-brand .footer-tagline {
  margin-top: 16px;
  color: var(--azure-300);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

@media (max-width: 980px) {
  .internal-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-detail-panel {
    max-width: 680px;
  }

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

@media (max-width: 680px) {
  .brand img,
  .home-page .brand img {
    width: 140px;
    height: 58px;
  }

  .internal-hero .container {
    padding-block: 54px 58px;
  }

  .internal-hero h1 {
    max-width: 11ch;
    font-size: 40px;
    line-height: 1.08;
  }

  body:not(.booking-page) main .section-heading h2,
  body:not(.booking-page) main .split h2,
  body:not(.booking-page) main .cta-inner h2 {
    font-size: 34px;
  }

  .internal-hero .hero-supporting-line {
    font-size: 19px;
  }

  .internal-hero .internal-hero-copy > p:not(.hero-supporting-line),
  .contact-hero .internal-hero-copy > p {
    font-size: 17px;
    line-height: 1.65;
  }

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

  .hero-detail-panel {
    padding: 26px 22px;
  }

  .hero-detail-panel h2 {
    font-size: 28px;
  }

  .contact-form-section {
    padding-block: 48px 60px;
  }

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

  .footer-brand {
    text-align: left;
  }

  .footer-brand img {
    margin-inline: 0;
  }
}
