:root {
  --navy-950: #04111f;
  --navy-900: #071c33;
  --navy-800: #0b2a4a;
  --blue-700: #0d5ea6;
  --blue-600: #147cca;
  --blue-500: #1e91dd;
  --cyan-400: #34b9d8;
  --orange-500: #e86b32;
  --slate-900: #142133;
  --slate-700: #435268;
  --slate-600: #5b697d;
  --slate-400: #98a5b4;
  --slate-200: #dce3ea;
  --slate-100: #edf2f6;
  --slate-50: #f6f9fb;
  --white: #ffffff;
  --shadow-sm: 0 12px 30px rgba(4, 17, 31, 0.08);
  --shadow-lg: 0 32px 80px rgba(4, 17, 31, 0.2);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(30, 145, 221, 0.4);
  outline-offset: 3px;
}

.section-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow.light {
  color: #83d8ec;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 42, 74, 0.1);
  backdrop-filter: blur(16px);
}

.header-shell {
  width: min(1320px, calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  flex: 0 1 270px;
}

.brand img {
  width: 268px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 32px);
}

.site-nav > a {
  color: var(--slate-700);
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav > a:hover {
  color: var(--blue-600);
}

.site-nav .header-call {
  min-height: 46px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(7, 28, 51, 0.16);
}

.header-call svg,
.button svg,
.text-link svg,
.city-grid svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  height: 2px;
  margin: 5px 0;
  display: block;
  background: var(--navy-900);
  border-radius: 2px;
}

.hero,
.city-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 24%, rgba(52, 185, 216, 0.18), transparent 28%),
    linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 48%, #0b3c69 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to right, transparent 2%, black 52%, black 100%);
  mask-image: linear-gradient(to right, transparent 2%, black 52%, black 100%);
}

.hero-grid {
  min-height: 680px;
  padding: 92px 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.hero-copy h1,
.city-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.6rem, 6vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  color: #77d6eb;
}

.hero-lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: #d6e2ee;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

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

.button-primary {
  color: var(--navy-950);
  background: #75d8ed;
  box-shadow: 0 12px 32px rgba(52, 185, 216, 0.22);
}

.button-primary:hover {
  background: #a4e6f3;
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
}

.button svg {
  width: 19px;
}

.hero-note {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aebed0;
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-note span {
  width: 8px;
  height: 8px;
  background: #61d095;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(97, 208, 149, 0.12);
}

.hero-panel {
  padding: 34px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.hero-panel-top {
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #aec3d7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  color: #8ee3b5;
}

.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  background: currentColor;
  border-radius: 50%;
}

.hero-panel h2 {
  margin: 28px 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #dce8f2;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.93rem;
  font-weight: 650;
}

.hero-panel li svg {
  width: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: #76d5ea;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-panel > a {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #83d8ec;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-panel > a svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip {
  color: #d8e3ed;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip .section-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-strip span {
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  text-align: center;
}

.trust-strip span:first-child {
  border-left: 0;
}

.trust-strip strong {
  margin-right: 4px;
  color: var(--white);
}

.services-section,
.audience-section,
.areas-section,
.city-intro,
.city-services,
.process-section {
  padding: 110px 0;
}

.services-section,
.city-services {
  background: var(--slate-50);
}

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 60px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.section-heading h2,
.approach-copy h2,
.contact-copy h2,
.city-intro h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 0;
  color: var(--slate-600);
  font-size: 1.04rem;
}

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

.service-card {
  min-height: 330px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(4, 17, 31, 0.025);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 124, 202, 0.32);
  box-shadow: var(--shadow-sm);
}

.service-card.featured {
  color: var(--white);
  background: linear-gradient(150deg, var(--navy-900), #0d4274);
  border-color: transparent;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  background: #eaf6fc;
  border-radius: 15px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.featured .service-icon {
  color: #88def0;
  background: rgba(255, 255, 255, 0.1);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 28px;
  margin: 0;
  color: var(--slate-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.featured .card-number {
  color: rgba(255, 255, 255, 0.42);
}

.service-card h3 {
  margin: 52px 0 13px;
  color: var(--navy-900);
  font-size: 1.35rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card > p:last-child {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.95rem;
}

.service-card.featured > p:last-child {
  color: #c9d8e7;
}

.approach-section {
  padding: 120px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 80%, rgba(52, 185, 216, 0.12), transparent 30%),
    var(--navy-900);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 0.72fr);
  gap: clamp(70px, 10vw, 140px);
  align-items: center;
}

.approach-copy h2 {
  color: var(--white);
}

.approach-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 0;
  color: #c7d5e3;
  font-size: 1.08rem;
}

.text-link {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #83d8ec;
  text-decoration: none;
  font-weight: 800;
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-steps li {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.approach-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.approach-steps li > span {
  color: #73d5eb;
  font-size: 0.8rem;
  font-weight: 800;
}

.approach-steps strong {
  font-size: 1.16rem;
}

.approach-steps p {
  margin: 5px 0 0;
  color: #aebed0;
  font-size: 0.93rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.audience-grid > div {
  min-height: 240px;
  padding: 28px 26px;
  border-left: 1px solid var(--slate-200);
}

.audience-grid > div:first-child {
  border-left: 0;
}

.audience-grid span {
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 800;
}

.audience-grid strong {
  margin-top: 50px;
  display: block;
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.35;
}

.audience-grid p {
  margin: 10px 0 0;
  color: var(--slate-600);
  font-size: 0.9rem;
}

.areas-section {
  background: var(--slate-50);
}

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

.city-grid a {
  min-height: 62px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.city-grid a:hover {
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-2px);
}

.contact-section {
  padding: 120px 0;
  background:
    linear-gradient(110deg, rgba(7, 28, 51, 0.03), transparent 50%),
    var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1fr);
  gap: clamp(60px, 9vw, 120px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 125px;
}

.contact-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--slate-600);
  font-size: 1.04rem;
}

.contact-phone {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.contact-phone-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--orange-500);
  border-radius: 50%;
}

.contact-phone-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.contact-phone small {
  color: var(--slate-600);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-phone strong {
  color: var(--navy-900);
  font-size: 1.45rem;
}

.response-list {
  margin-top: 34px;
  display: grid;
  gap: 10px;
}

.response-list span {
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 650;
}

.response-list span::before {
  content: "✓";
  width: 23px;
  height: 23px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  background: #e6f4fb;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.form-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-card-heading {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  background: var(--navy-900);
}

.form-card-heading span {
  color: #9db1c5;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-form {
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.field {
  min-width: 0;
}

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

.field label {
  margin-bottom: 7px;
  display: block;
  color: var(--slate-700);
  font-size: 0.82rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--slate-900);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 135px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(30, 145, 221, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8996a5;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-submit button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--blue-700);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(13, 94, 166, 0.2);
  transition: background 180ms ease, transform 180ms ease;
}

.form-submit button:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
}

.form-submit button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.form-submit p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.78rem;
  text-align: right;
}

.form-submit a {
  color: var(--blue-700);
  font-weight: 800;
}

.form-submit button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  width: 100%;
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.is-success {
  color: #187247;
}

.form-status.is-error {
  color: #ad2a21;
}

.site-footer {
  padding: 70px 0 24px;
  color: #aebdcc;
  background: var(--navy-950);
}

.footer-grid {
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 1.7fr 0.6fr 0.7fr;
  gap: 70px;
}

.footer-brand img {
  width: 270px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-brand p {
  max-width: 430px;
  margin: 24px 0 0;
  font-size: 0.92rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-links a,
.footer-contact a {
  color: #aebdcc;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #82d9ed;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #778899;
  font-size: 0.77rem;
}

.city-hero-grid {
  min-height: 520px;
  padding: 80px 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: center;
  gap: 90px;
}

.city-hero h1 {
  max-width: 850px;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
}

.city-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 25px 0 0;
  color: #d2e0ec;
  font-size: 1.13rem;
}

.breadcrumb {
  margin-bottom: 48px;
  display: flex;
  gap: 10px;
  color: #9fb3c8;
  font-size: 0.78rem;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--white);
}

.city-hero-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.city-hero-card .service-icon {
  color: #80d9ed;
  background: rgba(255, 255, 255, 0.1);
}

.city-hero-card > p {
  margin: 24px 0 0 !important;
  color: #99aec2 !important;
  font-size: 0.75rem !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.city-hero-card > strong {
  display: block;
  font-size: 1.7rem;
}

.city-hero-card ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.city-hero-card li {
  padding: 6px 0;
  color: #d2dfeb;
  font-size: 0.9rem;
}

.city-hero-card li::before {
  content: "—";
  margin-right: 9px;
  color: #78d6eb;
}

.city-intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 0.78fr;
  gap: 100px;
}

.city-intro-copy p {
  margin: 0 0 18px;
  color: var(--slate-600);
  font-size: 1.04rem;
}

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

.process-section {
  background: var(--white);
}

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

.process-grid > div {
  padding: 30px 28px;
  border-top: 3px solid var(--blue-600);
  background: var(--slate-50);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.process-grid span {
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 900;
}

.process-grid strong {
  margin-top: 34px;
  display: block;
  color: var(--navy-900);
  font-size: 1.1rem;
}

.process-grid p {
  margin: 8px 0 0;
  color: var(--slate-600);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    padding: 18px 24px 26px;
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
  }

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

  .site-nav > a {
    padding: 11px 4px;
  }

  .site-nav .header-call {
    margin-top: 8px;
    align-self: flex-start;
    padding: 0 18px;
  }

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

  .hero-copy {
    max-width: 850px;
  }

  .hero-panel {
    max-width: 760px;
  }

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

  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .approach-steps {
    max-width: 740px;
  }

  .contact-copy {
    max-width: 680px;
    position: static;
  }

  .form-card {
    max-width: 820px;
  }

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

  .audience-grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--slate-200);
  }

  .audience-grid > div:nth-child(4) {
    border-top: 1px solid var(--slate-200);
  }

  .city-hero-grid,
  .city-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .city-hero-card {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .section-shell,
  .header-shell {
    width: min(100% - 32px, var(--shell));
  }

  .header-shell {
    min-height: 74px;
  }

  .brand {
    flex-basis: 220px;
  }

  .brand img {
    width: 220px;
  }

  .site-nav {
    top: 74px;
  }

  .hero-grid,
  .city-hero-grid {
    min-height: 0;
    padding: 72px 0;
  }

  .hero-copy h1,
  .city-hero h1 {
    font-size: clamp(2.9rem, 13vw, 4.3rem);
  }

  .hero-lede,
  .city-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    padding: 25px 22px;
  }

  .trust-strip .section-shell {
    padding: 20px 0;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }

  .trust-strip span {
    padding: 7px 12px;
    border-left: 0;
  }

  .services-section,
  .audience-section,
  .areas-section,
  .city-intro,
  .city-services,
  .process-section {
    padding: 78px 0;
  }

  .approach-section,
  .contact-section {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 34px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading h2,
  .approach-copy h2,
  .contact-copy h2,
  .city-intro h2 {
    font-size: clamp(2.15rem, 10vw, 3.3rem);
  }

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

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

  .approach-grid {
    gap: 54px;
  }

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

  .audience-grid > div {
    min-height: 205px;
    border-top: 1px solid var(--slate-200);
    border-left: 0;
  }

  .audience-grid > div:first-child {
    border-top: 0;
  }

  .audience-grid strong {
    margin-top: 35px;
  }

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

  .contact-grid {
    gap: 45px;
  }

  .form-card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-form {
    padding: 24px 20px;
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit button {
    justify-content: center;
  }

  .form-submit p {
    text-align: left;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .breadcrumb {
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 190px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

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

  .trust-strip .section-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel-top {
    flex-direction: column;
  }
}

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

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