:root {
  --bg: #f4f5f6;
  --bg-soft: #e3e6e8;
  --panel: rgba(255, 255, 255, 0.88);
  --panel-strong: #111317;
  --panel-dark: #1a1d22;
  --line: rgba(17, 19, 23, 0.12);
  --line-strong: rgba(17, 19, 23, 0.28);
  --text: #17191c;
  --muted: #5f666f;
  --white: #ffffff;
  --platinum: #9aa1ab;
  --graphite: #2c333d;
  --bronze: #434a54;
  --sand: #c7ccd2;
  --shadow: 0 4px 16px rgba(28, 29, 31, 0.08);
  --radius-xl: 10px;
  --radius-lg: 6px;
  --radius-md: 4px;
  --container: min(1180px, calc(100vw - 40px));
  --display: "Space Grotesk", Arial, sans-serif;
  --body: "Space Grotesk", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(67, 74, 84, 0.14), transparent 30rem),
    radial-gradient(circle at left 20%, rgba(154, 161, 171, 0.18), transparent 28rem),
    linear-gradient(180deg, #f8f9fa 0%, #eef0f2 44%, #e5e8eb 100%);
  overflow-x: hidden;
}

body.review-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  background: #171a1d;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

.skip-link:focus {
  top: 8px;
}

.preview-ribbon {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  padding: 8px 18px;
  background: linear-gradient(90deg, rgba(17, 19, 23, 0.98), rgba(46, 53, 64, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.preview-ribbon__label {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--sand);
  font-weight: 700;
}

.preview-ribbon__text {
  color: rgba(255, 255, 255, 0.76);
}

.preview-ribbon__action {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.preview-ribbon__action:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header {
  max-width: 820px;
  width: 100%;
  margin: 18px auto 0;
  padding: 16px 24px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "brand"
    "nav";
  align-items: start;
  gap: 12px;
  position: sticky;
  top: 48px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 30px;
  box-shadow: 0 18px 36px rgba(17, 19, 23, 0.08);
  overflow: visible;
}

.brand {
  grid-area: brand;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  width: 100%;
  padding-bottom: 8px;
  text-align: center;
  text-decoration: none;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(300px, 100%);
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.brand__mark img {
  width: 100%;
  max-height: none;
  height: auto;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand__copy strong {
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
  letter-spacing: 0.09em;
  line-height: 0.96;
  text-transform: uppercase;
}

.brand__copy span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  text-decoration: none;
  color: var(--muted);
  border-radius: 999px;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav .button--small {
  margin-left: 0;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--text);
  background: rgba(17, 19, 23, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--panel-strong), var(--graphite));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(17, 19, 23, 0.12);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(17, 19, 23, 0.16);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
  border-color: rgba(17, 19, 23, 0.14);
  box-shadow: none;
}

.button--small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
  color: #fff;
}

.button-row,
.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.nav-toggle {
  grid-area: toggle;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 999px;
}

body[data-page="home"] .site-header {
  padding: 12px 20px 10px;
  gap: 8px;
}

body[data-page="home"] .brand {
  gap: 0;
  padding-bottom: 0;
}

body[data-page="home"] .brand__mark {
  width: min(312px, 100%);
  height: auto;
  overflow: visible;
}

body[data-page="home"] .brand__mark img {
  width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
}

body[data-page="home"] .brand__copy {
  margin-top: 0;
}

.cta-subnav {
  display: grid;
  gap: 10px;
}

.chip-list--cta {
  margin-top: 0;
}

.hero,
.page-hero,
.section,
.site-footer {
  max-width: 820px;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: stretch;
  padding: 54px 0 26px;
}

.hero__copy,
.page-hero__copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.landing-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 18px;
}

.landing-hero__shell {
  position: relative;
  display: grid;
  gap: 14px;
}

.landing-hero__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-hero__topline a,
.landing-hero__topline span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 19, 23, 0.1);
  box-shadow: 0 14px 30px rgba(17, 19, 23, 0.06);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.landing-hero__topline a:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(17, 19, 23, 0.16);
}

.landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 22px;
  align-items: start;
}

.landing-hero__content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 244, 246, 0.78));
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: 0 30px 70px rgba(17, 19, 23, 0.1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--bronze), rgba(67, 74, 84, 0.1));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  text-transform: none;
}

h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
}

h3 {
  font-size: 1.1rem;
  line-height: 1.2;
}

p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero__lede {
  max-width: 34rem;
  font-size: 1.08rem;
}

body[data-page="home"] h1,
body[data-page="home"] h2 {
  font-family: var(--body);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: none;
}

body[data-page="home"] h1 {
  max-width: 16ch;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

body[data-page="home"] h2 {
  max-width: 22ch;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.landing-hero__lede {
  max-width: 30rem;
  color: var(--muted);
  font-size: 1rem;
}

.hero-reel-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.94fr) minmax(0, 1.06fr);
  gap: 18px;
  padding: 16px;
  border-radius: calc(var(--radius-xl) - 2px);
  background: linear-gradient(160deg, #171b21 0%, #222933 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(17, 19, 23, 0.18);
}

.hero-reel-card__media {
  min-height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #111317;
}

.hero-reel-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111317;
}

.hero-reel-card__copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.hero-reel-card__copy .card-label {
  margin-bottom: 0;
  color: var(--sand);
}

.hero-reel-card__copy strong {
  display: block;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.18;
}

.hero-reel-card__copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.hero-reel-card .text-link {
  color: var(--white);
}

.landing-proofchips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-proofchips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 19, 23, 0.08);
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 700;
}

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

.landing-service-pill {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: 0 18px 36px rgba(17, 19, 23, 0.06);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.landing-service-pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(17, 19, 23, 0.16);
}

.landing-service-pill strong {
  color: var(--text);
  font-size: 1rem;
}

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

.landing-hero__aside {
  display: grid;
  gap: 14px;
  align-content: start;
}

.landing-hero__image {
  margin: 0;
  min-height: 280px;
  border-radius: calc(var(--radius-xl) - 2px);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(10, 12, 15, 0.14);
}

.landing-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero__card {
  width: auto;
  margin: 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #171b21 0%, #222933 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(17, 19, 23, 0.24);
}

.landing-hero__card h2 {
  color: var(--white);
}

.landing-hero__card p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 10px;
}

.landing-hero__card--compact {
  padding: 20px 22px;
}

.landing-hero__actionlist {
  display: grid;
  gap: 10px;
}

.landing-hero__action {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.landing-hero__action:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.landing-hero__action span {
  color: var(--sand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-hero__action strong {
  color: var(--white);
  font-size: 1.08rem;
}

.landing-hero__action em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  line-height: 1.5;
}

.landing-hero__quickgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.landing-hero__quickaction {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.landing-hero__quickaction:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.landing-hero__quickaction span {
  color: var(--sand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-hero__quickaction strong {
  color: var(--white);
  font-size: 1.04rem;
  line-height: 1.25;
}

.landing-hero__quicknote {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.landing-hero__quicknote a {
  color: var(--white);
}

.landing-hero__meta {
  display: grid;
  gap: 4px;
}

.landing-hero__meta strong {
  color: var(--sand);
}

.landing-hero__meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.landing-hero__support-link {
  color: var(--white);
}

.landing-metrics {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 8px 0 20px;
}

.landing-metric {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: var(--shadow);
}

.landing-metric span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-metric strong {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.35;
}

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

.service-grid--home .service-card {
  gap: 10px;
}

.detail-card,
.content-panel,
.service-card,
.process-step,
.contact-card,
.trust-card,
.link-card,
.faq-card,
.city-card,
.project-card {
  position: relative;
  padding: 16px 18px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.detail-card::after,
.content-panel::after,
.service-card::after,
.contact-card::after,
.trust-card::after,
.link-card::after,
.faq-card::after,
.city-card::after,
.project-card::after {
  display: none;
}

.detail-card__label,
.service-card__number {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--bronze);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-card strong,
.story-stats strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--text);
}

.hero__media,
.page-hero__media {
  position: relative;
}

.media-frame,
.page-hero__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel-dark);
  box-shadow: 0 4px 20px rgba(17, 19, 23, 0.1);
}

.media-frame img,
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--primary {
  min-height: 540px;
}

.hero__stack {
  position: absolute;
  right: -18px;
  bottom: -22px;
  display: grid;
  gap: 14px;
  width: min(48%, 250px);
}

.media-frame--angled,
.media-frame--tile {
  min-height: 180px;
}

.media-frame--angled {
  transform: rotate(4deg);
}

.media-frame--tile {
  transform: rotate(-6deg);
}

.section {
  padding: 54px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
  max-width: 46rem;
}

.service-grid,
.process-grid,
.value-grid,
.systems-grid,
.section--content-grid,
.section--contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.section--contact-grid .contact-card {
  display: flex;
  flex-direction: column;
}

.section--contact-grid .contact-card .button {
  margin-top: auto;
}

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

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

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

.service-card ul,
.checklist {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-card li,
.checklist li {
  margin-bottom: 8px;
}

.trust-grid,
.link-grid,
.faq-grid,
.city-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.trust-card,
.link-card,
.faq-card,
.city-card,
.project-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
}

.trust-card strong,
.link-card strong,
.faq-card strong,
.city-card strong,
.project-card strong {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
}

.trust-card__eyebrow,
.card-label {
  display: inline-flex;
  margin-bottom: 4px;
  color: var(--bronze);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip-list a,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(17, 19, 23, 0.12);
}

.chip-list a:hover {
  background: rgba(17, 19, 23, 0.08);
}

.chip-list--centered {
  justify-content: center;
}

.contact-card--primary {
  border-color: var(--bronze);
  border-width: 2px;
}

.contact-card--primary h2 a {
  color: var(--bronze);
  text-decoration: none;
}

.contact-card h2 a {
  text-decoration: none;
  color: inherit;
}

.section--address {
  text-align: center;
  padding: 24px 20px 0;
}

.address-block address {
  font-style: normal;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.section--service-areas-strip,
.section--areas-strip {
  text-align: center;
}

.section--service-areas-strip .section-heading h2 {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  font-weight: 500;
}

.section--cta-hero {
  text-align: center;
  padding: 60px 20px;
}

.cta-hero {
  max-width: 640px;
  margin: 0 auto;
}

.cta-hero h2 {
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.2;
  margin: 0 0 10px;
}

.cta-hero p {
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 17px;
}

.cta-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.button--large {
  min-height: 56px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
}

/* Trust stack — homepage */
.section--trust-stack {
  padding: 32px 20px 0;
}

.trust-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trust-stack__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 12px;
  background: var(--panel);
  text-align: center;
}

.trust-stack__item strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.trust-stack__item span {
  font-size: 13px;
  color: var(--muted);
}

/* Review grid — homepage */
.section--reviews {
  padding: 48px 20px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.review-card {
  padding: 16px 18px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.review-card__stars {
  color: var(--bronze);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
  font-style: italic;
}

.review-card__author {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.section--blog {
  padding: 48px 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.blog-card {
  padding: 16px 18px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.blog-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  line-height: 1.3;
}

.blog-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--bronze);
}

.blog-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.services-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}

.services-inline a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 19, 23, 0.12);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}

.services-inline a:hover {
  background: var(--bronze);
  color: #fff;
  border-color: var(--bronze);
}

.section--services-inline {
  padding: 20px 20px 40px;
}

.city-card figure,
.project-card figure {
  margin: 0;
  min-height: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--panel-dark);
}

.city-card img,
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-proof-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: stretch;
}

.social-video-card,
.social-feed-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: var(--shadow);
}

.social-video-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  padding: 24px;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 235, 238, 0.78));
}

.social-video-card::after,
.social-feed-card::after {
  content: "";
  position: absolute;
  inset: auto -24px -44px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(154, 161, 171, 0.18), rgba(154, 161, 171, 0));
  pointer-events: none;
}

.social-video-card__copy,
.social-feed-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.social-video-card__copy strong,
.social-feed-card strong {
  display: block;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.2;
}

.social-video-card__copy p {
  max-width: 28rem;
}

.social-video-card__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel-dark);
  box-shadow: 0 24px 56px rgba(17, 19, 23, 0.16);
}

.social-video-card__media video {
  display: block;
  width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 10;
  background: #111317;
}

.social-feed-card {
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.social-feed-card figure {
  margin: 0;
  min-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--panel-dark);
}

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

.social-feed-card .text-link {
  margin-top: auto;
}

.social-feed-card--feature figure {
  min-height: 260px;
}

.social-feed-grid {
  display: grid;
  max-width: 420px;
}

.service-card .text-link,
.link-card .text-link,
.city-card .text-link,
.project-card .text-link {
  margin-top: auto;
}

.system-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: var(--shadow);
}

.system-card figure {
  margin: 0;
  min-height: 230px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.system-card h3 {
  margin-bottom: 8px;
}

.process-step {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(67, 74, 84, 0.12);
  color: var(--bronze);
  font-weight: 700;
}

.story-panel,
.cta-panel,
.page-hero--contact,
.page-hero--split {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: calc(var(--radius-xl) + 4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.14)),
    linear-gradient(135deg, rgba(154, 161, 171, 0.12), rgba(67, 74, 84, 0.1)),
    var(--panel);
  border: 1px solid rgba(17, 19, 23, 0.1);
  box-shadow: 0 24px 56px rgba(17, 19, 23, 0.1);
}

.story-panel::before,
.cta-panel::before,
.page-hero--contact::before,
.page-hero--split::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(67, 74, 84, 0.28), rgba(67, 74, 84, 0));
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.story-panel,
.cta-panel {
  display: grid;
  gap: 18px;
}

.story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.story-stats div {
  min-width: 180px;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.text-link::after {
  content: "→";
}

.page-main {
  padding-top: 32px;
}

.page-hero__copy {
  max-width: 42rem;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.15;
}

.page-hero {
  display: grid;
  gap: 24px;
  align-items: center;
}

.page-hero--split {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
}

.page-hero__media {
  min-height: 200px;
}

.page-hero--contact {
  padding: 34px;
}

.contact-card h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.section--contact-grid .contact-card h2 {
  font-size: clamp(16px, 2.5vw, 22px);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.site-footer {
  max-width: 820px;
  margin: 0 auto 32px;
  padding: 32px 24px 24px;
  border-radius: 0;
  background: var(--panel-dark);
  color: var(--white);
  box-shadow: none;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__top {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.footer-logo {
  display: block;
  width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer__col-heading {
  display: block;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.site-footer__links,
.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a,
.site-footer__meta a,
.site-footer__meta span {
  text-decoration: none;
  font-size: 14px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.brand__mark--footer {
  display: none;
}

.review-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  gap: 2px;
  min-width: 180px;
  padding: 14px 18px;
  border: 1px solid rgba(17, 19, 23, 0.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(17, 19, 23, 0.98), rgba(51, 58, 68, 0.95));
  color: var(--white);
  box-shadow: 0 20px 48px rgba(17, 19, 23, 0.22);
  text-align: left;
}

.review-toggle__eyebrow {
  color: var(--sand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-toggle strong {
  font-size: 16px;
}

.review-backdrop {
  position: fixed;
  inset: 0;
  z-index: 74;
  background: rgba(15, 17, 20, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.review-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.review-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 75;
  display: grid;
  align-content: start;
  gap: 18px;
  width: min(430px, 100vw);
  height: 100vh;
  padding: 28px 24px 24px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(67, 74, 84, 0.14), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 240, 242, 0.98));
  border-left: 1px solid rgba(17, 19, 23, 0.1);
  box-shadow: -28px 0 64px rgba(17, 19, 23, 0.18);
  visibility: hidden;
  pointer-events: none;
  transform: translateX(104%);
  transition: transform 0.28s ease;
}

.review-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.review-drawer__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.review-drawer__eyebrow {
  margin: 0 0 8px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-drawer__header h2 {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.review-close {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.review-context,
.review-form {
  display: grid;
  gap: 16px;
}

.review-context {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 19, 23, 0.08);
}

.review-context__label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.review-field {
  display: grid;
  gap: 8px;
}

.review-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-field input,
.review-field select,
.review-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
}

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

.review-field textarea.is-drag-over {
  border-color: var(--bronze);
  background: rgba(67, 74, 84, 0.06);
}

.review-image-hint {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.review-image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
  min-height: 0;
}

.review-image-thumb {
  position: relative;
  flex-shrink: 0;
}

.review-image-thumb img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.6);
}

.review-image-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--panel-strong);
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.review-image-remove:hover {
  background: var(--bronze);
  border-color: var(--bronze);
}

.review-field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.review-actions {
  position: sticky;
  bottom: 0;
  display: grid;
  gap: 12px;
  padding-top: 10px;
  background: linear-gradient(180deg, rgba(238, 240, 242, 0), rgba(238, 240, 242, 0.96) 42%);
}

.review-status {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(17, 19, 23, 0.06);
  color: var(--muted);
  font-size: 14px;
}

.review-widget[data-review-state="sending"] .review-status {
  background: rgba(154, 161, 171, 0.18);
  color: var(--graphite);
}

.review-widget[data-review-state="success"] .review-status {
  background: rgba(126, 166, 120, 0.2);
  color: #24451f;
}

.review-widget[data-review-state="error"] .review-status {
  background: rgba(67, 74, 84, 0.18);
  color: #8a1c2a;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce), (max-width: 880px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .hero,
  .page-hero--split,
  .site-footer,
  .process-grid,
  .service-grid,
  .systems-grid,
  .value-grid,
  .section--content-grid,
  .section--contact-grid,
  .trust-grid,
  .link-grid,
  .faq-grid,
  .city-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

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

  .hero__stack {
    position: static;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
  }

  .media-frame--primary {
    min-height: 420px;
  }

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

  .hero-reel-card,
  .landing-hero__quickgrid {
    grid-template-columns: 1fr;
  }

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

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

  .social-proof-layout,
  .social-video-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .trust-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stack__item {
    padding: 16px 10px;
  }

  .trust-stack__item strong {
    font-size: 14px;
  }
}

@media (max-width: 880px) {
  .site-header {
    top: 44px;
    width: min(100vw - 24px, 100%);
    margin-top: 12px;
    padding: 14px 16px 12px;
    border-radius: 24px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "brand";
    position: sticky;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    top: 14px;
    right: 16px;
    align-self: start;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 19, 23, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(17, 19, 23, 0.14);
    backdrop-filter: blur(12px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav .button--small {
    justify-content: center;
    margin-left: 0;
  }

  .preview-ribbon {
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
    text-align: center;
    flex-wrap: wrap;
  }

  .review-toggle {
    right: 14px;
    bottom: calc(74px + env(safe-area-inset-bottom, 0px));
    min-width: 0;
    width: min(208px, calc(100vw - 28px));
  }

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

  .hero,
  .page-main {
    padding-top: 20px;
  }

  .landing-hero,
  .hero,
  .page-hero,
  .section,
  .landing-metrics,
  .site-footer {
    width: min(100vw - 24px, 100%);
  }

  .landing-hero {
    padding-top: 24px;
  }

  .landing-hero__content,
  .landing-hero__card {
    padding: 26px;
  }

  .hero-reel-card {
    padding: 14px;
  }

  .landing-hero__topline a,
  .landing-hero__topline span {
    flex: 1 1 220px;
    justify-content: center;
  }

  .story-stats {
    flex-direction: column;
    gap: 12px;
  }

  .brand__mark {
    width: min(240px, 72vw);
  }

  .brand__copy strong {
    font-size: clamp(0.98rem, 4.6vw, 1.18rem);
    letter-spacing: 0.08em;
  }

  .brand__copy span {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  body[data-page="home"] .brand {
    gap: 2px;
    padding-bottom: 0;
  }

  body[data-page="home"] .site-header {
    padding: 10px 16px 8px;
    border-radius: 22px;
  }

  body[data-page="home"] .brand__mark {
    width: min(272px, 80vw);
    height: auto;
  }

  body[data-page="home"] .brand__copy strong {
    display: none;
  }

  body[data-page="home"] .brand__copy {
    margin-top: -2px;
  }

  body[data-page="home"] .nav-toggle {
    top: 10px;
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at top right, rgba(67, 74, 84, 0.18), transparent 18rem),
      linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .preview-ribbon {
    font-size: 10px;
  }

  h1 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  h2 {
    font-size: clamp(1.15rem, 4vw, 1.5rem);
  }

  .page-hero h1 {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
    line-height: 1.15;
  }

  .brand__mark {
    width: min(220px, 72vw);
  }

  body[data-page="home"] .brand__mark {
    width: min(258px, 82vw);
    height: auto;
  }

  body[data-page="home"] h1 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  body[data-page="home"] h2 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  .landing-hero,
  .hero,
  .section,
  .page-main,
  .landing-metrics,
  .site-footer {
    width: min(100vw - 18px, 100%);
  }

  .detail-card,
  .content-panel,
  .service-card,
  .process-step,
  .contact-card,
  .trust-card,
  .link-card,
  .faq-card,
  .city-card,
  .project-card,
  .story-panel,
  .cta-panel,
  .page-hero--contact,
  .page-hero--split {
    padding: 22px 18px;
  }

  .social-video-card,
  .social-feed-card {
    padding: 22px 18px;
  }

  .hero-reel-card {
    gap: 14px;
    padding: 14px;
  }

  .hero-reel-card__media {
    min-height: 190px;
  }

  .hero-reel-card__copy strong {
    font-size: 1.04rem;
  }

  .media-frame--primary,
  .page-hero__media {
    min-height: 220px;
  }

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

  .media-frame--angled,
  .media-frame--tile {
    min-height: 160px;
    transform: none;
  }

  .button,
  .button--ghost {
    width: 100%;
  }

  .landing-proofchips,
  .landing-service-pills,
  .landing-metrics {
    grid-template-columns: 1fr;
  }

  .landing-hero__content,
  .landing-hero__card {
    padding: 22px 18px;
  }

  .landing-hero__topline a,
  .landing-hero__topline span {
    width: 100%;
    justify-content: flex-start;
  }

  .social-feed-card figure {
    min-height: 190px;
  }

  .review-drawer {
    width: 100vw;
    padding: 24px 18px 18px;
  }

  .review-toggle {
    width: min(196px, calc(100vw - 18px));
    right: 9px;
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }
}

.site-header--home {
  padding: 14px 24px 12px;
  gap: 10px;
}

.site-header--home .brand {
  gap: 6px;
  padding-bottom: 0;
}

.site-header--home .brand__mark {
  width: min(360px, 42vw);
}

.site-header--home .brand__copy {
  display: none;
}

.site-header--home .site-nav {
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 19, 23, 0.08);
  gap: 8px;
}

.site-header--home .site-nav a {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header--home .site-nav .button--small {
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
}

.home-main {
  padding-bottom: 20px;
}

.home-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 26px 0 20px;
}

.home-hero__frame {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 38px;
  background: linear-gradient(135deg, #0f1318 0%, #1a212b 58%, #26303d 100%);
  box-shadow: 0 36px 96px rgba(17, 19, 23, 0.24);
}

.home-hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(199, 204, 210, 0.18), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(67, 74, 84, 0.18), transparent 22%);
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.home-hero__content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 6px 4px 8px;
}

.home-hero__content .eyebrow {
  color: var(--sand);
}

.home-hero__content .eyebrow::before {
  background: linear-gradient(90deg, var(--sand), rgba(199, 204, 210, 0.18));
}

.home-hero__content h1 {
  max-width: 18ch;
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.home-hero__lede {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.home-hero__actions .button {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.home-hero__actions .button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.home-hero__service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero__service-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 23, 0.08);
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-hero__service-links a:hover {
  transform: translateY(-1px);
  background: var(--white);
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
  font-weight: 700;
}

.home-hero__media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.home-hero__video-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 30px;
  background: #0b0d10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.home-hero__video-card video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #0b0d10;
}

.home-hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 11, 13, 0.04) 0%, rgba(9, 11, 13, 0.32) 48%, rgba(9, 11, 13, 0.86) 100%);
}

.home-hero__video-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
}

.home-hero__video-copy .card-label {
  color: var(--sand);
}

.home-hero__video-copy strong {
  display: block;
  color: var(--white);
  font-size: 1.16rem;
  line-height: 1.2;
}

.home-hero__video-link {
  color: var(--white);
  font-weight: 700;
}

.home-hero__contact-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 19, 23, 0.1);
  box-shadow: 0 24px 60px rgba(17, 19, 23, 0.16);
}

.home-hero__contact-card h2 {
  max-width: none;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.home-hero__contact-card p {
  color: var(--muted);
}

.home-hero__contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-hero__contact-actions .button {
  min-height: 48px;
  padding-inline: 16px;
}

.home-hero__contact-actions .button--ghost {
  background: var(--white);
}

.home-trust-strip {
  padding-top: 6px;
  padding-bottom: 12px;
}

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

.home-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 22px;
  align-items: stretch;
}

.home-feature__media {
  margin: 0;
  min-height: 420px;
  border-radius: calc(var(--radius-xl) + 4px);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(17, 19, 23, 0.18);
}

.home-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-feature__copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.home-feature__highlights {
  display: grid;
  gap: 12px;
}

.home-feature__highlights div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 19, 23, 0.06);
  border: 1px solid rgba(17, 19, 23, 0.08);
}

.home-feature__highlights strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--text);
}

.home-feature__highlights p {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .site-header--home .brand__mark {
    width: min(332px, 54vw);
  }

  .home-hero__grid,
  .home-feature,
  .home-trust-grid,
  .service-grid--home {
    grid-template-columns: 1fr;
  }

  .home-hero__content h1 {
    max-width: 13ch;
  }
}

@media (max-width: 880px) {
  .site-header--home {
    padding: 12px 16px 10px;
  }

  .site-header--home .brand {
    gap: 4px;
  }

  .site-header--home .brand__mark {
    width: min(300px, 80vw);
  }

  .site-header--home .site-nav {
    padding-top: 12px;
    border-top: none;
  }

  .site-header--home .site-nav a {
    font-size: 13px;
  }

  .site-header--home .nav-toggle {
    top: 12px;
  }

  .home-hero {
    width: min(100vw - 24px, 100%);
    padding-top: 20px;
  }

  .home-hero__frame {
    padding: 18px;
    border-radius: 30px;
  }

  .home-hero__grid {
    gap: 18px;
  }

  .home-hero__media {
    order: -1;
  }

  .home-hero__video-card {
    min-height: 280px;
  }

  .home-hero__content h1 {
    max-width: 18ch;
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .home-hero__contact-card {
    display: none;
  }

  .home-hero__contact-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header--home {
    width: min(100vw - 18px, 100%);
    padding: 10px 14px 8px;
  }

  .site-header--home .brand__mark {
    width: min(286px, 80vw);
  }

  .home-hero {
    width: min(100vw - 18px, 100%);
    padding-top: 16px;
  }

  .home-hero__frame {
    padding: 14px;
    border-radius: 26px;
  }

  .home-hero__video-card {
    min-height: 240px;
    border-radius: 24px;
  }

  .home-hero__video-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .home-hero__video-copy strong {
    font-size: 1rem;
  }

  .home-hero__content h1 {
    max-width: 16ch;
    font-size: clamp(1.3rem, 5vw, 1.6rem);
  }

  .home-hero__service-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-trust-grid,
  .service-grid--home {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-hero__service-links a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .home-hero__meta {
    display: none;
  }

  .home-hero__contact-card {
    padding: 18px;
    border-radius: 24px;
  }

  .home-feature__media {
    min-height: 220px;
  }
}

/* ─── Chatbot widget ──────────────────────────────────────────────────────── */

.chat-widget {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  left: 20px;
  z-index: 72;
}

.chat-toggle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 148px;
  padding: 12px 18px 11px;
  border: none;
  border-radius: 999px;
  background: var(--graphite);
  color: var(--white);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(17, 19, 23, 0.22);
  transition: background 0.18s ease, transform 0.14s ease;
}

.chat-toggle:hover {
  background: var(--bronze);
  transform: translateY(-2px);
}

.chat-toggle__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  line-height: 1;
}

.chat-drawer {
  position: fixed;
  bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  left: 20px;
  z-index: 73;
  width: min(360px, calc(100vw - 40px));
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(67, 74, 84, 0.10), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 240, 242, 0.98));
  border: 1px solid rgba(17, 19, 23, 0.10);
  box-shadow: 0 28px 72px rgba(17, 19, 23, 0.20);
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transform-origin: bottom left;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
}

.chat-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
}

.chat-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
}

.chat-drawer__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-drawer__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  line-height: 1;
}

.chat-drawer__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.2;
}

.chat-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: background 0.14s ease;
}

.chat-close:hover {
  background: rgba(67, 74, 84, 0.12);
  border-color: var(--bronze);
}

.chat-body {
  padding: 18px 20px 20px;
  display: grid;
  gap: 12px;
}

.chat-prompt {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

.chat-quick-replies {
  display: grid;
  gap: 8px;
}

.chat-reply-btn {
  display: block;
  width: 100%;
  padding: 11px 16px;
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.14s ease, border-color 0.14s ease;
}

.chat-reply-btn:hover {
  background: rgba(67, 74, 84, 0.08);
  border-color: var(--bronze);
  color: var(--graphite);
}

.chat-response {
  display: none;
  gap: 14px;
}

.chat-response.is-active {
  display: grid;
}

.chat-response__bubble {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--graphite);
  color: var(--white);
  font-size: 14px;
  line-height: 1.55;
}

.chat-response__bubble a {
  color: var(--sand);
  text-decoration: underline;
}

.chat-back-btn {
  align-self: start;
  padding: 8px 16px;
  border: 1px solid rgba(17, 19, 23, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: color 0.14s ease, border-color 0.14s ease;
}

.chat-back-btn:hover {
  color: var(--graphite);
  border-color: var(--graphite);
}

@media (max-width: 880px) {
  .chat-toggle {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    left: 14px;
  }

  .chat-drawer {
    left: 14px;
    width: min(340px, calc(100vw - 28px));
  }
}

@media (max-width: 640px) {
  .chat-drawer {
    left: 9px;
    width: min(320px, calc(100vw - 18px));
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}

/* Estimate request and preview feedback accessibility. */
.urgency-strip { padding: 10px 20px; text-align: center; background: #252a2e; color: #fff; font-size: 14px; }
.urgency-strip a { color: #fff; text-decoration: underline; }
.estimate-section { display:grid; grid-template-columns:1fr 1.3fr; gap:40px; scroll-margin-top:100px; }
.estimate-section h2 { margin-top:8px; }
.estimate-form { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.estimate-form label { display:grid; gap:6px; font-size:14px; font-weight:600; }
.estimate-form input,.estimate-form select { width:100%; min-width:0; min-height:48px; padding:10px; border:1px solid #737b84; border-radius:4px; background:#fff; color:#171a1d; font:inherit; }
.estimate-note { grid-column:1/-1; font-size:13px; margin:0; }
[hidden] { display:none !important; }
.mobile-contact-bar { display:none; }
.review-drawer { height:100dvh; overscroll-behavior:contain; }
.review-drawer :focus-visible,.estimate-form :focus-visible { outline:3px solid #424952; outline-offset:3px; }
.review-form button:disabled { opacity:.6; cursor:wait; }
@media(max-width:768px) {
  .estimate-section { grid-template-columns:1fr; gap:20px; }
  .mobile-contact-bar { position:fixed; bottom:0; left:0; right:0; z-index:60; display:grid; grid-template-columns:1fr 1fr; padding-bottom:env(safe-area-inset-bottom); background:#171a1d; box-shadow:0 -2px 10px #0003; }
  .mobile-contact-bar a { padding:16px 8px; text-align:center; color:#fff; font-weight:600; font-size:14px; }
  .mobile-contact-bar a:last-child { background:#20242a; }
  body { padding-bottom:64px; }
  .review-toggle { bottom:78px; }
}
@media(max-width:390px) { .estimate-form { grid-template-columns:1fr; } .review-drawer { padding:20px 16px; } }

.site-header { top:0; }
.video-hero__bg > img { width:100%; height:100%; object-fit:cover; object-position:center; }
@media(max-width:768px) { .review-toggle { min-width:0; width:auto; padding:10px 14px; } .review-toggle__eyebrow { display:none; } .review-toggle strong { font-size:13px; } }

/* ── Designer pass 09_20_26 (preview 2): slim full-width home header, taller photo hero ── */
.site-header--home {
  max-width: none; width: 100%; margin: 0; padding: 10px 24px; top: 0;
  border-radius: 0; border: 0; border-bottom: 1px solid rgba(17,19,23,0.10);
  box-shadow: none; background: rgba(255, 255, 255,0.92);
  grid-template-columns: auto 1fr; grid-template-areas: "brand nav"; align-items: center; gap: 24px;
}
.site-header--home .brand { width: auto; padding: 0; justify-items: start; }
.site-header--home .brand__mark { width: 170px; }
.site-header--home .site-nav { width: auto; justify-content: flex-end; padding-top: 0; border-top: 0; gap: 4px; flex-wrap: nowrap; }
.site-header--home .site-nav a { font-size: 12px; padding: 0 12px; }
.site-header--home .site-nav .button--small { margin-left: 8px; }
body[data-page="home"] .video-hero { min-height: min(78vh, 720px); align-items: center; }
body[data-page="home"] .video-hero__overlay { background: linear-gradient(90deg, rgba(10,12,16,0.82) 0%, rgba(10,12,16,0.55) 45%, rgba(10,12,16,0.25) 100%); }
body[data-page="home"] .video-hero__content h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); max-width: 14ch; line-height: 1.02; letter-spacing: -0.01em; }
body[data-page="home"] .video-hero__content > p { font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 42ch; }
body[data-page="home"] .video-hero .estimate-section { border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); }
@media (max-width: 880px) {
  .site-header--home { grid-template-columns: 1fr auto; grid-template-areas: "brand toggle" "nav nav"; }
  .site-header--home .brand__mark { width: 150px; }
  .site-header--home .site-nav { width: 100%; flex-wrap: wrap; justify-content: flex-start; }
  body[data-page="home"] .video-hero { min-height: 0; }
  body[data-page="home"] .video-hero__overlay { background: linear-gradient(0deg, rgba(10,12,16,0.85) 0%, rgba(10,12,16,0.45) 60%, rgba(10,12,16,0.25) 100%); }
}

/* Home work gallery (designer pass 3) */
.work-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.work-gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4 / 3; background: var(--bg-soft); }
.work-gallery figure:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.work-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.work-gallery figure:hover img { transform: scale(1.03); }
.work-gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: linear-gradient(0deg, rgba(10,12,16,0.75), rgba(10,12,16,0)); }
@media (max-width: 880px) { .work-gallery { grid-template-columns: repeat(2, 1fr); } .work-gallery figure:first-child { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 9; } }


/* ══ PLATINUM EDITORIAL · 09_20_26 · our language per 03_16 brief: premium, quiet, Arizona, no card soup ══ */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--bronze); outline-offset: 3px; }
.review-toggle { min-height: 44px; }
.site-header--home { background: var(--bg); border-bottom: 1px solid var(--line); }
.urgency-strip { background: transparent; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 13px; letter-spacing: 0.02em; }
.urgency-strip a { color: var(--bronze); }
/* hero: editorial split, no overlay, no widget */
body[data-page="home"] .video-hero { width: var(--container); max-width: 1180px; margin: 0 auto; min-height: 0; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); grid-template-rows: auto auto; column-gap: 56px; align-items: center; padding: 56px 0 0; background: none; overflow: visible; }
body[data-page="home"] .video-hero__bg { position: relative; inset: auto; grid-column: 2; grid-row: 1; aspect-ratio: 4 / 5; max-height: 640px; border-radius: 4px; overflow: hidden; z-index: 0; }
body[data-page="home"] .video-hero__bg img { object-fit: cover; width: 100%; height: 100%; }
body[data-page="home"] .video-hero__overlay { display: none; }
body[data-page="home"] .video-hero__content { grid-column: 1; grid-row: 1; padding: 0; margin: 0; max-width: none; }
body[data-page="home"] .video-hero__content .eyebrow { color: var(--bronze); }
body[data-page="home"] .video-hero__content .eyebrow::before { background: var(--bronze); }
body[data-page="home"] .video-hero__content h1 { color: var(--text); font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.0; letter-spacing: -0.025em; max-width: 12ch; font-weight: 500; }
body[data-page="home"] .video-hero__content > p { color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.25rem); max-width: 40ch; }
body[data-page="home"] .video-hero__content .button { background: var(--text); color: var(--white); border-radius: 2px; }
body[data-page="home"] .video-hero__content .button--ghost { background: transparent; border: 1px solid var(--line-strong); color: var(--text); }
/* estimate: quiet band under the hero, bronze rule */
body[data-page="home"] .video-hero .estimate-section { grid-column: 1 / -1; grid-row: 2; width: 100%; max-width: none; margin: 48px 0 0; padding: 32px 0 0; background: transparent; border: 0; border-top: 1px solid var(--bronze); border-radius: 0; box-shadow: none; backdrop-filter: none; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 40px; align-items: start; color: var(--text); }
body[data-page="home"] .video-hero .estimate-section h2 { color: var(--text); font-size: 1.6rem; font-weight: 500; }
body[data-page="home"] .video-hero .estimate-section p, body[data-page="home"] .video-hero .estimate-section label { color: var(--muted); }
body[data-page="home"] .video-hero .estimate-section input, body[data-page="home"] .video-hero .estimate-section select { background: transparent; color: var(--text); border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; padding-left: 0; }
body[data-page="home"] .video-hero .estimate-section .button { background: var(--text); color: var(--white); border-radius: 2px; }
/* trust: one hairline row, small caps */
body[data-page="home"] .section--trust-stack { padding-top: 24px; }
body[data-page="home"] .trust-stack { display: flex; flex-wrap: wrap; gap: 8px 40px; background: transparent; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; }
body[data-page="home"] .trust-stack__item { padding: 0; border: 0; display: flex; gap: 8px; align-items: baseline; }
body[data-page="home"] .trust-stack__item strong { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }
body[data-page="home"] .trust-stack__item span { font-size: 0.8rem; color: var(--muted); }
/* services: editorial index, not cards */
.services-v2__grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-strong); counter-reset: svc; }
.svc-card { display: grid; grid-template-columns: 3ch 96px 1fr auto; gap: 20px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--text); background: none; border-radius: 0; transition: background .2s; counter-increment: svc; }
.svc-card::before { content: counter(svc, decimal-leading-zero); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--bronze); }
.svc-card::after { content: "→"; color: var(--muted); }
.svc-card:hover { background: rgba(67, 74, 84,0.06); transform: none; box-shadow: none; }
.svc-card img { width: 96px; height: 64px; object-fit: cover; border-radius: 2px; }
.svc-card__body { display: grid; gap: 2px; padding: 0; }
.svc-card__body strong { font-size: 1.15rem; font-weight: 500; }
.svc-card__body span { color: var(--muted); font-size: 0.92rem; }
/* gallery stays; process: numbered editorial */
body[data-page="home"] .process-step { background: transparent; border: 0; border-top: 1px solid var(--line-strong); border-radius: 0; padding: 18px 0 0; min-height: 0; }
body[data-page="home"] .process-step > span:first-child { color: var(--bronze); font-size: 0.8rem; letter-spacing: 0.1em; }
.page-hero, .page-hero--split, body[data-page] .page-hero--split { background: transparent !important; border: 0 !important; box-shadow: none !important; }
.page-hero--split::before, .page-hero--split::after { display: none !important; }
.page-hero .eyebrow, main > :first-child:has(h1) .eyebrow { color: var(--bronze); }
.site-footer { border-top: 1px solid var(--line-strong); }
@media (max-width: 880px) {
  body[data-page="home"] .video-hero { grid-template-columns: 1fr; padding: 28px 20px 0; width: 100%; column-gap: 0; row-gap: 24px; }
  body[data-page="home"] .video-hero__bg { grid-column: 1; grid-row: 2; aspect-ratio: 4 / 3; }
  body[data-page="home"] .video-hero__content { grid-row: 1; }
  body[data-page="home"] .video-hero .estimate-section { grid-row: 3; grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
  .svc-card { grid-template-columns: 3ch 72px 1fr auto; gap: 12px; }
  .svc-card img { width: 72px; height: 52px; }
}

/* editorial VIDEO hero (research: drone reel = homepage hero) */
body[data-page="home"] .video-hero { display: block; width: 100vw; max-width: none; margin-left: calc(-50vw + 50%); padding: 0; min-height: min(78vh, 720px); position: relative; overflow: hidden; }
body[data-page="home"] .video-hero__bg { position: absolute; inset: 0; aspect-ratio: auto; max-height: none; border-radius: 0; }
body[data-page="home"] .video-hero__bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
body[data-page="home"] .video-hero__overlay { display: block; background: linear-gradient(0deg, rgba(23, 25, 28,0.78) 0%, rgba(23, 25, 28,0.35) 45%, rgba(23, 25, 28,0.05) 100%); }
body[data-page="home"] .video-hero__content { position: relative; z-index: 1; width: var(--container); max-width: 1180px; margin: 0 auto; padding: min(30vh, 260px) 0 56px; }
body[data-page="home"] .video-hero__content .eyebrow { color: var(--sand); background: none; }
body[data-page="home"] .video-hero__content .eyebrow::before { background: var(--sand); }
body[data-page="home"] .video-hero__content h1 { color: #fff; }
body[data-page="home"] .video-hero__content > p { color: #e7eaee; }
body[data-page="home"] .video-hero__content .button { background: var(--white); color: var(--text); }
body[data-page="home"] .video-hero__content .button--ghost { background: transparent; border-color: rgba(255,255,255,0.55); color: #fff; }
body[data-page="home"] .estimate-section { width: var(--container); max-width: 1180px; margin: 0 auto; padding: 40px 0 8px; border-top: 0; border-bottom: 1px solid var(--bronze); display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 40px; align-items: start; background: transparent; box-shadow: none; }
body[data-page="home"] .estimate-section h2 { font-size: 1.6rem; font-weight: 500; }
body[data-page="home"] .estimate-section input, body[data-page="home"] .estimate-section select { background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; padding-left: 0; }
body[data-page="home"] .estimate-section .button { background: var(--text); color: var(--white); border-radius: 2px; }
@media (prefers-reduced-motion: reduce) { body[data-page="home"] .video-hero__bg video { display: none; } body[data-page="home"] .video-hero__bg { background: url(/media/instagram-drone-reel.jpg) center/cover; } }
@media (max-width: 880px) { body[data-page="home"] .video-hero { min-height: 68vh; } body[data-page="home"] .video-hero__content { width: auto; padding: 40vh 20px 32px; } body[data-page="home"] .estimate-section { grid-template-columns: 1fr; gap: 16px; padding: 28px 20px 8px; width: auto; } }
/* header cleanup 09_20_26 18:3x (Brent: junky) */
.site-header--home { padding: 8px 24px; }
.site-header--home .brand__mark { width: 132px; }
.site-header--home .site-nav a { white-space: nowrap; font-size: 11.5px; letter-spacing: 0.08em; padding: 0 10px; }
.site-header--home .site-nav .button--small { background: var(--bronze); color: #fff; border-radius: 2px; min-height: 38px; padding: 0 14px; }
.urgency-strip { font-size: 12.5px; padding: 6px 12px; }
.estimate-form .opt { color: var(--muted); font-weight: 400; font-size: 0.85em; }
.estimate-form textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-strong); font: inherit; color: inherit; resize: vertical; }
.estimate-form__wide { grid-column: 1 / -1; }
@media (max-width: 880px) { .site-header--home .brand__mark { width: 120px; } }

/* expanded city gallery */
.work-gallery--wide { grid-template-columns: repeat(4, 1fr); }
.work-gallery--wide figure:first-child { grid-column: span 2; grid-row: span 2; }
.work-gallery--wide figure:nth-child(7) { grid-column: span 2; }
@media (max-width: 880px) { .work-gallery--wide { grid-template-columns: repeat(2, 1fr); } .work-gallery--wide figure:nth-child(7) { grid-column: auto; } }
.projects-img-item figcaption strong { display: block; }

/* ══ BLEND 09_20_26 19:0x (Brent: between dark v2 and editorial): light ground + dark glass form in the video hero, bronze accents ══ */
.urgency-strip { background: var(--bronze); color: #fff; border: 0; font-size: 13px; }
.urgency-strip a { color: #fff; }
.site-header--home .site-nav .button--small { background: var(--bronze); color: #fff; }
body[data-page="home"] .video-hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 440px); column-gap: 48px; align-items: center; min-height: min(84vh, 780px); padding: 0; width: 100vw; margin-left: calc(-50vw + 50%); }
body[data-page="home"] .video-hero__bg { position: absolute; inset: 0; grid-column: 1 / -1; }
body[data-page="home"] .video-hero__overlay { background: linear-gradient(90deg, rgba(23, 25, 28,0.82) 0%, rgba(23, 25, 28,0.55) 45%, rgba(23, 25, 28,0.25) 100%); }
body[data-page="home"] .video-hero__content { grid-column: 1; grid-row: 1; width: auto; max-width: none; margin: 0; padding: 72px 0 72px calc((100vw - min(1180px, 100vw - 40px)) / 2); }
body[data-page="home"] .video-hero__content .button { background: var(--bronze); color: #fff; }
body[data-page="home"] .video-hero .estimate-section { position: relative; z-index: 1; grid-column: 2; grid-row: 1; display: block; width: auto; max-width: 440px; margin: 48px calc((100vw - min(1180px, 100vw - 40px)) / 2) 48px 0; padding: 26px 26px 20px; background: rgba(17,19,23,0.82); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.14); border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,0.35); color: #e7eaee; }
body[data-page="home"] .video-hero .estimate-section h2, body[data-page="home"] .video-hero .estimate-section label { color: #fff; }
body[data-page="home"] .video-hero .estimate-section > div > p, body[data-page="home"] .video-hero .estimate-section .opt, body[data-page="home"] .video-hero .estimate-section .estimate-note { color: #c8cdd2; }
body[data-page="home"] .video-hero .estimate-section .eyebrow { color: var(--sand); }
body[data-page="home"] .video-hero .estimate-section h2 { font-size: 1.45rem; margin: 0 0 6px; }
body[data-page="home"] .video-hero .estimate-section input, body[data-page="home"] .video-hero .estimate-section select, body[data-page="home"] .video-hero .estimate-section textarea { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.18); border-radius: 4px; padding: 8px 10px; }
body[data-page="home"] .video-hero .estimate-section .estimate-form { gap: 10px 12px; }
body[data-page="home"] .video-hero .estimate-section .button { background: var(--bronze); color: #fff; width: 100%; }
body[data-page="home"] .video-hero .estimate-section .estimate-note { font-size: 12px; }
@media (max-width: 880px) {
  body[data-page="home"] .video-hero { grid-template-columns: 1fr; min-height: 0; }
  body[data-page="home"] .video-hero__content { grid-row: 1; padding: 36vh 20px 24px; }
  body[data-page="home"] .video-hero .estimate-section { grid-column: 1; grid-row: 2; max-width: none; margin: 0 20px 28px; }
}

/* blend fix: bg fills whole hero grid at every width */
body[data-page="home"] .video-hero__bg { grid-column: 1 / -1 !important; grid-row: 1 / -1 !important; position: absolute !important; inset: 0 !important; aspect-ratio: auto !important; height: auto !important; }
@media (max-width: 880px) { body[data-page="home"] .video-hero__content { padding-top: 40vh; } }

/* ══ POLISH 09_20_26 19:3x ("cooler"): motion with restraint ══ */
html { scroll-behavior: smooth; }
.completed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.completed-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 1; background: var(--bg-soft); }
.completed-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.completed-grid figure:hover img { transform: scale(1.04); }
.completed-grid figcaption { position: absolute; inset: auto 0 0 0; padding: 14px 16px; color: #fff; background: linear-gradient(0deg, rgba(17,19,23,.85), rgba(17,19,23,0)); display: grid; gap: 2px; }
.completed-grid figcaption strong { font-size: 1rem; }
.completed-grid figcaption span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sand); }
.completed-work .section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.02em; }
/* hero headline: staggered rise */
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
body[data-page="home"] .video-hero__content > * { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
body[data-page="home"] .video-hero__content > :nth-child(2) { animation-delay: .08s; }
body[data-page="home"] .video-hero__content > :nth-child(3) { animation-delay: .16s; }
body[data-page="home"] .video-hero__content > :nth-child(4) { animation-delay: .24s; }
body[data-page="home"] .video-hero .estimate-section { animation: rise .8s .3s cubic-bezier(.2,.7,.2,1) both; }
/* gallery captions slide up on hover */
.work-gallery figcaption { transform: translateY(6px); opacity: .92; transition: transform .35s ease, opacity .35s ease; }
.work-gallery figure:hover figcaption { transform: none; opacity: 1; }
/* service rows: bronze arrow slides */
.svc-card::after { transition: transform .25s ease, color .25s ease; }
.svc-card:hover::after { transform: translateX(4px); color: var(--bronze); }
/* header: hairline glow on scroll is CSS-only via sticky + backdrop */
.site-header--home { backdrop-filter: blur(12px); background: rgba(244, 245, 246,.86); }
/* review widget retired */
.review-widget, .review-toggle, .review-drawer { display: none !important; }
@media (prefers-reduced-motion: reduce) { body[data-page="home"] .video-hero__content > *, body[data-page="home"] .video-hero .estimate-section { animation: none; } }
@media (max-width: 880px) { .completed-grid { grid-template-columns: 1fr 1fr; } .completed-grid figure:first-child { grid-column: span 2; aspect-ratio: 4/3; } }

/* Codex P2: denser desktop projects grid */
@media (min-width: 881px) { .projects-img-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 10px !important; } .projects-img-item img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; } }

/* ══ SIMPLE 09_20_26 20:1x — Brent: less is more ══ */
.urgency-strip { display: none !important; }
.eyebrow { text-transform: none; letter-spacing: 0; font-size: .9rem; color: var(--bronze); font-weight: 500; }
.eyebrow::before { display: none; }
body[data-page="home"] .video-hero { display: block; min-height: min(78vh, 720px); }
body[data-page="home"] .video-hero__content { padding: min(26vh, 220px) 0 64px calc((100vw - min(1180px, 100vw - 40px)) / 2); max-width: 720px; animation: none; }
body[data-page="home"] .video-hero__content > * { animation: none !important; }
body[data-page="home"] .video-hero__content h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); max-width: 11ch; }
body[data-page="home"] .video-hero__content > p { color: #e7eaee; font-size: 1.15rem; margin-bottom: 26px; }
body[data-page="home"] .video-hero__content .button-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
body[data-page="home"] .video-hero__content .button { background: var(--bronze); color: #fff; min-height: 52px; padding: 0 26px; font-size: 1.02rem; border-radius: 4px; }
.hero-phone { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 2px; font-size: 1.05rem; }
.hero-phone:hover { border-color: #fff; }
.inspect { width: var(--container); max-width: 1180px; margin: 0 auto; padding: 44px 0 36px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 36px; align-items: start; }
.inspect__copy h2 { font-size: 1.7rem; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 8px; }
.inspect__copy p { color: var(--muted); margin: 0; max-width: 34ch; }
.inspect__form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 14px; align-items: end; }
.inspect__form label { display: grid; gap: 6px; font-size: .85rem; color: var(--muted); }
.inspect__form input, .inspect__form select { height: 48px; padding: 0 12px; font: inherit; font-size: 1rem; color: var(--text); background: var(--white); border: 1px solid var(--line-strong); border-radius: 4px; }
.inspect__form .button { height: 48px; padding: 0 22px; background: var(--bronze); color: #fff; border-radius: 4px; white-space: nowrap; }
.inspect__status { grid-column: 1 / -1; margin: 0; font-size: .9rem; color: var(--muted); min-height: 1.2em; }
.inspect__form input:disabled, .inspect__form select:disabled { opacity: .55; }
.trust-line { width: var(--container); max-width: 1180px; margin: 0 auto; padding: 22px 0 8px; color: var(--muted); font-size: .95rem; }
.work-gallery figcaption { transform: none; opacity: 1; transition: none; }
.work-gallery img, .completed-grid img, .svc-card img { transition: none; }
.work-gallery figure:hover img, .completed-grid figure:hover img { transform: none; }
.svc-card::after { transition: none; } .svc-card:hover::after { transform: none; }
.svc-card::before { content: none; } .svc-card { grid-template-columns: 96px 1fr auto; }
.completed-work .section-heading p, .section-heading p { max-width: 60ch; }
@media (max-width: 880px) {
  body[data-page="home"] .video-hero__content { padding: 34vh 20px 32px; }
  .inspect { width: auto; grid-template-columns: 1fr; gap: 18px; padding: 28px 20px 24px; }
  .inspect__form { grid-template-columns: 1fr; }
  .inspect__form .button { width: 100%; }
  .trust-line { width: auto; padding: 18px 20px 4px; }
  .svc-card { grid-template-columns: 72px 1fr auto; }
}

/* non-author review 09_20_26 20:4x: cut the tells */
.svc-card::after { content: none; }
.work-gallery figcaption, .completed-grid figcaption span, .projects-img-item figcaption, .trust-stack__item strong, .site-footer__col-heading, .contact-card__label, .contact-grid .eyebrow, [class*="__label"] { text-transform: none !important; letter-spacing: 0 !important; }
.section-heading .eyebrow, .page-hero .eyebrow, .eyebrow { text-transform: none !important; letter-spacing: 0 !important; font-size: .9rem; }
.inspect--contact { padding-top: 8px; }
.work-gallery figcaption { font-size: 13px; }
/* inspect row: no overflow at 1440 */
.inspect { grid-template-columns: minmax(0, .55fr) minmax(0, 1.45fr); }
.inspect__form { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, max-content); }
.inspect__form .button { padding: 0 18px; font-size: .95rem; }
@media (max-width: 1100px) { .inspect__form { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } .inspect__form .button { grid-column: 1 / -1; } }
/* hero video: source is 720x1280 portrait; cap the box so upscale stays modest */
body[data-page="home"] .video-hero { min-height: min(72vh, 640px); }

/* real Google reviews (hidden until reviews.json has entries) */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { margin: 0; padding: 20px 0 0; border-top: 1px solid var(--line-strong); }
.review__stars { color: var(--bronze); letter-spacing: 2px; margin: 0 0 8px; }
.review blockquote { margin: 0 0 10px; font-size: 1rem; line-height: 1.5; }
.review figcaption { color: var(--muted); font-size: .9rem; }
.reviews__meta { color: var(--muted); }
@media (max-width: 880px) { .reviews__grid { grid-template-columns: 1fr; } }

/* re-review 22:0x: cut eyebrows sitewide, single mobile CTA, contact form wrap, about photo, no numbered badges, cooler accent */
.eyebrow { display: none !important; }
.process-step > span:first-child { display: none; }
.mobile-contact-bar { grid-template-columns: 1fr; }
.mobile-contact-bar a { background: var(--bronze); color: #fff; font-weight: 600; }
.inspect__form { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.inspect__form .button { grid-column: 1 / -1; width: 100%; }
@media (min-width: 1101px) { .inspect__form { grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1.1fr) minmax(0,max-content); } .inspect__form .button { grid-column: auto; width: auto; } }
.inspect--contact { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 820px; }
.about-hero__media { margin: 20px 0 0; border-radius: 6px; overflow: hidden; }
.about-hero__media img { width: 100%; height: auto; display: block; }
.work-gallery img, .completed-grid img { background: var(--bg-soft); }
.reveal { opacity: 1 !important; transform: none !important; }
:root { --bronze: #24282e; --bg: #f4f5f6; }

/* materials strip: four real roofs, one word each (replaces thumbnail list) */
.materials { width: 100vw; margin-left: calc(-50vw + 50%); display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 8px 0 0; }
.material { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; text-decoration: none; }
.material img { width: 100%; height: 100%; object-fit: cover; display: block; }
.material span { position: absolute; left: 22px; bottom: 18px; color: #fff; font-size: clamp(1.6rem, 2.6vw, 2.4rem); font-weight: 500; letter-spacing: -0.01em; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.materials__more { grid-column: 1 / -1; margin: 0; padding: 14px 20px 8px; text-align: center; }
.materials__more a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line-strong); }
@media (max-width: 880px) { .materials { grid-template-columns: 1fr 1fr; } .material { aspect-ratio: 1; } .material span { left: 14px; bottom: 12px; } }

/* where we have worked */
.worked__map { height: 440px; border-radius: 6px; overflow: hidden; background: var(--bg-soft); }
.worked__list { color: var(--muted); font-size: .9rem; margin: 12px 0 0; }
.leaflet-container { font: inherit; }
@media (max-width: 880px) { .worked__map { height: 320px; } .materials { grid-template-columns: 1fr; } .material { aspect-ratio: 16 / 10; } }
@media (min-width: 881px) { .materials { grid-template-columns: repeat(3, 1fr); } }

/* Brent 22:5x: simple, striking, professional; one strong CTA = free inspection */
body[data-page="home"] .video-hero__content h1 { font-size: clamp(2.8rem, 6.4vw, 5.6rem); max-width: 10ch; line-height: .96; font-weight: 600; }
body[data-page="home"] .video-hero__content > p { font-size: 1.1rem; max-width: 36ch; }
.button--hero { min-height: 58px !important; padding: 0 30px !important; font-size: 1.08rem !important; border-radius: 4px; }
.site-header--home .site-nav .button--small { background: var(--bronze); color: #fff; min-height: 40px; padding: 0 16px; font-weight: 600; }
.site-header--home .site-nav a[data-analytics="header_call"] { white-space: nowrap; }
.inspect__copy h2 { font-size: 1.9rem; font-weight: 600; }
.materials { padding-top: 0; }
.section-heading h2 { font-weight: 600; }
@media (max-width: 880px) { body[data-page="home"] .video-hero__content h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); } }

/* phone numbers are hot everywhere; obvious tap targets on mobile */
a[href^="tel:"] { color: inherit; text-decoration: underline; text-decoration-color: var(--bronze); text-underline-offset: 3px; white-space: nowrap; }
a[href^="tel:"]:hover { color: var(--bronze); }
@media (max-width: 880px) { a[href^="tel:"] { display: inline-block; min-height: 44px; line-height: 44px; font-weight: 600; } .site-footer a[href^="tel:"], .inspect__copy a[href^="tel:"] { line-height: 1.5; min-height: 0; } }

/* ladder run 1: header phone visible on mobile; footer tel tall */
.header-phone { display: none; }
@media (max-width: 880px) {
  .header-phone { display: inline-flex; align-items: center; position: absolute; top: 14px; right: 68px; min-height: 44px; padding: 0 10px; font-weight: 600; color: var(--text); text-decoration: underline; text-decoration-color: var(--bronze); text-underline-offset: 3px; }
  .site-footer a[href^="tel:"] { display: inline-block; min-height: 44px; line-height: 44px; }
}
/* mobile header: small logo left, phone + menu right, no overlap */
@media (max-width: 880px) {
  .site-header--home { display: grid; grid-template-columns: auto 1fr; align-items: center; padding: 8px 12px; min-height: 60px; }
  .site-header--home .brand__mark { width: 104px; }
  .header-phone { position: absolute; top: 8px; right: 62px; font-size: .95rem; padding: 0 6px; }
  .site-header--home .nav-toggle { top: 8px; right: 12px; }
}
@media (max-width: 880px) {
  body .site-header--home .brand__mark, body[data-page] .site-header--home .brand__mark { width: 104px !important; }
  body .site-header--home .brand__mark img { max-width: 104px !important; width: 104px !important; }
  body .site-header--home .brand { padding: 0 !important; justify-items: start !important; }
}

/* hero still image (replaces reel) */
body[data-page="home"] .video-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }

/* hero slideshow: four large roofs, CSS crossfade, static first slide under reduced motion */
body[data-page="home"] .video-hero__bg { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; opacity: 0; animation: heroFade 24s infinite; }
.hero-slide:nth-child(1) { animation-delay: 0s; } .hero-slide:nth-child(2) { animation-delay: 6s; } .hero-slide:nth-child(3) { animation-delay: 12s; } .hero-slide:nth-child(4) { animation-delay: 18s; }
@keyframes heroFade { 0% { opacity: 0; } 6% { opacity: 1; } 25% { opacity: 1; } 31% { opacity: 0; } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-slide { animation: none; } .hero-slide:first-child { opacity: 1; } }

/* 09_20_26 finish list (GPT relay 118): inspection form lives in the hero; one primary action per screen */
body[data-page="home"] .video-hero { min-height: 0; height: auto; display: block; }
body[data-page="home"] .hero-grid { position: relative; z-index: 2; width: var(--container); max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 48px; align-items: center; padding: min(18vh, 150px) 0 72px; }
body[data-page="home"] .video-hero__content { padding: 0 !important; max-width: none; }
body[data-page="home"] .video-hero__content h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.03; letter-spacing: -0.025em; font-weight: 500; max-width: 14ch; }
body[data-page="home"] .video-hero__content > p { max-width: 38ch; }
body[data-page="home"] .hero-call { color: #e7eaee; font-size: 1.05rem; margin: 0; }
body[data-page="home"] .hero-call a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
body[data-page="home"] .video-hero .inspect { display: block; width: auto; max-width: none; margin: 0; padding: 24px; background: #f4f5f6; color: var(--text, #17191c); border: 0; border-radius: 2px; }
body[data-page="home"] .video-hero .inspect__copy h2 { font-size: 1.5rem; margin: 0 0 4px; }
body[data-page="home"] .video-hero .inspect__copy p { margin: 0 0 16px; font-size: .95rem; }
body[data-page="home"] .video-hero .inspect__form { display: grid; grid-template-columns: 1fr !important; gap: 12px; }
body[data-page="home"] .video-hero .inspect__form .button { grid-column: auto; width: 100%; min-height: 48px; }
body[data-page="home"] .video-hero .inspect__form input, body[data-page="home"] .video-hero .inspect__form select { min-height: 48px; font-size: 16px; }
@media (max-width: 1100px) { body[data-page="home"] .hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 18vh 0 40px; align-items: start; } }
@media (max-width: 880px) { body[data-page="home"] .hero-grid { padding: 14vh 0 32px; } body[data-page="home"] .video-hero .inspect { padding: 20px; } }
.material__note, .media-note { display: block; font-size: .8rem; color: #fff; opacity: .85; letter-spacing: 0; }
.material__note { position: absolute; right: 16px; bottom: 18px; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.media-note { color: var(--text-muted, #5f666f); font-size: .85rem; margin-top: 8px; }
@media (max-width: 880px) { .material__note { right: 12px; bottom: 12px; } }

.mobile-contact-bar[data-hidden="1"] { transform: translateY(110%); transition: transform .25s ease; }
.mobile-contact-bar { transition: transform .25s ease; }

/* 09_20_26: R13 fix (run 1): header logo link is a 44px tap target on phones; address field sits in the form grid like the others */
@media (max-width: 880px) { .site-header a[href="/"] img, .site-header__logo img { min-height: 0; } .site-header a[href="/"], .site-header__logo { display: inline-flex; align-items: center; min-height: 44px; } }
.inspect__form label[for="lead-address"] { grid-column: 1 / -1; }
@media (min-width: 1101px) { .inspect__form { grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1.1fr) minmax(0,max-content); } .inspect__form label[for="lead-address"] { grid-column: 1 / -1; } }
body[data-page="home"] .video-hero .inspect__form label[for="lead-address"] { grid-column: auto; }

/* 09_20_26: inline icon markup — header/footer/mobile contact glyphs + process step icons */
.ico { width: 18px; height: 18px; vertical-align: -3px; margin-right: 8px; flex: none; }
.process-step .step-icon, .step-icon { display: block; width: 28px; height: 28px; margin: 0 0 12px; color: var(--bronze, #24282e); }

/* 09_20_26 reviewer P2: tel buttons on dark surfaces keep white text incl. hover/focus */
.button[href^="tel:"], .button[href^="tel:"]:hover, .button[href^="tel:"]:focus-visible { color: #fff !important; }

/* 09_21_26 Brent: footer "way too big" — compact footer */
.site-footer { padding: 22px 24px 14px !important; margin-bottom: 0 !important; max-width: none !important; }
.site-footer__top { padding-bottom: 12px !important; margin-bottom: 14px !important; }
.site-footer__top img, .site-footer .brand img, .site-footer img[alt*="Platinum"] { max-height: 34px !important; width: auto !important; }
.site-footer__grid { gap: 20px 28px !important; max-width: 1180px; margin: 0 auto; }
.site-footer__col-heading { font-size: 11px !important; margin-bottom: 6px !important; }
.site-footer__links, .site-footer__meta { gap: 4px !important; }
.site-footer__links a, .site-footer__meta a, .site-footer__meta span { font-size: 13px !important; line-height: 1.35 !important; }
.site-footer__links { display: grid !important; grid-template-columns: 1fr 1fr; column-gap: 16px; }
.site-footer__bottom { margin-top: 14px !important; padding-top: 10px !important; flex-wrap: wrap; gap: 4px 18px; }
.site-footer__bottom span { font-size: 11px !important; line-height: 1.4; }
@media (max-width: 880px) { .site-footer { padding: 18px 16px 12px !important; } .site-footer__grid { gap: 14px !important; } }

/* 09_21_26 Brent: review actions were crowded under the attributions — own row, hairline, one quiet link style */
.reviews .button-row { margin: 28px 0 0; padding-top: 18px; border-top: 1px solid var(--line-strong); display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.reviews .button-row .button { background: transparent !important; border: 0 !important; border-radius: 0 !important; padding: 0 !important; min-height: 0 !important; height: auto !important; color: var(--text, #17191c) !important; font-size: 15px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--bronze); box-shadow: none !important; }
.reviews .button-row .button:hover { color: var(--bronze) !important; }
.review { padding-bottom: 8px; }

/* Relay120 approved polish — owner worker-platinum-polish,09_21_26; isolated branch; no deployment. */
/* C1: Footer clipping */
@media(max-width:880px){.site-footer{width:100%}.site-footer__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.site-footer__grid>div{min-width:0}.site-footer__grid>div:last-child{grid-column:1/-1}.site-footer__meta{overflow-wrap:anywhere}}
/* C2: Phone-link contrast */
.cta-links .button--ghost[href^="tel:"],.cta-links .button--ghost[href^="tel:"]:hover,.cta-links .button--ghost[href^="tel:"]:focus-visible,body .contact-method .button[href^="tel:"],body .contact-method .button[href^="tel:"]:hover,body .contact-method .button[href^="tel:"]:focus-visible{color:#17191c!important}
/* C3: Gallery margins */
.projects-img-grid{gap:20px 12px!important}.projects-img-item{margin:0}.projects-img-item img{width:100%;aspect-ratio:4/3;object-fit:cover}.projects-img-item figcaption{padding-top:8px;font-size:14px;line-height:1.4}
/* C4: Contact form alignment */
.inspect--contact{width:100%;max-width:100%;padding-inline:0}.inspect--contact .inspect__form{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.inspect--contact .inspect__form label[for="lead-address"],.inspect--contact .inspect__form .button{grid-column:1/-1}.inspect--contact .inspect__copy h2{font-size:24px;line-height:1.2}
@media(max-width:640px){.inspect--contact .inspect__form{grid-template-columns:1fr}}
/* C5: Hero media frames; manager exception: preserve portrait storm video. */
.page-hero__media{margin:0;min-height:0;background:transparent;box-shadow:none;align-self:start}.page-hero__media img{display:block;width:100%;height:auto;aspect-ratio:4/3;object-fit:cover}.page-hero__media video{display:block;width:100%;height:auto;aspect-ratio:9/16;object-fit:contain}.page-hero__media figcaption{position:static;padding:8px 0 0;color:#5f666f;font-size:13px;line-height:1.4;background:none}
/* C6: Header heights */
@media(min-width:881px){body[data-page="home"] .site-header--home{padding:8px 24px;gap:24px}body[data-page="home"] .site-header--home .brand__mark{width:132px}.site-header--home{min-height:68px}}
@media(max-width:880px){body[data-page] .site-header--home{padding:8px 12px;min-height:64px;grid-template-areas:"brand toggle";row-gap:0}body .site-header--home .brand__mark{width:104px}body .site-header--home .brand{min-height:44px}body .site-header--home .site-nav{grid-area:auto;grid-column:1/-1}body .site-header--home .site-nav:not(.is-open){margin:0}}
/* C7: Flat palette; manager exception: original home overlay retained. */
:root{--bg:#f4f5f6;--bronze:#24282e;--text:#17191c;--line:rgba(23, 25, 28,.16);--line-strong:rgba(23, 25, 28,.24)}body{background:#f4f5f6}.site-header--home{background:#f4f5f6}.mobile-contact-bar a:last-child{background:#24282e}.completed-grid figcaption,.work-gallery figcaption{background:rgba(23, 25, 28,.72)}.completed-grid figcaption span{color:inherit}
/* C8: Content widths and gutters */
body[data-page] .page-main{width:100%;max-width:1220px;padding:32px 20px 48px;margin-inline:auto}body[data-page="about"] .page-main,body[data-page="contact"] .page-main{max-width:720px}.page-main>.section,.page-main>.page-hero{width:100%;max-width:none}.page-hero__copy{min-width:0}body[data-page="home"] main>.section{width:calc(100% - 40px);max-width:1180px;padding-inline:0}
/* C9: Section rhythm */
body[data-page] .section{padding-block:40px}body[data-page] .section-heading{gap:12px;margin-bottom:24px}.content-panel>h2{margin-bottom:12px}body .faq-card,body .link-card{min-height:0;gap:12px}body .cta-panel{padding-top:24px}
@media(max-width:880px){body[data-page] .section{padding-block:32px}}
/* C10: Heading hierarchy */
body[data-page] .page-main h1{font-size:36px;line-height:1.1;letter-spacing:-.02em;font-weight:500;max-width:24ch}body[data-page] .page-main h2,body[data-page="home"] .section-heading h2{font-size:24px;line-height:1.2;letter-spacing:-.015em;font-weight:500}body[data-page] .section--content-grid h2{font-size:20px;line-height:1.25}body .page-main h3{font-size:18px;line-height:1.3}
@media(max-width:880px){body[data-page] .page-main h1{font-size:32px}body[data-page] .page-main h2,body[data-page="home"] .section-heading h2{font-size:22px}body[data-page] .section--content-grid h2{font-size:20px}}
/* C11: Primary and secondary actions */
body .button{min-height:48px;padding:0 20px;border-radius:4px;background:#24282e;color:#fff;box-shadow:none;text-decoration:none}body .site-header--home .site-nav .button--small{min-height:44px}body .cta-links .button--ghost,body .about-cta .button--ghost,body .projects-cta .button--ghost,body .contact-method .button{min-height:44px;padding:0;background:transparent;border:0;border-radius:0;box-shadow:none;color:#17191c;text-decoration:underline;text-decoration-color:#24282e;text-underline-offset:4px}body .cta-links{gap:8px 20px}
body .button:hover{box-shadow:none;transform:none}
/* C12: Links and label casing */
.text-link::after{content:none}body .text-link{color:#17191c;text-decoration:underline;text-decoration-color:#24282e;text-underline-offset:4px;gap:0;font-weight:500}.reviews .button-row{gap:12px 28px}.site-header--home .site-nav a,.card-label,.about-principle>span,.service-card__number{letter-spacing:0;text-transform:none}
/* C13: Process rows */
body[data-page] .process-step{min-height:0;grid-template-columns:28px 24px minmax(0,1fr);gap:8px;align-items:center}body[data-page] .process-step .step-icon{margin:0}body[data-page] .process-step>span{width:auto;height:auto;background:none;border-radius:0}body[data-page] .process-step>p{grid-column:1/-1;margin:0}body[data-page] .process-step h3{margin:0}
/* C14: Photo proportions */
@media(min-width:881px){.material{aspect-ratio:4/3}}.city-card figure{margin:0;min-height:0;aspect-ratio:4/3}.city-card img{width:100%;height:100%;object-fit:cover}.city-card img[src$="logo-wide-cropped.png"]{object-fit:contain;padding:16px;background:#f4f5f6}
/* C15: Hero spacing */
@media(min-width:1101px){body[data-page="home"] .hero-grid{padding:72px 0 56px;gap:40px}}@media(max-width:880px){body[data-page="home"] .hero-grid{padding:48px 0 32px;gap:24px}}

/* 09_21_26 Brent: footer legal line = ROC only + discreet credit */
.site-footer__powered { opacity: .45; }

/* 09_21_26 Brent: Recent work smaller */
.completed-work { padding-block: 28px !important; }
.completed-work .section-heading h2 { font-size: 1.35rem !important; margin-bottom: 12px !important; }
.completed-grid { gap: 12px !important; }
.completed-grid figure { aspect-ratio: 16 / 10; }
.completed-grid img { aspect-ratio: 16 / 10; object-fit: cover; }
.completed-grid figcaption { padding: 8px 10px !important; }
.completed-grid figcaption strong { font-size: .85rem !important; }
.completed-grid figcaption span { font-size: .7rem !important; letter-spacing: 0 !important; text-transform: none !important; }
@media (max-width: 880px) { .completed-grid { grid-template-columns: 1fr 1fr 1fr !important; } .completed-grid figcaption strong { font-size: .75rem !important; } }

/* Mobile navigation: flat 44px control; the existing aria-expanded state draws the close icon. */
@media (max-width: 880px) {
  body[data-page] .site-header .nav-toggle { grid-area:auto; width:44px; height:44px; padding:0; right:12px; top:32px; transform:translateY(-50%); gap:4px; border:0; border-radius:0; background:none; box-shadow:none; appearance:none; }
  body[data-page] .site-header .header-phone { top:32px; transform:translateY(-50%); }
  body[data-page] .site-header .nav-toggle span:not(.sr-only) { width:20px; height:1.5px; flex:none; border-radius:0; background:#17191c; }
  body[data-page] .site-header .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(5.5px) rotate(45deg); }
  body[data-page] .site-header .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
  body[data-page] .site-header .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-5.5px) rotate(-45deg); }
}

/* Arizona map: nested state coordinates; labels, dots and targets retain screen-pixel sizes. */
body[data-page] .page-hero.az-map-intro{display:block;max-width:640px;margin-inline:auto;margin-bottom:0;padding:0}
body[data-page] .az-map-intro + .section{margin-top:24px;padding-top:0}
.az-map{display:block;width:100%;max-width:640px;height:auto;aspect-ratio:1;margin:20px auto 0;overflow:visible}
.az-map--compact{max-width:360px}
.az-map__outline{fill:#e7eaed;stroke:rgba(23, 25, 28,.6);stroke-width:2;vector-effect:non-scaling-stroke;pointer-events:none}
.az-map__inner{fill:none;stroke:rgba(23, 25, 28,.12);stroke-width:1;vector-effect:non-scaling-stroke;pointer-events:none}
.az-map__city{outline:none;cursor:pointer}
.az-map__leader{fill:none;stroke:rgba(23, 25, 28,.3);stroke-width:1;pointer-events:none}
.az-map__dot{fill:#24282e;stroke:#f4f5f6;stroke-width:2;pointer-events:all}
.az-map__target{fill:#f4f5f6;fill-opacity:0;stroke:transparent;stroke-width:1;pointer-events:all}
.az-map__city text{font-family:inherit;font-size:15px;font-weight:600;fill:#17191c;pointer-events:none}
.az-map__city:hover .az-map__leader,.az-map__city:focus-visible .az-map__leader{stroke:#24282e}
.az-map__city:hover text,.az-map__city:focus-visible text{text-decoration:underline;text-decoration-color:#24282e;text-underline-offset:4px}
.az-map__city:focus-visible .az-map__target{stroke:#24282e;stroke-width:2}

/* 09_21_26 Brent: contact methods = one line each, no labels, no buttons */
.contact-methods--lines { display: block !important; margin: 8px 0 28px !important; }
.contact-methods--lines p { margin: 0 0 10px; font-size: 1.25rem; font-weight: 600; }
.contact-methods--lines a { color: #17191c; text-decoration: underline; text-decoration-color: #24282e; text-underline-offset: 4px; }
@media(max-width:880px){.az-map__city text{font-size:13px}}
.az-map__city text[text-anchor="end"]{paint-order:stroke;stroke:#f4f5f6;stroke-width:4px;stroke-linejoin:round}
.az-map__city[data-city="tucson"] text{stroke:#e7eaed}

/* 09_21_26 Brent: small office map on About */
.about-map { display: block; width: 100%; max-width: 360px; height: 200px; border: 0; margin: 14px 0 4px; filter: grayscale(.2); }

/* 09_21_26 Brent: About CTA = the inspection form */
.about-editorial .inspect__form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 680px; }
.about-editorial .inspect__form label[for="lead-address"], .about-editorial .inspect__form .button, .about-editorial .inspect__status { grid-column: 1 / -1; }
@media (max-width: 640px) { .about-editorial .inspect__form { grid-template-columns: 1fr; } }

/* Mobile final pass: phone composition; desktop and form/bar behavior stay intact. */
@media (max-width: 600px) {
  body[data-page] .section, body[data-page] .about-editorial { padding-block: 28px; }
  body[data-page] .section-heading { margin-bottom: 16px; }
  body[data-page] .page-main h2, body[data-page="home"] .section-heading h2,
  body[data-page] .section--content-grid h2 { font-size: 24px; line-height: 1.2; }
  body[data-page] .page-main h3, body[data-page="home"] .process-step h3 { font-size: 18px; line-height: 1.3; }
  body[data-page="home"] .hero-grid { padding: 40px 0 24px; gap: 16px; }
  body[data-page="home"] .video-hero__content { gap: 12px; }
  body[data-page="home"] .video-hero__content h1 { font-size: clamp(2.1rem, 8.6vw, 2.5rem); margin: 0; }
  body[data-page="home"] .video-hero__content p { font-size: 1rem; margin: 0; }
  body[data-page="home"] .video-hero .inspect { padding: 16px; }
  body[data-page="home"] .video-hero .inspect__copy p { margin-bottom: 12px; }
  body[data-page="home"] .video-hero .inspect__form, body[data-page] .inspect__form { gap: 10px; }
  body[data-page] .inspect__form label { font-size: 13px; line-height: 1.35; gap: 4px; }
  body[data-page] .inspect__form input, body[data-page] .inspect__form select,
  body[data-page="home"] .video-hero .inspect__form input,
  body[data-page="home"] .video-hero .inspect__form select { height: 46px; min-height: 46px; font-size: 16px; }
  body[data-page] .inspect__status:empty { min-height: 0; position: absolute; }
  body[data-page="about"] #estimate .about-editorial__body { padding: 16px; border: 1px solid var(--line); border-radius: 4px; }
  body[data-page="home"] .completed-work .section-heading h2 { font-size: 24px !important; margin-bottom: 0 !important; }
  body[data-page="home"] .completed-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  body[data-page="home"] .completed-grid figure,
  body[data-page="home"] .completed-grid figure:first-child { grid-column: auto; aspect-ratio: auto; background: transparent; }
  body[data-page="home"] .completed-grid img { width: 100%; height: auto; aspect-ratio: 16 / 10; }
  body[data-page="home"] .completed-grid figcaption { position: static; padding: 8px 0 0 !important; background: none; color: #17191c; }
  body[data-page="home"] .completed-grid figcaption strong { font-size: 18px !important; line-height: 1.3; }
  body[data-page="home"] .completed-grid figcaption span { font-size: 13px !important; line-height: 1.4; }
  body[data-page="projects"] .projects-img-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  body[data-page="services"] .page-hero--split { display: flex; flex-direction: column; gap: 16px; }
  body[data-page="services"] .page-hero--split .page-hero__media { order: -1; width: 100%; }
  body[data-page="services"] .page-hero--split .page-hero__media img { aspect-ratio: 16 / 10; }
  body[data-page] main a.button, body[data-page] .site-nav a.button {
    background: transparent; border: 0; border-radius: 0; padding-inline: 0; color: #17191c;
    text-decoration: underline; text-decoration-color: #24282e; text-underline-offset: 4px;
  }
}

/* 09_21_26 Brent: city chips -> final CTA; city links discreet (SEO) */
.section--cta-final { padding-block: 40px; border-top: 1px solid var(--line-strong); }
.cta-final { width: var(--container); max-width: 1180px; margin: 0 auto; display: grid; gap: 14px; justify-items: start; }
.cta-final h2 { margin: 0; font-size: 1.6rem; }
.cta-final .button { min-height: 52px; padding: 0 28px; }
.cta-final__areas { margin: 4px 0 0; font-size: .82rem; color: var(--muted, #5f666f); max-width: 70ch; line-height: 1.6; }
.cta-final__areas a { color: inherit; text-decoration: underline; text-decoration-color: rgba(23, 25, 28,.25); text-underline-offset: 3px; }
@media (max-width: 880px) { .section--cta-final { padding-block: 28px; } .cta-final .button { width: 100%; } }

/* 09_21_26 manager cures: final CTA stays a bronze button on phones; anchor targets clear the fixed header */
@media (max-width: 880px) { .cta-final .button, .cta-final .button:hover, .cta-final .button:focus-visible { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; background: #24282e !important; color: #fff !important; text-decoration: none !important; border-radius: 4px !important; border: 0 !important; } }
#estimate, [id="estimate"], .inspect { scroll-margin-top: 80px; }
@media (min-width: 881px) { #estimate, .inspect { scroll-margin-top: 88px; } }

/* 09_21_26 Brent: final CTA centered */
.cta-final { justify-items: center !important; text-align: center; }


/* 09_21_26: address suggestion list */
label[for="lead-address"] { position: relative; }
.addr-suggest { position: absolute; left: 0; right: 0; top: 100%; z-index: 30; background: #fff; border: 1px solid rgba(23, 25, 28,.25); border-top: 0; border-radius: 0 0 4px 4px; box-shadow: 0 8px 20px rgba(0,0,0,.12); max-height: 220px; overflow: auto; }
.addr-suggest button { display: block; width: 100%; text-align: left; padding: 12px 12px; min-height: 44px; background: #fff; border: 0; border-top: 1px solid rgba(23, 25, 28,.08); font: inherit; font-size: 15px; color: #17191c; cursor: pointer; }
.addr-suggest button:hover, .addr-suggest button.is-active { background: #f4f5f6; }
