@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/BarlowCondensed-ExtraBold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  --ink: #151918;
  --charcoal: #202725;
  --charcoal-2: #2b3331;
  --steel: #58615e;
  --muted: #68716d;
  --concrete: #f7f4ee;
  --sand: #e9e5dc;
  --white: #fff;
  --orange: #b43a14;
  --orange-dark: #96300f;
  --signal: #f97849;
  --control-border: #7f8783;
  --focus-light: #9a2f0d;
  --focus-dark: #ffb092;
  --line: #d6d3cb;
  --line-dark: rgb(255 255 255 / 16%);
  --success: #274e40;
  --max-width: 77.5rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-space: clamp(4rem, 8vw, 6rem);
  --display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

picture[style] img {
  object-position: var(--image-position, 50% 50%);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0.65em;
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6.1vw, 5.2rem);
}

h2 {
  font-size: clamp(2.35rem, 4.2vw, 3.45rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.08;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

:focus-visible {
  outline: 0.16rem solid var(--white);
  outline-offset: 0.14rem;
  box-shadow: 0 0 0 0.34rem var(--focus-light);
}

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--max-width));
  margin-inline: 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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 4.75rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-link {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
}

.brand {
  display: inline-grid;
  min-height: 2.55rem;
  align-items: stretch;
  grid-template-columns: 0.31rem auto;
  gap: 0.7rem;
}

.brand::before {
  background: var(--orange);
  content: "";
}

.brand__name {
  display: grid;
  align-content: center;
  gap: 0.12rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand__name strong {
  font-family: var(--display);
  font-size: 1.68rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 0.84;
}

.brand__name small {
  color: var(--steel);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.primary-nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  list-style: none;
}

.primary-nav li a,
.header-phone {
  position: relative;
  display: inline-flex;
  padding-block: 0.6rem;
  align-items: center;
  color: var(--charcoal);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav li a::after {
  position: absolute;
  right: 0;
  bottom: 0.3rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-nav li a:hover::after,
.primary-nav li a[aria-current="page"]::after,
.primary-nav li a.is-section-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin-block: 0.28rem;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(0.38rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  padding: 0.8rem 1.25rem;
  border: 2px solid transparent;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button--small {
  min-height: 2.9rem;
  padding-inline: 1rem;
  font-size: 0.74rem;
}

.button--accent {
  color: var(--white);
  background: var(--orange);
}

.button--accent:hover {
  background: var(--orange-dark);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.52;
  box-shadow: none;
}

.button--accent:disabled:hover,
.button--accent[aria-disabled="true"]:hover {
  background: var(--orange);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: var(--orange);
}

.button--outline {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--orange);
}

.text-link--light {
  color: var(--white);
}

.button-row {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.kicker {
  display: flex;
  margin-bottom: 1.15rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kicker::before {
  width: 2rem;
  height: 2px;
  content: "";
  background: currentColor;
}

.kicker--light {
  color: var(--signal);
}

.breadcrumbs {
  padding-block: 0.85rem;
}

.breadcrumbs ol {
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 650;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 0.5rem;
  content: "/";
  color: var(--muted);
}

.breadcrumbs a {
  text-decoration: none;
}

.hero {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__grid {
  display: grid;
  min-height: 35rem;
  padding-block: 3rem;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero__copy {
  max-width: 39rem;
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.65rem, 6.1vw, 5.35rem);
}

.hero h1 span {
  color: var(--signal);
}

.hero__lede {
  max-width: 37rem;
  margin-bottom: 0;
  color: rgb(255 255 255 / 78%);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.hero__lede--mobile,
.mobile-scroll-hint,
.mobile-service-jumps,
.mobile-nav-proof {
  display: none;
}

.hero__visual {
  position: relative;
  margin: 0;
}

.hero__image {
  overflow: hidden;
  background: var(--charcoal);
}

.hero__image img {
  width: 100%;
  height: clamp(23rem, 39vw, 31rem);
  object-fit: cover;
  object-position: center 55%;
}

.hero__visual::before {
  position: absolute;
  z-index: -1;
  top: -1.1rem;
  right: -1.1rem;
  width: 58%;
  height: 45%;
  content: "";
  border-top: 0.4rem solid var(--orange);
  border-right: 0.4rem solid var(--orange);
}

.hero__visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  padding: 1.1rem 1.25rem;
  align-items: center;
  gap: 0.75rem;
  color: rgb(255 255 255 / 82%);
  background: linear-gradient(transparent, rgb(0 0 0 / 82%));
  font-size: 0.76rem;
}

.hero__visual figcaption span {
  color: var(--signal);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credential-bar {
  display: grid;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.credential-bar > div {
  display: grid;
  min-height: 5.6rem;
  padding: 1.25rem 1.5rem;
  align-content: center;
  gap: 0.15rem;
  border-right: 1px solid var(--line-dark);
}

.credential-bar > div:first-child {
  border-left: 1px solid var(--line-dark);
}

.credential-bar strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.credential-bar span {
  color: rgb(255 255 255 / 58%);
  font-size: 0.72rem;
}

.page-hero {
  color: var(--white);
  background: var(--ink);
}

.page-hero__grid {
  display: grid;
  min-height: 24rem;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.page-hero:not(.page-hero--with-image) .page-hero__copy {
  max-width: 56rem;
  grid-column: 1 / -1;
}

.page-hero h1 {
  max-width: 14ch;
  margin-bottom: 1.35rem;
}

.page-hero__copy > p:not(.kicker) {
  max-width: 42rem;
  margin-bottom: 0;
  color: rgb(255 255 255 / 74%);
  font-size: 1.1rem;
}

.page-hero__image {
  overflow: hidden;
  border-left: 0.38rem solid var(--orange);
}

.page-hero__image img {
  width: 100%;
  height: clamp(19rem, 31vw, 24rem);
  object-fit: cover;
}

.section {
  padding-block: var(--section-space);
}

.section--compact {
  padding-block: clamp(3.25rem, 6vw, 4.5rem);
}

.section--sand {
  background: var(--concrete);
}

.section--dark {
  color: var(--white);
  background: var(--charcoal);
}

.section-head {
  display: grid;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.8fr);
  gap: 3rem;
}

.section-head h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.section-head__side {
  padding-bottom: 0.25rem;
}

.section-head__side p {
  max-width: 38rem;
  color: var(--steel);
  font-size: 1.04rem;
}

.section-head--light .section-head__side p {
  color: rgb(255 255 255 / 67%);
}

.service-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: flex;
  min-height: 20rem;
  padding: clamp(1.5rem, 2.7vw, 2.25rem);
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.service-card:hover {
  color: var(--white);
  background: var(--ink);
}

.service-card__number {
  margin-bottom: auto;
  color: var(--orange);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 800;
}

.service-card h3 {
  max-width: 13ch;
  margin: 3rem 0 1rem;
}

.service-card p {
  color: var(--steel);
  font-size: 0.9rem;
}

.service-card:hover p {
  color: rgb(255 255 255 / 68%);
}

.service-card__arrow {
  display: grid;
  width: 2.4rem;
  aspect-ratio: 1;
  margin-top: 1rem;
  place-items: center;
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.project-showcase {
  display: grid;
  grid-auto-rows: 17rem;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.25rem;
}

.project-tile {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  background: var(--ink);
}

.project-tile--large {
  grid-row: span 2;
}

.project-tile__media,
.project-tile__media img {
  width: 100%;
  height: 100%;
}

.project-tile__media img {
  object-fit: cover;
  transition: transform 400ms ease;
}

.project-tile:hover .project-tile__media img {
  transform: scale(1.025);
}

.project-tile__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3.5rem 1.5rem 1.35rem;
  color: var(--white);
  background: linear-gradient(transparent, rgb(0 0 0 / 88%));
}

.project-tile__category {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-tile__status {
  display: inline-flex;
  padding: 0.28rem 0.45rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
  background: var(--signal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.project-tile__overlay h3 {
  max-width: 24ch;
  margin: 0 0 0.45rem;
  font-size: 1.55rem;
}

.project-tile__overlay p {
  max-width: 48ch;
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 0.875rem;
  line-height: 1.45;
}

.split-feature {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.split-feature--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split-feature__copy h2 {
  max-width: 12ch;
}

.split-feature__copy > p:not(.kicker) {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: var(--steel);
  font-size: 1.05rem;
}

.split-feature__image {
  border-bottom: 0.45rem solid var(--orange);
  background: var(--concrete);
}

.split-feature__image img {
  width: 100%;
  height: clamp(22rem, 40vw, 34rem);
  object-fit: cover;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-list article {
  display: grid;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
}

.benefit-list article > span,
.value-grid article > span,
.process-grid li > span {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
}

.benefit-list h3,
.benefit-list p {
  margin-bottom: 0.25rem;
}

.benefit-list p {
  color: var(--steel);
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.process-grid li {
  min-height: 15rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--concrete);
}

.process-grid h3 {
  margin: 3rem 0 0.75rem;
}

.process-grid p {
  color: var(--steel);
}

.cta-band {
  color: var(--white);
  background: var(--orange);
}

.cta-band__grid {
  display: grid;
  min-height: 22rem;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 3rem;
}

.cta-band h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
}

.cta-band p:not(.kicker) {
  max-width: 38rem;
  margin-bottom: 0;
  color: rgb(255 255 255 / 82%);
  font-size: 1.05rem;
}

.cta-band .kicker--light {
  color: var(--white);
}

.cta-band__actions {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.editorial-grid h2 {
  max-width: 12ch;
}

.prose {
  max-width: 48rem;
  color: var(--steel);
}

.prose--narrow {
  max-width: 50rem;
}

.prose .lede {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.65;
}

.prose h2 {
  margin-top: 2.5rem;
  color: var(--ink);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose li {
  margin-bottom: 0.65rem;
}

.value-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid--four {
  margin-top: 4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid article {
  min-height: 15rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.value-grid h3 {
  margin: 2.8rem 0 0.8rem;
}

.value-grid p {
  color: var(--steel);
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact-row > div {
  display: grid;
  min-height: 8rem;
  padding: 1.5rem;
  align-content: center;
  border-left: 1px solid var(--line-dark);
}

.fact-row > div:last-child {
  border-right: 1px solid var(--line-dark);
}

.fact-row span {
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-row strong {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: 1.3rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
}

.service-detail-grid article {
  padding: clamp(1.75rem, 3.5vw, 3rem);
  background: var(--charcoal);
}

.service-detail-grid article > span {
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-grid h2 {
  margin: 1.5rem 0 2rem;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
}

.service-detail-grid ul {
  padding: 0;
  margin: 0;
  color: rgb(255 255 255 / 72%);
  list-style: none;
}

.service-detail-grid li {
  padding-block: 0.7rem;
  border-top: 1px solid var(--line-dark);
}

.project-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.project-pair .project-tile {
  min-height: 28rem;
}

.project-pair--story {
  margin-top: 4rem;
}

.story-image {
  background: var(--concrete);
}

.story-image img {
  width: 100%;
  height: clamp(20rem, 36vw, 31rem);
  object-fit: cover;
}

.project-gallery-section {
  padding-top: 2rem;
}

.project-gallery-intro {
  display: flex;
  margin-bottom: 1.4rem;
  justify-content: flex-end;
}

.project-gallery-intro p {
  max-width: 48rem;
  margin: 0;
  color: var(--steel);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.project-gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 22rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.project-gallery .project-tile {
  grid-column: span 5;
}

.project-gallery .project-tile--wide {
  grid-column: span 7;
}

.project-story {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.project-story__facts {
  border-top: 1px solid var(--line);
}

.project-story__facts > div {
  display: grid;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
  gap: 0.2rem;
}

.project-story__facts span {
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credential-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.credential-grid article {
  min-height: 19rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credential-card__label {
  display: block;
  margin-bottom: 3rem;
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-grid strong {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.credential-grid p {
  max-width: 34rem;
  color: var(--steel);
}

.faq-page {
  max-width: 58rem;
}

.faq-page details,
.faq-stack details {
  border-top: 1px solid var(--line);
}

.faq-page details:last-child,
.faq-stack details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-page summary,
.faq-stack summary {
  position: relative;
  padding: 1.5rem 3.5rem 1.5rem 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 800;
  line-height: 1.15;
  list-style: none;
}

.faq-page summary::-webkit-details-marker,
.faq-stack summary::-webkit-details-marker {
  display: none;
}

.faq-page summary::after,
.faq-stack summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "+";
  color: var(--orange-dark);
  font-family: var(--body);
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-page details[open] summary::after,
.faq-stack details[open] summary::after {
  content: "−";
}

.faq-page details p,
.faq-stack details p {
  max-width: 48rem;
  padding: 0 3rem 1.5rem 0;
  margin: 0;
  color: var(--steel);
}

.contact-section {
  background: var(--concrete);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.7fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-form-wrap {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
  border-top: 0.35rem solid var(--orange);
}

.contact-form-wrap h2 {
  margin-bottom: 2.5rem;
}

.form-fallback {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-left: 0.35rem solid var(--orange);
  background: var(--concrete);
}

.form-fallback h3 {
  max-width: 20ch;
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
}

.form-fallback > p:not(.form-section__step, .form-fallback__note) {
  max-width: 42rem;
  color: var(--steel);
}

.form-fallback .button {
  margin-top: 0.5rem;
  color: var(--white);
}

.form-fallback__note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-section--first {
  padding-top: 0;
  margin-top: 0;
}

.form-section + .form-section {
  padding-top: 2.25rem;
  margin-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.form-section__step {
  margin-bottom: 0.35rem;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-section h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--wide {
  grid-column: 1 / -1;
}

.field--trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.field label,
.reply-choice legend {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--control-border);
  border-radius: 0;
  background: var(--white);
}

input,
select {
  min-height: 3.35rem;
  padding: 0.7rem 0.85rem;
}

textarea {
  min-height: 10rem;
  padding: 0.85rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  outline: 2px solid rgb(180 58 20 / 24%);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #a72d1f;
  background: #fff4f2;
  outline: 2px solid rgb(167 45 31 / 20%);
}

.reply-choice {
  display: flex;
  padding: 1.5rem 0 0;
  margin: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  border: 0;
  border-top: 1px solid var(--line);
}

.reply-choice legend {
  width: 100%;
  margin-bottom: 0.5rem;
}

.reply-choice label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
}

.reply-choice input,
.consent input {
  width: 1rem;
  min-height: auto;
  margin-top: 0.18rem;
  accent-color: var(--orange);
}

.field-help {
  margin: -0.75rem 0 0;
  color: var(--steel);
  font-size: 0.76rem;
}

.consent {
  margin-top: 1.5rem;
}

.consent a {
  color: var(--orange-dark);
  font-weight: 750;
}

.turnstile-slot {
  min-height: 4.1rem;
  margin-top: 1.5rem;
}

.form-availability {
  padding: 0.85rem 1rem;
  margin: 1.5rem 0 0;
  border-left: 0.24rem solid var(--orange);
  color: var(--steel);
  background: var(--concrete);
  font-size: 0.82rem;
}

.form-submit {
  display: flex;
  margin-top: 1.75rem;
  align-items: center;
  gap: 1.25rem;
}

.form-submit p {
  margin: 0;
  color: var(--steel);
  font-size: 0.8rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--success);
  font-weight: 750;
}

.form-confirmation {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-top: 0.35rem solid var(--orange);
  background: var(--concrete);
}

.form-confirmation h2 {
  max-width: 13ch;
}

.form-confirmation > p:not(.kicker) {
  max-width: 38rem;
}

.contact-panel {
  padding: 2.25rem;
  color: var(--white);
  background: var(--charcoal);
}

.contact-panel__phone {
  display: block;
  margin: 0.25rem 0 1rem;
  color: var(--signal);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.contact-panel > p:not(.kicker) {
  color: rgb(255 255 255 / 68%);
}

.contact-panel__rule {
  height: 1px;
  margin-block: 2rem;
  background: var(--line-dark);
}

.contact-panel h3 {
  font-size: 1.3rem;
}

.contact-panel ul {
  padding-left: 1.1rem;
  color: rgb(255 255 255 / 70%);
  font-size: 0.9rem;
}

.contact-panel__image {
  margin: 2rem -2.25rem -2.25rem;
}

.contact-panel__image img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.not-found {
  display: grid;
  min-height: 70vh;
  color: var(--white);
  background: var(--ink);
  place-items: center;
}

.not-found__inner {
  padding-block: 5rem;
}

.not-found h1 {
  max-width: 12ch;
}

.not-found p:not(.kicker) {
  max-width: 40rem;
  color: rgb(255 255 255 / 72%);
}

.site-footer {
  color: var(--white);
  background: #101412;
}

.footer-main {
  display: grid;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  grid-template-columns: 1.2fr 0.55fr 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.brand--footer .brand__name small {
  color: rgb(255 255 255 / 55%);
}

.footer-brand p {
  max-width: 22rem;
  margin: 1.35rem 0;
  color: rgb(255 255 255 / 60%);
  font-size: 0.9rem;
}

.footer-phone {
  color: var(--signal);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
}

.site-footer h2 {
  margin-bottom: 1.25rem;
  color: rgb(255 255 255 / 48%);
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  padding: 0;
  margin: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 0.86rem;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  text-decoration-color: rgb(255 255 255 / 30%);
}

.footer-cta p {
  color: rgb(255 255 255 / 64%);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: rgb(255 255 255 / 66%);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 1rem;
}

.mobile-actions {
  display: none;
}

@media (max-width: 68rem) {
  .header-phone {
    display: none;
  }

  .js-nav .nav-toggle {
    display: block;
  }

  .js-nav .primary-nav {
    position: fixed;
    z-index: 1;
    top: 4.75rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 2rem var(--gutter) 6rem;
    align-items: stretch;
    flex-direction: column;
    color: var(--white);
    background: var(--ink);
    overflow-y: auto;
  }

  .js-nav .primary-nav[data-open="true"] {
    display: flex;
  }

  .primary-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav li a {
    display: block;
    padding-block: 1rem;
    border-bottom: 1px solid var(--line-dark);
    color: var(--white);
    font-family: var(--display);
    font-size: 2rem;
  }

  .primary-nav li a::after {
    display: none;
  }

  .header-actions {
    margin-top: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions .header-phone {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
  }

  .hero__grid,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    padding-block: 3.5rem;
  }

  .hero__copy {
    max-width: 46rem;
  }

  .hero__visual {
    width: min(100%, 47rem);
  }

  .hero__image img {
    height: min(54vw, 28rem);
  }

  .page-hero__grid {
    gap: 2.5rem;
  }

  .page-hero__image {
    width: min(100%, 48rem);
  }

  .section-head,
  .editorial-grid,
  .split-feature,
  .split-feature--reverse,
  .project-story,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    gap: 1.5rem;
  }

  .section-head__side {
    max-width: 45rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 17rem;
  }

  .value-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact-row,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery .project-tile,
  .project-gallery .project-tile--wide {
    grid-column: span 6;
  }

  .contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.7fr);
    gap: 0 2rem;
  }

  .contact-panel__image {
    margin: 0;
    grid-column: 2;
    grid-row: 1 / span 6;
  }

  .contact-panel__image img {
    height: 100%;
  }
}

@media (max-width: 47.5rem) {
  :root {
    --gutter: 1.25rem;
    --section-space: 3.2rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  body {
    padding-bottom: 3.6rem;
  }

  h1 {
    font-size: clamp(2.9rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .site-header,
  .header-inner {
    min-height: 4.15rem;
  }

  .brand__name strong {
    font-size: 1.35rem;
  }

  .brand__name small {
    font-size: 0.49rem;
  }

  .js-nav .primary-nav {
    top: 4.15rem;
  }

  .breadcrumbs {
    display: none;
  }

  .hero__grid {
    min-height: 0;
    padding-block: 2.8rem 1.5rem;
    gap: 2.3rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.25rem);
  }

  .hero__lede {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .button-row .button,
  .hero .button-row .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero__image img {
    height: 15rem;
  }

  .hero__visual::before {
    display: none;
  }

  .hero__visual figcaption {
    padding: 0.9rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .credential-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credential-bar > div {
    min-height: 4.7rem;
    padding: 0.85rem;
    border-bottom: 1px solid var(--line-dark);
  }

  .credential-bar > div:nth-child(3) {
    border-left: 1px solid var(--line-dark);
  }

  .credential-bar strong {
    font-size: 0.9rem;
  }

  .page-hero__grid {
    min-height: 0;
    padding-block: 3.25rem;
  }

  .page-hero h1 {
    max-width: 15ch;
  }

  .page-hero__copy > p:not(.kicker) {
    font-size: 1rem;
  }

  .page-hero__image img {
    height: 15rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .button-row .text-link {
    width: 100%;
    justify-content: center;
  }

  .section-head {
    margin-bottom: 2.5rem;
  }

  .service-grid,
  .process-grid,
  .value-grid,
  .value-grid--four,
  .credential-grid,
  .fact-row,
  .project-pair,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 12.5rem;
  }

  .service-card h3 {
    margin-top: 1.5rem;
  }

  .project-showcase {
    grid-auto-rows: 17rem;
    grid-template-columns: 1fr;
  }

  .project-tile--large {
    grid-row: span 1;
  }

  .project-showcase .project-tile:first-child {
    min-height: 22rem;
  }

  .split-feature {
    gap: 2.5rem;
  }

  .benefit-list article {
    grid-template-columns: 2.5rem 1fr;
  }

  .process-grid li,
  .value-grid article {
    min-height: 11.5rem;
  }

  .cta-band__grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .cta-band__actions,
  .cta-band__actions .button,
  .cta-band__actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .editorial-grid {
    gap: 1.5rem;
  }

  .fact-row > div {
    min-height: 6.5rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .project-pair .project-tile {
    min-height: 22rem;
  }

  .project-gallery {
    display: grid;
    grid-auto-rows: 19rem;
    grid-template-columns: 1fr;
  }

  .project-gallery .project-tile,
  .project-gallery .project-tile--wide {
    grid-column: 1;
  }

  .credential-grid article {
    min-height: 16rem;
  }

  .credential-card__label {
    margin-bottom: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: 1;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

  .contact-panel {
    display: block;
    padding: 1.75rem;
  }

  .contact-panel__image {
    margin: 2rem -1.75rem -1.75rem;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.25rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cta {
    display: none;
  }

  .footer-bottom {
    padding-block: 1.25rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 3.6rem;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -0.3rem 1.2rem rgb(0 0 0 / 18%);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--ink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child {
    background: var(--orange);
  }
}

@media (max-width: 23rem) {
  .brand__name small {
    display: none;
  }

  .credential-bar {
    grid-template-columns: 1fr;
  }

  .credential-bar > div {
    border-left: 1px solid var(--line-dark);
  }
}

/*
 * Mobile field-guide layout
 * The phone experience is intentionally composed differently from desktop:
 * image-led hero, proof matrix, compact service rows, swipeable project rails,
 * and a timeline-style first-step section.
 */
@media (max-width: 47.5rem) {
  :root {
    --section-space: 2.75rem;
  }

  body {
    padding-bottom: calc(4.35rem + env(safe-area-inset-bottom));
  }

  body.form-control-focused .mobile-actions {
    transform: translateY(115%);
  }

  .js-nav .primary-nav {
    padding-bottom: calc(6rem + env(safe-area-inset-bottom));
    overscroll-behavior: contain;
  }

  .mobile-nav-proof {
    display: block;
    padding-top: 1.25rem;
    margin: 0;
    border-top: 1px solid var(--line-dark);
    color: rgb(255 255 255 / 62%);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-actions {
    min-height: calc(4.35rem + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    grid-template-columns: 0.42fr 0.58fr;
    transition: transform 180ms ease;
  }

  .mobile-actions a {
    min-height: 4.35rem;
    padding: 0.45rem 0.65rem;
    align-content: center;
    gap: 0.08rem;
    line-height: 1.15;
    touch-action: manipulation;
  }

  .mobile-actions a strong,
  .mobile-actions a span {
    display: block;
  }

  .mobile-actions a strong {
    font-size: 0.8rem;
    letter-spacing: 0.045em;
  }

  .mobile-actions a span {
    color: rgb(255 255 255 / 70%);
    font-size: 0.67rem;
    font-weight: 650;
    letter-spacing: 0.015em;
    text-transform: none;
  }

  .mobile-actions a:last-child span {
    color: rgb(255 255 255 / 82%);
  }

  .text-link,
  .inline-link,
  .footer-links a,
  .footer-phone {
    min-height: 2.75rem;
    align-items: center;
  }

  .footer-links a,
  .footer-phone {
    display: inline-flex;
  }

  .mobile-scroll-hint {
    display: flex;
    margin: -1rem 0 1rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--steel);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-scroll-hint span {
    color: var(--orange-dark);
  }

  .page--home .hero__grid {
    position: relative;
    display: grid;
    width: 100%;
    min-height: clamp(31rem, calc(100svh - 8.5rem), 40rem);
    padding: 0;
    margin: 0;
    align-items: stretch;
    grid-template: 1fr / 1fr;
    gap: 0;
  }

  .page--home .hero__copy,
  .page--home .hero__visual {
    width: 100%;
    max-width: none;
    grid-area: 1 / 1;
  }

  .page--home .hero__visual {
    z-index: 0;
    height: 100%;
  }

  .page--home .hero__image,
  .page--home .hero__image img {
    width: 100%;
    height: 100%;
  }

  .page--home .hero__image img {
    object-position: 48% 52%;
  }

  .page--home .hero__visual::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background:
      linear-gradient(180deg, rgb(10 13 12 / 20%) 0%, rgb(10 13 12 / 38%) 35%, rgb(10 13 12 / 96%) 84%),
      linear-gradient(90deg, rgb(10 13 12 / 34%), transparent 70%);
    pointer-events: none;
  }

  .page--home .hero__visual figcaption {
    z-index: 2;
    top: 1rem;
    right: var(--gutter);
    bottom: auto;
    left: auto;
    display: block;
    padding: 0.5rem 0.65rem;
    border: 1px solid rgb(255 255 255 / 24%);
    color: transparent;
    background: rgb(21 25 24 / 82%);
    font-size: 0;
    line-height: 1;
  }

  .page--home .hero__visual figcaption span {
    display: block;
    font-size: 0.62rem;
  }

  .page--home .hero__copy {
    position: relative;
    z-index: 3;
    padding: 6.5rem var(--gutter) 1.5rem;
    align-self: end;
  }

  .page--home .hero__copy .kicker {
    margin-bottom: 0.85rem;
    font-size: 0.66rem;
  }

  .page--home .hero h1 {
    max-width: 10ch;
    margin-bottom: 1rem;
    font-size: clamp(2.9rem, 14vw, 3.75rem);
    line-height: 0.9;
  }

  .hero__lede--desktop {
    display: none;
  }

  .hero__lede--mobile {
    display: block;
  }

  .page--home .hero__lede {
    max-width: 31rem;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .page--home .hero .button-row {
    display: none;
  }

  .page--home .credential-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--home .credential-bar > div {
    min-height: 4.35rem;
    padding: 0.65rem 0.75rem;
    border-left: 0;
  }

  .page--home .credential-bar > div:nth-child(odd) {
    border-left: 1px solid var(--line-dark);
  }

  .page--home .credential-bar strong {
    font-size: 0.83rem;
  }

  .page--home .credential-bar span {
    font-size: 0.64rem;
    line-height: 1.3;
  }

  .page--home .section {
    padding-block: 2.65rem;
  }

  .page--home .section-head {
    margin-bottom: 1.65rem;
  }

  .home-projects {
    color: var(--ink);
    background: var(--concrete);
  }

  .home-projects .kicker--light {
    color: var(--orange-dark);
  }

  .home-projects .section-head--light h2,
  .home-projects .text-link--light {
    color: var(--ink);
  }

  .home-projects .section-head--light .section-head__side p {
    color: var(--steel);
  }

  .project-showcase,
  .page--projects .project-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-rows: auto;
    grid-template-columns: none;
    padding-bottom: 0.85rem;
    gap: 0.75rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: inline proximity;
    scrollbar-color: var(--orange) rgb(21 25 24 / 12%);
    scrollbar-width: thin;
  }

  .project-showcase {
    grid-auto-columns: min(80vw, 20rem);
  }

  .page--projects .project-gallery {
    grid-auto-columns: min(80vw, 21rem);
  }

  .project-showcase .project-tile,
  .project-showcase .project-tile:first-child,
  .page--projects .project-gallery .project-tile,
  .page--projects .project-gallery .project-tile--wide {
    display: grid;
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
    grid-template-rows: 13.5rem auto;
    scroll-snap-align: start;
  }

  .project-showcase .project-tile__media,
  .page--projects .project-gallery .project-tile__media {
    height: 13.5rem;
  }

  .project-showcase .project-tile__overlay,
  .page--projects .project-gallery .project-tile__overlay {
    position: static;
    min-height: 10.25rem;
    padding: 1rem;
    background: var(--charcoal);
  }

  .project-showcase .project-tile__overlay h3,
  .page--projects .project-gallery .project-tile__overlay h3 {
    margin-bottom: 0.35rem;
    font-size: 1.35rem;
  }

  .project-showcase .project-tile__overlay p,
  .page--projects .project-gallery .project-tile__overlay p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.8rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .project-showcase:focus-visible,
  .project-gallery:focus-visible,
  .service-detail-grid:focus-visible {
    outline: 0.16rem solid var(--orange);
    outline-offset: 0.2rem;
  }

  .page--home .service-grid,
  .page--services .service-grid {
    display: grid;
    border: 0;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .page--home .service-card,
  .page--services .service-card {
    display: grid;
    min-height: 6.75rem;
    padding: 1rem;
    align-items: center;
    border: 1px solid var(--line);
    grid-template-columns: 2rem minmax(0, 1fr) 2.5rem;
    grid-template-rows: auto auto;
    gap: 0.15rem 0.75rem;
  }

  .page--home .service-card__number,
  .page--services .service-card__number {
    margin: 0;
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .page--home .service-card h3,
  .page--services .service-card h3 {
    max-width: none;
    margin: 0;
    font-size: 1.35rem;
    grid-column: 2;
    grid-row: 1;
  }

  .page--home .service-card p,
  .page--services .service-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.35;
    grid-column: 2;
    grid-row: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .page--home .service-card__arrow,
  .page--services .service-card__arrow {
    width: 2.25rem;
    margin: 0;
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .home-trust .split-feature__copy > p:not(.kicker) {
    margin-bottom: 1.25rem;
  }

  .home-trust .benefit-list article {
    padding-block: 1rem;
  }

  .home-process .section-head__side {
    padding-bottom: 0;
  }

  .home-process .process-grid {
    position: relative;
    display: grid;
    padding-left: 2.4rem;
    border: 0;
    gap: 0;
  }

  .home-process .process-grid::before {
    position: absolute;
    top: 0.75rem;
    bottom: 1.75rem;
    left: 0.8rem;
    width: 2px;
    content: "";
    background: var(--orange);
  }

  .home-process .process-grid li {
    position: relative;
    min-height: 0;
    padding: 0 0 1.6rem;
    border: 0;
    background: transparent;
  }

  .home-process .process-grid li:last-child {
    padding-bottom: 0;
  }

  .home-process .process-grid li > span {
    position: absolute;
    top: 0;
    left: -2.4rem;
    display: grid;
    width: 1.7rem;
    aspect-ratio: 1;
    border-radius: 50%;
    color: var(--white);
    background: var(--orange);
    font-size: 0.68rem;
    place-items: center;
  }

  .home-process .process-grid h3 {
    margin: 0 0 0.35rem;
  }

  .home-process .process-grid p {
    margin: 0;
    font-size: 0.9rem;
  }

  .page-hero--with-image .page-hero__grid {
    padding: 0 0 2.5rem;
    gap: 0;
  }

  .page-hero--with-image .page-hero__image {
    order: -1;
    width: calc(100% + (2 * var(--gutter)));
    margin-inline: calc(-1 * var(--gutter));
    border-left: 0;
    border-bottom: 0.3rem solid var(--orange);
  }

  .page-hero--with-image .page-hero__image img {
    height: 13.5rem;
  }

  .page-hero--with-image .page-hero__copy {
    padding-top: 2.25rem;
  }

  .page-hero:not(.page-hero--with-image) .page-hero__grid {
    padding-block: 2.65rem;
  }

  .page-hero h1 {
    max-width: 13ch;
    margin-bottom: 1rem;
    font-size: clamp(2.75rem, 12.5vw, 3.5rem);
  }

  .page-hero .button-row {
    display: none;
  }

  .mobile-service-jumps {
    display: flex;
    padding: 0.75rem var(--gutter);
    border-bottom: 1px solid var(--line);
    gap: 0.55rem;
    background: var(--white);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--gutter);
    scroll-snap-type: inline proximity;
  }

  .mobile-service-jumps a {
    display: inline-flex;
    min-height: 2.75rem;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--line);
    align-items: center;
    flex: 0 0 auto;
    color: var(--ink);
    background: var(--concrete);
    font-size: 0.74rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    scroll-snap-align: start;
  }

  .page--services .service-detail-grid {
    display: grid;
    grid-auto-columns: min(80vw, 22rem);
    grid-auto-flow: column;
    grid-template-columns: none;
    padding-bottom: 0.85rem;
    gap: 0.75rem;
    background: transparent;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-color: var(--signal) rgb(255 255 255 / 14%);
    scrollbar-width: thin;
  }

  .page--services .service-detail-grid article {
    padding: 1.4rem;
    border: 1px solid var(--line-dark);
    scroll-margin-top: 5.5rem;
    scroll-snap-align: start;
  }

  .page--services .service-detail-grid article:focus-visible {
    outline: 0.16rem solid var(--signal);
    outline-offset: -0.2rem;
  }

  .page--services .section--dark .mobile-scroll-hint {
    color: rgb(255 255 255 / 78%);
  }

  .page--services .section--dark .mobile-scroll-hint span {
    color: var(--signal);
  }

  .page--services .service-detail-grid h2 {
    margin: 1rem 0 1.3rem;
    font-size: 2rem;
  }

  .page--services .service-detail-grid ul {
    font-size: 0.88rem;
  }

  .page--projects .project-gallery-section {
    padding-top: 1.6rem;
  }

  .page--projects .project-gallery-intro {
    margin-bottom: 1.4rem;
  }

  .page--projects .mobile-scroll-hint {
    margin-bottom: 0.75rem;
  }

  .value-grid article {
    min-height: 0;
    padding: 1.25rem;
  }

  .fact-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact-row > div {
    min-height: 5.5rem;
    padding: 1rem;
  }

  .page--trust .credential-grid article {
    min-height: 0;
    padding: 1.35rem;
  }

  .page--trust .credential-card__label {
    margin-bottom: 1.25rem;
  }

  .page--contact .page-hero__grid {
    padding-block: 2.4rem;
  }

  .page--contact .contact-section {
    padding-block: 0;
    background: var(--white);
  }

  .page--contact .contact-grid {
    display: block;
  }

  .page--contact .contact-form-wrap {
    padding: 1.25rem;
    margin-inline: calc(-1 * var(--gutter));
    border-top-width: 0.3rem;
  }

  .page--contact .contact-form-wrap > h2 {
    margin-bottom: 1.4rem;
  }

  .page--contact .contact-panel {
    display: none;
  }

  .page--contact .form-fallback {
    padding: 1.25rem;
  }

  .reply-choice {
    display: grid;
    gap: 0.65rem;
  }

  .reply-choice label {
    min-height: 2.75rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--line);
    align-items: center;
    background: var(--concrete);
  }

  .reply-choice input {
    margin-top: 0;
  }

  .turnstile-slot {
    max-width: 100%;
    overflow: hidden;
  }

  .cta-band__grid {
    padding-block: 2.7rem;
  }

  .cta-band h2 {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .cta-band__actions .text-link {
    display: none;
  }
}

@media (max-width: 47.5rem) and (max-height: 40rem) {
  .page--home .hero__grid {
    min-height: calc(100svh - 8.55rem);
  }
}

@media (max-width: 23rem) {
  :root {
    --gutter: 1rem;
  }

  .brand__name small {
    display: block;
    font-size: 0.44rem;
    letter-spacing: 0.15em;
  }

  .page--home .credential-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--contact .contact-form-wrap {
    padding: 1rem;
  }

  .page--contact .form-fallback {
    padding: 1rem;
  }

  .mobile-actions a {
    padding-inline: 0.4rem;
  }

  .mobile-actions a strong {
    font-size: 0.76rem;
  }

  .mobile-actions a span {
    font-size: 0.64rem;
  }
}

@media (max-width: 23rem) and (max-height: 40rem) {
  .page--home .hero__copy {
    padding-top: 4.5rem;
  }

  .page--home .hero h1 {
    margin-bottom: 0.8rem;
    font-size: 2.55rem;
  }

  .page--home .hero__lede {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .mobile-actions,
  .cta-band,
  .site-footer,
  .breadcrumbs,
  .button,
  .text-link {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .hero,
  .page-hero,
  .section--dark {
    color: #000;
    background: #fff;
  }
}
