
:root {
  --navy-950: #031a30;
  --navy-900: #06294b;
  --navy-850: #09365f;
  --navy-800: #0b3f70;
  --navy-700: #0c548f;
  --blue-500: #2a83c4;
  --orange-600: #ed6a00;
  --orange-500: #ff8200;
  --orange-400: #ff982b;
  --orange-100: #fff0df;
  --ink-950: #0b1725;
  --ink-700: #3c4c60;
  --ink-500: #657386;
  --line: #dfe6ed;
  --mist: #f4f7fa;
  --white: #ffffff;
  --shadow-sm: 0 8px 30px rgba(6, 41, 75, 0.08);
  --shadow-md: 0 18px 48px rgba(6, 41, 75, 0.14);
  --shadow-lg: 0 30px 90px rgba(3, 26, 48, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink-950);
  background: var(--white);
  font-family:
    "Avenir Next", "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--orange-500);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--orange-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.eyebrow--light {
  color: #ff9f43;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(
    110deg,
    transparent 18%,
    rgba(255, 255, 255, 0.34) 48%,
    transparent 72%
  );
  transform: translateX(-125%);
  transition: transform 0.7s var(--ease);
}

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

.button:hover::before {
  transform: translateX(125%);
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 130, 0, 0.52);
  outline-offset: 3px;
}

.button--orange {
  color: var(--navy-950);
  background: linear-gradient(135deg, #ffad43 0%, var(--orange-500) 48%, #f06b00 100%);
  box-shadow:
    0 12px 26px rgba(237, 106, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.button--orange:hover {
  box-shadow:
    0 18px 34px rgba(237, 106, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.button--navy {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  box-shadow: 0 12px 28px rgba(6, 41, 75, 0.22);
}

.button--navy:hover {
  box-shadow: 0 18px 38px rgba(6, 41, 75, 0.3);
}

.button--glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button--glass:hover,
.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.56);
}

.button--ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.78rem;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-800);
  font-size: 0.84rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.3s var(--ease);
}

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

/* Header */
.trust-ribbon {
  position: relative;
  z-index: 80;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(90deg, rgba(255, 130, 0, 0.12), transparent 35%),
    var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-ribbon__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

.trust-ribbon a {
  transition: color 0.25s ease;
}

.trust-ribbon a:hover {
  color: var(--orange-400);
}

.trust-ribbon b {
  color: #ffab42;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(6, 41, 75, 0.08);
  box-shadow: 0 6px 26px rgba(3, 26, 48, 0.05);
  backdrop-filter: saturate(180%) blur(18px);
}

.site-header__inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  display: inline-flex;
  width: 110px;
  height: 84px;
  flex: 0 0 auto;
  align-items: center;
}

.brand__logo {
  position: absolute;
  top: -10px;
  left: 0;
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(6, 41, 75, 0.16));
}

.desktop-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(15px, 1.45vw, 26px);
}

.desktop-nav > a,
.nav-mega__trigger {
  position: relative;
  display: inline-flex;
  min-height: 84px;
  align-items: center;
  gap: 5px;
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.desktop-nav > a::after,
.nav-mega__trigger::after {
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--orange-500);
  border-radius: 999px;
  transition:
    right 0.3s var(--ease),
    left 0.3s var(--ease);
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after,
.nav-mega:hover .nav-mega__trigger::after,
.nav-mega:focus-within .nav-mega__trigger::after,
.nav-mega.is-active .nav-mega__trigger::after {
  right: 0;
  left: 0;
}

.desktop-nav > a.is-active,
.nav-mega.is-active .nav-mega__trigger {
  color: var(--navy-700);
}

.nav-mega {
  position: static;
}

.nav-mega__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: min(920px, calc(100vw - 60px));
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 0;
  overflow: hidden;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translate(-50%, -12px) scale(0.985);
  transform-origin: top center;
  transition:
    opacity 0.25s ease,
    transform 0.35s var(--ease),
    visibility 0.25s;
}

.nav-mega__panel::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 16px;
  content: "";
}

.nav-mega:hover .nav-mega__panel,
.nav-mega:focus-within .nav-mega__panel {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.nav-mega__panel > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 27px;
}

.nav-mega__panel > div + div {
  border-left: 1px solid var(--line);
}

.nav-eyebrow {
  margin-bottom: 10px;
  color: var(--orange-600);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-mega__panel > div > a:not(.text-link) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  color: var(--navy-950);
  font-size: 0.79rem;
  font-weight: 720;
  transition:
    color 0.2s ease,
    transform 0.25s var(--ease);
}

.nav-mega__panel > div > a:hover {
  color: var(--orange-600);
  transform: translateX(3px);
}

.nav-mega__feature {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(34, 113, 173, 0.28), transparent 46%),
    var(--navy-950);
}

.nav-mega__panel > .nav-mega__feature > a:not(.text-link) {
  color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mega__panel > .nav-mega__feature > a:not(.text-link) span {
  color: #ffae4d;
  transition: transform 0.25s var(--ease);
}

.nav-mega__panel > .nav-mega__feature > a:not(.text-link):hover,
.nav-mega__panel > .nav-mega__feature > a:not(.text-link):focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 8px 0 0 rgba(255, 255, 255, 0.07), -8px 0 0 rgba(255, 255, 255, 0.07);
}

.nav-mega__panel > .nav-mega__feature > a:not(.text-link):hover span,
.nav-mega__panel > .nav-mega__feature > a:not(.text-link):focus-visible span {
  transform: translateX(4px);
}

.nav-mega__feature strong {
  max-width: 240px;
  margin: 10px 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.nav-mega__feature p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.65;
}

.nav-mega__feature .text-link {
  color: #ffae4d;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}

.header-phone small {
  color: var(--ink-500);
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-phone b {
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 0.82rem;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  cursor: pointer;
  background: var(--navy-950);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 9px 22px rgba(3, 26, 48, 0.2);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.mobile-drawer,
.drawer-backdrop {
  display: none;
}

/* Home hero */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.home-hero__media,
.home-hero__veil {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-settle 1.8s var(--ease) both;
}

@keyframes hero-settle {
  from {
    opacity: 0.5;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.home-hero__veil {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(3, 20, 38, 0.97) 0%,
      rgba(3, 26, 48, 0.9) 41%,
      rgba(3, 26, 48, 0.56) 67%,
      rgba(3, 26, 48, 0.32) 100%
    ),
    linear-gradient(0deg, rgba(3, 26, 48, 0.64), transparent 45%);
}

.home-hero__veil::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 15% 20%, rgba(41, 132, 197, 0.24), transparent 33%),
    linear-gradient(115deg, transparent 0 62%, rgba(255, 130, 0, 0.07) 62% 63%, transparent 63%);
}

.home-hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 6vw, 92px);
  padding-top: 54px;
  padding-bottom: 64px;
}

.home-hero__copy {
  max-width: 690px;
  padding: 38px 0;
  animation: rise-in 0.85s 0.1s var(--ease) both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.35rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.99;
  text-wrap: balance;
}

.home-hero h1 span {
  color: #ff9a2e;
}

.home-hero__lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.72;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.home-hero__proof {
  display: grid;
  max-width: 690px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero__proof > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 19px 18px 0 0;
}

.home-hero__proof > div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.home-hero__proof b {
  color: var(--white);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.home-hero__proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  line-height: 1.35;
}

.home-hero__form {
  animation: form-in 0.95s 0.24s var(--ease) both;
}

@keyframes form-in {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.estimate-form {
  position: relative;
  padding: 33px;
  color: var(--ink-950);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  box-shadow:
    0 28px 80px rgba(2, 15, 29, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}

.estimate-form::before {
  position: absolute;
  top: 0;
  right: 36px;
  left: 36px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange-500), #ffb157, var(--orange-500));
  border-radius: 0 0 999px 999px;
}

.estimate-form__heading {
  margin-bottom: 19px;
}

.estimate-form__heading .eyebrow {
  margin-bottom: 8px;
  font-size: 0.63rem;
}

.estimate-form__heading h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.65rem;
  font-weight: 780;
  letter-spacing: -0.035em;
}

.estimate-form__heading p {
  margin: 5px 0 0;
  color: var(--ink-500);
  font-size: 0.78rem;
}

.estimate-form__fee-notice {
  display: grid;
  grid-template-columns: 27px 1fr;
  align-items: start;
  gap: 10px;
  margin: -3px 0 15px;
  padding: 10px 12px;
  color: var(--ink-700);
  background: linear-gradient(135deg, rgba(255, 244, 230, 0.96), rgba(255, 251, 245, 0.98));
  border: 1px solid rgba(234, 111, 23, 0.22);
  border-radius: 12px;
  box-shadow: inset 3px 0 0 var(--orange-500);
}

.estimate-form__fee-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--orange-500), var(--orange-600));
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(234, 111, 23, 0.2);
  font-size: 0.72rem;
  font-weight: 900;
  font-style: normal;
}

.estimate-form__fee-notice p {
  margin: 0;
  font-size: 0.66rem;
  line-height: 1.48;
}

.estimate-form__fee-notice strong {
  display: block;
  margin-bottom: 1px;
  color: var(--navy-950);
  font-size: 0.68rem;
}

.estimate-form__fee-notice a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--orange-600);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.estimate-form__fee-notice a:hover,
.estimate-form__fee-notice a:focus-visible {
  color: var(--navy-950);
}

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

.form-grid label {
  display: block;
  min-width: 0;
}

.form-grid label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink-950);
  background: #f8fafc;
  border: 1px solid #d9e1e8;
  border-radius: 11px;
  outline: none;
  font-size: 0.76rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

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

.recaptcha-wrap {
  min-height: 0;
  overflow-x: auto;
}

.recaptcha-wrap:empty {
  display: none;
}

.recaptcha-preview {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 10px 13px;
  color: var(--ink-700);
  background: linear-gradient(135deg, #f3f7fa, #fff);
  border: 1px solid #d9e1e8;
  border-radius: 11px;
}

.recaptcha-preview > span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-950);
  background: var(--orange-100);
  border-radius: 9px;
  font-size: 0.74rem;
  font-weight: 900;
}

.recaptcha-preview p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.recaptcha-preview b {
  color: var(--navy-950);
  font-size: 0.67rem;
}

.recaptcha-preview small {
  margin-top: 2px;
  color: var(--ink-500);
  font-size: 0.56rem;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder,
.form-grid select {
  color: #6d7988;
}

.form-grid input:hover,
.form-grid select:hover,
.form-grid textarea:hover {
  background: var(--white);
  border-color: #c0ccd7;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(255, 130, 0, 0.1);
}

.estimate-form .button {
  margin-top: 13px;
}

.estimate-form__note {
  margin: 10px 0 0;
  color: var(--ink-500);
  font-size: 0.64rem;
  line-height: 1.4;
  text-align: center;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll i {
  display: block;
  width: 1px;
  height: 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.hero-scroll i::after {
  display: block;
  width: 1px;
  height: 10px;
  content: "";
  background: var(--orange-400);
  animation: scroll-cue 1.7s ease-in-out infinite;
}

@keyframes scroll-cue {
  from {
    transform: translateY(-11px);
  }
  to {
    transform: translateY(26px);
  }
}

/* Trust strip */
.confidence-bar {
  position: relative;
  z-index: 5;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

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

.confidence-bar__grid > div {
  display: flex;
  min-height: 106px;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
}

.confidence-bar__grid > div + div {
  border-left: 1px solid var(--line);
}

.confidence-bar__grid > div > span {
  color: var(--orange-500);
  font-size: 0.67rem;
  font-weight: 900;
}

.confidence-bar p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink-500);
  font-size: 0.66rem;
  line-height: 1.5;
}

.confidence-bar p b {
  color: var(--navy-950);
  font-size: 0.78rem;
}

/* Shared sections */
.section {
  position: relative;
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 47px;
}

.section-heading h2,
.proof-copy h2,
.review-heading h2,
.areas-layout h2,
.footer-cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.35rem, 4vw, 4.05rem);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-wrap: balance;
}

.section-heading > p,
.areas-layout > div > p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.98rem;
  line-height: 1.75;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.section--services {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 15%, rgba(26, 118, 181, 0.07), transparent 28%),
    linear-gradient(180deg, #fff, #f7f9fb);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 36px rgba(6, 41, 75, 0.08);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.35s ease;
}

.service-card:hover {
  border-color: rgba(255, 130, 0, 0.48);
  box-shadow: 0 27px 60px rgba(6, 41, 75, 0.16);
  transform: translateY(-9px);
}

.service-card__image {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
  background: var(--navy-900);
}

.service-card__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 26, 48, 0.34), transparent 48%);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-card:hover .service-card__image img {
  transform: scale(1.055);
}

.service-card__image > span {
  position: absolute;
  right: 17px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 11px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.service-card__body {
  position: relative;
  padding: 30px;
}

.service-card__number {
  position: absolute;
  top: 29px;
  right: 28px;
  color: rgba(6, 41, 75, 0.22);
  font-size: 0.74rem;
  font-weight: 900;
}

.service-card h3 {
  max-width: 82%;
  margin: 0;
  color: var(--navy-950);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.service-card p {
  min-height: 86px;
  margin: 14px 0 18px;
  color: var(--ink-700);
  font-size: 0.82rem;
  line-height: 1.75;
}

/* Proof */
.section--proof {
  overflow: hidden;
  background: var(--white);
}

.section--proof::before {
  position: absolute;
  top: 10%;
  right: -160px;
  width: 480px;
  height: 480px;
  content: "";
  background: radial-gradient(circle, rgba(255, 130, 0, 0.08), transparent 68%);
  border-radius: 50%;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.proof-visual {
  position: relative;
  padding: 0 42px 48px 0;
}

.proof-visual::before {
  position: absolute;
  top: 34px;
  right: 0;
  bottom: 0;
  left: 44px;
  content: "";
  background:
    linear-gradient(145deg, rgba(30, 112, 170, 0.2), transparent 54%),
    var(--navy-950);
  border-radius: var(--radius-lg);
}

.proof-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 4.1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.proof-visual__card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: 270px;
  flex-direction: column;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border: 7px solid var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.proof-visual__card strong {
  font-size: 1.05rem;
}

.proof-visual__card span {
  margin-top: 4px;
  color: rgba(3, 26, 48, 0.78);
  font-size: 0.72rem;
  line-height: 1.5;
}

.proof-copy h2 {
  margin-bottom: 23px;
}

.proof-copy > p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.96rem;
  line-height: 1.8;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-list i {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-950);
  background: var(--orange-100);
  border-radius: 50%;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.check-list span {
  display: flex;
  flex-direction: column;
  color: var(--ink-500);
  font-size: 0.78rem;
  line-height: 1.55;
}

.check-list b {
  margin-bottom: 2px;
  color: var(--navy-950);
  font-size: 0.87rem;
}

/* Projects */
.section--projects {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(29, 114, 177, 0.32), transparent 27%),
    linear-gradient(145deg, var(--navy-950), #07345f);
}

.section--projects::before {
  position: absolute;
  right: -90px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.02),
    0 0 0 160px rgba(255, 255, 255, 0.015);
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.68);
}

.project-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 19px;
}

.project-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}

.project-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 26, 48, 0.96), rgba(3, 26, 48, 0.04) 67%);
  transition: background 0.45s ease;
}

.project-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 27px;
}

.project-card__content small {
  color: #ffad4a;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card__content strong {
  max-width: 310px;
  margin-top: 7px;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.project-card__content i {
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 750;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s var(--ease),
    max-height 0.35s ease,
    margin-top 0.35s ease;
}

.project-card:hover img {
  transform: scale(1.065);
}

.project-card:hover .project-card__shade {
  background: linear-gradient(0deg, rgba(3, 26, 48, 0.98), rgba(3, 26, 48, 0.08) 74%);
}

.project-card:hover .project-card__content i {
  max-height: 30px;
  margin-top: 13px;
  opacity: 1;
  transform: translateY(0);
}

.section-action--light {
  position: relative;
  z-index: 1;
}

/* Reviews */
.section--reviews {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 7%, rgba(255, 130, 0, 0.09), transparent 22%),
    #f7f9fb;
}

.review-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}

.review-heading h2 {
  max-width: 760px;
}

.review-total {
  display: grid;
  grid-template-columns: auto 145px;
  align-items: center;
  column-gap: 13px;
}

.review-total strong {
  grid-row: span 2;
  color: var(--navy-950);
  font-size: 4.25rem;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.review-total span {
  color: var(--ink-500);
  font-size: 0.69rem;
  line-height: 1.3;
}

.review-total b {
  color: var(--orange-500);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

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

.review-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(6, 41, 75, 0.07);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.review-card:hover {
  box-shadow: 0 25px 55px rgba(6, 41, 75, 0.13);
  transform: translateY(-7px);
}

.review-card__top {
  display: flex;
  min-height: 38px;
  align-items: flex-start;
  justify-content: space-between;
}

.stars {
  color: var(--orange-500);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.quote-mark {
  height: 34px;
  color: rgba(6, 41, 75, 0.1);
  font-family: Georgia, serif;
  font-size: 4.2rem;
  line-height: 0.85;
}

.review-card blockquote {
  flex: 1;
  margin: 17px 0 24px;
  color: var(--ink-700);
  font-size: 0.86rem;
  line-height: 1.72;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.review-card footer > span:last-child {
  display: flex;
  flex-direction: column;
}

.review-card footer b {
  color: var(--navy-950);
  font-size: 0.77rem;
}

.review-card footer small {
  margin-top: 2px;
  color: var(--ink-500);
  font-size: 0.65rem;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 25px;
  margin-top: 35px;
  color: #7a8794;
}

.platform-row span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 700;
}

/* Areas */
.section--areas {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(238, 244, 248, 0.95), rgba(255, 255, 255, 0.94)),
    url("/images/Escondido/00-hero@960.jpg") center/cover;
}

.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.62fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.areas-layout h2 {
  max-width: 720px;
}

.areas-layout > div > p {
  max-width: 680px;
  margin-top: 22px;
}

.area-links {
  display: grid;
  max-width: 750px;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  margin: 31px 0 27px;
}

.area-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 2px;
  color: var(--navy-900);
  border-bottom: 1px solid rgba(6, 41, 75, 0.13);
  font-size: 0.8rem;
  font-weight: 760;
  transition:
    color 0.25s ease,
    padding 0.3s var(--ease);
}

.area-links a:hover {
  padding-right: 6px;
  padding-left: 6px;
  color: var(--orange-600);
}

.areas-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(40, 127, 192, 0.33), transparent 35%),
    var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.areas-card::after {
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.025);
}

.areas-card__pin {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--navy-950);
  background: var(--orange-500);
  border-radius: 18px;
  box-shadow: 0 12px 27px rgba(255, 130, 0, 0.25);
  font-size: 1.45rem;
}

.areas-card > div {
  display: flex;
  flex-direction: column;
}

.areas-card small {
  color: var(--orange-400);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.areas-card strong {
  margin-top: 7px;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
}

.areas-card > div span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
}

.areas-card p {
  margin: 23px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.79rem;
  line-height: 1.7;
}

.areas-card .button {
  position: relative;
  z-index: 2;
}

/* Footer */
.site-footer {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 118, 180, 0.26), transparent 25%),
    var(--navy-950);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 45px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.72fr);
  gap: 58px;
  padding: 66px 0 56px;
}

.brand--footer {
  width: 160px;
  height: 122px;
}

.brand--footer .brand__logo {
  top: -15px;
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

.footer-brand > p {
  max-width: 370px;
  margin: 22px 0;
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-proof {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.69rem;
  line-height: 1.65;
}

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

.footer-grid h3 {
  margin: 8px 0 10px;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  line-height: 1.5;
  transition:
    color 0.2s ease,
    transform 0.25s var(--ease);
}

.footer-grid a:hover {
  color: var(--orange-400);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
}

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

.footer-bottom a:hover {
  color: var(--orange-400);
}

.mobile-dock {
  display: none;
}

/* Interior pages */
.interior-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 590px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.interior-hero > img,
.interior-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.interior-hero > img {
  object-fit: cover;
  animation: hero-settle 1.5s var(--ease) both;
}

.interior-hero__shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(3, 20, 38, 0.97) 0%,
      rgba(3, 26, 48, 0.85) 48%,
      rgba(3, 26, 48, 0.44) 76%,
      rgba(3, 26, 48, 0.28) 100%
    ),
    linear-gradient(0deg, rgba(3, 26, 48, 0.5), transparent 58%);
}

.interior-hero__shade::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 22%, rgba(36, 126, 190, 0.25), transparent 30%),
    linear-gradient(115deg, transparent 0 64%, rgba(255, 130, 0, 0.07) 64% 65%, transparent 65%);
}

.interior-hero__content {
  position: relative;
  z-index: 3;
  padding-top: 88px;
  padding-bottom: 92px;
  animation: rise-in 0.8s 0.08s var(--ease) both;
}

.interior-hero__content h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.6rem, 6.2vw, 6.2rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.interior-hero__content > p {
  max-width: 710px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.75;
}

.interior-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.interior-hero--compact {
  min-height: 520px;
}

.interior-hero--compact .interior-hero__content h1 {
  max-width: 920px;
  font-size: clamp(3.25rem, 5.7vw, 5.5rem);
}

.interior-trust {
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(6, 41, 75, 0.1);
  box-shadow: 0 14px 38px rgba(3, 26, 48, 0.06);
}

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

.interior-trust__grid > span {
  position: relative;
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 30px 18px 48px;
}

.interior-trust__grid > span::before {
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--navy-950);
  content: "✓";
  background: linear-gradient(135deg, #ffb24e, var(--orange-500));
  border-radius: 7px;
  box-shadow: 0 6px 14px rgba(237, 106, 0, 0.2);
  font-size: 0.65rem;
  font-weight: 950;
  transform: translateY(-50%);
}

.interior-trust__grid > span + span {
  border-left: 1px solid rgba(6, 41, 75, 0.1);
}

.interior-trust__grid b {
  color: var(--navy-950);
  font-size: 0.74rem;
  letter-spacing: -0.01em;
}

.interior-trust__grid small {
  margin-top: 4px;
  color: var(--ink-500);
  font-size: 0.62rem;
  line-height: 1.35;
}

.directory-section {
  background:
    radial-gradient(circle at 0 0, rgba(28, 120, 183, 0.07), transparent 24%),
    var(--mist);
}

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

.directory-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.42s var(--ease),
    box-shadow 0.42s var(--ease),
    border-color 0.3s ease;
}

.directory-card:hover {
  border-color: rgba(255, 130, 0, 0.42);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.directory-card__image {
  display: block;
  height: 220px;
  overflow: hidden;
  background: var(--navy-900);
}

.directory-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

.directory-card:hover .directory-card__image img {
  transform: scale(1.055);
}

.directory-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px;
}

.directory-card__body > span {
  color: var(--orange-600);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-card__body h2 {
  margin: 9px 0 0;
  color: var(--navy-950);
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.directory-card__body p {
  flex: 1;
  margin: 13px 0 19px;
  color: var(--ink-700);
  font-size: 0.79rem;
  line-height: 1.72;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 86px;
  background:
    radial-gradient(circle at 88% 14%, rgba(39, 127, 191, 0.1), transparent 25%),
    linear-gradient(180deg, #f5f8fb, #fff);
}

.detail-hero::before {
  position: absolute;
  top: -130px;
  left: -190px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(6, 41, 75, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(6, 41, 75, 0.02);
}

.detail-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.84fr);
  align-items: center;
  gap: clamp(55px, 7vw, 94px);
}

.detail-hero__copy h1 {
  max-width: 700px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(3.15rem, 5.3vw, 5.25rem);
  font-weight: 770;
  letter-spacing: -0.06em;
  line-height: 0.99;
  text-wrap: balance;
}

.detail-hero__copy > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.75;
}

.detail-hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.detail-hero__proofs span {
  padding: 8px 11px;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.13);
  border-radius: 999px;
  box-shadow: 0 5px 15px rgba(6, 41, 75, 0.05);
  font-size: 0.65rem;
  font-weight: 780;
}

.detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.detail-hero__image {
  position: relative;
  padding: 0 33px 34px 0;
}

.detail-hero__image::before {
  position: absolute;
  top: 36px;
  right: 0;
  bottom: 0;
  left: 36px;
  content: "";
  background:
    linear-gradient(145deg, rgba(34, 121, 182, 0.28), transparent 50%),
    var(--navy-950);
  border-radius: var(--radius-lg);
}

.detail-hero__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.04 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.detail-hero__image > span {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  color: var(--navy-950);
  background: linear-gradient(135deg, #ffae4a, var(--orange-500));
  border: 6px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  font-size: 0.64rem;
}

.detail-hero__image > span b {
  font-size: 0.78rem;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: clamp(60px, 8vw, 110px);
}

.article-content h2,
.review-method h2,
.project-story h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-wrap: balance;
}

.article-content > p,
.project-story p {
  margin: 22px 0 0;
  color: var(--ink-700);
  font-size: 0.94rem;
  line-height: 1.82;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 34px;
}

.process-cards article {
  padding: 23px;
  background: var(--mist);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: 17px;
}

.process-cards article > span {
  color: var(--orange-600);
  font-size: 0.64rem;
  font-weight: 900;
}

.process-cards h3 {
  margin: 12px 0 0;
  color: var(--navy-950);
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.process-cards article p {
  margin: 9px 0 0;
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.62;
}

.lead-aside {
  position: sticky;
  top: 118px;
  overflow: hidden;
  padding: 33px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 125, 188, 0.31), transparent 30%),
    var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
}

.lead-aside h2 {
  margin: 0;
  color: var(--white);
  font-size: 2rem;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.lead-aside > p {
  margin: 15px 0 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.77rem;
  line-height: 1.7;
}

.lead-aside__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.lead-aside__phone small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-aside__phone strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 1.03rem;
}

.lead-aside ul {
  display: grid;
  gap: 8px;
  margin: 21px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.lead-aside li {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
}

.lead-aside li::before {
  margin-right: 7px;
  color: var(--orange-400);
  content: "✓";
}

.section--related {
  background: var(--mist);
}

.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.mini-service-grid a {
  position: relative;
  display: flex;
  min-height: 145px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: 17px;
  box-shadow: 0 8px 25px rgba(6, 41, 75, 0.05);
  transition:
    transform 0.35s var(--ease),
    color 0.3s ease,
    background-color 0.3s ease;
}

.mini-service-grid a:hover {
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-6px);
}

.mini-service-grid a span {
  color: var(--orange-600);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-service-grid a strong {
  max-width: 160px;
  margin-top: 8px;
  font-size: 0.93rem;
  line-height: 1.28;
}

.mini-service-grid a i {
  position: absolute;
  top: 19px;
  right: 19px;
  color: var(--orange-500);
  font-size: 1.05rem;
  font-style: normal;
}

/* Projects */
.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.project-filter button,
.review-pills button {
  min-height: 42px;
  padding: 9px 15px;
  cursor: pointer;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.14);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 780;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease);
}

.project-filter button:hover,
.review-pills button:hover,
.project-filter button.is-active,
.review-pills button.is-active {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  transform: translateY(-2px);
}

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

.portfolio-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(6, 41, 75, 0.16);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.portfolio-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 26, 48, 0.97), rgba(3, 26, 48, 0.05) 67%);
}

.portfolio-card > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.portfolio-card small {
  color: var(--orange-400);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-card strong {
  max-width: 440px;
  margin-top: 8px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.portfolio-card p {
  max-width: 440px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  line-height: 1.6;
}

.portfolio-card i {
  margin-top: 16px;
  color: var(--white);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.project-story {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(55px, 8vw, 100px);
}

.project-story > img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.project-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 17px;
}

.project-facts span {
  display: flex;
  flex-direction: column;
  padding: 18px;
  color: var(--ink-500);
  background: var(--white);
  font-size: 0.7rem;
}

.project-facts b {
  margin-bottom: 3px;
  color: var(--navy-950);
  font-size: 0.77rem;
}

/* Reviews */
.review-stats {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

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

.review-stats__grid > div {
  display: flex;
  min-height: 122px;
  align-items: center;
  gap: 17px;
  padding: 24px 30px;
}

.review-stats__grid > div + div {
  border-left: 1px solid var(--line);
}

.review-stats strong {
  color: var(--navy-950);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.review-stats span {
  max-width: 180px;
  color: var(--ink-500);
  font-size: 0.7rem;
  line-height: 1.5;
}

.review-page {
  background: var(--mist);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.profile-grid > a {
  display: flex;
  min-height: 195px;
  flex-direction: column;
  padding: 23px;
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(6, 41, 75, 0.06);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.3s ease;
}

.profile-grid > a:hover {
  border-color: rgba(255, 130, 0, 0.43);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.profile-grid > a > span {
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 850;
}

.profile-grid strong {
  margin-top: 18px;
  color: var(--navy-950);
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.profile-grid strong i {
  color: var(--orange-500);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.05em;
}

.profile-grid small {
  margin-top: 3px;
  color: var(--ink-500);
  font-size: 0.67rem;
}

.profile-grid > a > b {
  margin-top: auto;
  color: var(--orange-600);
  font-size: 0.67rem;
}

.reviews-explorer {
  margin-top: 70px;
}

.review-tools {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: end;
  gap: 30px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.review-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.review-search {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.review-search span {
  color: var(--navy-900);
  font-size: 0.64rem;
  font-weight: 850;
}

.review-search input {
  width: 100%;
  min-height: 45px;
  padding: 10px 13px;
  color: var(--ink-950);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.73rem;
}

.review-results__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 38px 2px 18px;
}

.review-results__head strong {
  color: var(--navy-950);
  font-size: 1rem;
}

.review-results__head span {
  color: var(--ink-500);
  font-size: 0.7rem;
}

.review-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.review-card--directory {
  min-height: 335px;
}

.review-source {
  color: var(--navy-900);
  background: var(--mist);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.58rem;
  font-weight: 850;
}

.review-card--directory footer {
  position: relative;
}

.review-card--directory footer > a {
  position: absolute;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--orange-600);
  background: var(--orange-100);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.review-empty {
  padding: 45px;
  color: var(--ink-500);
  text-align: center;
}

.review-method {
  max-width: 920px;
  margin: 90px auto 0;
  padding: 42px;
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.review-method h2 {
  font-size: clamp(2rem, 3.7vw, 3.4rem);
}

.review-method p {
  margin: 20px 0 0;
  color: var(--ink-700);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* Areas, company and contact */
.areas-directory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.areas-directory a {
  display: grid;
  min-height: 86px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(6, 41, 75, 0.04);
  transition:
    color 0.25s ease,
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.areas-directory a:hover {
  color: var(--orange-600);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.areas-directory a > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--navy-900);
  background: var(--mist);
  border-radius: 10px;
}

.areas-directory strong {
  color: var(--navy-950);
  font-size: 0.72rem;
}

.areas-directory i {
  color: var(--orange-600);
  font-size: 0.83rem;
  font-style: normal;
}

.about-layout .proof-copy > p + p {
  margin-top: 15px;
}

.about-values {
  display: grid;
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.about-values span {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: var(--ink-500);
  background: var(--white);
  font-size: 0.74rem;
  line-height: 1.55;
}

.about-values b {
  margin-bottom: 3px;
  color: var(--navy-950);
  font-size: 0.85rem;
}

.contact-page {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 20, 38, 0.97), rgba(3, 26, 48, 0.78)),
    url("/images/modern-tile-roof-1600.webp") center/cover;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.contact-page__copy h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(3.6rem, 6vw, 6rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.contact-page__copy > p {
  max-width: 630px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.75;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 32px;
}

.contact-methods a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 17px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition:
    background-color 0.25s ease,
    transform 0.3s var(--ease);
}

.contact-methods a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.contact-methods a > span {
  color: var(--orange-400);
  font-size: 1.1rem;
  font-weight: 900;
}

.contact-methods small {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-methods strong {
  overflow: hidden;
  margin-top: 4px;
  color: var(--white);
  font-size: 0.67rem;
  text-overflow: ellipsis;
}

.contact-proof {
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
}

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

.resource-grid article {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: 19px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.resource-grid article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.resource-grid article > span {
  color: var(--orange-600);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-grid h2 {
  margin: 15px 0 0;
  color: var(--navy-950);
  font-size: 1.27rem;
  letter-spacing: -0.035em;
  line-height: 1.32;
}

.resource-grid p {
  flex: 1;
  margin: 13px 0 18px;
  color: var(--ink-700);
  font-size: 0.76rem;
  line-height: 1.7;
}

.legal-page {
  min-height: 70vh;
  background:
    radial-gradient(circle at 100% 0, rgba(35, 125, 188, 0.08), transparent 30%),
    var(--mist);
}

.legal-page .shell {
  max-width: 850px;
}

.legal-page__surface {
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
  border: 1px solid rgba(6, 41, 75, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.legal-page h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

.legal-page p + h2 {
  margin-top: 42px;
}

.legal-page p {
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.82;
}

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav > a,
  .nav-mega__trigger {
    font-size: 0.72rem;
  }

  .header-phone {
    display: none;
  }

  .home-hero__grid {
    gap: 40px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 5.2vw, 4.35rem);
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 84px;
  }

  .trust-ribbon__desktop {
    display: none;
  }

  .desktop-nav,
  .header-actions > .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    width: 98px;
    height: 72px;
  }

  .brand__logo {
    top: -9px;
    width: 98px;
    height: 98px;
  }

  .interior-trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .interior-trust__grid > span:nth-child(3) {
    border-left: 0;
  }

  .interior-trust__grid > span:nth-child(n + 3) {
    border-top: 1px solid rgba(6, 41, 75, 0.1);
  }

  .drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 85;
    display: block;
    visibility: hidden;
    background: rgba(2, 14, 28, 0.62);
    opacity: 0;
    backdrop-filter: blur(5px);
    transition:
      opacity 0.3s ease,
      visibility 0.3s;
  }

  .drawer-backdrop.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    width: min(440px, calc(100% - 28px));
    flex-direction: column;
    visibility: hidden;
    color: var(--navy-950);
    background: var(--white);
    box-shadow: -20px 0 70px rgba(3, 26, 48, 0.3);
    opacity: 0;
    transform: translateX(104%);
    transition:
      transform 0.42s var(--ease),
      opacity 0.3s ease,
      visibility 0.42s;
  }

  .mobile-drawer.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-drawer__head {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(31, 119, 183, 0.26), transparent 50%),
      var(--navy-950);
  }

  .mobile-drawer__head span {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .mobile-drawer__head button {
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    font-size: 1.55rem;
    line-height: 1;
  }

  .mobile-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 22px 24px;
  }

  .mobile-drawer__body > a,
  .mobile-drawer summary {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    color: var(--navy-950);
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    font-size: 0.83rem;
    font-weight: 800;
    list-style: none;
  }

  .mobile-drawer summary::-webkit-details-marker {
    display: none;
  }

  .mobile-drawer summary::after {
    content: "+";
    color: var(--orange-600);
    font-size: 1.1rem;
  }

  .mobile-drawer details[open] summary::after {
    content: "−";
  }

  .mobile-drawer__sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 10px;
    background: var(--mist);
    border-radius: 0 0 14px 14px;
  }

  .mobile-drawer__sub a {
    padding: 10px 8px;
    color: var(--ink-700);
    font-size: 0.7rem;
    font-weight: 680;
  }

  .mobile-drawer__sub a:last-child {
    color: var(--orange-600);
  }

  .mobile-drawer__foot {
    padding: 20px 22px calc(22px + env(safe-area-inset-bottom));
    background: var(--mist);
    border-top: 1px solid var(--line);
  }

  .mobile-drawer__foot p {
    margin: 0 0 12px;
    color: var(--ink-500);
    font-size: 0.68rem;
    text-align: center;
  }

  .mobile-drawer__foot .button {
    width: 100%;
  }

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

  .home-hero__veil {
    background:
      linear-gradient(90deg, rgba(3, 20, 38, 0.96), rgba(3, 26, 48, 0.73)),
      linear-gradient(0deg, rgba(3, 26, 48, 0.7), transparent);
  }

  .home-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 84px;
    padding-bottom: 90px;
  }

  .home-hero__copy {
    max-width: 760px;
    padding: 0;
  }

  .home-hero h1 {
    max-width: 780px;
    font-size: clamp(3.2rem, 8.2vw, 5rem);
  }

  .home-hero__form {
    max-width: 660px;
    margin-top: 36px;
  }

  .hero-scroll {
    display: none;
  }

  .confidence-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

  .confidence-bar__grid > div {
    min-height: 90px;
  }

  .confidence-bar__grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .confidence-bar__grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .review-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 720px;
  }

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

  .service-card:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child .service-card__image {
    height: 100%;
    min-height: 300px;
  }

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

  .proof-visual {
    max-width: 670px;
  }

  .project-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .project-card:last-child {
    grid-column: span 2;
    min-height: 330px;
  }

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

  .review-card:last-child {
    grid-column: span 2;
    min-height: auto;
  }

  .review-total {
    width: fit-content;
  }

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

  .areas-card {
    max-width: 600px;
  }

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

  .footer-cta__actions {
    justify-content: flex-start;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }

  .interior-hero {
    min-height: 540px;
  }

  .interior-hero__content h1 {
    font-size: clamp(3.2rem, 7.8vw, 5.2rem);
  }

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

  .detail-hero__grid {
    grid-template-columns: 1fr;
  }

  .detail-hero__copy {
    max-width: 760px;
  }

  .detail-hero__image {
    max-width: 680px;
  }

  .content-split {
    grid-template-columns: 1fr;
  }

  .lead-aside {
    position: relative;
    top: auto;
    max-width: 620px;
  }

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

  .project-story {
    grid-template-columns: 1fr;
  }

  .project-story > img {
    max-width: 680px;
  }

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

  .review-tools {
    grid-template-columns: 1fr;
  }

  .review-directory {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-page__grid {
    grid-template-columns: 1fr;
  }

  .contact-page__copy {
    max-width: 760px;
  }

  .contact-page .estimate-form {
    max-width: 660px;
  }

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

@media (max-width: 680px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .trust-ribbon__inner {
    min-height: 31px;
    justify-content: center;
    font-size: 0.58rem;
    text-align: center;
  }

  .trust-ribbon__inner > span {
    display: none;
  }

  .site-header__inner {
    min-height: 66px;
  }

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

  .brand__logo {
    top: -8px;
    width: 88px;
    height: 88px;
  }

  .menu-button {
    width: 43px;
    height: 43px;
  }

  .home-hero__media img {
    object-position: 62% center;
  }

  .home-hero__veil {
    background:
      linear-gradient(0deg, rgba(3, 20, 38, 0.98) 12%, rgba(3, 26, 48, 0.82) 72%, rgba(3, 26, 48, 0.64)),
      linear-gradient(90deg, rgba(3, 20, 38, 0.83), rgba(3, 26, 48, 0.33));
  }

  .home-hero__grid {
    padding-top: 65px;
    padding-bottom: 66px;
  }

  .home-hero h1 {
    font-size: clamp(2.58rem, 12.4vw, 3.5rem);
    line-height: 1.01;
  }

  .home-hero__lede {
    margin-top: 19px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .home-hero__actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .home-hero__actions .button {
    width: 100%;
  }

  .home-hero__proof {
    margin-top: 32px;
  }

  .home-hero__proof > div {
    padding: 15px 10px 0 0;
  }

  .home-hero__proof > div + div {
    padding-left: 10px;
  }

  .home-hero__proof b {
    font-size: 0.91rem;
  }

  .home-hero__proof span {
    font-size: 0.57rem;
  }

  .home-hero__form {
    margin-top: 29px;
  }

  .estimate-form {
    padding: 25px 18px 22px;
    border-radius: 22px;
  }

  .estimate-form__heading h2 {
    font-size: 1.42rem;
  }

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

  .form-grid__wide {
    grid-column: auto;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    min-height: 49px;
    font-size: 16px;
  }

  .confidence-bar__grid > div {
    min-height: 84px;
    gap: 9px;
    padding: 14px 12px;
  }

  .confidence-bar p {
    font-size: 0.57rem;
  }

  .confidence-bar p b {
    font-size: 0.67rem;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading,
  .review-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .proof-copy h2,
  .review-heading h2,
  .areas-layout h2,
  .footer-cta h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.06;
  }

  .section-heading > p,
  .areas-layout > div > p {
    font-size: 0.88rem;
  }

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

  .service-card:last-child {
    grid-column: auto;
    display: block;
  }

  .service-card:last-child .service-card__image {
    height: 230px;
    min-height: 0;
  }

  .service-card__image {
    height: 230px;
  }

  .service-card__body {
    padding: 25px;
  }

  .service-card p {
    min-height: 0;
  }

  .section-action .button {
    width: 100%;
  }

  .proof-layout {
    gap: 55px;
  }

  .proof-visual {
    padding: 0 24px 38px 0;
  }

  .proof-visual::before {
    left: 27px;
  }

  .proof-visual__card {
    width: 235px;
    padding: 18px;
    border-width: 5px;
  }

  .proof-copy > p {
    font-size: 0.88rem;
  }

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

  .project-card,
  .project-card:last-child {
    grid-column: auto;
    min-height: 355px;
  }

  .review-card,
  .review-card:last-child {
    grid-column: auto;
    min-height: 290px;
  }

  .review-total strong {
    font-size: 3.5rem;
  }

  .review-total span {
    font-size: 0.62rem;
  }

  .platform-row {
    gap: 8px 16px;
  }

  .area-links {
    grid-template-columns: 1fr;
  }

  .areas-card {
    padding: 31px 25px;
  }

  .footer-cta {
    padding: 52px 0;
  }

  .footer-cta__actions {
    flex-direction: column;
  }

  .footer-cta__actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
    padding: 50px 0 42px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-dock {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 82;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(6, 41, 75, 0.12);
    box-shadow: 0 -12px 35px rgba(3, 26, 48, 0.14);
    backdrop-filter: blur(16px);
  }

  .mobile-dock a,
  .mobile-dock button {
    display: flex;
    min-height: 54px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--navy-900);
    background: transparent;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.57rem;
    font-weight: 800;
  }

  .mobile-dock span {
    font-size: 1rem;
    line-height: 1;
  }

  .mobile-dock .mobile-dock__home.is-active {
    color: var(--orange-600);
    background: var(--orange-100);
  }

  .mobile-dock .mobile-dock__primary {
    color: var(--navy-950);
    background: linear-gradient(135deg, #ffad43, var(--orange-500));
    box-shadow: 0 7px 18px rgba(237, 106, 0, 0.25);
  }

  .interior-hero,
  .interior-hero--compact {
    min-height: 500px;
  }

  .interior-hero__shade {
    background:
      linear-gradient(0deg, rgba(3, 20, 38, 0.98) 8%, rgba(3, 26, 48, 0.75)),
      linear-gradient(90deg, rgba(3, 20, 38, 0.88), rgba(3, 26, 48, 0.35));
  }

  .interior-hero__content {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .interior-hero__content h1,
  .interior-hero--compact .interior-hero__content h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
    line-height: 1;
  }

  .interior-hero__content > p {
    margin-top: 19px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .interior-hero__actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .interior-hero__actions .button {
    width: 100%;
  }

  .interior-trust__grid > span {
    min-height: 82px;
    padding: 14px 10px 14px 38px;
  }

  .interior-trust__grid > span::before {
    left: 10px;
    width: 19px;
    height: 19px;
  }

  .interior-trust__grid b {
    font-size: 0.65rem;
  }

  .interior-trust__grid small {
    font-size: 0.55rem;
  }

  .directory-grid,
  .portfolio-grid,
  .review-directory,
  .areas-directory,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .directory-card__image {
    height: 230px;
  }

  .detail-hero {
    padding: 64px 0 70px;
  }

  .detail-hero__grid {
    gap: 45px;
  }

  .detail-hero__copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .detail-hero__copy > p {
    font-size: 0.9rem;
  }

  .detail-hero__actions {
    flex-direction: column;
  }

  .detail-hero__actions .button {
    width: 100%;
  }

  .detail-hero__image {
    padding: 0 20px 26px 0;
  }

  .detail-hero__image::before {
    left: 23px;
  }

  .content-split {
    gap: 50px;
  }

  .article-content h2,
  .review-method h2,
  .project-story h2 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .article-content > p,
  .project-story p {
    font-size: 0.87rem;
  }

  .process-cards,
  .mini-service-grid {
    grid-template-columns: 1fr;
  }

  .process-cards article {
    padding: 20px;
  }

  .lead-aside {
    padding: 27px 22px;
  }

  .portfolio-card {
    min-height: 410px;
  }

  .portfolio-card > span {
    padding: 25px;
  }

  .project-facts {
    grid-template-columns: 1fr;
  }

  .review-stats__grid {
    grid-template-columns: 1fr;
  }

  .review-stats__grid > div {
    min-height: 88px;
    padding: 18px;
  }

  .review-stats__grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .profile-grid > a {
    min-height: 165px;
  }

  .reviews-explorer {
    margin-top: 55px;
  }

  .review-tools {
    padding: 17px;
  }

  .review-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .review-pills button {
    flex: 0 0 auto;
  }

  .review-search input {
    font-size: 16px;
  }

  .review-results__head {
    padding-top: 30px;
  }

  .review-card--directory {
    min-height: 310px;
  }

  .review-method {
    margin-top: 65px;
    padding: 27px 22px;
  }

  .areas-directory a {
    min-height: 76px;
  }

  .contact-page {
    padding: 68px 0;
  }

  .contact-page__copy h1 {
    font-size: clamp(2.7rem, 12.2vw, 3.8rem);
  }

  .contact-page__copy > p {
    font-size: 0.9rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .contact-methods a {
    display: grid;
    grid-template-columns: 34px auto;
    column-gap: 10px;
  }

  .contact-methods a > span {
    grid-row: span 2;
  }

  .contact-methods small {
    margin-top: 0;
  }

  .legal-page__surface {
    padding: 27px 20px;
    border-radius: 22px;
  }
}

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