:root {
  --ink: #16231d;
  --ink-soft: #2b3a32;
  --paper: #f3eee4;
  --paper-light: #fbf8f2;
  --white: #fffdf9;
  --clay: #bd5136;
  --clay-dark: #923722;
  --sage: #5f7065;
  --sage-light: #dbe1d8;
  --sand: #d8c5a5;
  --gold: #ba8c4e;
  --error: #9e2f27;
  --success: #28664f;
  --line: rgb(22 35 29 / 15%);
  --line-light: rgb(255 253 249 / 18%);
  --shadow-sm: 0 0.8rem 2rem rgb(22 35 29 / 9%);
  --shadow-lg: 0 2rem 5rem rgb(22 35 29 / 14%);
  --serif:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Palatino",
    "Georgia", serif;
  --sans:
    "Inter", ui-sans-serif, system-ui, -apple-system, "BlinkMacSystemFont",
    "Segoe UI", sans-serif;
  --page: min(100% - 2.5rem, 76rem);
}

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

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

body {
  min-width: 20rem;
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizelegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(
    rgb(22 35 29 / 5%) 0.5px,
    transparent 0.5px
  );
  background-size: 7px 7px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration-color: var(--clay);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-color: currentcolor;
}

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 4.3rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--clay);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-200%);
  transition: transform 160ms ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lede {
  max-width: 44rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--clay);
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  border-color: var(--clay-dark);
  background: var(--clay-dark);
  transform: translateY(-1px);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--sand);
  background: var(--sand);
  color: var(--ink);
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgb(251 248 242 / 94%);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 3.3rem;
  height: 3.15rem;
  flex: 0 0 auto;
  overflow: visible;
  place-items: center;
  color: var(--white);
  filter: drop-shadow(0 0.35rem 0.45rem rgb(22 35 29 / 16%));
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand-mark::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 0.2rem;
  background: var(--clay);
  clip-path: polygon(
    50% 1%,
    98% 35%,
    89% 35%,
    89% 100%,
    11% 100%,
    11% 35%,
    2% 35%
  );
  content: "";
}

.brand-mark::after {
  position: absolute;
  z-index: 0;
  top: 0.42rem;
  right: 0.5rem;
  width: 0.42rem;
  height: 0.85rem;
  border-radius: 0.08rem 0.08rem 0 0;
  background: var(--clay);
  content: "";
}

.brand-mark > span {
  position: relative;
  z-index: 2;
  transform: translateY(0.38rem);
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-place {
  margin-top: 0.28rem;
  color: var(--sage);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a:not(.button) {
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:not(.button):hover,
.site-nav a[aria-current="page"]:not(.button) {
  background: var(--paper);
}

.site-nav .button {
  margin-left: 0.45rem;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: auto;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -0.35rem;
  left: 0;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 0.35rem;
  left: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(0.35rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-0.35rem) rotate(-45deg);
}

.home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(42rem, calc(100svh - 5.6rem), 53rem);
  overflow: hidden;
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--ink);
  color: var(--white);
}

.home-hero-media,
.home-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

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

.home-hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgb(15 26 21 / 94%) 0%,
      rgb(15 26 21 / 82%) 39%,
      rgb(15 26 21 / 32%) 67%,
      rgb(15 26 21 / 12%) 100%
    ),
    linear-gradient(0deg, rgb(15 26 21 / 44%), transparent 50%);
}

.home-hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.45fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy-inverse {
  max-width: 46rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgb(255 253 249 / 20%);
  border-radius: 0.7rem 0.7rem 3.5rem;
  background: rgb(15 26 21 / 60%);
  box-shadow: 0 2rem 5rem rgb(0 0 0 / 20%);
  backdrop-filter: blur(0.45rem);
}

.hero-copy-inverse h1 {
  max-width: 12ch;
  color: var(--white);
  font-size: clamp(3.35rem, 5.1vw, 5.2rem);
  text-wrap: balance;
}

.hero-copy-inverse .eyebrow {
  color: #f1a68f;
}

.hero-copy-inverse .lede {
  color: rgb(255 253 249 / 86%);
}

.paint-underline {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.paint-underline::after {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: 0.07em;
  left: -0.04em;
  height: 0.19em;
  border-radius: 70% 20% 55% 25%;
  background: var(--clay);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-copy .lede {
  max-width: 36rem;
}

.hero-copy-inverse .button-outline {
  border-color: rgb(255 253 249 / 55%);
  color: var(--white);
}

.hero-copy-inverse .button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.language-callout {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  width: fit-content;
  margin: 1.5rem 0 0;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-light);
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.35;
}

.language-callout strong {
  color: var(--clay-dark);
}

.language-callout span {
  color: var(--sage);
  font-weight: 750;
}

.hero-note {
  margin-top: 1.6rem;
  color: rgb(255 253 249 / 68%);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.hero-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 23rem;
  justify-self: end;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgb(255 253 249 / 25%);
  border-radius: 0.6rem 0.6rem 2.25rem;
  background: rgb(15 26 21 / 76%);
  box-shadow: 0 1.5rem 3.5rem rgb(0 0 0 / 22%);
  backdrop-filter: blur(0.55rem);
}

.hero-proof-number {
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.hero-proof strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--white);
  line-height: 1.3;
}

.hero-proof p {
  margin: 0;
  color: rgb(255 253 249 / 72%);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-image-note {
  max-width: 42rem;
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.real-project-figure {
  margin: 0;
}

.real-project-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.55rem;
  border-radius: 0.85rem 0.85rem 5rem;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.real-project-panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 8 / 5;
  border-radius: 0.45rem 0.45rem 2.15rem;
  background: var(--ink);
}

.real-project-panel picture {
  display: block;
  height: 100%;
}

.real-project-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.real-project-panel:last-child img {
  object-position: center 54%;
}

.real-project-label {
  position: absolute;
  bottom: 0.7rem;
  left: 0.7rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 999px;
  background: rgb(22 35 29 / 82%);
  box-shadow: 0 0.25rem 1rem rgb(0 0 0 / 18%);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(0.45rem);
}

.real-project-panel:last-child .real-project-label {
  background: rgb(146 55 34 / 92%);
}

.project-proof-section {
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
}

.project-proof-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 4vw, 3.25rem) clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.project-proof-heading {
  grid-column: 1 / -1;
}

.project-proof-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.7vw, 4.2rem);
}

.project-proof-copy .lede {
  font-size: 1.05rem;
}

.project-image {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

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

.compare-labels {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  pointer-events: none;
}

.compare-labels span {
  justify-self: start;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 999px;
  background: rgb(22 35 29 / 78%);
  box-shadow: 0 0.25rem 1rem rgb(0 0 0 / 15%);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(0.45rem);
}

.compare-labels span:last-child {
  justify-self: end;
  background: rgb(189 81 54 / 88%);
}

.trust-strip {
  padding: 2.2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.trust-item {
  padding: 1.6rem clamp(0.85rem, 2vw, 1.5rem);
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.trust-item span {
  display: block;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.5;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

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

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-dark .eyebrow {
  color: #e98b70;
}

.section-dark .lede,
.section-dark p {
  color: rgb(255 253 249 / 75%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}

.service-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.85rem 0.85rem 3.25rem;
  background: var(--paper-light);
  box-shadow: 0 1rem 2.5rem rgb(22 35 29 / 7%);
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card:hover {
  border-color: rgb(22 35 29 / 28%);
  box-shadow: 0 1.6rem 3.5rem rgb(22 35 29 / 14%);
  transform: translateY(-0.3rem);
}

.service-card:focus-visible {
  outline: 0.2rem solid var(--clay);
  outline-offset: 0.2rem;
}

.service-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink);
}

.service-card-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgb(15 26 21 / 32%));
  content: "";
  pointer-events: none;
}

.service-card-media picture {
  display: block;
  height: 100%;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-card:nth-child(2) .service-card-media img {
  object-position: center 58%;
}

.service-card:hover .service-card-media img {
  transform: scale(1.04);
}

.service-number {
  position: absolute;
  z-index: 1;
  top: 0.85rem;
  left: 0.85rem;
  display: grid;
  width: 2.55rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(255 253 249 / 38%);
  border-radius: 50%;
  background: rgb(15 26 21 / 78%);
  box-shadow: 0 0.4rem 1rem rgb(0 0 0 / 15%);
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-style: italic;
  backdrop-filter: blur(0.35rem);
}

.service-card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.35rem, 2.5vw, 1.8rem);
}

.service-card h3 {
  max-width: 12ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.service-card p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 850;
}

.service-card-cta span {
  color: var(--clay);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.service-card:hover .service-card-cta span {
  transform: translateX(0.25rem);
}

.quality-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(24rem, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.quality-copy h2 {
  max-width: 10ch;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: var(--sand);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.signature-line::before {
  width: 3rem;
  height: 1px;
  background: var(--sand);
  content: "";
}

.quality-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.quality-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line-light);
}

.quality-step > span {
  color: #e98b70;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
}

.quality-step h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.quality-step p {
  font-size: 0.92rem;
}

.projects-stack {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
}

.project-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.project-row:nth-child(even) {
  grid-template-columns: minmax(18rem, 0.55fr) minmax(0, 1.25fr);
}

.project-row:nth-child(even) .project-figure {
  order: 2;
}

.project-figure {
  margin: 0;
}

.project-figure .project-image {
  border-radius: 0.65rem;
}

.project-figure figcaption {
  margin-top: 0.85rem;
  color: var(--sage);
  font-size: 0.78rem;
  line-height: 1.5;
}

.project-copy h3 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.project-copy ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(23rem, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.local-grid h2 {
  max-width: 11ch;
}

.local-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.local-note {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem 0.5rem 2rem;
  background: var(--paper-light);
}

.local-note strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.local-note p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  padding: clamp(2.25rem, 6vw, 5rem);
  border-radius: 0.9rem 0.9rem 5rem;
  background: var(--clay);
  color: var(--white);
}

.cta-card h2 {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  margin-bottom: 0.8rem;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.cta-card p {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  color: rgb(255 253 249 / 82%);
}

.cta-card .button {
  position: relative;
  z-index: 1;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 6vw, 5.5rem) 0;
  background: var(--paper);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(25rem, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3.15rem, 6vw, 5.55rem);
  text-wrap: balance;
}

.page-hero .lede {
  position: relative;
  z-index: 1;
}

.page-hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
}

.page-hero-visual::before {
  position: absolute;
  right: -0.85rem;
  bottom: -0.85rem;
  width: 78%;
  height: 70%;
  border-radius: 1rem 1rem 5rem;
  background: var(--sage-light);
  content: "";
}

.page-hero-visual picture {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 6 / 5;
  border-radius: 0.75rem 0.75rem 4.5rem;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-visual-label {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.55rem 0.85rem;
  border: 1px solid rgb(255 253 249 / 28%);
  border-radius: 999px;
  background: rgb(15 26 21 / 80%);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  backdrop-filter: blur(0.4rem);
}

.page-hero-visual-about img,
.page-hero-visual-contact img {
  object-position: center;
}

.page-hero-visual-exterior img {
  object-position: 68% center;
}

#project-form {
  scroll-margin-top: 2rem;
}

.breadcrumbs {
  margin-bottom: 2rem;
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 700;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.2rem;
}

.jump-nav a {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-light);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.jump-nav a:hover {
  border-color: var(--clay);
  color: var(--clay-dark);
}

.service-detail-list {
  display: grid;
  gap: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(16rem, 0.62fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 2rem;
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail-index {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.service-detail-index::after {
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.service-detail-rail {
  position: sticky;
  top: 7.5rem;
  display: grid;
  gap: 1.1rem;
  min-width: 0;
}

.service-detail-media {
  min-width: 0;
  margin: 0;
}

.service-detail-media picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 0.75rem;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail:nth-child(1) .service-detail-media img {
  object-position: 58% center;
}

.service-detail:nth-child(3) .service-detail-media img {
  object-position: 58% center;
}

.service-detail-media figcaption {
  margin-top: 0.75rem;
  color: var(--sage);
  font-size: 0.76rem;
  line-height: 1.55;
}

.service-detail h2 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
}

.service-detail h3 {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-top: 2rem;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--clay);
  content: "✓";
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: process;
}

.process-card {
  min-height: 17rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem 0.6rem 2.5rem;
  background: var(--paper-light);
  counter-increment: process;
}

.process-card::before {
  display: block;
  margin-bottom: 3rem;
  color: var(--clay);
  content: "0" counter(process);
  font-family: var(--serif);
  font-style: italic;
}

.process-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.process-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 1.8rem;
  color: var(--clay);
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 52rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--ink-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.story-sticky {
  position: sticky;
  top: 2rem;
}

.story-sticky h2 {
  max-width: 10ch;
}

.story-copy > p:first-child {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.45;
}

.story-copy p {
  color: var(--ink-soft);
}

.color-story-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.color-story-copy h2 {
  max-width: 10ch;
}

.color-story-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.color-story-copy .check-list {
  margin-top: 2rem;
}

.color-story-gallery {
  display: grid;
  gap: 1.25rem;
}

.color-story-photo {
  width: 92%;
  margin: 0;
}

.color-story-photo:nth-child(2) {
  justify-self: end;
}

.color-story-photo picture {
  display: block;
  overflow: hidden;
  border: 0.4rem solid var(--paper-light);
  border-radius: 0.7rem 0.7rem 3.5rem;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.color-story-photo:nth-child(2) picture {
  border-radius: 3.5rem 0.7rem 0.7rem;
}

.color-story-photo img {
  width: 100%;
}

.color-story-photo figcaption {
  max-width: 46rem;
  margin-top: 0.7rem;
  color: var(--sage);
  font-size: 0.76rem;
  line-height: 1.5;
}

.quote-card {
  margin: 3rem 0 0;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 0.7rem 0.7rem 3.5rem;
  background: var(--ink);
  color: var(--white);
}

.quote-card blockquote {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.3;
}

.quote-card figcaption {
  color: var(--sand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.principle {
  min-height: 18rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem 0.6rem 2.5rem;
}

.principle span {
  display: block;
  margin-bottom: 4rem;
  color: var(--clay);
  font-family: var(--serif);
  font-style: italic;
}

.principle p {
  color: var(--ink-soft);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.company-fact {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.company-fact:last-child {
  border-right: 0;
}

.company-fact dt {
  margin-bottom: 0.4rem;
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-fact dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.65fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 2rem;
}

.contact-intro h2 {
  max-width: 10ch;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
}

.contact-block {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact-block strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-card {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 0.8rem 0.8rem 4rem;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.contact-form-card > h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.form-intro {
  color: var(--ink-soft);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.form-field {
  min-width: 0;
}

.form-field-full,
.field-message,
.field-website,
.form-status,
.form-actions {
  grid-column: 1 / -1;
}

.form-field label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 850;
}

.optional {
  color: var(--sage);
  font-weight: 600;
}

.required {
  color: var(--clay-dark);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgb(22 35 29 / 25%);
  border-radius: 0.35rem;
  background: var(--white);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  min-height: 3.25rem;
  padding: 0.75rem 0.85rem;
}

.form-field textarea {
  min-height: 10rem;
  padding: 0.85rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgb(189 81 54 / 13%);
  outline: 0;
}

.form-field.invalid input,
.form-field.invalid textarea {
  border-color: var(--error);
}

.field-note {
  display: block;
  min-height: 1.25rem;
  margin-top: 0.35rem;
  color: var(--error);
  font-size: 0.72rem;
  font-weight: 700;
}

.field-website {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  display: none;
  margin: 1.25rem 0;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--error);
  background: rgb(158 47 39 / 8%);
  color: var(--error);
  font-size: 0.85rem;
  font-weight: 700;
}

.form-alert:target,
.form-alert.is-visible {
  display: block;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 750;
}

.form-status.error {
  color: var(--error);
}

.form-status.ok {
  color: var(--success);
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.5rem;
}

.form-note {
  max-width: 31rem;
  margin: 0;
  color: var(--sage);
  font-size: 0.72rem;
  line-height: 1.55;
}

.spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgb(255 255 255 / 45%);
  border-top-color: var(--white);
  border-radius: 50%;
}

.button.loading .spinner {
  display: inline-block;
  animation: spin 750ms linear infinite;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.success-dialog {
  width: min(100% - 2rem, 34rem);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0.8rem 0.8rem 3rem;
  background: var(--paper-light);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.success-dialog::backdrop {
  background: rgb(22 35 29 / 72%);
  backdrop-filter: blur(0.25rem);
}

.success-dialog-shell {
  position: relative;
  padding: clamp(2rem, 7vw, 4rem);
  text-align: center;
}

.success-dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.5rem;
}

.success-dialog-mark {
  display: grid;
  width: 4rem;
  aspect-ratio: 1;
  margin: 0 auto 1.5rem;
  place-items: center;
  border-radius: 48% 52% 46% 54% / 55% 45%;
  background: var(--clay);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  transform: rotate(-5deg);
}

.success-dialog h2 {
  font-size: 3rem;
}

.success-dialog p:not(.eyebrow) {
  color: var(--ink-soft);
}

.legal-copy {
  max-width: 50rem;
}

.legal-copy h2 {
  margin-top: 3rem;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
}

.legal-copy h3 {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.empty-state {
  display: grid;
  min-height: 56vh;
  place-items: center;
  padding: 5rem 0;
  text-align: center;
}

.empty-state-inner {
  max-width: 42rem;
}

.empty-state-code {
  display: block;
  margin-bottom: 1rem;
  color: var(--clay);
  font-family: var(--serif);
  font-size: clamp(4rem, 15vw, 8rem);
  font-style: italic;
  line-height: 1;
}

.empty-state h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 1fr) auto auto;
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: 3rem;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-place {
  color: var(--sand);
}

.footer-brand > p {
  max-width: 28rem;
  margin-top: 1.3rem;
  color: rgb(255 253 249 / 66%);
  font-size: 0.88rem;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-nav strong {
  margin-bottom: 0.4rem;
  color: var(--sand);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgb(255 253 249 / 82%);
  font-size: 0.85rem;
  text-decoration: none;
}

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

.footer-language {
  display: inline-flex;
  width: fit-content;
  margin-block: 0.15rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgb(255 253 249 / 22%);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.footer-brand .footer-language {
  margin-top: 0.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  color: rgb(255 253 249 / 55%);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: inherit;
}

@media (width <= 70rem) {
  .home-hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.42fr);
    gap: 3rem;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
    gap: 3rem;
  }

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

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

@media (width <= 58rem) {
  :root {
    --page: min(100% - 2rem, 76rem);
  }

  .js .nav-toggle {
    display: block;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper-light);
    box-shadow: var(--shadow-sm);
  }

  .js .site-nav.is-open {
    display: grid;
  }

  .js .site-nav a:not(.button) {
    padding: 0.9rem 1rem;
    border-radius: 0.35rem;
  }

  .js .site-nav .button {
    margin: 0.5rem 0 0;
  }

  .home-hero-stage,
  .page-hero-grid,
  .project-proof-grid,
  .quality-grid,
  .local-grid,
  .story-grid,
  .color-story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: 46rem;
    padding-top: 4.5rem;
  }

  .home-hero-media img {
    object-position: 57% center;
  }

  .hero-copy-inverse h1 {
    max-width: 11ch;
  }

  .hero-proof {
    max-width: 27rem;
    justify-self: start;
  }

  .page-hero-visual {
    width: min(100%, 46rem);
  }

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

  .section-heading h2 {
    max-width: 15ch;
  }

  .quality-copy h2 {
    max-width: 13ch;
  }

  .project-row,
  .project-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .project-row:nth-child(even) .project-figure {
    order: initial;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-detail-rail {
    position: static;
    gap: 0.9rem;
  }

  .service-detail-media picture {
    aspect-ratio: 16 / 10;
  }

  .story-sticky,
  .contact-intro {
    position: static;
  }

  .company-facts {
    grid-template-columns: 1fr 1fr;
  }

  .company-fact:nth-child(2) {
    border-right: 0;
  }

  .company-fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (width <= 42rem) {
  h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .header-shell {
    gap: 0.75rem;
  }

  .brand {
    min-width: 0;
    gap: 0.5rem;
  }

  .brand-mark {
    width: 2.85rem;
    height: 2.7rem;
    font-size: 0.8rem;
  }

  .brand-mark::after {
    top: 0.36rem;
    right: 0.42rem;
    width: 0.36rem;
    height: 0.72rem;
  }

  .brand-mark > span {
    transform: translateY(0.32rem);
  }

  .brand-name {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .brand-place {
    display: none;
  }

  .nav-toggle {
    flex: 0 0 3rem;
  }

  .home-hero {
    min-height: auto;
    padding: 3rem 0;
  }

  .home-hero-media img {
    object-position: 63% center;
  }

  .home-hero-shade {
    background: linear-gradient(
      90deg,
      rgb(15 26 21 / 92%),
      rgb(15 26 21 / 62%)
    );
  }

  .home-hero-stage {
    gap: 1.5rem;
  }

  .hero-copy-inverse {
    padding: 1.4rem;
    border-radius: 0.6rem 0.6rem 2.25rem;
  }

  .hero-copy-inverse h1 {
    font-size: clamp(2.85rem, 13vw, 4.15rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-note {
    text-align: center;
  }

  .hero-proof {
    grid-template-columns: 4.7rem 1fr;
    width: 100%;
    max-width: none;
  }

  .page-hero {
    padding-block: 2.5rem 3rem;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .page-hero-grid {
    gap: 2.25rem;
  }

  .page-hero-visual picture {
    aspect-ratio: 16 / 11;
    border-radius: 0.55rem 0.55rem 2.75rem;
  }

  .project-image,
  .project-figure .project-image {
    border-radius: 0.5rem;
  }

  .real-project-pair {
    grid-template-columns: 1fr;
    border-radius: 0.6rem 0.6rem 2.75rem;
  }

  .real-project-panel {
    border-radius: 0.35rem 0.35rem 1.75rem;
  }

  .color-story-photo {
    width: 100%;
  }

  .color-story-photo picture,
  .color-story-photo:nth-child(2) picture {
    border-radius: 0.5rem 0.5rem 2.5rem;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .local-notes,
  .principles-grid,
  .detail-columns,
  .process-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .principle span {
    margin-bottom: 2.5rem;
  }

  .process-card {
    min-height: auto;
  }

  .process-card::before {
    margin-bottom: 2rem;
  }

  .form-field,
  .form-field-full,
  .field-message,
  .form-status,
  .form-actions {
    grid-column: 1;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .button {
    width: 100%;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

  .company-fact,
  .company-fact:nth-child(2) {
    border-right: 0;
  }

  .company-fact:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .cta-card {
    border-radius: 0.7rem 0.7rem 3rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@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,
  .site-footer,
  .hero-actions,
  .cta {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .page-hero {
    padding: 2rem 0;
  }
}
