:root {
  --ink: #f4efdf;
  --muted: #d2c9a9;
  --gold: #b58b3c;
  --olive: #9da37c;
  --moss: #232718;
  --moss-deep: #14180f;
  --button: #898d63;
  --panel: rgba(20, 24, 15, 0.78);
  color-scheme: dark;
  font-family: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 88% 78%, rgba(103, 111, 72, 0.22), transparent 32rem),
    linear-gradient(135deg, #1d2114 0%, var(--moss-deep) 100%);
  color: var(--ink);
}

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

.site-shell {
  position: relative;
  width: min(100%, 1180px);
  min-height: 100svh;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(27, 31, 19, 0.94), rgba(18, 21, 14, 0.98));
}

.hero {
  position: relative;
  min-height: 75svh;
  padding: 2.25rem 1.4rem 1.4rem;
  isolation: isolate;
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/images/hero-entry.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.95;
  transform: translate3d(0, var(--hero-parallax-y, 0), 0) scale(var(--hero-parallax-scale, 1.12));
  transform-origin: center top;
  will-change: transform;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(15, 18, 11, 0.86) 0%, rgba(15, 18, 11, 0.2) 35%, rgba(16, 19, 12, 0.94) 78%),
    linear-gradient(90deg, rgba(13, 17, 10, 0.72), rgba(13, 17, 10, 0.14) 56%, rgba(13, 17, 10, 0.58));
}

.hero__leaf {
  position: absolute;
  right: -2.8rem;
  bottom: -1.2rem;
  z-index: -1;
  width: 13rem;
  aspect-ratio: 1;
  opacity: 0.11;
  background: url("assets/icons/leaf-watermark.svg") center / contain no-repeat;
  transform: rotate(-18deg);
}

.hero__content {
  display: grid;
  min-height: calc(75svh - 3.65rem);
  align-content: space-between;
  gap: 2rem;
  padding-top: 12.5rem;
}

.brand {
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

header.brand {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  display: grid;
  justify-items: center;
  width: min(100%, 1180px);
  padding: 0.8rem 1rem 0.95rem;
  background: rgba(20, 24, 15, 0.94);
  box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.26);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  transition:
    padding 360ms ease,
    background 360ms ease,
    box-shadow 360ms ease;
}

.brand__identity {
  width: 11rem;
  margin: 0 auto;
  color: inherit;
  text-decoration: none;
  transition: width 360ms ease;
}

.brand__identity:focus-visible {
  border-radius: 0.2rem;
  outline: 2px solid rgba(244, 239, 223, 0.72);
  outline-offset: 0.45rem;
}

.menu-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid rgba(181, 139, 60, 0.42);
  border-radius: 0;
  padding: 0.65rem;
  background: rgba(20, 24, 15, 0.72);
  cursor: pointer;
}

.menu-toggle__bar {
  grid-area: 1 / 1;
  width: 1.25rem;
  height: 2px;
  background: var(--ink);
  transform-origin: center;
  transition: opacity 260ms ease, transform 320ms ease, background 260ms ease;
}

.menu-toggle__bar:nth-child(1) {
  transform: translateY(-0.42rem);
}

.menu-toggle__bar:nth-child(3) {
  transform: translateY(0.42rem);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg);
}

.menu-toggle:focus-visible,
.menu-toggle:hover {
  outline: 2px solid rgba(244, 239, 223, 0.72);
  outline-offset: 3px;
}

.menu-toggle:focus-visible .menu-toggle__bar,
.menu-toggle:hover .menu-toggle__bar {
  background: var(--gold);
}

.menu-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-nav {
  display: grid;
  width: min(25rem, calc(100vw - 2.5rem));
  gap: 0.15rem;
  max-height: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: rgba(20, 24, 15, 0.96);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  margin: 0;
  transform: translateY(-0.6rem);
  transition:
    max-height 380ms ease,
    margin 320ms ease,
    opacity 260ms ease,
    transform 320ms ease,
    border-color 260ms ease,
    box-shadow 320ms ease;
}

.site-nav.is-open {
  max-height: 18rem;
  border-color: rgba(181, 139, 60, 0.42);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.34);
  opacity: 1;
  pointer-events: auto;
  margin-top: 0.85rem;
  transform: translateY(0);
}

.site-nav a {
  display: block;
  padding: 0.9rem 1rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:focus-visible,
.site-nav a:hover {
  background: rgba(181, 139, 60, 0.22);
  color: #fff9ea;
  outline: 0;
}

.brand__mark {
  width: 6.1rem;
  margin: 0 auto 0.35rem;
  transition: width 360ms ease, margin 360ms ease;
}

.brand__name {
  margin: 0;
  font-size: clamp(1rem, 5.8vw, 1.45rem);
  line-height: 1;
  text-align: center;
  transition: font-size 360ms ease;
}

.brand__subname {
  position: relative;
  width: fit-content;
  margin: 0.36rem auto 0;
  padding: 0 0.55rem;
  color: var(--muted);
  font-size: 0.53rem;
  letter-spacing: 0.58em;
  line-height: 1;
  transition: font-size 360ms ease, margin 360ms ease;
}

.brand__subname::before,
.brand__subname::after {
  position: absolute;
  top: 50%;
  width: 1.1rem;
  height: 1px;
  background: var(--gold);
  content: "";
}

.brand__subname::before {
  right: 100%;
}

.brand__subname::after {
  left: 100%;
}

.brand__estimate {
  display: grid;
  width: min(25rem, calc(100vw - 2.5rem));
  gap: 0.38rem;
  margin: 0.85rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(181, 139, 60, 0.45);
  background: rgba(20, 24, 15, 0.86);
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.26);
  transition:
    width 360ms ease,
    gap 360ms ease,
    margin 360ms ease,
    padding 360ms ease,
    font-size 360ms ease,
    letter-spacing 360ms ease,
    line-height 360ms ease,
    box-shadow 360ms ease;
}

.brand__estimate a {
  color: var(--gold);
  font-size: 1.75rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  white-space: nowrap;
  transition: font-size 360ms ease, letter-spacing 360ms ease;
}

.brand__estimate-text {
  display: grid;
  gap: 0.1rem;
  transition: gap 360ms ease;
}

.brand__estimate-text span {
  white-space: nowrap;
}

.brand__estimate a:focus-visible,
.brand__estimate a:hover {
  color: var(--ink);
  outline: 2px solid rgba(244, 239, 223, 0.72);
  outline-offset: 3px;
}

@media (max-width: 859px) {
  header.brand.is-gallery-compact {
    padding: 0.5rem 0.75rem 0.62rem;
  }

  header.brand.is-gallery-compact + .service-page {
    padding-top: 12.25rem;
  }

  header.brand.is-gallery-compact .brand__identity {
    width: 8.1rem;
  }

  header.brand.is-gallery-compact .brand__mark {
    width: 4.5rem;
    margin-bottom: 0.2rem;
  }

  header.brand.is-gallery-compact .brand__name {
    font-size: clamp(0.8rem, 4.3vw, 1.03rem);
  }

  header.brand.is-gallery-compact .brand__subname {
    margin-top: 0.26rem;
    font-size: 0.42rem;
  }

  header.brand.is-gallery-compact .brand__estimate {
    width: min(25rem, calc(100vw - 1.5rem));
    gap: 0.22rem;
    margin-top: 0.5rem;
    padding: 0.52rem 0.55rem;
    font-size: clamp(0.56rem, 2.55vw, 0.76rem);
    letter-spacing: 0.045em;
    line-height: 1.18;
  }

  header.brand.is-gallery-compact .brand__estimate-text {
    grid-template-columns: max-content max-content;
    justify-content: center;
    gap: 0.25em;
  }

  header.brand.is-gallery-compact .brand__estimate a {
    font-size: clamp(0.88rem, 4.8vw, 1.12rem);
    letter-spacing: 0.08em;
  }
}

.intro {
  max-width: 26rem;
  padding-top: 3.4rem;
}

.intro h1 {
  max-width: 8.5em;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.15rem, 16vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.intro__kicker {
  width: fit-content;
  margin: 0.85rem 0 0;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.55rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 4vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.intro__copy {
  max-width: 23rem;
  margin: 0.9rem 0 0;
  color: #fff9ea;
  font-size: 0.87rem;
  line-height: 1.35;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services li {
  display: grid;
  min-height: 5.4rem;
  align-content: end;
  justify-items: center;
  border-left: 1px solid rgba(244, 239, 223, 0.22);
  padding: 0 0.3rem;
  text-align: center;
}

.services li:first-child {
  border-left: 0;
}

.services img {
  width: min(3.7rem, 21vw);
  height: 3rem;
  object-fit: contain;
}

.services span {
  margin-top: 0.3rem;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.projects {
  position: relative;
  padding: 0 0 1.7rem;
  background: rgba(14, 17, 10, 0.92);
}

.projects h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(181, 139, 60, 0.24);
  border-bottom: 1px solid rgba(181, 139, 60, 0.24);
}

.project-card {
  position: relative;
  min-width: 0;
  margin: 0;
  border-left: 1px solid var(--moss-deep);
  overflow: hidden;
  background: #16190f;
}

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

.project-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.project-card h3 {
  position: absolute;
  inset: auto 0 0;
  margin: 0;
  padding: 1.1rem 0.45rem 0.45rem;
  background: linear-gradient(180deg, transparent, rgba(13, 16, 9, 0.8));
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 260ms ease, transform 260ms ease;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(12.2rem, calc(100% - 3rem));
  min-height: 2.6rem;
  margin: 1.1rem auto 0;
  gap: 1.8rem;
  background: linear-gradient(180deg, #969a72, var(--button));
  color: #fff9ea;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 200ms ease, filter 200ms ease;
}

.button img {
  width: 1.7rem;
}

.button:focus-visible,
.button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  outline: 2px solid rgba(244, 239, 223, 0.72);
  outline-offset: 3px;
}

.project-card:focus-within img,
.project-card:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.035);
}

.project-card:focus-within h3,
.project-card:hover h3,
.is-touch .project-card h3 {
  opacity: 1;
  transform: translateY(0);
}

.gallery {
  padding: 3rem 1rem 3.5rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(157, 163, 124, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(20, 24, 15, 0.98), #10130c);
}

.gallery__header {
  width: min(100%, 58rem);
  margin: 0 auto 1.2rem;
}

.gallery__header p {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 10vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.55rem;
  width: min(100%, 58rem);
  margin: 0 auto;
}

.gallery__item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #16190f;
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: filter 320ms ease, transform 420ms ease;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--wide img {
  aspect-ratio: 16 / 9;
}

.gallery__item--tall img {
  aspect-ratio: 4 / 5;
}

.gallery__item:focus-within img,
.gallery__item:hover img {
  filter: saturate(1.02) contrast(1.05);
  transform: scale(1.025);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 0;
  background: rgba(8, 10, 6, 0.9);
  cursor: zoom-out;
  touch-action: pan-y;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 72rem);
  max-height: calc(100svh - 2rem);
  object-fit: contain;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.45);
}

.lightbox__close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(244, 239, 223, 0.42);
  background: rgba(20, 24, 15, 0.76);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.34);
}

.lightbox__arrow {
  position: fixed;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(2.65rem, 12vw, 4rem);
  height: clamp(2.65rem, 12vw, 4rem);
  border: 1px solid rgba(244, 239, 223, 0.38);
  border-radius: 999px;
  background: rgba(20, 24, 15, 0.7);
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(2.1rem, 9vw, 3.6rem);
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.34);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.lightbox__arrow--previous {
  left: max(0.7rem, env(safe-area-inset-left));
}

.lightbox__arrow--next {
  right: max(0.7rem, env(safe-area-inset-right));
}

.lightbox__arrow:focus-visible,
.lightbox__arrow:hover {
  background: rgba(181, 139, 60, 0.82);
  color: #fff9ea;
  outline: 2px solid rgba(244, 239, 223, 0.72);
  outline-offset: 3px;
}

body.has-lightbox {
  overflow: hidden;
}

.service-page {
  padding: 16.5rem 1.25rem 3.5rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(157, 163, 124, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(20, 24, 15, 0.98), #10130c);
}

.service-detail {
  width: min(100%, 58rem);
  margin: 0 auto;
}

.service-detail__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-detail h1 {
  max-width: 11em;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 13vw, 6.4rem);
  line-height: 0.92;
}

.service-detail__summary {
  max-width: 44rem;
  margin: 1.15rem 0 0;
  color: #fff9ea;
  font-size: clamp(1rem, 3.8vw, 1.25rem);
  line-height: 1.45;
}

.service-detail__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.service-detail__panel {
  border-top: 1px solid rgba(181, 139, 60, 0.38);
  padding-top: 1rem;
}

.service-detail__panel h2 {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-detail__panel ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail__panel li {
  color: var(--ink);
  line-height: 1.35;
}

.service-detail__panel li::before {
  color: var(--gold);
  content: "+ ";
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.service-detail__actions .button {
  width: auto;
  min-width: 12rem;
  margin: 0;
  padding: 0.2rem 1.2rem;
}

.service-detail__actions a:not(.button) {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-detail__actions a:not(.button):focus-visible,
.service-detail__actions a:not(.button):hover {
  color: var(--ink);
  outline: 2px solid rgba(244, 239, 223, 0.72);
  outline-offset: 3px;
}

.service-index {
  width: min(100%, 64rem);
  margin: 0 auto;
}

.service-index__intro {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.service-index__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-index h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 13vw, 6.4rem);
  line-height: 0.92;
}

.service-index__summary {
  margin: 1.15rem 0 0;
  color: #fff9ea;
  font-size: clamp(1rem, 3.8vw, 1.25rem);
  line-height: 1.45;
}

.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.service-tile {
  position: relative;
  min-height: 12rem;
  overflow: hidden;
  background: #16190f;
  color: var(--ink);
  isolation: isolate;
  text-decoration: none;
}

.service-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
  transform: scale(1.01);
  transition: filter 420ms ease, transform 520ms ease;
}

.service-tile::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(12, 15, 9, 0.06), rgba(12, 15, 9, 0.86)),
    linear-gradient(90deg, rgba(12, 15, 9, 0.58), rgba(12, 15, 9, 0.14));
  content: "";
  transition: background 420ms ease;
}

.service-tile__caption {
  display: grid;
  min-height: 12rem;
  align-content: end;
  gap: 0.45rem;
  padding: 1rem;
  transform: translateY(0.25rem);
  transition: transform 320ms ease;
}

.service-tile__caption strong {
  font-size: clamp(1.05rem, 4.8vw, 1.55rem);
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-tile__caption span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-tile:focus-visible {
  outline: 2px solid rgba(244, 239, 223, 0.82);
  outline-offset: 4px;
}

.service-tile:focus-visible img,
.service-tile:hover img {
  filter: saturate(1.05) contrast(1.1);
  transform: scale(1.08);
}

.service-tile:focus-visible::before,
.service-tile:hover::before {
  background:
    linear-gradient(180deg, rgba(12, 15, 9, 0), rgba(12, 15, 9, 0.74)),
    linear-gradient(90deg, rgba(181, 139, 60, 0.32), rgba(12, 15, 9, 0.16));
}

.service-tile:focus-visible .service-tile__caption,
.service-tile:hover .service-tile__caption {
  transform: translateY(0);
}

.about-template {
  max-width: 48rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(181, 139, 60, 0.38);
  padding-top: 1.2rem;
}

.about-template h2,
.team-section h2 {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-template p {
  margin: 0;
  color: #fff9ea;
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  line-height: 1.5;
}

.team-section {
  margin-top: 2.4rem;
}

.team-grid {
  display: grid;
  gap: 1rem;
}

.team-card {
  display: grid;
  gap: 1rem;
  border-top: 1px solid rgba(181, 139, 60, 0.38);
  padding-top: 1rem;
}

.team-card__photo {
  display: grid;
  min-height: 18rem;
  place-items: center;
  border: 1px solid rgba(244, 239, 223, 0.16);
  background:
    linear-gradient(135deg, rgba(157, 163, 124, 0.22), rgba(20, 24, 15, 0.76)),
    radial-gradient(circle at 70% 20%, rgba(181, 139, 60, 0.18), transparent 15rem);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 9vw, 3.5rem);
  line-height: 0.95;
}

.team-card__role {
  margin: 0.35rem 0 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.team-card__bio {
  margin: 0.8rem 0 0;
  color: #fff9ea;
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  margin-top: 2.4rem;
}

.contact-panel {
  border-top: 1px solid rgba(181, 139, 60, 0.38);
  padding-top: 1.2rem;
}

.contact-panel h2,
.contact-form h2 {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

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

.contact-list dt {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: #fff9ea;
  font-size: clamp(1rem, 4vw, 1.25rem);
  line-height: 1.25;
}

.contact-list a,
.social-links a {
  color: var(--ink);
  text-decoration: none;
}

.contact-list a:focus-visible,
.contact-list a:hover,
.social-links a:focus-visible,
.social-links a:hover {
  color: var(--gold);
  outline: 2px solid rgba(244, 239, 223, 0.72);
  outline-offset: 3px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.social-links a {
  border: 1px solid rgba(181, 139, 60, 0.42);
  padding: 0.65rem 0.8rem;
  background: rgba(20, 24, 15, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  border-top: 1px solid rgba(181, 139, 60, 0.38);
  padding-top: 1.2rem;
}

.contact-form form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(244, 239, 223, 0.2);
  border-radius: 0;
  padding: 0.9rem;
  background: rgba(10, 12, 7, 0.58);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
}

.contact-form textarea {
  min-height: 14rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(181, 139, 60, 0.72);
  outline: 2px solid rgba(244, 239, 223, 0.34);
  outline-offset: 2px;
}

.contact-form .button {
  width: 100%;
  min-width: 12rem;
  margin: 0;
  border: 0;
  padding: 0.2rem 1.2rem;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  filter: saturate(0.7) brightness(0.82);
}

.contact-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

@media (min-width: 560px) {
  .site-shell {
    box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.4);
  }

  .hero {
    padding: 3rem clamp(2rem, 6vw, 5rem) 2rem;
  }

  .hero__content {
    min-height: 40rem;
  }

  .intro {
    padding-top: 9rem;
  }

  .services {
    max-width: 38rem;
  }

  .projects {
    padding-bottom: 2.5rem;
  }

  .gallery {
    padding: 4rem clamp(2rem, 5vw, 4rem) 4.5rem;
  }

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

  .gallery__item--tall {
    grid-row: span 2;
  }

  .gallery__item--tall img {
    aspect-ratio: 1 / 1.35;
  }

  .service-page {
    padding: 16.5rem clamp(2rem, 5vw, 4rem) 5rem;
  }

  .service-detail__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

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

  .service-tile,
  .service-tile__caption {
    min-height: 14rem;
  }

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

  .contact-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1.6rem;
  }
}

@media (min-width: 860px) {
  .site-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: 82svh;
  }

  .hero__photo {
    background-size: cover;
    background-position: center top;
    opacity: 0.9;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(15, 18, 11, 0.92) 0%, rgba(15, 18, 11, 0.72) 38%, rgba(15, 18, 11, 0.26) 100%),
      linear-gradient(180deg, rgba(15, 18, 11, 0.5), rgba(15, 18, 11, 0.92) 92%);
  }

  .hero__content {
    width: min(42rem, 58vw);
  }

  header.brand {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
    width: min(100%, 1180px);
    column-gap: clamp(1.4rem, 3vw, 2.6rem);
    row-gap: 0.75rem;
    padding: 0.85rem clamp(2rem, 6vw, 5rem);
  }

  .brand__identity {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    grid-column: 2;
    grid-row: 2;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    max-height: none;
    overflow: visible;
    width: 100%;
    border: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .site-nav a {
    padding: 0.7rem clamp(0.5rem, 1.2vw, 0.95rem);
    font-size: 0.82rem;
    letter-spacing: 0.13em;
    white-space: nowrap;
  }

  .site-nav a:focus-visible,
  .site-nav a:hover {
    background: transparent;
    color: var(--gold);
    outline: 2px solid rgba(244, 239, 223, 0.72);
    outline-offset: 3px;
  }

  .brand__estimate {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    gap: clamp(0.75rem, 2vw, 1.3rem);
    margin: 0;
    padding: 0.95rem 1.15rem;
  }

  .intro {
    padding-top: 8rem;
  }

  .intro h1 {
    max-width: 9.5em;
    font-size: clamp(5.6rem, 8vw, 7.5rem);
  }

  .intro__copy {
    font-size: 1rem;
  }

  .services {
    width: min(32rem, 100%);
  }

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

  .project-card img {
    aspect-ratio: 16 / 9;
  }

  .service-page {
    padding-top: 10rem;
  }

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

  .contact-form__wide,
  .contact-form .button,
  .contact-form__note {
    grid-column: 1 / -1;
  }

  .contact-form .button {
    width: auto;
    justify-self: start;
  }

  .service-index__intro {
    margin-bottom: 2.4rem;
  }

  .service-tile-grid {
    gap: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
