:root {
  --ink: #111722;
  --ink-soft: #29313d;
  --paper: #f8f6f0;
  --white: #ffffff;
  --muted: #e9e6de;
  --line: #d4d0c7;
  --accent: #ff5b35;
  --accent-dark: #d83d1c;
  --blue: #6ed0f7;
  --lime: #d7f36b;
  --max: 1240px;
  --radius: 18px;
  --shadow: 0 18px 60px rgba(17, 23, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.35rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

p:last-child {
  margin-bottom: 0;
}

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 23, 34, 0.94);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  text-decoration: none;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-mark-city {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-mark-service {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  margin-top: 6px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav > a,
.nav-menu summary {
  text-decoration: none;
  cursor: pointer;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: " +";
  color: var(--blue);
}

.nav-panel {
  position: absolute;
  top: 38px;
  right: -160px;
  width: 560px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 10px;
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.nav-panel a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-panel a:hover {
  background: var(--muted);
}

.mobile-nav {
  display: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
}

.button-light {
  background: var(--lime);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: var(--white);
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--lime);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(110, 208, 247, 0.14), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255, 91, 53, 0.12), transparent 32%),
    var(--ink);
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 6.5vw, 6.65rem);
}

.hero h1 span {
  display: block;
  color: var(--blue);
  font-size: 0.37em;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-top: 18px;
}

.hero-lede {
  max-width: 760px;
  color: #d4d9e0;
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  overflow: hidden;
}

.hero-facts li {
  min-height: 98px;
  display: grid;
  align-content: space-between;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: #d9dce2;
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-facts span {
  color: var(--blue);
  font-size: 0.64rem;
  font-weight: 900;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px 20px 40px -18px;
  border: 1px solid rgba(110, 208, 247, 0.42);
  border-radius: 24px;
}

.lazy-video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #070a10;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lazy-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  overflow: hidden;
  cursor: pointer;
  background: #070a10;
  color: var(--white);
  text-align: left;
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 7, 12, 0.84), rgba(4, 7, 12, 0.02) 60%);
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.video-poster:hover img {
  transform: scale(1.025);
}

.play-button {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  min-width: 64px;
  min-height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-title {
  position: absolute;
  z-index: 2;
  left: 102px;
  right: 20px;
  bottom: 27px;
  font-size: 1rem;
  font-weight: 800;
}

.media-caption {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 3px 0;
  color: #b6bdc7;
  font-size: 0.75rem;
}

.media-caption span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.media-caption a {
  color: var(--white);
}

.logo-strip {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.logo-strip .shell {
  display: flex;
  align-items: center;
  gap: 50px;
}

.logo-strip p {
  flex: 0 0 180px;
  margin: 0;
  color: #666d75;
  font-size: 0.7rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.logo-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  filter: grayscale(1);
  opacity: 0.68;
}

.logo-row img {
  max-width: 122px;
  object-fit: contain;
}

.section {
  padding: clamp(78px, 10vw, 140px) 0;
}

.section-muted {
  background: var(--muted);
}

.split-copy,
.section-heading,
.media-copy-grid,
.timing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 120px);
}

.split-copy h2,
.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.prose-large {
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  color: var(--ink-soft);
}

.section-heading {
  align-items: end;
  margin-bottom: 55px;
}

.section-heading > p {
  max-width: 480px;
  justify-self: end;
  margin-bottom: 4px;
  color: #535c67;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #c9c5bb;
  border: 1px solid #c9c5bb;
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
}

.service-card .card-index {
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-card h3 {
  margin: auto 0 22px;
  max-width: 450px;
}

.service-card h3 a {
  text-decoration: none;
}

.service-card p {
  max-width: 540px;
  color: #59616b;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 5px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(17, 23, 34, 0.06);
}

.project-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.46), transparent 60%);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.project-image:hover img {
  transform: scale(1.03);
}

.project-image span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
}

.project-card-copy {
  padding: 24px;
}

.project-card-copy h3 {
  margin-bottom: 14px;
}

.project-card-copy h3 a {
  text-decoration: none;
}

.project-card-copy > p:not(.eyebrow) {
  color: #5a626c;
  font-size: 0.9rem;
}

.section-action {
  margin-top: 40px;
  text-align: center;
}

.process-section {
  background: var(--ink);
  color: var(--white);
}

.section-heading-light > p {
  color: #b4bbc5;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li {
  min-height: 325px;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
}

.process-list h3 {
  margin: auto 0 18px;
}

.process-list p {
  color: #aeb5be;
  font-size: 0.85rem;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reason-grid article {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reason-grid span {
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reason-grid h3 {
  margin: 80px 0 18px;
}

.reason-grid p {
  color: #59616b;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.location-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.location-card span {
  color: var(--accent-dark);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-card h3 {
  margin-top: auto;
}

.location-card p {
  color: #5a626c;
  font-size: 0.82rem;
  line-height: 1.45;
}

.location-card b {
  position: absolute;
  top: 24px;
  right: 24px;
}

.source-note {
  margin-top: 28px;
  color: #616a74;
  font-size: 0.78rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 8vw, 120px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 52px 23px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  line-height: 1.3;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--accent-dark);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 50px 24px 0;
  color: #59616b;
}

.quote-section {
  padding: clamp(74px, 9vw, 125px) 0;
  background: var(--accent);
  color: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 8vw, 120px);
}

.quote-intro h2 {
  margin-bottom: 28px;
}

.quote-intro > p:not(.eyebrow) {
  color: #ffe9e3;
}

.contact-facts {
  margin: 42px 0;
}

.contact-facts div {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-facts dt {
  color: #ffd2c7;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-facts dd {
  margin: 3px 0 0;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.quote-form {
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #c6cbd2;
  font-size: 0.75rem;
  font-weight: 800;
}

.quote-form label > span {
  font-weight: 500;
}

.field-wide {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #424b58;
  border-radius: 10px;
  outline: none;
  padding: 12px 13px;
  background: #1d2531;
  color: var(--white);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(110, 208, 247, 0.15);
}

.consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  margin: 20px 0;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note,
.form-status {
  margin-top: 15px;
  color: #9fa7b1;
  font-size: 0.7rem;
}

.form-status {
  color: var(--lime);
}

.breadcrumbs {
  padding-top: 22px;
  padding-bottom: 22px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #6c747e;
  font-size: 0.72rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #a0a6ad;
}

.breadcrumbs a {
  text-decoration: none;
}

.page-hero {
  padding: clamp(70px, 9vw, 128px) 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(110, 208, 247, 0.16), transparent 28%),
    var(--ink);
  color: var(--white);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(45px, 8vw, 130px);
  align-items: end;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
}

.page-hero p:not(.eyebrow) {
  max-width: 800px;
  color: #cbd1d8;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.page-hero-aside {
  padding: 24px 0 4px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.page-hero-aside > span {
  display: block;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-hero-aside ul {
  padding-left: 18px;
  margin: 0;
  color: #cbd1d8;
}

.page-hero-aside li + li {
  margin-top: 9px;
}

.page-hero-aside p {
  font-size: 0.95rem !important;
}

.simple-hero .narrow {
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.media-copy-grid {
  align-items: center;
}

.media-copy-grid h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.media-copy-grid > div:first-child > p:not(.eyebrow) {
  color: #58616c;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 6vw, 80px);
}

.content-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-block h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-top: 1px solid var(--line);
}

.check-list li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.type-grid article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 12px;
  background: var(--paper);
}

.type-grid span {
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 900;
}

.type-grid h3 {
  margin: auto 0 0;
}

.timing-grid {
  align-items: start;
}

.pricing-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.pricing-card ul {
  padding-left: 18px;
}

.pricing-card li + li {
  margin-top: 10px;
}

.pricing-card p {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
}

.related-section {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-links a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.service-grid-compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border: 0;
  background: transparent;
}

.service-grid-compact .service-card {
  min-height: 300px;
  padding: 24px;
  border-radius: 12px;
  background: var(--white);
}

.service-grid-compact .service-card h3 {
  margin: 0 0 auto;
}

.permit-section {
  background: #d8f0f8;
}

.official-links {
  list-style: none;
  padding: 0;
}

.official-links a {
  font-size: 0.85rem;
  font-weight: 850;
}

.project-disclosure {
  padding-top: 45px;
  padding-bottom: 45px;
}

.disclosure-card {
  padding: 34px;
  border: 1px dashed #9b9589;
  border-radius: var(--radius);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.fact-grid span {
  padding: 18px;
  border: 1px dashed #aaa397;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 750;
}

.portfolio-grid {
  grid-template-columns: repeat(2, 1fr);
}

.legal-page {
  padding-top: 80px;
  padding-bottom: 120px;
}

.legal-page h1 {
  max-width: 800px;
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.legal-page h2 {
  margin-top: 55px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.legal-page p {
  color: #4f5863;
}

.legal-facts div {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.legal-facts dt {
  font-weight: 850;
}

.legal-facts dd {
  margin: 0;
}

.not-found {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

.site-footer {
  padding: 80px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
}

.brand-link-footer {
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 330px;
  color: #aeb5bf;
  font-size: 0.82rem;
}

.footer-brand > a:not(.brand-link) {
  color: var(--blue);
  font-size: 0.82rem;
}

.site-footer h2 {
  color: var(--blue);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer li a {
  color: #c4cad2;
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #8e97a2;
  font-size: 0.68rem;
}

@media (max-width: 1050px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    cursor: pointer;
    list-style: none;
    font-size: 0.8rem;
    font-weight: 850;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: 36px;
    right: 0;
    width: min(86vw, 360px);
    max-height: 72vh;
    overflow-y: auto;
    display: grid;
    padding: 12px;
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    padding: 10px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 750px;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .service-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 66px;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 68px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero h1 span {
    font-size: 0.43em;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    min-height: 78px;
  }

  .hero-media::before {
    display: none;
  }

  .logo-strip .shell {
    display: block;
  }

  .logo-strip p {
    margin-bottom: 24px;
  }

  .logo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .logo-row img {
    width: 100%;
    max-width: 90px;
    justify-self: center;
  }

  .split-copy,
  .section-heading,
  .media-copy-grid,
  .timing-grid,
  .content-grid,
  .faq-grid,
  .quote-grid,
  .page-hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading > p {
    justify-self: start;
  }

  .service-grid,
  .project-grid,
  .project-grid-two,
  .portfolio-grid,
  .reason-grid,
  .type-grid,
  .location-grid,
  .service-grid-compact,
  .fact-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 250px;
    border-right: 0;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .page-hero {
    padding: 60px 0;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .page-hero-aside {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .simple-hero .narrow {
    margin-inline: auto;
  }

  .legal-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.form-status-success {
  color: #b7efc5;
}

.form-status-error {
  color: #ffd0cc;
}

.client-testimonial {
  margin: 32px 0;
  padding: 24px 26px;
  border-left: 4px solid var(--lime);
  border-radius: 12px;
  background: rgba(16, 21, 31, 0.16);
}

.client-testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
}

.client-testimonial figcaption {
  margin-top: 14px;
  color: #ffd2c7;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.heyflow-panel {
  min-width: 0;
  min-height: 620px;
  padding: clamp(8px, 1.5vw, 16px);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.heyflow-embed,
.heyflow-embed heyflow-wrapper {
  display: block;
  width: 100%;
  min-height: 590px;
