:root {
  --anthracite: #26262b;
  --gold: #d0b78b;
  --off-white: #ded8cc;
  --white: #eee8dd;
  --surface: #e8e1d5;
  --ink-soft: #4d4a47;
  --line: rgba(38, 38, 43, 0.18);
  --shadow: 0 22px 60px rgba(38, 38, 43, 0.18);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--anthracite);
  background: var(--off-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.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;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(222, 216, 204, 0.2);
  color: var(--white);
  background: rgba(38, 38, 43, 0.72);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--anthracite);
  background: rgba(222, 216, 204, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(38, 38, 43, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-height) + 58px);
  overflow: hidden;
  color: var(--white);
  background: var(--anthracite);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 38, 43, 0.84), rgba(38, 38, 43, 0.74)),
    url("assets/hero-csps-renovation.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, var(--off-white), rgba(222, 216, 204, 0));
  opacity: 0.08;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
}

.hero-logo {
  width: clamp(180px, 20vw, 260px);
  height: auto;
  margin-bottom: 34px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-service-title {
  max-width: 760px;
  color: rgba(238, 232, 221, 0.96);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.12;
  font-weight: 800;
}

.hero-local-title {
  max-width: 760px;
  color: var(--gold);
  font-size: clamp(1.65rem, 3.4vw, 2.85rem);
  line-height: 1.1;
  font-weight: 800;
}

.hero-title span {
  display: block;
  max-width: 720px;
  margin-top: 18px;
  color: rgba(238, 232, 221, 0.92);
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-weight: 600;
}

.section-title {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.9rem, 2.7vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-subtitle {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  line-height: 1.24;
  font-weight: 700;
}

.lead {
  max-width: 620px;
  margin: 28px 0 8px;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
}

.obligation-content .btn {
  margin-top: 30px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions .btn {
  width: 190px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--anthracite);
  background: var(--gold);
  box-shadow: 0 14px 36px rgba(208, 183, 139, 0.22);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(238, 232, 221, 0.48);
  background: rgba(238, 232, 221, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 56px;
  align-items: start;
}

.section-layout.reverse .section-header {
  grid-column: 2;
}

.section-layout.reverse .section-content {
  grid-column: 1;
  grid-row: 1;
}

.section-header,
.section-content {
  min-width: 0;
}

.section-layout .cards,
.section-layout .area-grid {
  margin-top: 0;
}

.section-centered .section-layout {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 32px;
  text-align: center;
}

.section-centered .section-heading,
.section-centered .section-content {
  width: 100%;
  max-width: 900px;
}

.main-section-title,
.slrp-title,
.approach-title {
  color: var(--gold);
  font-size: clamp(2.6rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.section-lead,
.slrp-subtitle,
.approach-subtitle {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--anthracite);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.2;
  font-weight: 700;
}

.text-panel {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.section-heading {
  max-width: 520px;
}

.section-centered .section-heading {
  max-width: 900px;
}

.section-centered .main-section-title {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.slrp-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 225, 213, 0.86), rgba(222, 216, 204, 0.96)),
    var(--off-white);
}

.slrp-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(42vw, 520px);
  height: 100%;
  content: "";
  background:
    linear-gradient(90deg, rgba(222, 216, 204, 0), rgba(208, 183, 139, 0.16)),
    repeating-linear-gradient(135deg, rgba(38, 38, 43, 0.07) 0 1px, transparent 1px 18px);
  opacity: 0.48;
  pointer-events: none;
}

.slrp-section .section-layout {
  position: relative;
  z-index: 1;
}

.slrp-title {
  margin: 0;
}

.slrp-subtitle {
  color: var(--anthracite);
}

.slrp-content {
  display: block;
}

.slrp-intro,
.slrp-blocks article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(232, 225, 213, 0.72);
  box-shadow: 0 18px 44px rgba(38, 38, 43, 0.08);
}

.slrp-intro {
  padding: clamp(24px, 4vw, 38px);
  border-left: 4px solid var(--gold);
}

.slrp-blocks {
  display: grid;
  gap: 18px;
}

.slrp-blocks article {
  padding: 28px;
}

.slrp-content p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.slrp-content p + p {
  margin-top: 14px;
}

.slrp-blocks .section-subtitle {
  margin-bottom: 16px;
  color: var(--anthracite);
}

.text-flow > p,
.obligation-content > p,
.approach-box p,
.contact-info > p {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.feature-list article,
.approach-box,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-list article {
  padding: 22px;
}

.feature-list p,
.card p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}

.approach {
  background:
    linear-gradient(135deg, rgba(38, 38, 43, 0.92), rgba(38, 38, 43, 0.76)),
    radial-gradient(circle at 82% 20%, rgba(208, 183, 139, 0.38), transparent 32%),
    var(--anthracite);
  color: var(--white);
}

.approach-box {
  max-width: 720px;
  padding: clamp(26px, 4.5vw, 42px);
  color: var(--white);
  background: rgba(222, 216, 204, 0.08);
  border-color: rgba(222, 216, 204, 0.16);
}

.approach .section-lead,
.approach-subtitle {
  color: rgba(238, 232, 221, 0.9);
}

.approach-title {
  margin: 0;
}

.approach-box p {
  color: rgba(238, 232, 221, 0.82);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.cards {
  margin-top: 42px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(208, 183, 139, 0.7);
  box-shadow: var(--shadow);
}

.mission-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 17px 22px;
  border: 0;
  color: var(--anthracite);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.mission-icon {
  display: none;
}

.mission-icon::before {
  width: 9px;
  height: 9px;
  content: "";
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.mission-accordion.is-open .mission-icon::before {
  transform: translateY(2px) rotate(225deg);
}

.mission-toggle strong {
  font-size: clamp(1.08rem, 1.28vw, 1.28rem);
  line-height: 1.22;
}

.accordion-icon {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(38, 38, 43, 0.22);
  border-radius: 50%;
  flex: 0 0 auto;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  content: "";
  background: var(--anthracite);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.mission-toggle .accordion-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(208, 183, 139, 0.72);
  border-radius: 50%;
  background: transparent;
}

.mission-toggle .accordion-icon::before {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  background: transparent;
  transform: translate(-50%, calc(-50% - 2px)) rotate(45deg);
}

.mission-toggle .accordion-icon::after {
  display: none;
}

.mission-accordion.is-open .mission-toggle .accordion-icon::before {
  transform: translate(-50%, calc(-50% + 2px)) rotate(225deg);
}

.mission-accordion.is-open .accordion-icon::after,
.obligation-accordion.is-open .accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.mission-panel,
.obligation-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.mission-panel p {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0 54px 14px 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}

.obligations {
  background: #d5cdbf;
}

.obligation-content {
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  justify-items: center;
}

.obligation-block,
.obligation-cta {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(232, 225, 213, 0.72);
  box-shadow: 0 18px 44px rgba(38, 38, 43, 0.08);
}

.obligation-block {
  padding: 24px;
  text-align: left;
}

.obligation-block p,
.obligation-note,
.obligation-cta p,
.obligation-panel-text p,
.category-note {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.obligation-block p + p,
.obligation-panel-text p + p {
  margin-top: 12px;
}

.obligation-accordion {
  padding: 0;
  overflow: hidden;
}

.obligation-toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 17px 22px;
  border: 0;
  color: var(--anthracite);
  background: transparent;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.obligation-accordion-compact .obligation-toggle {
  min-height: 0;
  padding-top: 17px;
  padding-bottom: 17px;
}

.obligation-accordion-compact .obligation-toggle strong {
  margin-bottom: 0;
}

.obligation-toggle::after {
  width: 24px;
  height: 1px;
  content: "";
}

.obligation-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(208, 183, 139, 0.72);
  border-radius: 50%;
}

.obligation-arrow::before {
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.obligation-accordion.is-open .obligation-arrow::before {
  transform: translateY(2px) rotate(225deg);
}

.obligation-toggle strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.08rem, 1.28vw, 1.28rem);
  line-height: 1.22;
}

.obligation-toggle small {
  display: block;
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}

.category-list {
  display: grid;
  gap: 12px;
  padding: 0 24px 24px;
}

.obligation-panel-text {
  padding: 0 24px 24px;
  text-align: center;
}

.obligation-accordion-compact .obligation-panel-text {
  padding-top: 2px;
  padding-bottom: 22px;
}

.obligation-panel-text p,
.category-note {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.category-list article {
  padding: 18px;
  border: 1px solid rgba(38, 38, 43, 0.12);
  border-radius: 8px;
  background: rgba(222, 216, 204, 0.52);
}

.category-list p + p {
  margin-top: 10px;
}

.category-note {
  justify-self: center;
  max-width: 680px;
  width: 100%;
  padding-top: 4px;
  font-weight: 700;
}

.category-list h4 {
  margin: 0 0 8px;
  color: var(--anthracite);
  font-size: 1.08rem;
}

.obligation-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  color: var(--white);
  background: var(--anthracite);
  text-align: left;
}

.obligation-cta p {
  color: rgba(238, 232, 221, 0.78);
}

.obligation-cta .section-subtitle {
  color: var(--white);
}

.obligation-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.obligation-actions .btn {
  min-width: 170px;
  margin-top: 0;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.area-text {
  display: grid;
  justify-items: center;
  gap: 28px;
  max-width: 820px;
  padding: clamp(26px, 4vw, 40px);
  border-top: 1px solid rgba(208, 183, 139, 0.52);
  border-bottom: 1px solid rgba(208, 183, 139, 0.52);
  background: linear-gradient(90deg, rgba(208, 183, 139, 0), rgba(208, 183, 139, 0.1), rgba(208, 183, 139, 0));
}

.area-text p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
  text-align: center;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-pills span {
  padding: 11px 16px;
  border: 1px solid rgba(208, 183, 139, 0.86);
  border-radius: 999px;
  color: var(--anthracite);
  background: rgba(232, 225, 213, 0.62);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
}

.area-grid span {
  padding: 12px 18px;
  font-size: 1.02rem;
  font-weight: 800;
}

.contact {
  color: var(--white);
  background: var(--anthracite);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  align-items: start;
}

.contact-info .section-lead {
  margin-right: 0;
  margin-left: 0;
}

.contact-info > p {
  color: rgba(238, 232, 221, 0.78);
}

.contact .section-lead {
  color: rgba(238, 232, 221, 0.9);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(222, 216, 204, 0.16);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(222, 216, 204, 0.08);
}

.contact-lines a,
.contact-lines span {
  font-size: 1rem;
  font-weight: 800;
}

.contact-lines small {
  margin-top: -9px;
  color: rgba(238, 232, 221, 0.62);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--anthracite);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--anthracite);
  background: #d9d1c4;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 24px 0;
  color: rgba(238, 232, 221, 0.7);
  background: #1f1f23;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

.thanks-page {
  min-height: 100vh;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(38, 38, 43, 0.92), rgba(38, 38, 43, 0.78)),
    url("assets/hero-csps-renovation.png") center / cover no-repeat;
}

.thanks-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.thanks-section {
  width: min(100%, 680px);
}

.thanks-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(30px, 6vw, 54px);
  border: 1px solid rgba(222, 216, 204, 0.18);
  border-radius: 8px;
  background: rgba(38, 38, 43, 0.72);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-logo {
  width: clamp(120px, 22vw, 180px);
}

.thanks-card h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.05;
}

.thanks-card p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(238, 232, 221, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

.floating-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 18;
  display: none;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--anthracite);
  background: var(--gold);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }

  html {
    scroll-padding-top: var(--header-height);
  }

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

  .section {
    padding: 64px 0;
  }

  .site-header {
    height: var(--header-height);
    padding: 0 16px;
  }

  .nav-toggle {
    position: absolute;
    right: 16px;
    z-index: 31;
    display: grid;
    place-content: center;
    border-color: rgba(238, 232, 221, 0.5);
    background: rgba(38, 38, 43, 0.28);
  }

  .site-header.is-scrolled .nav-toggle {
    border-color: rgba(38, 38, 43, 0.34);
    background: rgba(38, 38, 43, 0.06);
  }

  .nav-toggle span:not(.sr-only) {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 3px auto;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-toggle span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 7px));
  }

  .nav-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .nav-toggle span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 7px));
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    gap: 10px;
    padding: 18px;
    color: var(--anthracite);
    background: rgba(232, 225, 213, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(38, 38, 43, 0.22);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav::before {
    content: "Menu";
    padding: 4px 4px 10px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid rgba(38, 38, 43, 0.1);
    border-radius: 6px;
    background: rgba(222, 216, 204, 0.66);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
    align-items: start;
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: 48px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(38, 38, 43, 0.92), rgba(38, 38, 43, 0.8)),
      url("assets/hero-csps-renovation.png") center / cover no-repeat;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-content {
    max-width: 560px;
  }

  .hero-logo {
    width: clamp(128px, 35vw, 178px);
    margin-bottom: 20px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
  }

  .hero-title {
    max-width: 560px;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.94;
  }

  .hero-title span {
    max-width: 520px;
    margin-top: 12px;
    font-size: clamp(1.1rem, 5vw, 1.75rem);
    line-height: 1.16;
  }

  .section-title {
    max-width: 620px;
    font-size: clamp(1.8rem, 4.4vw, 2.2rem);
    line-height: 1.14;
  }

  .hero-service-title {
    font-size: clamp(1.7rem, 6.4vw, 2.45rem);
    line-height: 1.06;
  }

  .hero-local-title {
    font-size: clamp(1.65rem, 6.4vw, 2.35rem);
    line-height: 1.1;
  }

  .main-section-title,
  .slrp-title,
  .approach-title {
    font-size: clamp(2.15rem, 7vw, 2.75rem);
  }

  .section-lead,
  .slrp-subtitle,
  .approach-subtitle {
    font-size: clamp(1.25rem, 4.4vw, 1.55rem);
  }

  .section-subtitle,
  .slrp-blocks .section-subtitle {
    font-size: clamp(1.2rem, 3.4vw, 1.4rem);
    line-height: 1.24;
  }

  .lead {
    max-width: 520px;
    margin: 18px 0 0;
    font-size: clamp(1.05rem, 4.7vw, 1.38rem);
    line-height: 1.28;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 330px);
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mission-toggle {
    gap: 12px;
    padding: 15px 18px;
  }

  .obligation-toggle {
    gap: 12px;
    padding: 15px 18px;
  }

  .mission-panel p {
    padding: 0 48px 13px 18px;
  }

  .split,
  .section-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-layout.reverse .section-header,
  .section-layout.reverse .section-content {
    grid-column: auto;
    grid-row: auto;
  }

  .section-header {
    order: 1;
  }

  .section-content {
    order: 2;
  }

  .section-heading {
    max-width: none;
  }

  .text-flow > p,
  .obligation-content > p,
  .approach-box p,
  .contact-info > p {
    font-size: 1rem;
    line-height: 1.66;
  }

  .feature-list,
  .mission-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .card,
  .feature-list article,
  .slrp-intro,
  .slrp-blocks article {
    min-height: auto;
    padding: 18px;
  }

  .card {
    column-gap: 14px;
  }

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

  .obligation-actions {
    justify-content: stretch;
  }

  .obligation-actions .btn {
    width: 100%;
  }

  .slrp-section::before {
    width: 100%;
    opacity: 0.22;
  }

  .slrp-content {
    gap: 16px;
  }

  .slrp-title {
    font-size: 2.125rem;
  }

  .slrp-subtitle {
    font-size: 1.375rem;
    line-height: 1.22;
  }

  .slrp-content p {
    font-size: 1rem;
    line-height: 1.66;
  }

  .slrp-intro,
  .approach-box {
    max-width: 680px;
  }

  .approach-box,
  .contact-form,
  .obligation-content {
    padding: 22px;
  }

  .contact-lines a,
  .contact-lines span {
    font-size: 1rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 50px;
    font-size: 1rem;
  }

  .floating-call {
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 74px 0;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 10px;
    padding: 18px 20px 24px;
    color: var(--anthracite);
    background: rgba(222, 216, 204, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 34px rgba(38, 38, 43, 0.12);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 52px;
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 100svh;
  }

  .split,
  .section-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 0 14px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 38px);
    padding-bottom: 68px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(38, 38, 43, 0.96), rgba(38, 38, 43, 0.76)),
      url("assets/hero-csps-renovation.png") center / cover no-repeat;
  }

  .hero-logo {
    width: 170px;
  }

  .hero-service-title {
    font-size: clamp(1.65rem, 8.5vw, 2.25rem);
  }

  .hero-local-title {
    font-size: clamp(1.55rem, 7.4vw, 2.15rem);
  }

  .section-title {
    font-size: clamp(1.65rem, 6.2vw, 2rem);
    line-height: 1.14;
  }

  .section-subtitle,
  .slrp-blocks .section-subtitle {
    font-size: 1.18rem;
    line-height: 1.25;
  }

  .eyebrow {
    font-size: 0.76rem;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .feature-list,
  .mission-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mission-toggle {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .mission-icon {
    width: 36px;
    height: 36px;
  }

  .mission-toggle strong {
    font-size: 1.02rem;
  }

  .obligation-toggle strong {
    font-size: 1.02rem;
  }

  .obligation-toggle small {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .mission-panel p {
    padding-left: 18px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .slrp-intro,
  .approach-box {
    max-width: min(100%, 560px);
    padding: 18px;
  }

  .slrp-content p,
  .approach-box p {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .floating-call {
    display: inline-flex;
    align-items: center;
  }
}

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