:root {
  --ink: #161616;
  --ink-soft: #333333;
  --paper: #f7f7f4;
  --white: #ffffff;
  --concrete: #d9d7d0;
  --steel: #73787f;
  --red: #c81f2b;
  --red-dark: #8f111b;
  --blue: #164d8d;
  --line: rgba(22, 22, 22, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 46px);
  background: rgba(247, 247, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-phone {
  margin-left: auto;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--red);
}

.brand img {
  width: 158px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-item:last-child > a {
  color: var(--white);
  background: var(--red);
  border-radius: 4px;
  padding-inline: 14px;
}

.nav-item:last-child > a:hover,
.nav-item:last-child > a[aria-current="page"] {
  color: var(--white);
  background: var(--red-dark);
}

.nav-item:not(:last-child) > a[aria-current="page"],
.nav-item:not(:last-child) > a:hover {
  color: var(--red);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 260px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu {
  display: grid;
}

.nav-menu a {
  padding: 9px 10px;
  color: var(--ink);
  text-decoration: none;
}

.nav-menu a:hover {
  color: var(--red);
  background: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  background: var(--ink);
  border: 0;
  flex: 0 0 auto;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero,
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 70px) clamp(42px, 6vw, 72px);
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.32) 54%, rgba(0, 0, 0, 0.18)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero {
  align-items: center;
  min-height: clamp(500px, 68vh, 640px);
}

.page-hero {
  min-height: clamp(430px, 58vh, 620px);
}


.hero-content,
.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
}

.hero-mark {
  width: min(250px, 72vw);
  margin: 0 0 16px;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.55));
}

.compact {
  min-height: 58vh;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #ff4b57;
}

.hero-eyebrow {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(44px, 6vw, 70px);
  overflow-wrap: break-word;
}

.compact h1 {
  font-size: clamp(40px, 5.8vw, 66px);
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 28px;
}

.hero-copy,
.page-hero div > p:not(.eyebrow) {
  max-width: 670px;
  margin: 18px 0 0;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 700;
}

.page-hero .button {
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

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

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.contact-panel .button-secondary {
  color: var(--ink);
  border-color: var(--ink);
}

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

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-dark {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(200, 31, 43, 0.18), transparent 34%),
    linear-gradient(0deg, #151515, #252525);
}

.intro-split,
.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.intro-split p,
.detail-grid p {
  margin-top: 0;
}

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

.section-heading p:not(.eyebrow) {
  margin: 0;
}

.team-section {
  padding-top: 0;
}

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

.team-card {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
}

.team-card img {
  width: min(210px, 72%);
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 50%;
  background: #f3eee8;
}

.team-card-placeholder {
  width: min(210px, 72%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: #f3eee8;
  color: var(--red);
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card .eyebrow {
  margin-bottom: 10px;
}

.team-card h3 {
  margin-bottom: 12px;
}

.team-card p:last-child {
  margin-bottom: 0;
}

.trust-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: stretch;
  padding-top: 0;
}

.trust-panel {
  padding: clamp(26px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(200, 31, 43, 0.18), transparent 36%),
    linear-gradient(0deg, #171717, #272421);
  border-radius: 6px;
}

.trust-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.trust-list {
  display: grid;
  gap: 16px;
}

.trust-list article {
  padding: clamp(22px, 3vw, 30px);
  background: #f8f3ed;
  border: 1px solid rgba(138, 94, 65, 0.18);
  border-radius: 6px;
}

.trust-list h3 {
  margin-bottom: 10px;
}

.trust-list p {
  margin: 0;
}

.cross-section-feature {
  width: 100%;
  padding: clamp(58px, 8vw, 96px) max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(0deg, #101010, #232323);
}

.cross-section-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

.cross-section-copy h2 {
  max-width: 560px;
  font-size: clamp(42px, 4.8vw, 68px);
}

.cross-section-copy p:not(.eyebrow) {
  max-width: 530px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 700;
}

.cross-section-support {
  max-width: 520px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 800;
}

.cross-section-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  max-width: 520px;
}

.cross-section-points span {
  min-height: 46px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cross-section-visual {
  margin: 0;
}

.cross-section-visual img {
  width: 100%;
  aspect-ratio: 1.46 / 1;
  object-fit: contain;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.cross-section-visual figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 800;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

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

.section-heading a {
  font-weight: 900;
  color: var(--red);
  text-transform: uppercase;
  text-decoration: none;
}

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

.service-card {
  display: grid;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.section-dark .service-card {
  color: var(--ink);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card span,
.project-card span,
.review-card span {
  display: block;
  margin: 20px 20px 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3,
.service-card p {
  margin-inline: 20px;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--ink-soft);
}

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

.project-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.project-card a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.project-card-body {
  display: grid;
  height: 100%;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.project-card div {
  padding-bottom: 22px;
}

.project-card h3,
.project-card p,
.project-card span,
.project-card div {
  margin-inline: 20px;
}

.project-action {
  display: inline-block;
  margin: 0 20px 22px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.project-action-muted,
.home-project-action-muted {
  color: var(--steel);
}

.project-showcase-section {
  max-width: none;
  width: 100%;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.home-project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
}

.home-project-feature {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: #111111;
  border-radius: 6px;
}

.home-project-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.72));
}

.home-project-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-project-feature-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: clamp(24px, 4vw, 42px);
}

.home-project-feature-copy span,
.home-project-type,
.home-project-action {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-project-feature-copy span {
  color: var(--white);
}

.home-project-feature-copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 4vw, 54px);
}

.home-project-feature-copy p {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: 21px;
  font-weight: 800;
}

.home-project-feature-copy strong {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.home-project-list {
  display: grid;
  gap: 0;
  background: var(--white);
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
}

.home-project-proof {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 18px;
  padding: 24px 0;
  color: inherit;
  text-decoration: none;
  border-top: 1px solid var(--line);
}

.home-project-proof-static {
  cursor: default;
}

.home-project-proof:first-child {
  border-top: 0;
}

.home-project-number {
  grid-row: 1 / span 4;
  align-self: start;
  color: var(--steel);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.home-project-proof strong {
  margin-top: 5px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 25px;
  line-height: 1.08;
}

.home-project-proof p {
  margin: 8px 24px 12px 0;
  color: var(--ink-soft);
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(20px, 5vw, 58px);
  align-items: center;
}

.featured-project-copy p {
  max-width: 620px;
}

.featured-project-card {
  display: grid;
  align-self: stretch;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(25, 20, 17, 0.08);
}

.featured-project-card img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.featured-project-card strong,
.featured-project-card span {
  margin-inline: 20px;
}

.featured-project-card strong {
  margin-top: 18px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.featured-project-card span {
  margin-top: 8px;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.scrub-shell {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  background: linear-gradient(180deg, #12171b 0%, #090b0f 58%, #07090b 100%);
}

.scrub-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: 0 clamp(18px, 5vw, 54px) 0;
  overflow: hidden;
}

.scrub-copy {
  align-self: center;
  margin-top: 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.72);
}

.scrub-copy .eyebrow {
  color: var(--blue);
}

.scrub-copy h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.92;
}

.scrub-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 2.1vw, 23px);
  line-height: 1.45;
}

.scrub-frame-wrap {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 1080 / 1350;
  display: grid;
  place-items: center;
  justify-self: end;
  align-self: center;
  margin-top: 0;
}

.scrub-frame-wrap::before {
  content: none;
}

.scrub-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #090b0f;
  object-fit: cover;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.48);
  user-select: none;
}

.project-case-study-content {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(9, 11, 15, 0), #f7f7f4 120px),
    var(--paper);
}

.project-intro p {
  max-width: 700px;
}

.project-details .detail-panel {
  position: sticky;
  top: 90px;
  padding: 28px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(200, 31, 43, 0.06), rgba(247, 247, 244, 0.96)),
    var(--white);
  border: 1px solid var(--line);
}

.project-details .detail-panel h3,
.project-details .detail-panel p {
  color: var(--ink);
}

.project-details .detail-panel-muted {
  background:
    linear-gradient(145deg, rgba(22, 77, 141, 0.05), rgba(247, 247, 244, 0.98)),
    var(--white);
}

.project-details .text-stack {
  display: grid;
  gap: 34px;
}

.project-details .text-stack article {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.project-details .text-stack article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-details .text-stack h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.project-details .text-stack p {
  margin: 0;
  color: var(--ink-soft);
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.chip {
  padding: 8px 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(200, 31, 43, 0.08);
  border: 1px solid rgba(200, 31, 43, 0.2);
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.band {
  background: var(--ink);
  color: var(--white);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.step {
  min-height: 240px;
  padding: 26px;
  background: var(--panel-2);
}

.step span {
  display: block;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 42px;
}

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

.step p {
  color: var(--muted);
  line-height: 1.55;
}

.estimate-band,
.cta-slab {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 8vw, 92px) max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(22, 77, 141, 0.26), transparent 34%),
    #171717;
}

.cta-slab {
  display: block;
  text-align: center;
}

.cta-slab h2 {
  margin-bottom: 28px;
}

.cta-slab .button {
  margin-top: 0;
}

.mini-estimator,
.lead-form,
.contact-panel,
.estimate-preview-card,
.scope-panel,
.location-snapshot,
.review-card,
.values-grid article,
.area-card,
.area-grid article {
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
}

.mini-estimator,
.lead-form {
  display: grid;
  gap: 16px;
}

.estimate-benefit {
  margin: 0;
  padding: 14px 16px;
  color: var(--ink);
  background: #f4ede3;
  border: 1px solid rgba(138, 94, 65, 0.18);
  border-radius: 16px;
}

.estimate-preview-card {
  display: grid;
  gap: 18px;
}

.estimate-preview-card h3,
.estimate-rate-card h3 {
  margin: 0;
}

.estimate-helper {
  margin: -6px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.optional-contact-block {
  display: grid;
  gap: 16px;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.optional-contact-block h3,
.optional-contact-block p {
  margin: 0;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.checkbox-row input {
  width: 20px;
  min-height: 20px;
  margin: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(22, 22, 22, 0.24);
  border-radius: 4px;
  font: inherit;
  background: #fbfbf8;
}

textarea {
  resize: vertical;
}

output {
  display: block;
  min-height: 54px;
  padding: 14px;
  color: var(--ink);
  background: var(--paper);
  border-left: 5px solid var(--red);
  font-weight: 800;
}

.estimate-rule-grid {
  display: grid;
  gap: 12px;
}

.estimate-rule-grid p,
.estimate-rate-card {
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.estimate-preview-card .estimate-rule-grid p,
.contact-panel .estimate-rule-grid p,
.estimate-rate-card {
  color: var(--ink);
  background: #fbfbf8;
  border-color: var(--line);
}

.estimate-rate-card ul {
  margin: 0;
  padding-left: 20px;
}

.estimate-rate-card li {
  margin: 8px 0;
}

.estimate-totals {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.estimate-totals p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 16px 18px;
  background: #fbfbf8;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.estimate-totals span,
.estimate-total-card span {
  font-weight: 900;
}

.estimate-total-card {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 20px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.estimate-total-card strong {
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.estimate-total-card span {
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.scope-panel ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.scope-panel li {
  margin: 9px 0;
}

.service-seo h2 {
  margin-bottom: 24px;
}

.seo-grid,
.values-grid,
.area-grid,
.review-layout,
.checklist-grid,
.service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.seo-grid p,
.method-list p,
.checklist-grid p {
  margin: 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.service-method {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}

.method-list {
  display: grid;
  gap: 14px;
}

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

.gallery-grid figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 11px 12px;
  font-weight: 800;
}

.review-card.empty {
  border-style: dashed;
}

.review-card p {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 700;
}

.review-card small {
  display: block;
  margin-top: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.process-band {
  padding: clamp(36px, 6vw, 62px);
  background: var(--ink);
  color: var(--white);
}

.process-band p {
  max-width: 850px;
}

.area-hub-intro,
.location-overview,
.nearby-areas {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.service-area-map {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  padding: clamp(48px, 8vw, 92px) max(18px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 31, 43, 0.38), transparent 28%),
    linear-gradient(135deg, #111111, #242424 64%, #101621);
}

.service-area-map h2 {
  max-width: 720px;
}

.area-pill-cloud,
.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-pill-cloud a,
.nearby-links a,
.nearby-links span,
.service-link-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.nearby-links a,
.nearby-links span,
.service-link-grid a {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.area-regions {
  display: grid;
  gap: clamp(44px, 8vw, 86px);
}

.area-region {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.area-region-copy {
  position: sticky;
  top: 122px;
}

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

.area-card {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(183, 46, 35, 0.08), transparent 48%),
    var(--white);
  box-shadow: 0 22px 54px rgba(25, 20, 17, 0.09);
}

.area-card a {
  display: grid;
  height: 100%;
  padding: clamp(20px, 2.4vw, 30px);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.area-card a:hover,
.area-card a:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 250, 242, 0.68);
}

.area-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.area-card span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.area-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.area-card p {
  margin: 12px 0 18px;
  color: var(--ink-soft);
}

.area-card small,
.area-card strong {
  align-self: end;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.area-card-meta small {
  color: var(--red);
  white-space: nowrap;
}

.area-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
}

.area-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.area-card-tags li {
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(229, 222, 210, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: capitalize;
}

.location-snapshot ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.location-snapshot li {
  margin: 9px 0;
}

.location-service-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: start;
}

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

.service-link-grid a:hover,
.nearby-links a:hover,
.area-pill-cloud a:hover,
.area-card a:hover h3 {
  color: var(--red);
}

.nearby-links span {
  opacity: 0.42;
  cursor: default;
  border-style: dashed;
}

.estimate-sticky-bar {
  display: none;
}

.contact-panel {
  position: sticky;
  top: 110px;
}

.small-note {
  color: var(--ink-soft);
  font-size: 15px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
}

.form-status[data-state="pending"] {
  color: #7a4d2a;
}

.form-status[data-state="success"] {
  color: #256248;
}

.form-status[data-state="error"] {
  color: #9d2d1f;
}

.site-footer {
  padding: clamp(46px, 7vw, 86px) max(18px, calc((100vw - var(--max)) / 2)) 24px;
  color: var(--white);
  background: #111111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr 0.8fr;
  gap: 36px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: var(--white);
  text-decoration: none;
}

.footer-cta {
  color: #ff4b57 !important;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

@media (max-width: 1060px) {
  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: block !important;
    position: fixed;
    top: 19px;
    right: 14px;
    z-index: 100;
    background: var(--red);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 16px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }

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

  .nav-item > a {
    width: 100%;
    padding: 10px;
  }

  .nav-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 980px) {
  .estimate-sticky-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column: 1 / -1;
    position: sticky;
    top: 96px;
    z-index: 15;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--white);
    border-radius: 4px;
    margin-bottom: 4px;
  }

  .estimate-sticky-label {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.7;
  }

  .estimate-sticky-value {
    font-family: "Oswald", Impact, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
  }

  .service-grid,
  .project-grid,
  .gallery-grid,
  .seo-grid,
  .team-grid,
  .values-grid,
  .area-grid,
  .review-layout,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-split,
  .detail-grid,
  .contact-grid,
  .trust-split,
  .featured-project,
  .home-project-showcase,
  .cross-section-layout,
  .service-method,
  .estimate-band,
  .area-hub-intro,
  .service-area-map,
  .area-region,
  .location-overview,
  .location-service-strip,
  .nearby-areas {
    grid-template-columns: 1fr;
  }

  .area-region-copy {
    position: static;
  }

  .contact-panel {
    position: static;
  }

  .project-details .detail-panel {
    position: static;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.72;
  padding: 4px 8px;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  opacity: 1;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.gallery-grid figure {
  cursor: zoom-in;
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
  }

  .estimate-sticky-bar {
    top: 82px;
  }

  .site-header {
    padding-inline: 14px;
    width: 100vw !important;
    max-width: 100vw;
    left: 0;
    right: 0;
  }

  .section {
    width: calc(100% - 36px);
  }

  .brand img {
    width: 128px;
    height: 58px;
  }

  .hero {
    min-height: 60vh;
    padding: 58px 18px 28px;
  }

  .page-hero {
    min-height: 68vh;
    padding: 70px 18px 42px;
  }

  .compact {
    min-height: 58vh;
  }

  .hero-copy {
    max-width: 30rem;
    margin-top: 14px;
    font-size: 18px;
  }

  .page-hero div > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 19px;
  }

  .hero-eyebrow {
    max-width: 320px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.1;
  }

  .hero-mark {
    width: min(214px, 68vw);
    margin-bottom: 12px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
    max-width: 320px;
  }

  .scrub-copy {
    margin-top: 0;
  }

  .scrub-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 17px;
  }

  .scrub-frame-wrap {
    width: min(100vw, 560px);
    justify-self: center;
  }

  h1 {
    font-size: 32px;
    max-width: calc(100vw - 96px);
    overflow-wrap: anywhere;
  }

  .compact h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 32px;
    max-width: calc(100vw - 96px);
    overflow-wrap: anywhere;
  }

  .page-hero div > p:not(.eyebrow),
  .intro-split p,
  .section-heading p:not(.eyebrow),
  .team-card p,
  .trust-panel p:not(.eyebrow),
  .trust-list p,
  .values-grid p {
    max-width: calc(100vw - 96px);
  }

  .service-grid,
  .project-grid,
  .home-project-showcase,
  .featured-project,
  .gallery-grid,
  .seo-grid,
  .team-grid,
  .values-grid,
  .area-grid,
  .review-layout,
  .checklist-grid,
  .service-link-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cross-section-feature {
    padding-inline: 18px;
  }

  .featured-project-card strong {
    font-size: 26px;
  }

  .home-project-feature {
    min-height: 430px;
  }

  .home-project-proof {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
  }

  .home-project-number {
    font-size: 27px;
  }

  .project-details .text-stack {
    gap: 28px;
  }

  .project-details .text-stack article {
    padding-bottom: 28px;
  }

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

  .step {
    min-height: auto;
  }

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

  .cross-section-visual img {
    aspect-ratio: 3 / 2;
  }

  .section-heading {
    display: block;
  }

  .section-heading a {
    display: inline-block;
    margin-top: 16px;
  }

  .button {
    width: 100%;
  }

  .lead-form h2 {
    font-size: 31px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* ── Section divider: three-cross plaque ── */
/* Spacing: reduce padding on sections immediately adjacent to a plaque */
.section:has(+ .dv-plaque) { padding-bottom: 28px; }
.dv-plaque--hero + .section { padding-top: 28px; }

/* Base plaque container (shared by all divider variants) */
.dv-plaque {
  position: relative;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── LOCKED IN: same-color dividers (light→light AND dark→dark) ──
   Refined keyline — neutral rules + brand-red dots fading to a small
   vector cross. Scoped with :not(.dv-plaque--hero) so the parked
   dark↔light transition divider is left untouched (see parking lot). */
.dv-plaque:not(.dv-plaque--hero) {
  height: 56px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* light variant: lines #c9c1b4, dots + cross brand red #c81f2b */
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 64' preserveAspectRatio='xMidYMid meet'><g transform='translate(500 32)'><line x1='-440' y1='0' x2='-58' y2='0' stroke='%23c9c1b4' stroke-width='1.4'/><line x1='58' y1='0' x2='440' y2='0' stroke='%23c9c1b4' stroke-width='1.4'/><g fill='%23c81f2b'><circle cx='-92' cy='0' r='2.4' opacity='0.30'/><circle cx='-78' cy='0' r='2.4' opacity='0.55'/><circle cx='-66' cy='0' r='2.4' opacity='0.80'/><circle cx='92' cy='0' r='2.4' opacity='0.30'/><circle cx='78' cy='0' r='2.4' opacity='0.55'/><circle cx='66' cy='0' r='2.4' opacity='0.80'/></g><g fill='%23c81f2b'><rect x='-3' y='-15' width='6' height='30' rx='1.2'/><rect x='-10' y='-7' width='20' height='6' rx='1.2'/></g></g></svg>");
}

/* hide the legacy rule + emoji pill on keyline dividers */
.dv-plaque:not(.dv-plaque--hero)::before { display: none; }
.dv-plaque:not(.dv-plaque--hero) .dv-plaque-pill { display: none; }

/* dark→dark variant: recolored rules + dots for dark backgrounds.
   Add class "dv-plaque--dark" to the divider when both sides are dark. */
.dv-plaque--dark:not(.dv-plaque--hero) {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 64' preserveAspectRatio='xMidYMid meet'><g transform='translate(500 32)'><line x1='-440' y1='0' x2='-58' y2='0' stroke='%235a534b' stroke-width='1.4'/><line x1='58' y1='0' x2='440' y2='0' stroke='%235a534b' stroke-width='1.4'/><g fill='%23d35450'><circle cx='-92' cy='0' r='2.4' opacity='0.30'/><circle cx='-78' cy='0' r='2.4' opacity='0.55'/><circle cx='-66' cy='0' r='2.4' opacity='0.85'/><circle cx='92' cy='0' r='2.4' opacity='0.30'/><circle cx='78' cy='0' r='2.4' opacity='0.55'/><circle cx='66' cy='0' r='2.4' opacity='0.85'/></g><g fill='%23d35450'><rect x='-3' y='-15' width='6' height='30' rx='1.2'/><rect x='-10' y='-7' width='20' height='6' rx='1.2'/></g></g></svg>");
}

/* ── dark↔light transition divider (.dv-plaque--hero) ──
   3 px brand-red rule. Clean hard cut between hero and content. */
.dv-plaque--hero {
  height: 3px;
  background: var(--red);
}

.dv-plaque--hero::before { display: none; }
.dv-plaque--hero .dv-plaque-pill { display: none; }

/* ==========================================================================
   Accessibility affordances
   ========================================================================== */

/* Skip-to-content link: visually hidden until keyboard focus, then pinned. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  background: var(--red);
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 20px;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
  outline: 3px solid var(--white);
  outline-offset: 2px;
}

/* Strong, visible keyboard focus for interactive elements and clickable cards. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible,
.service-card:focus-visible,
.project-card:focus-visible,
.area-card:focus-visible,
.home-project-feature:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respect users who prefer reduced motion: neutralize all motion. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  /* Neutralize decorative / scroll-driven motion. */
  .dv-plaque,
  .dv-plaque--hero,
  .dv-plaque-pill,
  .scrub-frame,
  .scrub-frame-wrap {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
