@font-face {
  font-family: "Manrope Salvagni";
  src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #f7fafc;
  --color-surface: #ffffff;
  --color-surface-alt: #eaf2f7;
  --color-navy: #062b45;
  --color-navy-deep: #041f32;
  --color-text: #102a3a;
  --color-muted: #405766;
  --color-border: #c9d8e2;
  --color-border-strong: #6f899a;
  --color-brand: #005a9c;
  --color-brand-hover: #004576;
  --color-brand-active: #003653;
  --color-brand-soft: #dceffc;
  --color-cta: #ffc247;
  --color-cta-hover: #e5a900;
  --color-success: #157347;
  --color-error: #b42318;
  --font-display: "Manrope Salvagni", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
  --shadow-sm: 0 8px 30px rgba(6, 43, 69, 0.08);
  --shadow-lg: 0 24px 70px rgba(6, 43, 69, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.75rem, 5vw, 5.15rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.65rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
}

::selection {
  color: var(--color-navy);
  background: var(--color-cta);
}

:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px #fff;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: #fff;
  background: var(--color-brand);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--color-brand);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.button--primary {
  color: var(--color-text);
  background: var(--color-cta);
  border-color: var(--color-cta);
}

.button--primary:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
}

.button--brand {
  color: #fff;
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.button--brand:hover {
  background: var(--color-brand-hover);
  border-color: var(--color-brand-hover);
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(6, 43, 69, 0.22);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: #fff;
  background: rgba(6, 43, 69, 0.7);
}

.button--ghost svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.text-link {
  color: var(--color-brand);
  font-family: var(--font-display);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--color-brand-hover);
}

.section {
  padding-block: clamp(82px, 9vw, 132px);
  scroll-margin-top: 110px;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(40px, 7vw, 110px);
}

.section-heading--split > p {
  margin-bottom: 5px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section-heading--center {
  max-width: 790px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  margin-bottom: 20px;
}

.section-heading--center > p:last-child {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-muted);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: #fff;
}

.contact-strip {
  color: rgba(255, 255, 255, 0.82);
  background: var(--color-navy);
  font-size: 0.8rem;
}

.contact-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-strip p {
  margin: 0;
}

.contact-strip__area,
.contact-strip__actions,
.contact-strip__actions a {
  display: flex;
  align-items: center;
}

.contact-strip__area,
.contact-strip__actions a {
  gap: 7px;
}

.contact-strip svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: #74bce9;
}

.contact-strip__actions {
  gap: 24px;
}

.contact-strip__actions a {
  text-decoration: none;
}

.contact-strip__actions a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-strip__phone {
  color: #fff;
  font-weight: 750;
}

.nav-shell {
  position: relative;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid rgba(16, 42, 58, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 5px 24px rgba(6, 43, 69, 0.05);
  backdrop-filter: blur(16px);
}

.nav-shell__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(218px, 19vw, 268px);
  max-height: 72px;
  object-fit: contain;
}

.primary-navigation,
.primary-navigation ul {
  display: flex;
  align-items: center;
}

.primary-navigation {
  gap: clamp(20px, 2.2vw, 34px);
}

.primary-navigation ul {
  gap: clamp(17px, 1.8vw, 29px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation ul a {
  position: relative;
  display: inline-block;
  padding-block: 13px;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 730;
  text-decoration: none;
}

.primary-navigation ul a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--color-brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.primary-navigation ul a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 48px;
  padding: 11px 18px;
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 14px;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 750;
}

.menu-toggle__icon {
  width: 28px;
  display: grid;
  gap: 5px;
}

.menu-toggle__icon i {
  height: 2px;
  display: block;
  background: var(--color-navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 40px));
  display: flex;
  align-items: center;
  padding: clamp(90px, 10vw, 150px) 0 130px;
  overflow: hidden;
  color: #fff;
  background: var(--color-navy);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background: url("../images/hero-construction.jpg") center center / cover no-repeat;
  transform: scale(1.002);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 31, 50, 0.97) 0%, rgba(4, 31, 50, 0.88) 35%, rgba(4, 31, 50, 0.3) 68%, rgba(4, 31, 50, 0.1) 100%),
    linear-gradient(0deg, rgba(4, 31, 50, 0.68) 0%, transparent 48%);
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 760px;
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 26px;
  text-wrap: balance;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

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

.hero__microcopy {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.79rem;
}

.hero-proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 100px;
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr 0.8fr;
  align-items: stretch;
  color: var(--color-text);
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: var(--shadow-lg);
}

.hero-proof > div,
.hero-proof > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 25px;
  border-right: 1px solid var(--color-border);
  text-decoration: none;
}

.hero-proof > :last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-proof div span {
  max-width: 98px;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-proof > a {
  justify-content: flex-start;
  transition: background 0.2s ease;
}

.hero-proof > a:hover {
  background: #fff9e9;
}

.hero-proof > a strong {
  font-size: 1rem;
}

.hero-proof > a small {
  display: block;
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.75rem;
}

.hero-proof__stars {
  color: var(--color-cta-hover);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* Services */
.services {
  background: var(--color-bg);
}

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

.service-card {
  position: relative;
  min-height: 336px;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 28px;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 0 rgba(6, 43, 69, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: #8db5ce;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card--featured {
  grid-column: span 2;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(66, 155, 211, 0.3), transparent 48%),
    var(--color-navy);
  border-color: var(--color-navy);
}

.service-card__number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #abc0cc;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card--featured .service-card__number {
  color: rgba(255, 255, 255, 0.46);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  color: var(--color-brand);
  background: var(--color-brand-soft);
  border-radius: 14px;
}

.service-card__icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.service-card--featured .service-card__icon {
  color: var(--color-navy);
  background: var(--color-cta);
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-card--featured p {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.74);
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--color-brand);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.service-card > a span {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.service-card > a:hover span {
  transform: translateX(4px);
}

.service-card--featured > a {
  color: var(--color-cta);
}

/* Split sections */
.construction,
.roofs {
  background: var(--color-surface-alt);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(55px, 8vw, 118px);
}

.split-layout--reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.split-media {
  position: relative;
}

.split-media::before {
  position: absolute;
  z-index: 0;
  top: -24px;
  left: -24px;
  width: 64%;
  height: 55%;
  border: 1px solid #9bb8ca;
  border-radius: var(--radius-lg);
  content: "";
}

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

.split-media__label {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 34px;
  width: min(245px, 50%);
  padding: 22px 24px;
  color: #fff;
  background: var(--color-brand);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.split-media__label strong,
.split-media__label span {
  display: block;
}

.split-media__label strong {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.split-media__label span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.split-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
}

.split-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: 1.02rem;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-brand);
  border-radius: 50%;
  content: "✓";
  font-size: 0.72rem;
  line-height: 1;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

/* Reputation */
.reputation {
  padding-block: clamp(65px, 7vw, 92px);
  color: #fff;
  background:
    linear-gradient(120deg, var(--color-navy-deep), var(--color-navy) 62%, #074974);
  scroll-margin-top: 110px;
}

.reputation__grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.8fr;
  align-items: center;
  gap: clamp(35px, 6vw, 82px);
}

.reputation h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
}

.reputation__grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.rating-card {
  min-height: 130px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px;
  color: var(--color-text);
  background: #fff;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.rating-card:hover {
  transform: translateY(-4px);
}

.rating-card__score {
  color: var(--color-brand);
  font-family: var(--font-display);
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.rating-card__stars {
  display: block;
  margin-bottom: 3px;
  color: var(--color-cta-hover);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.rating-card strong,
.rating-card small {
  display: block;
  line-height: 1.35;
}

.rating-card strong {
  font-family: var(--font-display);
  font-size: 0.84rem;
}

.rating-card small {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 0.7rem;
}

.rating-card__arrow {
  margin-left: auto;
  color: var(--color-brand);
  font-size: 1.25rem;
}

/* Process */
.process {
  background: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 62px 0 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 28px;
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 25px;
  right: 0;
  width: 1px;
  height: calc(100% - 25px);
  background: var(--color-border);
  content: "";
}

.process-list > li > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: var(--color-brand);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.77rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.process-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Roof */
.roofs {
  background: var(--color-bg);
}

.split-media--roof::before {
  top: auto;
  right: -24px;
  bottom: -24px;
  left: auto;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.feature-chips span {
  padding: 8px 12px;
  color: var(--color-brand-hover);
  background: var(--color-brand-soft);
  border: 1px solid #bdddf2;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
}

.safety-badge {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: -28px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 19px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.safety-badge svg {
  width: 31px;
  height: 31px;
  fill: var(--color-success);
}

.safety-badge strong,
.safety-badge small {
  display: block;
  line-height: 1.3;
}

.safety-badge strong {
  font-family: var(--font-display);
  font-size: 0.82rem;
}

.safety-badge small {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 0.76rem;
}

/* Areas */
.areas {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(17, 112, 174, 0.55), transparent 33%),
    var(--color-navy-deep);
}

.areas::before,
.areas::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.areas::before {
  width: 520px;
  height: 520px;
  top: -245px;
  right: -80px;
}

.areas::after {
  width: 320px;
  height: 320px;
  right: 120px;
  bottom: -220px;
}

.areas__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.65fr;
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

.areas h2 {
  max-width: 770px;
  margin-bottom: 24px;
}

.areas__grid > div:first-child > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.72);
}

.areas-card {
  padding: 34px;
  color: var(--color-text);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.areas-card__origin {
  position: relative;
  margin-bottom: 28px;
  padding-left: 38px;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.areas-card__origin::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--color-cta);
  border: 6px solid #fff4d8;
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: rotate(-45deg);
}

.areas-card__origin strong {
  display: block;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.areas-card__routes {
  display: grid;
  gap: 0;
  margin-bottom: 23px;
  border-top: 1px solid var(--color-border);
}

.areas-card__routes span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-weight: 750;
}

.areas-card__routes i {
  width: 8px;
  height: 8px;
  background: var(--color-brand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--color-brand-soft);
}

.areas-card > a {
  color: var(--color-brand);
  font-size: 0.83rem;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* FAQ */
.faq {
  background: #fff;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(60px, 10vw, 145px);
}

.faq__intro {
  position: sticky;
  top: 125px;
}

.faq__intro h2 {
  margin-bottom: 22px;
}

.faq__intro > p:not(.eyebrow) {
  margin-bottom: 23px;
  color: var(--color-muted);
}

.accordion details {
  border-bottom: 1px solid var(--color-border);
}

.accordion details:first-child {
  border-top: 1px solid var(--color-border);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 750;
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--color-brand);
  content: "";
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details > p {
  max-width: 700px;
  margin: -6px 50px 25px 4px;
  color: var(--color-muted);
  font-size: 0.94rem;
}

/* Contact */
.contact-section {
  padding-block: clamp(82px, 9vw, 125px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 90, 156, 0.28), transparent 55%),
    var(--color-navy);
  scroll-margin-top: 110px;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.contact-copy {
  padding-top: 32px;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-copy > p:not(.eyebrow):not(.contact-copy__note) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.73);
}

.contact-options {
  display: grid;
  gap: 13px;
  margin: 34px 0 24px;
}

.contact-options a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.contact-options__icon {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--color-navy);
  background: var(--color-cta);
  border-radius: 50%;
}

.contact-options__icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-options small,
.contact-options strong {
  display: block;
}

.contact-options small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.contact-options strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.contact-copy__note {
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.62);
  border-left: 2px solid var(--color-cta);
  font-size: 0.78rem;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 48px);
  color: var(--color-text);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  scroll-margin-top: 135px;
}

.contact-form-card form > label,
.form-grid label {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 750;
}

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

.optional {
  float: right;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border-strong);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  min-height: 48px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px var(--color-brand-soft);
}

textarea::placeholder {
  color: #6f818c;
  font-size: 0.8rem;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  margin: 22px 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.privacy-check input {
  width: 19px;
  height: 19px;
  min-height: 0;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--color-brand);
}

.privacy-check a {
  color: var(--color-brand);
  font-weight: 700;
  text-underline-offset: 2px;
}

.button--submit {
  width: 100%;
  min-height: 56px;
}

.form-microcopy {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-notice {
  margin-bottom: 22px;
  padding: 13px 15px;
  border-radius: 7px;
  font-size: 0.83rem;
  font-weight: 650;
}

.form-notice--success {
  color: #0b4f2e;
  background: #e1f5e9;
  border: 1px solid #8dceaa;
}

.form-notice--error {
  color: #7d1811;
  background: #ffebe9;
  border: 1px solid #e9aaa4;
}

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

/* Footer */
.site-footer {
  padding-top: 76px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--color-navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.62fr 1fr;
  gap: clamp(35px, 5vw, 75px);
  padding-bottom: 64px;
}

.footer-logo-card {
  width: 265px;
  margin-bottom: 23px;
  padding: 9px 14px;
  background: #fff;
  border-radius: 8px;
}

.footer-logo-card img {
  width: 100%;
}

.footer-brand > p {
  max-width: 330px;
  margin-bottom: 25px;
  font-size: 0.86rem;
}

.footer-call {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

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

.footer-call span {
  margin-bottom: 2px;
  color: #88bcd9;
  font-size: 0.7rem;
}

.footer-call strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.footer-column h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 0.93rem;
  letter-spacing: -0.01em;
}

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

.footer-column li,
.footer-column address {
  font-size: 0.82rem;
  font-style: normal;
}

.footer-column a {
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contacts p {
  margin-bottom: 17px;
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

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

.footer-bottom a {
  text-underline-offset: 3px;
}

.mobile-call-bar {
  display: none;
}

/* Default pages */
.default-page {
  min-height: 55vh;
  padding-block: 90px;
  background: #fff;
}

.default-page__inner {
  max-width: 850px;
}

.default-page h1 {
  color: var(--color-navy);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.entry-content a,
.default-page article > p a {
  color: var(--color-brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 1120px) {
  .primary-navigation ul {
    gap: 16px;
  }

  .primary-navigation ul a {
    font-size: 0.79rem;
  }

  .nav-cta {
    display: none;
  }

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

  .reputation__grid {
    grid-template-columns: 1fr 0.8fr;
  }

  .rating-card {
    grid-column: 1 / -1;
    max-width: 440px;
  }

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

  .footer-contacts {
    grid-column: 2 / -1;
  }
}

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

  .contact-strip__area {
    display: none;
  }

  .contact-strip__inner {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-shell__inner {
    min-height: 78px;
  }

  .nav-shell {
    backdrop-filter: none;
  }

  .brand img {
    width: 222px;
    max-height: 66px;
  }

  .primary-navigation {
    position: fixed;
    top: 116px;
    right: 0;
    left: 0;
    height: calc(100dvh - 116px);
    display: block;
    padding: 25px 20px 40px;
    overflow-y: auto;
    visibility: hidden;
    background: #fff;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-navigation ul {
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .primary-navigation ul li {
    border-bottom: 1px solid var(--color-border);
  }

  .primary-navigation ul a {
    display: block;
    padding: 17px 4px;
    font-size: 1.08rem;
  }

  .primary-navigation ul a::after {
    display: none;
  }

  .primary-navigation .nav-cta {
    width: 100%;
    display: inline-flex;
    margin-top: 24px;
  }

  .hero {
    min-height: 730px;
  }

  .hero__media {
    background-position: 62% center;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(4, 31, 50, 0.96), rgba(4, 31, 50, 0.78) 66%, rgba(4, 31, 50, 0.45));
  }

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

  .hero-proof > div,
  .hero-proof > a {
    display: none;
  }

  .hero-proof > a {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    border: 0;
  }

  .section-heading--split,
  .split-layout,
  .split-layout--reverse,
  .areas__grid,
  .faq__grid,
  .contact-section__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
    gap: 22px;
  }

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

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

  .split-layout {
    gap: 72px;
  }

  .split-layout--reverse .split-media {
    grid-row: 1;
  }

  .split-layout--reverse .split-copy {
    grid-row: 2;
  }

  .split-media {
    width: min(90%, 650px);
    margin-inline: auto;
  }

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

  .process-list li:nth-child(2)::after,
  .process-list li:last-child::after {
    display: none;
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
  }

  .areas__grid {
    gap: 50px;
  }

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

  .faq__grid {
    gap: 45px;
  }

  .faq__intro {
    position: static;
    max-width: 640px;
  }

  .contact-section__grid {
    gap: 48px;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-copy > p:not(.eyebrow):not(.contact-copy__note) {
    max-width: 680px;
  }
}

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

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

  .contact-strip {
    display: none;
  }

  .nav-shell__inner {
    min-height: 72px;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle__label {
    display: none;
  }

  .primary-navigation {
    top: 72px;
    height: calc(100dvh - 72px);
  }

  .hero {
    min-height: 710px;
    align-items: flex-start;
    padding-top: 82px;
    padding-bottom: 104px;
  }

  .hero__media {
    background-position: 71% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(4, 31, 50, 0.97), rgba(4, 31, 50, 0.78)),
      linear-gradient(0deg, rgba(4, 31, 50, 0.86), transparent);
  }

  .hero .eyebrow {
    max-width: none;
    display: block;
  }

  .hero .eyebrow::before {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
  }

  .hero .eyebrow span {
    margin-inline: 4px;
  }

  .hero h1 {
    margin-bottom: 21px;
    font-size: clamp(2.55rem, 12vw, 3.55rem);
  }

  .hero__lead {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-proof {
    min-height: 80px;
    width: calc(100% - 32px);
  }

  .hero-proof > a {
    padding: 14px 17px;
  }

  .section {
    padding-block: 78px;
  }

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

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

  .service-card--featured {
    grid-column: auto;
  }

  .service-card {
    min-height: 300px;
  }

  .split-layout {
    gap: 55px;
  }

  .split-media {
    width: 100%;
  }

  .split-media::before {
    top: -14px;
    left: -10px;
  }

  .split-media img {
    aspect-ratio: 4 / 4.3;
    border-radius: var(--radius-md);
  }

  .split-media__label {
    right: 12px;
    bottom: 14px;
    width: min(240px, 74%);
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .reputation__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .rating-card {
    margin-top: 12px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 42px;
  }

  .process-list li,
  .process-list li:nth-child(3) {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 0 0 30px;
  }

  .process-list li:not(:last-child)::after {
    top: 48px;
    right: auto;
    bottom: 0;
    left: 24px;
    width: 1px;
    height: auto;
  }

  .process-list > li > span {
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .process-list h3 {
    margin-top: 4px;
  }

  .split-media--roof::before {
    top: auto;
    right: -10px;
    bottom: -14px;
    left: auto;
  }

  .safety-badge {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

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

  .accordion summary {
    font-size: 0.96rem;
  }

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

  .contact-form-card {
    margin-inline: -4px;
    border-radius: var(--radius-md);
  }

  .contact-options strong {
    overflow-wrap: anywhere;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 66px;
    display: grid;
    grid-template-columns: 24px auto 1fr;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--color-text);
    background: var(--color-cta);
    box-shadow: 0 -8px 30px rgba(6, 43, 69, 0.17);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-call-bar svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
  }

  .mobile-call-bar strong {
    justify-self: end;
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .site-container {
    width: min(calc(100% - 26px), var(--container));
  }

  .brand img {
    width: 175px;
  }

  .hero {
    min-height: 735px;
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero__lead {
    font-size: 0.91rem;
  }

  .service-card {
    padding-inline: 24px;
  }

  .rating-card {
    gap: 12px;
    padding-inline: 16px;
  }

  .rating-card__score {
    font-size: 2.15rem;
  }

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

  .footer-column,
  .footer-contacts {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
