:root {
  --black: #000000;
  --ink: #161616;
  --ink-soft: #292929;
  --paper: #f7f4ee;
  --paper-deep: #eee8de;
  --red: #c82127;
  --red-dark: #a8151a;
  --gold: #d7a51f;
  --muted: #6a665f;
  --line-light: #d9d2c7;
  --line-dark: #454545;
  --shell: 70rem;
  --radius: 0.35rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink);
}

::selection {
  background: var(--gold);
  color: var(--black);
}

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.visually-hidden {
  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: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 120ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 6.25rem;
  background: var(--black);
  color: var(--paper);
  border-bottom: 1px solid #303030;
}

.header-inner {
  min-height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  min-height: 4.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo {
  position: relative;
  width: 6.9rem;
  height: 4.75rem;
  flex: 0 0 auto;
  overflow: hidden;
  background: #000;
}

.brand-logo img {
  position: absolute;
  width: 9.4rem;
  max-width: none;
  height: auto;
  transform: translate(-1.35rem, -2.35rem);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-name strong {
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: 0.16em;
}

.brand-name span {
  margin-top: 0.35rem;
  color: #d3d0ca;
  font-size: 0.72rem;
  font-weight: 750;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  position: relative;
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c7c3bc;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  background: var(--gold);
}

.header-call {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0 0.55rem 1rem;
  border-left: 2px solid var(--gold);
  text-decoration: none;
}

.header-call strong {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-size: 0.96rem;
  letter-spacing: 0.015em;
  transition: background-color 120ms ease-out;
}

.header-call:hover strong {
  background: var(--red-dark);
}

.hero {
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(4.25rem, 7vw, 6.5rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(17rem, 0.72fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 7rem);
}

.eyebrow {
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #59564f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 2.1rem;
  height: 2px;
  flex: 0 0 auto;
  background: var(--gold);
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.55rem;
  font-size: clamp(3rem, 6.7vw, 5.8rem);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 4.7vw, 4.15rem);
}

h3 {
  margin-bottom: 0.85rem;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.hero-intro {
  max-width: 39rem;
  margin: 0;
  color: #4b4944;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 2.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.15rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 120ms ease-out, border-color 120ms ease-out, color 120ms ease-out;
}

.button-primary {
  background: var(--red);
  color: #fff;
}

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

.button-secondary {
  border-color: #b5afa5;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: #fff;
}

.local-proof {
  position: relative;
  padding: 2rem 0 0 2rem;
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line-light);
}

.local-proof::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 4.5rem;
  height: 2px;
  background: var(--red);
}

.proof-kicker {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-main {
  margin: 0 0 1.2rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.proof-detail {
  margin: 0;
  color: #59564f;
  font-size: 0.95rem;
}

.services {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #fff;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.service-heading {
  margin-bottom: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 7rem);
}

.service-heading .section-heading {
  margin-bottom: 0;
}

.service-intro {
  margin: 0 0 0.35rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--ink);
  color: #55524d;
  font-size: 1.08rem;
}

.service-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-light);
  list-style: none;
}

.service-card {
  min-height: 0;
  padding: 1.85rem clamp(1.75rem, 4vw, 3.5rem) 2rem 0;
  border-top: 1px solid var(--line-light);
}

.service-card:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(1.75rem, 4vw, 3.5rem);
  border-left: 1px solid var(--line-light);
}

.service-card::before {
  content: "";
  width: 1.5rem;
  height: 3px;
  margin-bottom: 1.25rem;
  display: block;
  background: var(--red);
}

.service-card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
}

.service-card p {
  max-width: 29rem;
  margin: 0;
  color: #5b5852;
}

.service-followup {
  margin: 1.5rem 0 0;
  color: #666159;
  font-size: 0.9rem;
}

.service-followup a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.22em;
}

.service-followup a:hover {
  color: var(--red-dark);
  text-decoration-color: var(--red);
}

.project-proof {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--ink);
  color: var(--paper);
}

.eyebrow-dark {
  color: #c3beb5;
}

.work-heading {
  margin-bottom: 3rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.work-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
  color: var(--paper);
}

.text-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--gold);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 780;
  text-decoration: none;
}

.text-link:hover {
  color: #fff;
  border-bottom-color: var(--red);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.project-card {
  min-height: 15rem;
  padding: 2rem clamp(1.4rem, 3vw, 2.25rem) 2.2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
}

.project-card:first-child {
  padding-left: 0;
}

.project-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.project-card-featured {
  min-height: 0;
  grid-column: 1 / -1;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(2.5rem, 7vw, 6rem);
  padding: 2rem 0 2.4rem;
  display: grid;
  border-right: 0;
  border-bottom: 1px solid var(--line-dark);
}

.project-card-featured + .project-card {
  padding-left: 0;
}

.project-card-featured .project-meta {
  grid-row: 1 / span 3;
  margin: 0;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.project-card-featured .project-meta span:last-child {
  color: var(--gold);
}

.project-card-featured h3,
.project-card-featured > p:not(.project-meta),
.project-card-featured .project-card-link {
  grid-column: 2;
}

.project-card-featured h3 {
  margin-bottom: 0.75rem;
}

.project-card-featured > p:not(.project-meta) {
  max-width: 48rem;
}

.project-meta {
  margin: 0 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #bbb6ad;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-meta time {
  color: var(--gold);
}

.project-card h3 {
  color: var(--paper);
}

.project-card > p:not(.project-meta) {
  margin: 0 0 1.5rem;
  color: #c8c3ba;
}

.project-card-link {
  min-height: 2.75rem;
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid #777168;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 780;
  text-decoration: none;
}

.project-card-link:hover {
  border-bottom-color: var(--gold);
  color: #fff;
}

.work-page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.75rem, 7vw, 6rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
}

.work-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 7rem);
}

.work-page-hero h1 {
  margin-bottom: 0;
}

.work-page-intro > p {
  margin: 0;
  color: #4f4c46;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.project-jumps {
  margin-top: 2rem;
  padding-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  border-top: 1px solid var(--line-light);
}

.project-jumps a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration-color: #aaa49a;
  text-underline-offset: 0.27em;
  text-transform: uppercase;
}

.project-jumps a:hover {
  color: var(--red-dark);
  text-decoration-color: var(--red);
}

.project-story {
  scroll-margin-top: 1rem;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--paper-deep);
}

.project-story + .project-story {
  border-top: 1px solid var(--line-light);
}

.project-story-light {
  background: #fff;
}

.project-story-featured {
  border-top: 4px solid var(--gold);
}

.project-story-featured .project-story-header h2 {
  max-width: 16ch;
}

.project-story-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 6rem);
}

.project-story-number {
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.project-story-number span {
  color: #67635d;
  text-transform: uppercase;
}

.project-story-header h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.project-story-copy {
  padding-top: 1.3rem;
  border-top: 2px solid var(--ink);
}

.project-story-meta {
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #615d56;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-story-meta time {
  color: var(--red-dark);
}

.project-story-copy > p:last-child {
  margin: 0;
  color: #55514b;
}

.project-scope-heading {
  margin: 0 0 1rem;
  color: #5c5851;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-scope-list {
  margin: 0 0 clamp(2.75rem, 5vw, 4rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #c9c1b5;
  border-left: 1px solid #c9c1b5;
  list-style: none;
}

.project-scope-list li {
  min-height: 8.5rem;
  padding: 1.35rem;
  border-right: 1px solid #c9c1b5;
  border-bottom: 1px solid #c9c1b5;
}

.project-scope-list strong,
.project-scope-list span {
  display: block;
}

.project-scope-list strong {
  margin-bottom: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.35;
}

.project-scope-list span {
  color: #5c5851;
  font-size: 0.83rem;
  line-height: 1.5;
}

.project-feature-hero {
  margin: 0 0 clamp(4rem, 8vw, 6.5rem);
}

.project-stage + .project-stage {
  margin-top: clamp(4.5rem, 8vw, 7rem);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  border-top: 1px solid #c9c1b5;
}

.project-stage-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 6rem);
}

.project-stage-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.project-stage-heading p {
  margin: 0;
  color: #5c5851;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

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

.project-photo {
  margin: 0;
  background: #fff;
  border: 1px solid #d6cec2;
}

.project-story-light .project-photo {
  background: var(--paper);
}

.project-image-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8d2c9;
}

.project-image-frame-wide {
  aspect-ratio: 16 / 9;
}

.project-image-frame-portrait {
  aspect-ratio: 3 / 4;
}

.project-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-position-upper img {
  object-position: center 32%;
}

.image-position-center img {
  object-position: center;
}

.project-photo figcaption {
  min-height: 4.4rem;
  padding: 1rem 1.1rem 1.1rem;
  color: #514e48;
  font-size: 0.88rem;
}

.project-photo figcaption span {
  margin-right: 0.45rem;
  color: var(--red-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gallery-source {
  max-width: 51rem;
  margin: 2rem 0 0;
  color: #666159;
  font-size: 0.78rem;
}

.gallery-source a {
  font-weight: 750;
  text-underline-offset: 0.2em;
}

.reputation {
  scroll-margin-top: 1rem;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--ink);
  color: var(--paper);
}

.reputation-heading {
  max-width: 49rem;
  margin-bottom: 3rem;
}

.reputation-heading h2 {
  margin-bottom: 0;
  color: var(--paper);
}

.reputation-summary {
  padding-bottom: clamp(2.25rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line-dark);
}

.reputation-summary .reputation-heading,
.reputation-summary .rating-spotlight {
  margin: 0;
  padding: 0;
  border: 0;
}

.reputation-summary .rating-spotlight {
  justify-self: end;
}

.rating-spotlight {
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-dark);
}

.rating-compact {
  min-height: 4.5rem;
  display: inline-flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  color: var(--paper);
  text-decoration: none;
}

.rating-compact strong {
  font-size: clamp(4.5rem, 10vw, 7rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.rating-compact span {
  color: var(--gold);
  font-size: clamp(1.55rem, 4vw, 2.6rem);
  letter-spacing: 0.13em;
  line-height: 1;
  transition: color 120ms ease-out;
}

.rating-compact:hover span {
  color: #f3ca4f;
}

.review-evidence-intro {
  max-width: 66rem;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  color: #c8c3ba;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.neighbor-quotes {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.neighbor-quotes-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.neighbor-quote {
  min-height: 17rem;
  margin: 0;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #222;
  border-top: 3px solid var(--gold);
}

.neighbor-quote blockquote {
  margin: 0;
}

.quote-scope {
  margin: 0 0 1.1rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.neighbor-quote blockquote p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 760;
  letter-spacing: -0.025em;
  line-height: 1.32;
}

.neighbor-quote figcaption {
  margin-top: 2rem;
  color: #d1ccc3;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.neighbor-quote figcaption span {
  color: var(--gold);
}

.reputation-home {
  background: var(--black);
  border-top: 1px solid #303030;
}

.reputation-home .neighbor-quotes {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.reputation-home .neighbor-quote {
  min-height: 14.5rem;
}

.reputation-home .neighbor-quote blockquote p {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
}

.reputation-cta {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.reputation-cta p {
  margin: 0;
  color: #bcb7ae;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reputation-cta a {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 780;
  text-decoration: none;
}

.reputation-cta a:hover {
  background: var(--red-dark);
}

.reputation-cta a strong {
  font-size: 1rem;
}

.reputation-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.reputation-cta .reputation-text-link {
  border: 1px solid #57534c;
  background: transparent;
}

.reputation-cta .reputation-text-link:hover {
  background: #242424;
}

.contact {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: stretch;
  gap: clamp(3rem, 8vw, 7rem);
}

.contact-copy h2 {
  max-width: 12ch;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 0;
  color: #55524d;
  font-size: 1.08rem;
}

.contact-card {
  min-height: 20rem;
  padding: clamp(2rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
  color: var(--paper);
  border-top: 4px solid var(--gold);
}

.contact-card > p:first-child {
  margin: 0 0 1.5rem;
  color: #c8c3ba;
  font-size: 0.84rem;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-card a {
  min-height: 5.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  text-decoration: none;
  transition: background-color 120ms ease-out;
}

.contact-card a:hover {
  background: var(--red-dark);
}

.contact-card .contact-text-link {
  min-height: 3.25rem;
  margin-top: 0.75rem;
  align-items: center;
  flex-direction: row;
  border: 1px solid #57534c;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-card .contact-text-link:hover {
  background: #242424;
}

.contact-card a span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.2;
}

.contact-location {
  margin: 1.25rem 0 0;
  color: #bcb7ae;
  font-size: 0.9rem;
}

.site-footer {
  padding: 1.8rem 0 1.4rem;
  background: var(--black);
  color: #bcb7ae;
  border-top: 1px solid #303030;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.78rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--paper);
  font-weight: 780;
  text-underline-offset: 0.22em;
}

.footer-inner strong {
  color: var(--paper);
}

.footer-social {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid #303030;
}

.footer-social a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-right: 0.8rem;
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-social a:hover {
  color: #fff;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-icon-facebook {
  background: #1877f2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  text-transform: lowercase;
}

.social-icon-nextdoor {
  background: #8ed500;
  color: #102000;
}

.social-icon-nextdoor svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

@media (max-width: 52rem) {
  .hero-grid,
  .contact-grid,
  .service-heading,
  .work-page-hero-grid,
  .project-story-header {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
    gap: 3.5rem;
  }

  .local-proof {
    max-width: 32rem;
  }

  .service-heading {
    gap: 1.5rem;
  }

  .service-intro {
    max-width: 38rem;
  }

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

  .project-card-featured {
    grid-template-columns: 1fr;
  }

  .project-card-featured .project-meta,
  .project-card-featured h3,
  .project-card-featured > p:not(.project-meta),
  .project-card-featured .project-card-link {
    grid-column: 1;
  }

  .project-card-featured .project-meta {
    grid-row: auto;
    margin-bottom: 1.5rem;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .service-card,
  .project-card,
  .service-card:first-child,
  .service-card:last-child,
  .service-card:nth-child(even),
  .project-card:first-child,
  .project-card:last-child {
    min-height: 0;
  }

  .service-card,
  .service-card:first-child,
  .service-card:last-child,
  .service-card:nth-child(even) {
    padding: 1.6rem 0 1.75rem;
    border-left: 0;
    border-right: 0;
  }

  .project-card,
  .project-card:first-child,
  .project-card:last-child {
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .project-card:last-child {
    border-bottom: 0;
  }

  .project-meta {
    margin-bottom: 1.5rem;
  }

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

  .work-page-hero-grid,
  .project-story-header {
    align-items: start;
    gap: 2.5rem;
  }

  .project-stage-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .project-scope-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-story-copy {
    max-width: 36rem;
  }

  .reputation-summary {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }

  .reputation-summary .rating-spotlight {
    justify-self: start;
  }

  .neighbor-quotes {
    grid-template-columns: 1fr;
  }

  .neighbor-quote {
    min-height: 13rem;
  }

  .reputation-home .neighbor-quote {
    min-height: 11.5rem;
  }
}

@media (max-width: 36rem) {
  .shell {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .site-header,
  .header-inner {
    min-height: 0;
  }

  .header-inner {
    padding: 0.75rem 0 0.9rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .brand {
    min-height: 4.3rem;
    align-self: flex-start;
  }

  .site-nav {
    width: 100%;
    margin-left: 0;
    padding-top: 0.15rem;
    justify-content: space-between;
    border-top: 1px solid #303030;
  }

  .site-nav a {
    flex: 1;
    justify-content: center;
  }

  .brand-logo {
    width: 6.4rem;
    height: 4.3rem;
  }

  .brand-logo img {
    width: 8.8rem;
    transform: translate(-1.25rem, -2.2rem);
  }

  .header-call {
    min-height: 3.25rem;
    width: 100%;
    justify-content: space-between;
    padding: 0;
    border-left: 0;
  }

  .header-call strong {
    flex: 1;
    justify-content: center;
  }

  .hero {
    padding-top: 3.4rem;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .local-proof {
    padding-left: 1.2rem;
  }

  .project-jumps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem 1rem;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-scope-list {
    grid-template-columns: 1fr;
  }

  .project-scope-list li {
    min-height: 0;
  }

  .project-image-frame-wide {
    aspect-ratio: 4 / 3;
  }

  .rating-compact {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .neighbor-quote {
    min-height: 0;
  }

  .reputation-home .neighbor-quote {
    min-height: 0;
  }

  .reputation-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .reputation-cta a {
    justify-content: center;
  }

  .reputation-contact-actions {
    width: 100%;
    flex-direction: column;
  }

  .contact-card {
    min-height: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .footer-social a {
    flex: 1;
    padding-right: 0;
  }
}

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

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

@media print {
  .skip-link,
  .header-call,
  .site-nav,
  .hero-actions,
  .text-link,
  .project-jumps,
  .reputation-cta,
  .footer-inner a,
  .footer-social {
    display: none !important;
  }

  body,
  .hero,
  .services,
  .project-proof,
  .work-page-hero,
  .project-story,
  .reputation,
  .contact,
  .site-header,
  .site-footer,
  .contact-card {
    background: #fff !important;
    color: #000 !important;
  }

  h1,
  h2,
  h3,
  .work-heading h2,
  .reputation-heading h2,
  .rating-compact,
  .neighbor-quote blockquote p,
  .project-card h3,
  .footer-inner strong {
    color: #000 !important;
  }
}
