:root {
  --bg: #f3f5f2;
  --paper: #ffffff;
  --ink: #171d19;
  --muted: #5a625d;
  --line: #d8ded7;
  --line-strong: #bfc8c0;
  --accent: #315d46;
  --accent-dark: #1f4431;
  --clay: #a8653d;
  --steel: #536f7a;
  --soft: #edf1ed;
  --shadow: 0 18px 42px rgba(23, 29, 25, 0.12);
  --radius: 8px;
  --max: 1180px;
  --header-h: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

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

p,
h1,
h2,
h3,
h4,
figure {
  margin: 0;
}

p + p {
  margin-top: 14px;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  flex: 0 1 250px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--ink), #344239);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.1);
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  color: #313a34;
  font-size: 0.9rem;
  font-weight: 650;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--soft);
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-actions .button {
  min-width: 194px;
}

.nav-toggle {
  display: none;
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 160ms ease, opacity 160ms ease, top 160ms ease;
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle::after {
  top: 26px;
}

.nav-toggle[aria-expanded="true"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(49, 93, 70, 0.12);
}

.nav-toggle[aria-expanded="true"]::before {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

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

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

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

.button-secondary:hover {
  border-color: var(--accent);
}

.button-quiet {
  background: transparent;
  color: var(--ink);
  border-color: rgba(31, 37, 33, 0.18);
}

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

.main {
  overflow: hidden;
}

.section {
  padding: 84px 0;
}

.section-tight {
  padding: 56px 0;
}

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

.section-soft {
  background: var(--soft);
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-head.split {
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  align-items: end;
  column-gap: 42px;
}

.section-title {
  font-size: 3.15rem;
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 850;
}

.section-lead {
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.65;
}

.hero {
  position: relative;
  min-height: calc(78vh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  border-bottom: 1px solid rgba(23, 29, 25, 0.22);
}

.hero-picture,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(13, 18, 15, 0.86) 0%, rgba(13, 18, 15, 0.68) 38%, rgba(13, 18, 15, 0.18) 72%),
    linear-gradient(180deg, rgba(13, 18, 15, 0.24), rgba(13, 18, 15, 0.42));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 68px;
}

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

.hero h1 {
  font-size: 5.45rem;
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 880;
  overflow-wrap: break-word;
}

.hero-lead {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.42rem;
  line-height: 1.35;
  font-weight: 800;
}

.hero p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.62;
  overflow-wrap: break-word;
}

.hero .hero-lead {
  max-width: none;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.42rem;
  line-height: 1.35;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d7a070;
}

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

.hero .button-quiet {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 74px 0 62px;
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.58fr);
  gap: 48px;
  align-items: end;
}

.page-hero h1 {
  font-size: 4.7rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 880;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-item {
  background: var(--paper);
  padding: 30px;
}

.intro-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.intro-item p {
  color: var(--muted);
  font-size: 0.96rem;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.text-card,
.gallery-card,
.process-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  display: grid;
  min-height: 100%;
  box-shadow: 0 12px 26px rgba(23, 29, 25, 0.06);
}

.service-card picture,
.gallery-card picture {
  display: block;
}

.service-card img,
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-content,
.gallery-card-content,
.text-card,
.process-card {
  padding: 24px;
}

.service-card h3,
.text-card h3,
.process-card h3,
.gallery-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-card p,
.text-card p,
.process-card p,
.gallery-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 800;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.project-strip figure {
  position: relative;
  min-height: 320px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 29, 25, 0.12);
  background: #dfe5df;
}

.project-strip picture,
.project-strip img {
  width: 100%;
  height: 100%;
}

.project-strip img {
  object-fit: cover;
}

.project-strip figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(18, 23, 20, 0.68);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

picture.media-frame {
  display: block;
}

.media-stack {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 16px;
  align-items: end;
}

.media-stack img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.media-stack img:first-child {
  aspect-ratio: 3 / 4;
}

.media-stack img:last-child {
  aspect-ratio: 4 / 3;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #36413a;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.process {
  counter-reset: step;
}

.process-card {
  position: relative;
}

.process-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 850;
}

.callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 36px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.callout p {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 10px;
}

.callout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius);
  background: #171d19;
  color: #fff;
}

.contact-band h2 {
  max-width: 760px;
  font-size: 3rem;
  line-height: 1.05;
}

.contact-band p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.contact-band-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.contact-band-details a {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-band-details strong {
  font-size: 0.88rem;
  text-transform: uppercase;
}

.contact-band-details span {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  padding: 26px;
  background: #fff;
}

.feature-row h3 {
  font-size: 1.08rem;
  line-height: 1.28;
}

.feature-row p {
  color: var(--muted);
}

.service-detail {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 44px;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.side-panel h2 {
  margin-bottom: 14px;
  font-size: 1.34rem;
}

.side-panel p,
.side-panel li {
  color: var(--muted);
  font-size: 0.96rem;
}

.side-panel ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.content-flow {
  display: grid;
  gap: 30px;
}

.content-flow h2 {
  font-size: 2.35rem;
  line-height: 1.12;
}

.content-flow h3 {
  font-size: 1.28rem;
  line-height: 1.24;
}

.content-flow p {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card img {
  aspect-ratio: 1.18 / 1;
}

.reference-note,
.permit-note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--clay);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 0.96rem;
}

.gallery-filters + .reference-note,
.reference-grid + .reference-note {
  margin-bottom: 24px;
}

.reference-grid + .reference-note {
  margin-top: 18px;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.reference-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.reference-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reference-card figcaption {
  padding: 14px 16px;
  color: #36413a;
  font-size: 0.92rem;
  font-weight: 750;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pill-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: #36413a;
  font-size: 0.9rem;
  font-weight: 750;
}

.association-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.association-mark-seal {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.association-mark-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.association-mark strong {
  display: block;
  margin-top: 2px;
  font-size: 1rem;
  line-height: 1.15;
}

.reviews-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.google-rating-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.google-rating-shot img {
  width: 100%;
}

.google-rating-shot figcaption {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.review-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.review-point {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.review-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.12rem;
}

.review-point span {
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-button {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  min-height: 38px;
  padding: 0 13px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
}

.filter-button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-card h2 {
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a,
.contact-methods span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-methods strong {
  display: block;
  color: var(--ink);
}

.form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: #303a34;
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  min-height: 48px;
  padding: 12px 13px;
  outline: none;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(68, 107, 76, 0.14);
}

.field small,
.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-status {
  min-height: 22px;
  color: var(--accent-dark);
  font-size: 0.93rem;
  font-weight: 750;
}

.footer {
  background: #202622;
  color: #fff;
  padding: 52px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.76fr 0.72fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer h2,
.footer h3 {
  margin-bottom: 12px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.74);
}

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

.footer ul {
  display: grid;
  gap: 8px;
}

.footer .association-mark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.footer .association-mark-label {
  color: rgba(255, 255, 255, 0.68);
}

.footer .association-mark-seal {
  background: #ffffff;
  color: var(--accent-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -48px;
  z-index: 100;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 14px;
}

@media (max-width: 1220px) {
  .header-inner {
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    z-index: 60;
    display: none;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
    padding: 16px 18px 22px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 2px;
    justify-content: stretch;
  }

  .site-nav a {
    min-height: 46px;
    padding: 0 12px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .header-actions .button {
    display: none;
  }
}

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

  .section-title {
    font-size: 2.6rem;
  }

  .section-lead {
    font-size: 1.05rem;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero p {
    font-size: 1.12rem;
  }

  .page-hero h1 {
    font-size: 3.45rem;
  }

  .content-flow h2 {
    font-size: 2rem;
  }

  .section-head.split,
  .page-hero-inner,
  .media-split,
  .service-detail,
  .contact-layout,
  .reviews-panel,
  .contact-band,
  .callout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .reference-grid,
  .project-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: calc(82vh - var(--header-h));
  }

  .hero-scrim {
    background: linear-gradient(180deg, rgba(13, 18, 15, 0.84) 0%, rgba(13, 18, 15, 0.66) 55%, rgba(13, 18, 15, 0.42) 100%);
  }

  .contact-band h2 {
    font-size: 2.45rem;
  }

  .hero-inner {
    padding: 52px 0 72px;
  }

  .side-panel {
    position: static;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner,
  .container,
  .hero-inner,
  .page-hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    max-width: calc(100vw - 118px);
  }

  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .section-title {
    font-size: 2.15rem;
  }

  .hero-inner {
    padding: 36px 0 38px;
  }

  .hero h1 {
    font-size: 2.34rem;
    line-height: 1.02;
  }

  .hero p {
    margin-top: 18px;
    font-size: 1.03rem;
  }

  .hero p:not(.hero-lead) {
    max-width: 320px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero .hero-lead {
    max-width: 310px;
    font-size: 1.16rem;
    line-height: 1.35;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-proof {
    gap: 12px;
    margin-top: 22px;
    font-size: 0.9rem;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }

  .content-flow h2 {
    font-size: 1.82rem;
  }

  .intro-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .reference-grid,
  .project-strip,
  .review-points,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .page-actions,
  .callout-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .page-hero {
    padding: 52px 0 46px;
  }

  .intro-item,
  .form,
  .contact-card,
  .contact-band,
  .callout {
    padding: 22px;
  }

  .project-strip figure {
    min-height: 270px;
    aspect-ratio: 4 / 3;
  }

  .contact-band h2 {
    font-size: 2rem;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

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

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