:root {
  --ink: #222421;
  --ink-soft: #565951;
  --graphite: #292b28;
  --stone: #d8d0c2;
  --sand: #b49a76;
  --bronze: #8a7254;
  --ivory: #f5f2eb;
  --ivory-deep: #ece6dc;
  --white: #fffdfa;
  --line: rgba(34, 36, 33, 0.15);
  --line-light: rgba(255, 253, 250, 0.2);
  --shadow: 0 24px 70px rgba(31, 33, 30, 0.1);
  --radius-sm: 0.35rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.15rem;
  --container: min(90rem, calc(100% - 3rem));
  --container-narrow: min(72rem, calc(100% - 3rem));
  --section: clamp(5rem, 9vw, 9rem);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

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

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

:focus-visible {
  outline: 3px solid #b58b4d;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--graphite);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.container--narrow {
  width: var(--container-narrow);
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.section--tight {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.section--dark {
  color: var(--white);
  background: var(--graphite);
}

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

.section--stone {
  background: var(--ivory-deep);
}

.eyebrow {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 1.15rem;
  color: var(--bronze);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.section--dark .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow {
  color: #d8c5a8;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.35rem, 7vw, 7.6rem);
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.45rem, 5vw, 5.1rem);
}

h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
}

h4 {
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

p {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
}

.section--dark p,
.page-hero p,
.hero p,
.media-copy p {
  color: rgba(255, 253, 250, 0.76);
}

.lead {
  max-width: 44rem;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.text-large {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.6;
}

.max-copy {
  max-width: 42rem;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--graphite);
}

.button--primary:hover {
  background: #10110f;
}

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

.button--light:hover {
  background: var(--ivory);
}

.button--outline {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

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

.button--bronze {
  color: var(--white);
  background: var(--bronze);
}

.button--bronze:hover {
  background: #6f5a41;
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translate(0.15rem, -0.15rem);
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 235, 0.96);
}

.site-header--overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom-color: var(--line-light);
  background: linear-gradient(to bottom, rgba(18, 19, 17, 0.62), transparent);
}

.header-inner {
  display: grid;
  min-height: 5.75rem;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid currentColor;
  place-items: center;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.12em;
}

.brand__mark span {
  transform: translateX(-0.05rem);
}

.brand__text {
  display: grid;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand__text small {
  margin-top: 0.25rem;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  opacity: 0.7;
}

.desktop-nav {
  justify-self: center;
}

.desktop-nav ul,
.footer-nav,
.contact-list,
.check-list,
.plain-list,
.zone-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-nav ul {
  display: flex;
  gap: clamp(1rem, 2vw, 2.3rem);
  align-items: center;
}

.desktop-nav a {
  position: relative;
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.65rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.header-phone {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(56rem, 100svh);
  color: var(--white);
  background: #222;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 19, 17, 0.78) 0%, rgba(18, 19, 17, 0.3) 48%, rgba(18, 19, 17, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 19, 17, 0.72) 0%, transparent 48%);
  content: "";
}

.hero__media,
.hero__media picture,
.hero__media img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 10rem;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  align-content: end;
}

.hero h1 {
  max-width: 69rem;
  margin-bottom: 1.5rem;
}

.hero__intro {
  display: grid;
  max-width: 70rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
}

.hero__intro p {
  max-width: 38rem;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero__note {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line-light);
}

.hero__note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.hero__actions {
  margin-top: 2rem;
}

.trust-bar {
  color: var(--white);
  background: var(--graphite);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 8.5rem;
  padding: 1.7rem 1.4rem;
  border-left: 1px solid var(--line-light);
}

.trust-item:last-child {
  border-right: 1px solid var(--line-light);
}

.trust-item__number {
  display: block;
  margin-bottom: 0.5rem;
  color: #d8c5a8;
  font-family: var(--display);
  font-size: 2rem;
}

.trust-item p {
  margin: 0;
  color: rgba(255, 253, 250, 0.75);
  font-size: 0.88rem;
  line-height: 1.5;
}

.intro-grid,
.split-grid,
.contact-grid,
.feature-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
}

.intro-grid {
  align-items: start;
}

.intro-grid h2 {
  max-width: 46rem;
}

.fact-row {
  display: grid;
  margin-top: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fact {
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.fact strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
}

.fact span {
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.35;
}

.section-heading {
  display: flex;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.section-heading h2 {
  max-width: 56rem;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 31rem;
  margin-bottom: 0;
}

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

.service-card {
  position: relative;
  min-height: 33rem;
  grid-column: span 4;
  color: var(--white);
  background: #333;
  overflow: hidden;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  min-height: 28rem;
  grid-column: span 6;
}

.service-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 21, 19, 0.86), rgba(20, 21, 19, 0.05) 64%);
  content: "";
}

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

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

.service-card__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.service-card__index {
  display: block;
  margin-bottom: 0.85rem;
  color: #d8c5a8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.service-card h3 {
  max-width: 25rem;
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.service-card p {
  max-width: 28rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 253, 250, 0.75);
  font-size: 0.93rem;
}

.service-card .text-link {
  color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.project-stack {
  display: grid;
  gap: 1rem;
}

.project-card {
  position: relative;
  min-height: 30rem;
  background: var(--graphite);
  overflow: hidden;
}

.project-card--large {
  min-height: 46rem;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-card__caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  padding: 1rem 1.1rem;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  color: var(--white);
  background: rgba(29, 30, 27, 0.77);
  backdrop-filter: blur(10px);
}

.project-card__caption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
}

.project-card__caption span {
  color: rgba(255, 253, 250, 0.66);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-list {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 17rem;
  padding: 2.25rem 2rem 2rem;
  border-top: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  counter-increment: process;
}

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

.process-step:nth-child(3n + 1) {
  border-left: 1px solid var(--line-light);
}

.process-step::before {
  display: block;
  margin-bottom: 2rem;
  color: #d8c5a8;
  content: "0" counter(process);
  font-family: var(--display);
  font-size: 1.9rem;
}

.process-step h3 {
  font-size: 1.8rem;
}

.process-step p {
  margin: 0;
  font-size: 0.92rem;
}

.media-section {
  display: grid;
  min-height: 46rem;
  grid-template-columns: 1.15fr 0.85fr;
  color: var(--white);
  background: var(--graphite);
}

.media-section__image {
  min-height: 34rem;
}

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

.media-copy {
  display: grid;
  padding: clamp(3rem, 7vw, 8rem);
  align-content: center;
}

.media-copy h2 {
  max-width: 38rem;
}

.benefit-list {
  display: grid;
  margin-top: 1.6rem;
  gap: 1rem;
}

.benefit {
  display: grid;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 2.2rem 1fr;
  gap: 0.8rem;
}

.benefit__mark {
  color: #d8c5a8;
  font-family: var(--display);
  font-size: 1.3rem;
}

.benefit strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--white);
}

.benefit p {
  margin: 0;
  font-size: 0.9rem;
}

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

.testimonial {
  display: flex;
  min-height: 24rem;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 253, 250, 0.46);
}

.testimonial__quote {
  margin-bottom: 2.5rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.35;
}

.testimonial__label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--bronze);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial__meta {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

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

.faq-item summary {
  display: grid;
  padding: 1.4rem 0;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-width: 52rem;
  padding: 0 0 1.65rem;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.contact-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--white);
  background: var(--graphite);
  overflow: hidden;
}

.contact-panel::before {
  position: absolute;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(216, 197, 168, 0.17);
  border-radius: 50%;
  content: "";
  top: -12rem;
  right: -8rem;
}

.contact-panel h2 {
  position: relative;
  max-width: 45rem;
}

.contact-panel > p {
  max-width: 38rem;
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  margin-top: 2.5rem;
  gap: 1rem;
}

.contact-detail {
  display: grid;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
}

.contact-detail span {
  color: #d8c5a8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail address {
  color: var(--white);
  font-style: normal;
  text-decoration: none;
}

.form {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  color: var(--ink);
  background: var(--white);
}

.form h3 {
  font-size: 2rem;
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

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

.field label,
.choice-label {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--bronze);
  outline: 1px solid var(--bronze);
  outline-offset: 0;
}

.form__consent {
  display: grid;
  margin: 1rem 0 1.25rem;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.form__consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--bronze);
}

.form__note {
  margin: 0.8rem 0 0;
  font-size: 0.72rem;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 39rem;
  color: var(--white);
  background: var(--graphite);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 19, 17, 0.83), rgba(18, 19, 17, 0.19));
  content: "";
}

.page-hero__media,
.page-hero__media img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.page-hero__media img {
  object-fit: cover;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 72rem;
  padding-top: 7rem;
  padding-bottom: 4rem;
  align-content: end;
}

.page-hero h1 {
  max-width: 63rem;
  margin-bottom: 1.25rem;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
}

.page-hero p {
  max-width: 42rem;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  padding-top: 7rem;
  margin: 0;
  gap: 0.55rem;
  align-items: center;
  color: rgba(255, 253, 250, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

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

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: start;
}

.content-aside {
  position: sticky;
  top: 2rem;
}

.content-aside h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.prose {
  max-width: 52rem;
}

.prose h2 {
  margin-top: 3.5rem;
  font-size: clamp(2rem, 3.7vw, 3.4rem);
}

.prose h3 {
  margin-top: 2.2rem;
}

.prose p,
.prose li {
  font-size: 1.05rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.check-list {
  display: grid;
  margin: 1.75rem 0;
  gap: 0.75rem;
}

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

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

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

.scope-card,
.value-card,
.zone-card {
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.45);
}

.scope-card__number {
  display: block;
  margin-bottom: 2.3rem;
  color: var(--bronze);
  font-family: var(--display);
  font-size: 1.75rem;
}

.scope-card h3,
.value-card h3,
.zone-card h3 {
  font-size: 1.75rem;
}

.scope-card p:last-child,
.value-card p:last-child,
.zone-card p:last-child {
  margin-bottom: 0;
}

.image-band {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
}

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

.image-band__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  max-width: 31rem;
  padding: 1.25rem 1.4rem;
  color: var(--white);
  background: rgba(29, 30, 27, 0.78);
  backdrop-filter: blur(12px);
}

.image-band__caption p {
  margin: 0;
  color: rgba(255, 253, 250, 0.76);
  font-size: 0.9rem;
}

.image-band__caption strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.quote-block {
  padding: clamp(2.5rem, 6vw, 6rem);
  color: var(--white);
  background: var(--graphite);
}

.quote-block blockquote {
  max-width: 66rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.quote-block footer {
  margin-top: 1.5rem;
  color: #d8c5a8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.feature-item h3 {
  margin-bottom: 0.3rem;
  font-size: 1.7rem;
}

.feature-item p {
  margin: 0;
}

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

.gallery__item {
  position: relative;
  min-height: 27rem;
  grid-column: span 6;
  background: var(--graphite);
  overflow: hidden;
}

.gallery__item:nth-child(3n + 1) {
  grid-column: span 7;
}

.gallery__item:nth-child(3n + 2) {
  grid-column: span 5;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery__item:hover img {
  transform: scale(1.025);
}

.gallery__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2rem 1.5rem 1.4rem;
  color: var(--white);
  background: linear-gradient(transparent, rgba(20, 21, 19, 0.83));
}

.gallery__caption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.gallery__caption span {
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

.zone-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.notice {
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--bronze);
  background: var(--ivory-deep);
}

.notice p:last-child {
  margin-bottom: 0;
}

.legal {
  max-width: 54rem;
}

.legal h2 {
  margin-top: 3rem;
  font-size: 2.2rem;
}

.legal h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.site-footer {
  padding-top: clamp(4rem, 7vw, 7rem);
  color: var(--white);
  background: #1c1d1b;
}

.footer-top {
  display: grid;
  padding-bottom: 4rem;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-brand p {
  max-width: 25rem;
  margin-top: 1.5rem;
  color: rgba(255, 253, 250, 0.62);
  font-size: 0.9rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.footer-nav a,
.contact-list a,
.contact-list address {
  color: rgba(255, 253, 250, 0.69);
  font-size: 0.88rem;
  font-style: normal;
  text-decoration: none;
}

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

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.footer-bottom {
  display: flex;
  min-height: 5rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line-light);
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  color: rgba(255, 253, 250, 0.53);
  font-size: 0.72rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  z-index: 25;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  gap: 0.55rem;
  align-items: center;
  color: var(--white);
  background: #263e34;
  box-shadow: 0 12px 30px rgba(14, 22, 18, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  background: #192c24;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.center {
  text-align: center;
}

.center .lead,
.center .max-copy {
  margin-inline: auto;
}

.spacer-top {
  margin-top: 2rem;
}

@media (max-width: 76rem) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    padding: 0.65rem 0.9rem;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(22rem, calc(100vw - 2rem));
    padding: 1rem;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu ul {
    display: grid;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .mobile-menu a {
    display: block;
    padding: 0.85rem 0.55rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.83rem;
    font-weight: 650;
    text-decoration: none;
  }

  .mobile-menu li:last-child a {
    border-bottom: 0;
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card:last-child {
    grid-column: span 12;
  }

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

@media (max-width: 58rem) {
  :root {
    --container: min(100% - 2rem, 90rem);
    --container-narrow: min(100% - 2rem, 72rem);
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 50rem;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(18, 19, 17, 0.86) 0%, rgba(18, 19, 17, 0.18) 68%),
      linear-gradient(90deg, rgba(18, 19, 17, 0.38), transparent);
  }

  .hero__media img {
    object-position: center;
  }

  .hero__intro,
  .intro-grid,
  .split-grid,
  .contact-grid,
  .feature-split,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero__note {
    display: none;
  }

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

  .trust-item:nth-child(3) {
    border-top: 1px solid var(--line-light);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line-light);
    border-right: 1px solid var(--line-light);
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:last-child {
    min-height: 30rem;
    grid-column: span 12;
  }

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

  .project-card--large {
    min-height: 37rem;
  }

  .media-section__image {
    min-height: 30rem;
  }

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

  .process-step,
  .process-step:nth-child(-n + 3),
  .process-step:nth-child(3n + 1) {
    border: 0;
    border-top: 1px solid var(--line-light);
    border-right: 1px solid var(--line-light);
  }

  .process-step:nth-child(odd) {
    border-left: 1px solid var(--line-light);
  }

  .process-step:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .testimonials,
  .scope-grid,
  .value-grid,
  .zone-grid {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
  }

  .gallery__item,
  .gallery__item:nth-child(3n + 1),
  .gallery__item:nth-child(3n + 2) {
    min-height: 25rem;
    grid-column: span 12;
  }

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

@media (max-width: 40rem) {
  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .site-header {
    background: rgba(245, 242, 235, 0.98);
  }

  .site-header--overlay {
    color: var(--white);
    background: linear-gradient(to bottom, rgba(18, 19, 17, 0.72), transparent);
  }

  .header-inner {
    min-height: 5.1rem;
    gap: 0.65rem;
  }

  .brand__mark {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand__text {
    font-size: 0.7rem;
  }

  .brand__text small {
    display: none;
  }

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

  .hero {
    min-height: 47rem;
  }

  .hero__content {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    margin-bottom: 1.1rem;
  }

  .hero__actions {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-item {
    min-height: 7.5rem;
    padding: 1.25rem 1rem;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    min-height: 27rem;
  }

  .project-card,
  .project-card--large {
    min-height: 30rem;
  }

  .project-card__caption {
    display: block;
  }

  .project-card__caption span {
    display: block;
    margin-top: 0.25rem;
  }

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

  .process-step,
  .process-step:nth-child(-n + 3),
  .process-step:nth-child(3n + 1),
  .process-step:nth-child(odd),
  .process-step:nth-last-child(-n + 2) {
    min-height: auto;
    border: 0;
    border-top: 1px solid var(--line-light);
  }

  .process-step:last-child {
    border-bottom: 1px solid var(--line-light);
  }

  .media-section__image {
    min-height: 24rem;
  }

  .media-copy {
    padding: 3rem 1.25rem;
  }

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

  .field--full {
    grid-column: auto;
  }

  .contact-detail {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .page-hero {
    min-height: 34rem;
  }

  .page-hero__content {
    padding-bottom: 3rem;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .breadcrumbs {
    padding-top: 6rem;
  }

  .image-band {
    min-height: 27rem;
  }

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

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

  .footer-bottom {
    display: grid;
  }

  .whatsapp-float {
    width: 3.25rem;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    white-space: nowrap;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

