/* TK Construction & Roofing: colors from tkconstructionroofing.com */

:root {
  --accent: #0053bb;
  --accent-dark: #003d8c;
  --accent-bright: #0517f6;
  --heading: #1a2433;
  --body: #3f4a58;
  --muted: #5a6573;
  --dark: #1d2e44;
  --dark-2: #152238;
  --white: #ffffff;
  --soft: #e8ecf2;
  --soft-deep: #dde3eb;
  --line: #d9dee6;
  --font: "Roboto", sans-serif;
  --display: "Barlow", sans-serif;
  --container: min(1200px, calc(100% - 30px));
  --measure: 40rem; /* readable text column - backgrounds may go full-bleed */
  --header-h: 90px;
  --radius: 3px;
  --shadow: 0 5px 83px 0 rgba(29, 46, 68, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 58px;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
p,
h1,
h2,
h3,
h4,
h6,
blockquote,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
.custom-heading {
  font-family: var(--display);
  font-weight: 700;
  color: var(--heading);
  letter-spacing: normal;
  text-transform: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  z-index: 100;
  background: var(--white);
  color: var(--heading);
  font-weight: 700;
}

.skip:focus,
.skip:focus-visible {
  position: fixed;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  overflow: visible;
  clip: auto;
  border: 2px solid var(--accent);
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Buttons: large, clear, easy to tap */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  height: auto;
  padding: 14px 22px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: none;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--white {
  background: var(--white);
  color: var(--heading);
}

.btn--white:hover {
  background: #f0f0f0;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--dark {
  background: var(--heading);
  color: var(--white);
}

.btn--dark:hover {
  background: #000;
}

.btn--outline {
  background: transparent;
  color: var(--heading);
  border: 2px solid var(--heading);
}

.btn--outline:hover {
  background: var(--heading);
  color: var(--white);
}

.eyebrow {
  margin-bottom: 12px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: none;
  letter-spacing: normal;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.92);
}

.custom-heading {
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.3;
}

.custom-heading--light {
  color: var(--white);
}

.section {
  padding: 100px 0 80px;
}

.section-head {
  max-width: var(--measure);
  margin: 0 auto 50px;
  text-align: center;
}

.section-head__lede {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
}

.section-head__lede a {
  color: var(--accent);
  font-weight: 700;
}

.section-head__lede a:hover {
  text-decoration: underline;
}

.read-more,
.explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-transform: none;
}

.read-more span,
.explore span {
  transition: transform 0.25s ease;
}

.read-more:hover span,
.explore:hover span {
  transform: translateX(3px);
}

.explore {
  color: var(--heading);
}

/* Header: transparent over hero with top scrim for contrast */

.header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(10, 16, 28, 0.82) 0%,
    rgba(10, 16, 28, 0.45) 45%,
    rgba(10, 16, 28, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.header.is-scrolled {
  position: fixed;
  background: rgba(29, 46, 68, 0.96);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header.is-scrolled::before {
  opacity: 0;
}

/* Interior / service pages: solid sticky chrome (not homepage hero overlay) */
.header--solid {
  position: fixed;
  background: rgba(29, 46, 68, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

.header--solid::before {
  display: none;
}

body.is-subpage {
  padding-top: var(--header-h);
}

.header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(260px, 48vw);
}

.nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: auto;
}

.nav > a,
.nav__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 17px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: var(--header-h);
  color: rgba(255, 255, 255, 0.95);
  text-transform: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav > a:hover,
.nav > a.is-active,
.nav__trigger:hover,
.nav__trigger.is-active,
.nav__item.is-open .nav__trigger {
  color: var(--accent);
}

.nav > a.is-active::after,
.nav__trigger.is-active::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 28px;
  height: 2px;
  background: var(--accent);
}

.nav__caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-top: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}

.nav__item.is-open .nav__caret,
.mobile-menu__trigger[aria-expanded="true"] .nav__caret {
  transform: rotate(180deg);
}

.nav__item {
  position: relative;
}

.nav__panel {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  z-index: 60;
  min-width: 280px;
  padding: 14px 0 12px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.nav__panel[hidden] {
  display: none;
}

.nav__panel-label {
  margin: 12px 18px 4px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.nav__panel-label:first-child {
  margin-top: 0;
}

.nav__panel-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 18px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.nav__panel-link:hover,
.nav__panel-link:focus-visible {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}

.nav__panel-link.is-current,
.mobile-menu__submenu a.is-current {
  color: #ffffff;
  font-weight: 700;
}

.nav__placeholder {
  cursor: default;
  opacity: 0.88;
}

.nav__placeholder::after {
  content: "Soon";
  flex-shrink: 0;
  margin-left: auto;
  padding: 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.header__right {
  display: none;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.header__phone-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  flex-shrink: 0;
}

.header__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.header__phone-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.header__phone-num {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.header__phone:hover {
  color: var(--accent);
}

.header__phone:hover .header__phone-icon {
  border-color: var(--accent);
}

.header__phone:hover .header__phone-label {
  color: rgba(0, 83, 187, 0.85);
}

.header__call-mobile {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
}

.header__call-mobile:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.menu-toggle {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.mobile-menu {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  padding: 8px 20px 20px;
  background: var(--dark);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu > a,
.mobile-menu__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 4px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.mobile-menu__group {
  display: grid;
}

.mobile-menu__submenu {
  display: grid;
  gap: 0;
  padding: 0 0 8px 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
  margin: 0 0 4px 4px;
}

.mobile-menu__submenu[hidden] {
  display: none;
}

.mobile-menu__submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 4px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.mobile-menu__label {
  margin: 10px 4px 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.mobile-menu .btn {
  margin-top: 10px;
}

.mobile-menu__meta {
  padding: 8px 4px 4px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.mobile-menu__meta a {
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.mobile-menu .btn--white {
  color: var(--heading);
}

/* Hero */

.hero {
  position: relative;
  background: #111;
  color: var(--white);
  height: min(78vh, 720px);
  min-height: 480px;
  max-height: 800px;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  height: 100%;
  min-height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  overflow: hidden;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero__slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__slide--soft > img {
  filter: blur(9px);
  transform: scale(1.12);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(12, 18, 28, 0.82) 0%,
    rgba(12, 18, 28, 0.55) 42%,
    rgba(12, 18, 28, 0.22) 100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 40%;
  max-width: none;
  min-width: min(100%, 280px);
  height: 100%;
  margin-left: max(15px, calc((100% - min(1200px, calc(100% - 30px))) / 2));
  margin-right: auto;
  padding: 110px 0 140px;
  color: var(--white);
  box-sizing: border-box;
}

.hero__eyebrow {
  margin-bottom: 12px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero__content h1,
.hero__content .hero__title {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 16px;
  max-width: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.hero__content p:not(.hero__title):not(.hero__eyebrow) {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.55;
  max-width: none;
  margin-bottom: 26px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__next {
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.hero__next:hover {
  color: var(--accent);
}

.hero__dots {
  position: absolute;
  left: max(15px, calc((100% - min(1200px, calc(100% - 30px))) / 2));
  bottom: 120px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero__dots button {
  width: 28px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero__dots button.is-active {
  background: var(--white);
}

/* Interior service page heroes - one shared container / grid system */

.breadcrumb {
  margin: 0 0 18px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #9aa3b0;
  font-weight: 500;
}

.breadcrumb [aria-current="page"] {
  color: var(--heading);
}

.page-hero {
  --hero-accent: var(--accent);
  --hero-wash: #e4eaf2;
  --hero-panel: rgba(255, 255, 255, 0.55);
  position: relative;
  overflow: hidden;
  background: var(--hero-wash);
  border-bottom: 1px solid var(--line);
}

.page-hero__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(0, 83, 187, 0.14), transparent 55%),
    repeating-linear-gradient(
      -16deg,
      transparent 0,
      transparent 10px,
      rgba(29, 46, 68, 0.03) 10px,
      rgba(29, 46, 68, 0.03) 11px
    );
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  padding: clamp(40px, 5.5vw, 64px) 0;
  min-height: 440px;
}

.page-hero--flip .page-hero__inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.page-hero--flip .page-hero__visual {
  order: -1;
}

.page-hero__copy {
  max-width: var(--measure);
}

.page-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hero-accent);
}

.page-hero__index {
  display: inline-grid;
  place-items: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 8px;
  border: 1px solid rgba(0, 83, 187, 0.35);
  border-color: var(--hero-accent);
  background: rgba(255, 255, 255, 0.72);
  color: var(--hero-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.page-hero__copy h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--heading);
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.page-hero__copy > p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-hero__visual {
  position: relative;
  isolation: isolate;
}

.page-hero__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--dark);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 90% 100%, 0 100%);
  transform: translateZ(0);
}

.page-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.page-hero:hover .page-hero__frame img {
  transform: scale(1.04);
}

.page-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    transparent 45%,
    rgba(12, 18, 28, 0.35) 100%
  );
  pointer-events: none;
}

.page-hero__accent {
  position: absolute;
  z-index: -1;
  width: min(46%, 220px);
  height: min(48%, 200px);
  right: -12px;
  bottom: -16px;
  background: var(--hero-accent);
}

.page-hero--flip .page-hero__accent {
  right: auto;
  left: -12px;
}

.page-hero__tag {
  position: absolute;
  left: 16px;
  bottom: 18px;
  z-index: 2;
  max-width: calc(100% - 32px);
  padding: 10px 14px;
  background: rgba(12, 18, 28, 0.82);
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

/* Theme variants - same layout, different atmosphere */
.page-hero--steel {
  --hero-accent: #0053bb;
  --hero-wash: #e4eaf2;
}

.page-hero--slate {
  --hero-accent: #1d2e44;
  --hero-wash: #e1e6ed;
}

.page-hero--navy {
  --hero-accent: #003d8c;
  --hero-wash: #d9e2ef;
}

.page-hero--ink {
  --hero-accent: #0053bb;
  --hero-wash: #d5dee9;
}

.page-hero--timber {
  --hero-accent: #8a5528;
  --hero-wash: #efe7dc;
}

.page-hero--clay {
  --hero-accent: #9a4d2e;
  --hero-wash: #eee4db;
}

.page-hero--ash {
  --hero-accent: #3f4f63;
  --hero-wash: #e7eaee;
}

.page-hero--frost {
  --hero-accent: #0053bb;
  --hero-wash: #edf1f6;
}

.page-hero--slate .page-hero__wash,
.page-hero--ash .page-hero__wash {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(29, 46, 68, 0.14), transparent 55%),
    repeating-linear-gradient(
      -16deg,
      transparent 0,
      transparent 10px,
      rgba(29, 46, 68, 0.03) 10px,
      rgba(29, 46, 68, 0.03) 11px
    );
}

.page-hero--timber .page-hero__wash,
.page-hero--clay .page-hero__wash {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(138, 85, 40, 0.16), transparent 55%),
    repeating-linear-gradient(
      -16deg,
      transparent 0,
      transparent 10px,
      rgba(29, 46, 68, 0.03) 10px,
      rgba(29, 46, 68, 0.03) 11px
    );
}

body.is-subpage .page-hero + .section,
body.is-subpage .page-hero + .about {
  padding-top: 64px;
}

@media (max-width: 899px) {
  .page-hero__inner,
  .page-hero--flip .page-hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 32px 0 40px;
    gap: 24px;
  }

  .page-hero--flip .page-hero__visual {
    order: 0;
  }

  .page-hero__copy {
    max-width: none;
  }

  .page-hero__frame {
    aspect-ratio: 16 / 10;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 94% 100%, 0 100%);
  }

  .page-hero__accent {
    width: 38%;
    height: 36%;
    right: -8px;
    bottom: -10px;
  }

  .page-hero--flip .page-hero__accent {
    left: -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__frame img,
  .page-hero:hover .page-hero__frame img {
    transition: none;
    transform: none;
  }
}

/* Info bar overlapping hero + next section */

.info-bar {
  position: relative;
  z-index: 5;
  margin-top: -100px;
  margin-bottom: -48px;
  padding-bottom: 0;
}

.info-bar__grid {
  display: grid;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.info-bar__contacts {
  display: grid;
  gap: 0;
  padding: 0;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 22px 24px;
  color: inherit;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.info-item:last-child {
  border-bottom: 0;
}

a.info-item:hover {
  background: var(--soft);
}

.info-item__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
}

.info-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.info-item__label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.info-item__value {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.25;
}

.info-item__sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.3;
}

.info-item--static .info-item__value {
  white-space: normal;
}

.info-bar__promo {
  background: var(--accent);
  color: var(--white);
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.info-bar__promo-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.info-bar__promo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.info-bar__promo-link:hover {
  opacity: 0.92;
}

/* Services */

.services {
  background: var(--soft);
  padding-top: 110px;
}

.services__pillar {
  margin: 8px 0 22px;
  text-align: center;
}

.services__pillar + .services__grid--more,
.services__pillar + .services__grid {
  margin-top: 0;
}

.services__pillar:not(:first-of-type) {
  margin-top: 48px;
}

.services__pillar h3 {
  display: inline-block;
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--accent);
}

.services__pillar h3 a {
  color: inherit;
}

.services__pillar h3 a:hover,
.services__pillar h3 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services__grid {
  display: grid;
  gap: 30px;
}

.services__grid--more {
  margin-top: 30px;
}

.service-card {
  display: block;
  background: var(--white);
  padding: 0 0 28px;
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 40px rgba(29, 46, 68, 0.16);
}

.service-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.service-card:hover .read-more {
  color: var(--accent-dark);
}

.service-card:hover .read-more span {
  transform: translateX(3px);
}

.service-card--static {
  padding: 28px 24px;
  cursor: default;
}

.service-card--static:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.service-card--static h3 {
  margin: 0 0 10px;
  padding: 0;
}

.service-card--static p {
  margin: 0;
  padding: 0;
}

.service-card__media {
  display: block;
  margin: 0 0 22px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark-2);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card h3,
.service-card p,
.service-card .read-more {
  padding-left: 30px;
  padding-right: 30px;
}

.service-card h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
}

/* About */

.about {
  display: grid;
  align-items: stretch;
}

.about__panel {
  background: var(--accent);
  color: var(--white);
  padding: 70px 40px;
}

.about__panel > * {
  max-width: var(--measure);
}

.about__panel .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.about__panel > p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  line-height: 1.6;
  margin: 16px 0 24px;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 18px;
}

.about__list li {
  display: grid;
  gap: 4px;
}

.about__list strong {
  font-family: var(--display);
  font-size: 18px;
  color: var(--white);
}

.about__list span {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.about__google {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.about__google a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about__google a:hover {
  opacity: 0.9;
}

.about__media {
  display: block;
  min-height: 280px;
  overflow: hidden;
  position: relative;
  align-self: stretch;
}

.about__media::after {
  content: "Request an estimate \2192";
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  padding: 10px 14px;
  background: rgba(26, 36, 51, 0.88);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.about__media:hover::after,
.about__media:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.about__media:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.about__media img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.about__media:hover img {
  transform: scale(1.03);
}

/* Process */

.process {
  background: var(--white);
}

.process__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}

.process__step {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 32px 28px;
}

.process__num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
}

.process__step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process__step p {
  font-size: 16px;
  line-height: 1.6;
}

.process__next {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.process__next-head {
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: center;
}

.process__next-eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.process__next-title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--heading);
}

.process__next-lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
}

.process__paths {
  display: grid;
  gap: 16px;
}

.process__path {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 24px 22px 22px 72px;
  background:
    linear-gradient(135deg, rgba(0, 83, 187, 0.06) 0%, transparent 42%),
    var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  overflow: hidden;
}

.process__path--review {
  border-left-color: #fbbc04;
  background:
    linear-gradient(135deg, rgba(251, 188, 4, 0.1) 0%, transparent 42%),
    var(--white);
}

.process__path-mark {
  position: absolute;
  left: 16px;
  top: 22px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  opacity: 0.35;
}

.process__path--review .process__path-mark {
  color: #c79200;
}

.process__path h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading);
}

.process__path > p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
}

.process__path-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 6px;
}

.process__path-actions .btn {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 15px;
}

.process__path-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

.process__path-link:hover {
  text-decoration: underline;
}

.process__path--review .btn {
  gap: 8px;
}

@media (min-width: 900px) {
  .process__paths {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .process__path {
    padding: 28px 22px 24px;
    grid-template-rows: auto auto 1fr auto;
  }

  .process__path-mark {
    position: static;
    margin-bottom: 4px;
    font-size: 36px;
    opacity: 0.28;
  }

  .process__path-actions {
    margin-top: auto;
    padding-top: 8px;
  }

  .process__path-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .process__path-link {
    width: 100%;
    text-align: center;
  }
}

/* Roof Condition Report */

.assess {
  background: var(--soft);
}

.assess__value {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  max-width: 800px;
  margin: 0 auto 28px;
  padding: 0;
}

.assess__value li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--heading);
}

.assess__value li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='10' fill='%230053bb'/%3E%3Cpath d='M5.8 10.2l2.6 2.6 5.8-5.8' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.assess__panel {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(29, 46, 68, 0.08);
  overflow: hidden;
}

.assess__test-banner {
  padding: 12px 22px;
  background: #fff6e5;
  border-bottom: 1px solid #f0d9a8;
  color: #5c4816;
  font-size: 14px;
  line-height: 1.5;
}

.assess__test-banner strong {
  color: #3f310f;
}

.assess__progress {
  height: 4px;
  background: #d5dbe3;
}

.assess__progress span {
  display: block;
  height: 100%;
  width: 20%;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

.assess__step-label {
  margin: 0;
  padding: 16px 28px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.assess__status {
  margin: 14px 28px 0;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
}

.assess__status--error {
  background: #fdecec;
  border: 1px solid #f0b7b7;
  color: #8a1f1f;
}

.assess__step {
  padding: 18px 28px 28px;
}

.assess__question {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 8px;
}

.assess__hint {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--muted);
}

.assess__options {
  display: grid;
  gap: 12px;
}

.assess__options--row {
  grid-template-columns: 1fr;
}

.assess__option {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.assess__option strong {
  font-family: var(--display);
  font-size: 17px;
  color: var(--heading);
}

.assess__option span {
  font-size: 14px;
  line-height: 1.45;
  color: var(--body);
}

.assess__option:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.assess__option.is-selected,
.assess__option[aria-pressed="true"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 83, 187, 0.18);
}

.assess__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.assess__chip {
  min-height: 42px;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.assess__chip:hover {
  border-color: var(--accent);
}

.assess__chip.is-selected,
.assess__chip[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.assess__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 22px;
}

.assess__nav--split {
  justify-content: space-between;
}

.assess__nav--end {
  justify-content: center;
  margin-top: 18px;
  padding-top: 8px;
}

.assess__nav-quiet {
  appearance: none;
  background: none;
  border: 0;
  padding: 8px 0;
  min-height: auto;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.assess__nav-quiet:hover,
.assess__nav-quiet:focus-visible {
  color: var(--heading);
  text-decoration-color: currentColor;
}

.assess__nav .btn--primary {
  min-width: min(100%, 220px);
}

.assess__result {
  margin-bottom: 28px;
  padding-bottom: 8px;
}

.assess__report-top {
  display: grid;
  gap: 22px;
  margin-bottom: 24px;
  align-items: center;
}

.assess__score-ring {
  --score: 70;
  width: 132px;
  height: 132px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle at center, var(--white) 58%, transparent 59%),
    conic-gradient(var(--accent) calc(var(--score) * 1%), #d5dbe3 0);
  box-shadow: inset 0 0 0 1px rgba(29, 46, 68, 0.06);
}

.assess__score-ring[data-level="now"] {
  background:
    radial-gradient(circle at center, var(--white) 58%, transparent 59%),
    conic-gradient(#b42318 calc(var(--score) * 1%), #d5dbe3 0);
}

.assess__score-ring[data-level="soon"] {
  background:
    radial-gradient(circle at center, var(--white) 58%, transparent 59%),
    conic-gradient(#b54708 calc(var(--score) * 1%), #d5dbe3 0);
}

.assess__score-num {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  color: var(--heading);
}

.assess__score-label {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.assess__result-eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.assess__urgency {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  border-radius: 4px;
  background: #e8f0fa;
  color: var(--accent);
}

.assess__urgency.is-now {
  background: #fdecec;
  color: #8a1f1f;
}

.assess__urgency.is-soon {
  background: #fff4e5;
  color: #8a4b08;
}

.assess__urgency.is-monitor {
  background: #e8f0fa;
  color: var(--accent);
}

.assess__report-intro h3 {
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: 12px;
}

.assess__report-intro > p:last-child {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
}

.assess__metrics {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.assess__metric {
  padding: 14px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.assess__metric-label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.assess__metric strong {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.35;
  color: var(--heading);
  font-weight: 700;
}

.assess__local {
  margin-bottom: 22px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f3f7fc 0%, #eaf1f9 100%);
  border-left: 3px solid var(--accent);
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

.assess__local strong {
  color: var(--heading);
}

.assess__plan,
.assess__checklist {
  margin-bottom: 22px;
}

.assess__plan h4,
.assess__checklist h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.assess__plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: plan;
}

.assess__plan-list li {
  display: grid;
  gap: 4px;
  position: relative;
  padding: 14px 14px 14px 52px;
  border: 1px solid var(--line);
  background: var(--white);
}

.assess__plan-list li::before {
  counter-increment: plan;
  content: counter(plan);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  background: var(--accent);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.assess__plan-when {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.assess__plan-what {
  font-size: 15px;
  line-height: 1.55;
  color: var(--heading);
}

.assess__checklist ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.assess__checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--heading);
}

.assess__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent);
  border-radius: 3px;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 8px 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center / 2px 8px no-repeat;
}

.assess__checklist-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.assess__lead {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.assess__lead-offer {
  margin-bottom: 20px;
  padding: 20px 18px;
  background: linear-gradient(160deg, #0b3d82 0%, #0053bb 55%, #1a6fd0 100%);
  color: rgba(255, 255, 255, 0.92);
}

.assess__lead-badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.assess__lead-offer h4 {
  font-size: clamp(22px, 3vw, 26px);
  color: #fff;
  margin-bottom: 10px;
}

.assess__lead-offer > p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
}

.assess__lead-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.assess__lead-perks li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.assess__lead-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.assess__form textarea {
  width: 100%;
  min-height: 88px;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
  color: var(--heading);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  resize: vertical;
}

.assess__form textarea:focus {
  outline: 2px solid rgba(0, 83, 187, 0.35);
  border-color: var(--accent);
}

.assess__form .btn {
  width: 100%;
  justify-content: center;
}

.assess__or-call {
  margin-top: 14px;
  text-align: center;
  font-size: 15px;
  color: var(--body);
}

.assess__or-call a {
  font-weight: 700;
  color: var(--accent);
}

.assess__done h3 {
  margin-bottom: 12px;
}

.assess__done p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

.assess__done a:not(.btn) {
  font-weight: 700;
  color: var(--accent);
}

.assess__done .btn {
  color: var(--white);
}

/* Shared form success (estimate + Roof Report) */

.form-success {
  margin-top: 8px;
  padding: 28px 22px;
  text-align: center;
  background: linear-gradient(160deg, #e8f7ee 0%, #d8f0e2 100%);
  border: 2px solid #2f9e5f;
  border-radius: var(--radius);
  box-shadow: 0 0 0 4px rgba(47, 158, 95, 0.12);
  animation: form-success-in 0.45s var(--ease);
}

.form-success__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  color: #1f8a4c;
}

.form-success__badge {
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #145c34;
  background: rgba(31, 138, 76, 0.16);
  border-radius: 4px;
}

.form-success h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  color: #145c34;
}

.form-success > p {
  margin: 0 auto 14px;
  max-width: 36em;
  font-size: 16px;
  line-height: 1.6;
  color: #1f3d2c;
}

.form-success > p a {
  font-weight: 700;
  color: #145c34;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.g-proof--cta {
  padding-right: max(15px, calc((100% - 1200px) / 2));
}

.g-proof__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 520px;
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid #e8eaed;
}

.g-proof__cta .g-proof__title {
  font-size: 28px;
}

.g-proof__cta .g-proof__meta {
  max-width: 40em;
}

.g-proof__cta .g-proof__view {
  margin-top: 6px;
}

.g-proof--cta .g-proof__more {
  margin: 0;
}

.form-success .btn--primary {
  background: #1f8a4c;
  color: var(--white);
}

.form-success .btn--primary:hover {
  background: #176b3b;
}

.assess__done.form-success {
  margin-bottom: 8px;
}

@keyframes form-success-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .form-success {
    animation: none;
  }
}

@media (min-width: 640px) {
  .assess__value {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px 12px;
  }

  .assess__value li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .assess__value li::before {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .assess__options--row {
    grid-template-columns: repeat(2, 1fr);
  }

  .assess__step,
  .assess__step-label {
    padding-left: 36px;
    padding-right: 36px;
  }

  .assess__step {
    padding-bottom: 36px;
  }

  .assess__report-top {
    grid-template-columns: 148px 1fr;
    gap: 28px;
  }

  .assess__score-ring {
    margin: 0;
  }

  .assess__metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .assess__lead-offer {
    padding: 24px 22px;
  }
}

/* FAQ */

.faq {
  background: var(--soft);
}

.faq__wrap {
  max-width: 760px;
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 20px;
  box-shadow: 0 2px 10px rgba(29, 46, 68, 0.04);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.35;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.faq__item[open] summary::after {
  content: "-";
}

.faq__item p {
  padding: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
}

/* Projects */

.projects {
  background: var(--soft);
}

.projects__grid {
  display: grid;
  gap: 30px;
}

.project-card {
  display: block;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(29, 46, 68, 0.16);
}

.project-card--static:hover {
  transform: none;
  box-shadow: var(--shadow);
}

.project-card--static:hover .project-card__media img {
  transform: none;
}

.project-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.project-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card__media img {
  transform: scale(1.05);
}

.project-card:hover .explore {
  color: var(--accent-dark);
}

.project-card:hover .explore span {
  transform: translateX(3px);
}

.project-card__body {
  padding: 28px 24px 30px;
}

.project-card__cat {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: none;
}

.project-card__body h3 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
}

.project-card__body p {
  font-size: 16px;
  line-height: 1.6;
}

/* CTA */

.cta-band {
  position: relative;
  color: var(--white);
  padding: 90px 0;
  overflow: hidden;
  border-top: 0;
  background: var(--dark-2);
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  background: var(--dark-2);
}

.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.32);
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.cta-band .custom-heading {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.35;
  max-width: 18ch;
  margin-bottom: 18px;
}

.cta-band__checks {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.5;
}

.cta-band__checks li::before {
  content: "\2713 ";
  color: #ffffff;
  font-weight: 700;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Quote */

.quote {
  margin-top: 0;
  position: relative;
  z-index: 4;
  padding: 80px 0;
  background: var(--soft-deep);
}

.quote__grid {
  display: grid;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote .client-note {
  margin-bottom: 18px;
}

.quote__info {
  background: var(--accent);
  color: var(--white);
  padding: 45px 35px;
}

.quote__block {
  margin-bottom: 26px;
}

.quote__block h6 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.quote__block p,
.quote__note {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.quote__phone {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.quote__info a:hover {
  text-decoration: underline;
}

.quote__form {
  background: var(--white);
  padding: 45px 35px;
}

.quote__form-wrap {
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.quote__form-wrap .quote__form {
  flex: 1;
  box-shadow: none;
}

.quote__test-banner {
  margin: 0;
  padding: 12px 18px;
  background: #fff6e5;
  border-bottom: 1px solid #f0d9a8;
  color: #5c4816;
  font-size: 14px;
  line-height: 1.5;
}

.quote__test-banner strong {
  color: #3f310f;
}

.quote__test-banner code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: rgba(255, 255, 255, 0.7);
  padding: 1px 5px;
  border-radius: 3px;
}

.quote__status {
  margin: 0;
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid transparent;
}

.quote__status--success {
  background: #e8f6ee;
  border-bottom-color: #b7dfc6;
  color: #1d5c38;
}

.quote__status--error {
  background: #fdecec;
  border-bottom-color: #f0b7b7;
  color: #8a1f1f;
}

.quote__form h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.quote__form-lede {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
  color: var(--body);
}

.quote__form .btn {
  width: 100%;
  justify-content: center;
}

.form-row {
  margin-bottom: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 52px;
  height: 52px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 16px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--heading);
  border-radius: var(--radius);
}

.form-row select {
  padding-right: 48px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath d='M1 1.5L7 6.5L13 1.5' stroke='%231a2433' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 14px 8px;
}

.form-row textarea {
  height: auto;
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 1px solid var(--accent);
  background: var(--white);
}

.form-row input.is-invalid,
.form-row select.is-invalid,
.form-row textarea.is-invalid {
  border-color: #c0392b;
  outline-color: #c0392b;
}

.form-error {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #8a1f1f;
}

.quote__form.is-submitting,
.quote__form-wrap.is-submitting .quote__form {
  opacity: 0.92;
}

.quote__form [data-submit]:disabled {
  opacity: 0.7;
  cursor: wait;
}

.quote__success {
  padding-top: 0;
}

.quote__success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.quote__success .btn,
.quote__success .btn--primary {
  color: var(--white);
}

.quote__terms {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--body);
}

.quote__reassure {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  color: var(--muted);
}

.quote__or-call {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  color: var(--body);
}

.quote__or-call a {
  color: var(--accent);
  font-weight: 700;
}

.quote__or-call a:hover {
  text-decoration: underline;
}

/* Google social proof - official review-card look */

.g-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  line-height: 1;
}

.g-stars img,
.g-stars svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.g-stars--sm img,
.g-stars--sm svg {
  width: 14px;
  height: 14px;
}

.g-wordmark {
  display: inline-flex;
  align-items: baseline;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.g-wordmark span:nth-child(1) { color: #4285f4; }
.g-wordmark span:nth-child(2) { color: #ea4335; }
.g-wordmark span:nth-child(3) { color: #fbbc05; }
.g-wordmark span:nth-child(4) { color: #4285f4; }
.g-wordmark span:nth-child(5) { color: #34a853; }
.g-wordmark span:nth-child(6) { color: #ea4335; }

.client-note {
  margin: 0 0 22px;
  padding: 14px 18px;
  background: #fff6e5;
  border: 1px solid #f0d9a8;
  border-radius: 4px;
  color: #5c4816;
  font-size: 15px;
  line-height: 1.55;
}

.client-note p {
  margin: 0;
}

.client-note strong {
  color: #3f310f;
}

.client-note a {
  color: #3f310f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.client-note-wrap {
  padding-top: 28px;
}

.client-note-wrap .client-note {
  margin-bottom: 0;
}

.reviews-select {
  margin: 10px 0 0;
  max-width: 40rem;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.reviews-select a {
  color: var(--accent);
  font-weight: 700;
}

.reviews-select a:hover {
  text-decoration: underline;
}

.g-proof {
  position: relative;
  z-index: 1;
  margin: 0 0 56px;
  padding: 8px 0 8px max(15px, calc((100% - 1200px) / 2));
}

.g-proof__layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 28px 32px;
  align-items: stretch;
}

.g-proof__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 22px 18px;
  min-height: 100%;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12), 0 2px 6px rgba(60, 64, 67, 0.08);
}

.g-proof__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 0;
}

.g-proof__rating strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: #202124;
}

.g-proof__title {
  margin: 6px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: #202124;
}

.g-proof__meta {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #5f6368;
}

.g-proof__view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 12px 8px 8px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  background: #fff;
  color: #1a73e8;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.g-proof__view img {
  width: 18px;
  height: 18px;
}

.g-proof__view:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
}

.g-proof__more {
  margin: 2px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a73e8;
}

.g-proof__more:hover {
  text-decoration: underline;
}

.g-proof__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
}

.g-proof__arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #dadce0;
  border-radius: 50%;
  background: #fff;
  color: #3c4043;
  cursor: pointer;
  flex-shrink: 0;
}

.g-proof__arrow:hover:not(:disabled) {
  background: #f8f9fa;
  color: #1a73e8;
}

.g-proof__arrow:disabled {
  color: #bdc1c6;
  cursor: default;
}

.g-proof__progress {
  position: relative;
  flex: 1;
  height: 3px;
  background: #e8eaed;
  overflow: hidden;
  border-radius: 2px;
}

.g-proof__progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 33%;
  background: #1a73e8;
  transition: left 0.35s var(--ease), width 0.35s var(--ease);
}

.g-proof__scroller {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  padding: 4px 20px 10px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.g-proof__scroller::-webkit-scrollbar {
  display: none;
}

.g-card,
.g-bubble,
.g-review {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12), 0 1px 3px rgba(60, 64, 67, 0.08);
  padding: 16px 16px 18px;
}

.g-bubble {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  height: auto;
  min-height: 0;
  align-self: flex-start;
}

.g-card__head,
.g-review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
}

.g-card__avatar,
.g-bubble__avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}

.g-card__avatar--a { background: #4285f4; }
.g-card__avatar--b { background: #34a853; }
.g-card__avatar--c { background: #ea4335; }
.g-card__avatar--d { background: #f9ab00; }
.g-card__avatar--e { background: #a142f4; }

.g-card__id {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.g-card__name,
.g-card__id strong,
.g-review .g-card__name {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #202124;
}

.g-card__via,
.g-review__source {
  display: block;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #5f6368;
}

.g-card__g,
.g-review__g {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: auto;
}

.g-card .g-stars,
.g-bubble .g-stars,
.g-review .g-stars {
  margin: 2px 0 8px;
}

.g-card__text,
.g-bubble > p:not(.g-stars),
.g-review > p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  color: #3c4043;
}

.g-review footer {
  display: none;
}

@media (max-width: 900px) {
  .g-proof {
    padding-left: 15px;
    padding-right: 0;
  }

  .g-proof__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .g-proof__intro {
    max-width: none;
    margin-right: 15px;
  }

  .g-proof__scroller {
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .g-proof {
    margin-bottom: 40px;
  }

  .g-bubble {
    flex-basis: min(300px, 86vw);
    min-height: 0;
  }
}

.g-summary {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 22px auto 0;
  padding: 20px 22px 18px;
  max-width: 360px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12), 0 2px 6px rgba(60, 64, 67, 0.08);
  text-align: center;
}

.g-summary .g-wordmark {
  font-size: 24px;
}

.g-summary__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.g-summary__score strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: #202124;
}

.g-summary__meta {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #5f6368;
}

.g-summary__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1a73e8;
}

.g-summary__link:hover {
  text-decoration: underline;
}

.g-head .custom-heading {
  margin-bottom: 0;
}

.g-head .reviews-select {
  margin-top: 8px;
}

.testimonials__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  text-align: center;
}

.testimonials__cta-label {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
}

.testimonials__cta-btn {
  min-width: min(100%, 280px);
  background: #fff !important;
  color: #1a73e8 !important;
  border: 1px solid #dadce0;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12);
  font-family: Arial, Helvetica, sans-serif;
}

.testimonials__cta-btn:hover {
  background: #f8f9fa !important;
  color: #174ea6 !important;
}

.testimonials__cta-btn img {
  flex-shrink: 0;
}

.cta-band__google {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}

.cta-band__google a {
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band__google a:hover {
  opacity: 0.9;
}

/* Testimonials */

.testimonials {
  background: #f8f9fa;
}

.testimonials__grid {
  column-count: 1;
  column-gap: 16px;
  column-fill: balance;
}

@media (min-width: 700px) {
  .testimonials__grid {
    column-count: 2;
  }
}

@media (min-width: 1080px) {
  .testimonials__grid {
    column-count: 3;
  }
}

.testimonials__grid blockquote,
.testimonials__grid .g-review {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  background: #fff;
  border: 1px solid #e8eaed;
  padding: 16px 16px 18px;
  height: auto;
}

.testimonials__grid .g-review > p {
  font-size: 14px;
  line-height: 1.55;
  font-style: normal;
  font-weight: 400;
  color: #3c4043;
  margin: 0;
}

.testimonials__grid .g-card__name,
.testimonials__grid .g-review .g-card__name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #202124;
}

/* Footer */

.footer {
  background: #152238;
  color: #c5ccd6;
}

.footer__grid {
  display: grid;
  gap: 36px;
  padding: 80px 0 50px;
}

.footer__brand p {
  margin-top: 18px;
  max-width: 320px;
  font-size: 16px;
  line-height: 1.6;
}

.footer__phone {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.footer__reg {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  font-variant: small-caps;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #8e9aab;
}

.footer__reg span {
  display: block;
}

.footer ul .footer__reg {
  font-size: 13px;
  color: #8e9aab;
}

.footer__phone:hover {
  color: #8eb6f0;
}

.footer h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 16px;
}

.footer a {
  color: #d7dde6;
}

.footer a:hover {
  color: #ffffff;
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f1b2d;
}

.footer__bar-inner {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-size: 14px;
  color: #a8b2c0;
}

.footer__copy {
  margin: 0;
  white-space: nowrap;
}

.footer__serving {
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  white-space: nowrap;
}

.footer__credit {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #a8b2c0;
}

.footer__credit-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: inherit;
}

.footer__credit-logo {
  display: block;
  height: 31px;
  width: auto;
  /* Match footer text color; brand cyan returns on hover */
  filter: brightness(0) invert(0.72);
  transition: filter 0.25s ease;
}

.footer__credit-link:hover,
.footer__credit-link:focus-visible {
  color: inherit;
}

.footer__credit-link:hover .footer__credit-logo,
.footer__credit-link:focus-visible .footer__credit-logo {
  filter: none;
}

/* Sticky mobile call bar */

.mobile-callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  height: 58px;
  background: var(--dark);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

.mobile-callbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  padding: 0 8px;
}

.mobile-callbar__call {
  background: var(--accent);
}

.mobile-callbar__call:hover {
  background: var(--accent-dark);
}

.mobile-callbar__quote:hover {
  background: #111;
}

/* Responsive */

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .nav,
  .header__right {
    display: flex;
  }

  .nav > a,
  .nav__trigger {
    padding: 0 10px;
    font-size: 15px;
  }

  .nav > a.is-active::after,
  .nav__trigger.is-active::after {
    left: 10px;
    right: 10px;
  }

  .menu-toggle,
  .mobile-menu,
  .header__call-mobile,
  .mobile-callbar {
    display: none !important;
  }

  .header__phone-label {
    display: none;
  }

  .header__right .btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .info-bar__grid {
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }

  .info-bar__contacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    padding: 0;
  }

  .info-item {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 28px 26px;
  }

  .info-item:last-child {
    border-right: 0;
  }

  .info-bar__promo {
    min-width: 260px;
    padding: 28px 32px;
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about {
    grid-template-columns: 1fr 1.05fr;
    min-height: 520px;
    align-items: stretch;
  }

  .about__panel {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about__panel .custom-heading {
    font-size: 40px;
    line-height: 54px;
  }

  .about__media {
    min-height: 0;
    height: 100%;
  }

  .about__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .cta-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .quote__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nav > a,
  .nav__trigger {
    padding: 0 17px;
    font-size: 16px;
  }

  .nav > a.is-active::after,
  .nav__trigger.is-active::after {
    left: 17px;
    right: 17px;
  }

  .header__phone-label {
    display: block;
  }

  .hero {
    height: min(74vh, 700px);
  }

  .info-bar {
    margin-top: -110px;
    margin-bottom: -56px;
  }

  .quote__info,
  .quote__form {
    padding: 55px 45px;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

@media (max-width: 1023px) {
  .footer__bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 10px 20px;
  }

  .footer__copy,
  .footer__serving,
  .footer__credit {
    position: static;
    transform: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    justify-content: center;
    pointer-events: auto;
    white-space: normal;
    padding: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 72px;
  }

  .logo__img {
    height: 50px;
  }

  .section {
    padding: 72px 0 56px;
  }

  .section-head {
    margin-bottom: 36px;
    text-align: center;
  }

  .custom-heading {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.2;
  }

  .hero {
    height: min(70vh, 560px);
    min-height: 440px;
  }

  .hero__content {
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    padding: 96px 0 120px;
    text-align: center;
    align-items: center;
  }

  .hero__content h1,
  .hero__content .hero__title {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .hero__content p:not(.hero__title):not(.hero__eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    width: 100%;
    justify-content: center;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 160px);
    justify-content: center;
  }

  .hero__next {
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .hero__dots {
    bottom: 96px;
    justify-content: center;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .info-bar {
    margin-top: -72px;
    margin-bottom: -36px;
  }

  .info-item,
  .info-item--static {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 18px;
    gap: 10px;
  }

  .info-item__text {
    align-items: center;
  }

  .info-bar__promo {
    align-items: center;
    text-align: center;
    padding: 22px 20px;
  }

  .info-bar__promo-link {
    justify-content: center;
  }

  .services {
    padding-top: 88px;
  }

  .service-card {
    padding: 0 0 24px;
    text-align: center;
  }

  .service-card h3,
  .service-card p,
  .service-card .read-more {
    padding-left: 22px;
    padding-right: 22px;
  }

  .read-more,
  .explore {
    justify-content: center;
  }

  .about__panel {
    padding: 48px 24px;
    text-align: center;
  }

  .about__panel > * {
    margin-left: auto;
    margin-right: auto;
  }

  .about__list li {
    text-align: center;
  }

  .about__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about__google {
    margin-top: 32px;
    padding-top: 22px;
    justify-content: center;
    text-align: center;
  }

  .about__media {
    min-height: 280px;
  }

  .process__step {
    padding: 26px 22px;
    text-align: center;
  }

  .process__num {
    margin-left: auto;
    margin-right: auto;
  }

  .assess__step,
  .assess__step-label {
    padding-left: 18px;
    padding-right: 18px;
  }

  .assess__value {
    justify-items: stretch;
  }

  .assess__value li {
    justify-content: flex-start;
    text-align: left;
  }

  .assess__question,
  .assess__hint,
  .assess__result,
  .assess__report-intro,
  .assess__lead,
  .assess__done,
  .assess__plan h4,
  .assess__checklist h4,
  .assess__checklist-note,
  .assess__local {
    text-align: center;
  }

  .assess__option {
    text-align: center;
  }

  .assess__chips {
    justify-content: center;
  }

  .assess__nav {
    justify-content: flex-start;
  }

  .assess__nav--split {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .assess__nav--split .btn--primary {
    width: 100%;
    justify-content: center;
  }

  .assess__nav--split .assess__nav-quiet,
  .assess__nav--end .assess__nav-quiet {
    align-self: center;
    text-align: center;
  }

  .assess__nav .btn {
    flex: 0 1 auto;
    justify-content: center;
  }

  .assess__plan-list li,
  .assess__checklist li,
  .assess__lead-perks li,
  .assess__metric {
    text-align: left;
  }

  .assess__urgency {
    text-align: left;
  }

  .project-card,
  .project-card__body {
    text-align: center;
  }

  .g-summary {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }

  .g-summary__score {
    justify-content: center;
  }

  .g-summary__link {
    margin-left: 0;
  }

  .g-review,
  .testimonials__grid blockquote {
    text-align: left;
  }

  .g-review__head {
    justify-content: flex-start;
  }

  .testimonials__cta {
    gap: 12px;
  }

  .testimonials__cta-btn {
    width: 100%;
    max-width: 320px;
  }

  .faq__wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .faq__item summary {
    position: relative;
    text-align: center;
    padding-left: 28px;
    padding-right: 28px;
  }

  .faq__item summary::after {
    float: none;
    position: absolute;
    right: 0;
    top: 18px;
  }

  .faq__item p {
    text-align: center;
  }

  .cta-band {
    padding: 64px 0;
  }

  .cta-band__inner {
    text-align: center;
    align-items: center;
  }

  .cta-band__checks {
    align-items: center;
  }

  .cta-band__checks li {
    justify-content: center;
  }

  .cta-band__google {
    justify-content: center;
  }

  .cta-band__actions {
    width: 100%;
    justify-content: center;
  }

  .cta-band__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 160px);
    justify-content: center;
  }

  .quote {
    padding: 56px 0 72px;
  }

  .quote__info,
  .quote__form {
    padding: 32px 22px;
    text-align: center;
  }

  .quote__form .btn {
    width: 100%;
    justify-content: center;
  }

  .quote__phone {
    font-size: 28px;
  }

  .quote__success-actions {
    flex-direction: column;
  }

  .quote__success-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .quote__test-banner {
    text-align: left;
  }

  .footer {
    text-align: center;
    padding-bottom: 8px;
  }

  .footer__grid {
    gap: 32px;
    padding: 56px 0 40px;
    justify-items: center;
  }

  .footer__brand,
  .footer__grid > div {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__brand .logo {
    justify-content: center;
  }

  .footer__brand p {
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
  }

  .footer h4 {
    margin-bottom: 14px;
  }

  .footer ul {
    justify-items: center;
  }

  .footer__contact {
    text-align: center;
  }

  .footer__bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 16px 0 20px;
  }

  .footer__copy,
  .footer__serving,
  .footer__credit {
    justify-self: center;
  }

  .footer__contact .footer__reg {
    text-align: center;
    align-items: center;
  }

  .footer__credit-logo {
    height: 29px;
  }
}

/* Project gallery (projects.html) */

.gallery {
  background: var(--white);
}

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 16px;
  max-width: 820px;
}

.gallery__chip {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--heading);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 9px 15px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery__chip:hover {
  border-color: #b7c2d0;
  background: #f3f6fa;
}

.gallery__chip.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.gallery__chip:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.gallery__count {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.gallery__grid {
  column-count: 1;
  column-gap: 24px;
  column-fill: balance;
  padding: 6px 4px 0;
}

@media (min-width: 700px) {
  .gallery__grid {
    column-count: 2;
  }
}

@media (min-width: 1080px) {
  .gallery__grid {
    column-count: 3;
  }
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item__hit {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--white);
  text-align: left;
  cursor: zoom-in;
  overflow: hidden;
  box-shadow: var(--shadow);
  color: inherit;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.gallery-item__hit:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(29, 46, 68, 0.16);
}

.gallery-item__hit:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.gallery-item__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark-2);
}

.gallery-item:nth-child(5n + 2) .gallery-item__media {
  aspect-ratio: 5 / 4;
}

.gallery-item:nth-child(5n + 4) .gallery-item__media {
  aspect-ratio: 16 / 11;
}

.gallery-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.gallery-item__hit:hover .gallery-item__media img {
  transform: scale(1.04);
}

.gallery-item__body {
  display: grid;
  gap: 6px;
  padding: 18px 18px 20px;
}

.gallery-item__cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-item__title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--heading);
}

.gallery-item__lede {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.5;
  color: var(--body);
}

.gallery__empty {
  margin: 28px 0 0;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  text-align: center;
  color: var(--body);
}

.gallery__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.gallery__proof .btn {
  width: auto;
}

.section-head__cta {
  margin: 18px 0 0;
}

/* Shared readable text column (never stretch body copy with the background) */
.prose {
  max-width: var(--measure);
  width: 100%;
}

.copy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.copy-list li {
  display: grid;
  gap: 4px;
}

.copy-list strong {
  font-family: var(--display);
  font-size: 18px;
  color: var(--heading);
}

.copy-list span {
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
}

/* Contact page cards */
.contact-cards {
  padding-top: 48px;
  padding-bottom: 16px;
  background: var(--white);
}

.contact-cards__grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 700px) {
  .contact-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .contact-cards__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(13.5rem, 1.55fr) minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 18px;
  }
}

.contact-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 100%;
  padding: 22px 20px 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

a.contact-card:hover {
  border-color: #b8c4d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29, 46, 68, 0.1);
}

a.contact-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.contact-card--static {
  cursor: default;
}

.contact-card__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-card__value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--heading);
  white-space: nowrap;
}

a[href^="mailto:"]:not(.contact-card) {
  white-space: nowrap;
}

.contact-card__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

body.is-subpage .contact-cards + .quote {
  padding-top: 40px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 28, 0.82);
  border: 0;
  cursor: zoom-out;
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  outline: none;
}

.lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: rgba(12, 18, 28, 0.78);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: var(--accent);
}

.lightbox__figure {
  margin: 0;
  display: grid;
}

@media (min-width: 800px) {
  .lightbox__figure {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 480px;
  }
}

.lightbox__figure img {
  width: 100%;
  height: 100%;
  max-height: 55vh;
  object-fit: cover;
  background: var(--dark-2);
}

@media (min-width: 800px) {
  .lightbox__figure img {
    max-height: none;
    min-height: 480px;
  }
}

.lightbox__caption {
  padding: 28px 26px 30px;
  display: grid;
  align-content: center;
  gap: 10px;
  background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
}

.lightbox__cat {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.lightbox__caption h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  color: var(--heading);
}

.lightbox__caption > p:not(.lightbox__cat) {
  margin: 0;
  color: var(--body);
  line-height: 1.6;
}

.lightbox__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

body.is-lightbox-open {
  overflow: hidden;
}

/* Before / after compare slider */

.ba-section {
  background: var(--white);
}

.ba-section--soft {
  background: var(--soft);
}

.ba {
  --pos: 50%;
  margin: 0 auto;
  max-width: 920px;
}

.ba-grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.ba--soffit .ba__img {
  object-position: center 18%;
}

.ba-grid .ba {
  min-width: 0;
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.ba__viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--dark-2);
  box-shadow: var(--shadow);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}

.ba__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
}

.ba__img--before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 2;
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(12, 18, 28, 0.18);
}

.ba__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(12, 18, 28, 0.28);
}

.ba__knob svg {
  display: block;
}

.ba__label {
  position: absolute;
  top: 14px;
  z-index: 3;
  padding: 8px 12px;
  background: rgba(12, 18, 28, 0.82);
  color: #fff;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

.ba__label--before {
  left: 14px;
}

.ba__label--after {
  right: 14px;
}

.ba__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
}

.ba__range:focus-visible + .ba__divider .ba__knob,
.ba__viewport:focus-within .ba__knob {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--accent);
}

.ba__range::-webkit-slider-runnable-track {
  height: 100%;
  background: transparent;
}

.ba__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 56px;
  height: 100vh;
  background: transparent;
}

.ba__range::-moz-range-track {
  height: 100%;
  background: transparent;
  border: 0;
}

.ba__range::-moz-range-thumb {
  width: 56px;
  height: 400px;
  border: 0;
  background: transparent;
}

.ba__caption {
  margin-top: 14px;
  padding: 0 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}

.ba__caption strong {
  color: var(--heading);
  font-weight: 700;
}

.ba-extras {
  display: grid;
  gap: 22px;
  margin: 36px auto 0;
  max-width: 920px;
}

.ba-extras figure {
  margin: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ba-section--soft .ba-extras figure {
  background: var(--white);
}

.ba-extras img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ba-extras figcaption {
  padding: 14px 16px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}

@media (min-width: 768px) {
  .ba-extras {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .ba-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
  }

  .ba-grid > .ba-grid__span {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__slide,
  .service-card,
  .project-card__media img,
  .gallery-item__hit,
  .gallery-item__media img {
    transition: none !important;
    transform: none !important;
  }
}
