:root {
  --bg: #d7cfbf;
  --bg-soft: #ece4d7;
  --bg-warm: #cbbca6;
  --surface: #f4eee5;
  --surface-strong: #ddd2c2;
  --ink: #101310;
  --ink-soft: #5e5a51;
  --accent: #b87439;
  --accent-deep: #8e552a;
  --forest: #121614;
  --forest-soft: #1c2420;
  --line: rgba(16, 19, 16, 0.16);
  --line-strong: rgba(16, 19, 16, 0.3);
  --line-soft: rgba(16, 19, 16, 0.08);
  --shadow: 0 20px 44px rgba(8, 10, 9, 0.12);
  --shadow-strong: 0 28px 66px rgba(8, 10, 9, 0.18);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --container: min(1180px, calc(100vw - 40px));
  --font-body: "Archivo", sans-serif;
  --font-display: "Barlow Condensed", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(184, 116, 57, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 2px, transparent 2px 14px),
    linear-gradient(180deg, #d8cfbf 0%, #ece3d6 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(15, 18, 16, 0.34);
}

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

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

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

button {
  cursor: pointer;
}

iframe {
  width: 100%;
  border: 0;
}

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

.section {
  padding: clamp(58px, 7vw, 94px) 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(244, 238, 229, 0.94), rgba(227, 218, 204, 0.96));
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(184, 116, 57, 0.16), transparent 24%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 16px),
    linear-gradient(180deg, #0f1311 0%, #191f1b 100%);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 3px;
  background: currentColor;
}

.eyebrow.light {
  color: rgba(247, 228, 212, 0.82);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 30px;
}

.section-heading h2,
.section-heading h1,
.page-hero-copy h1,
.home-hero-copy h1,
.service-hero-copy h1,
.quote-shell h2,
.contact-form-shell h2,
.service-overview-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.section-heading h2,
.page-hero-copy h1,
.service-hero-copy h1,
.quote-shell h2,
.contact-form-shell h2,
.service-overview-copy h2,
.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 5.6rem);
}

.section-heading p,
.page-hero-copy p,
.service-hero-copy p,
.home-hero-copy > p,
.intro-band-text p,
.story-copy p,
.service-overview-copy p,
.contact-form-shell > p,
.quote-shell > p,
.final-cta p {
  margin: 0;
  color: var(--ink-soft);
}

.section-dark .section-heading p,
.section-dark .process-copy p,
.section-dark .process-list p,
.section-dark .simple-steps p {
  color: rgba(239, 243, 240, 0.72);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button.primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #c07a3d 0%, #9a5d2d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button.primary:hover,
.button.primary:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ca8447 0%, #a66330 100%);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(16, 19, 16, 0.04);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(16, 19, 16, 0.08);
}

.header-main .button.secondary,
.home-hero .button.secondary,
.page-hero .button.secondary,
.service-hero .button.secondary,
.final-cta .button.secondary {
  color: rgba(240, 236, 229, 0.88);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.header-main .button.secondary:hover,
.header-main .button.secondary:focus-visible,
.home-hero .button.secondary:hover,
.home-hero .button.secondary:focus-visible,
.page-hero .button.secondary:hover,
.page-hero .button.secondary:focus-visible,
.service-hero .button.secondary:hover,
.service-hero .button.secondary:focus-visible,
.final-cta .button.secondary:hover,
.final-cta .button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button:focus-visible,
.nav-link:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(140, 93, 63, 0.2);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-alert {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #b87439 0%, #9f612e 100%);
  color: #fff;
}

.header-alert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  min-height: 40px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.header-alert-inner a {
  color: rgba(255, 245, 236, 0.92);
}

.header-alert-inner a:hover,
.header-alert-inner a:focus-visible {
  color: #fff;
}

.header-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 21, 18, 0.96), rgba(18, 24, 20, 0.96));
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
}

.header-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 40px;
}

.header-bar-copy {
  color: rgba(255, 255, 255, 0.66);
}

.header-bar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-contact span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-contact strong {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.header-contact:hover,
.header-contact:focus-visible {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-main {
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(15, 18, 16, 0.98), rgba(20, 25, 22, 0.98));
  backdrop-filter: blur(18px);
}

.header-main-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.site-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.site-brand strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-brand span {
  display: block;
  color: rgba(232, 228, 221, 0.7);
  font-size: 0.8rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link,
.nav-label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  color: rgba(240, 236, 229, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-link.active,
.nav-label.active,
.nav-link:hover,
.nav-link:focus-visible,
.nav-item-services:hover > .nav-label,
.nav-item-services:focus-within > .nav-label {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-item-services {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  gap: 2px;
  min-width: 260px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(17, 22, 18, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(240, 236, 229, 0.82);
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-item-services:hover .nav-dropdown,
.nav-item-services:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: transparent;
  color: #fff;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

body.menu-open .nav-toggle span {
  background: transparent;
}

body.menu-open .nav-toggle span::before {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav-toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.home-hero {
  position: relative;
  padding: 68px 0 56px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 18%, rgba(184, 116, 57, 0.24), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #121614 0%, #1b221e 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 120px 120px;
  pointer-events: none;
}

.home-hero-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.home-hero-copy h1 {
  margin: 0 0 24px;
  max-width: 8.6ch;
  font-size: clamp(3.4rem, 6.8vw, 7.4rem);
}

.home-hero-copy > p {
  max-width: 36rem;
  font-size: 1.02rem;
  color: rgba(235, 231, 224, 0.8);
}

.home-hero-copy .button-row {
  margin-top: 30px;
}

.hero-ledger {
  display: grid;
  gap: 16px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-ledger-item {
  padding-left: 14px;
  border-left: 3px solid rgba(184, 116, 57, 0.72);
}

.hero-ledger-item span {
  display: block;
  margin-bottom: 7px;
  color: rgba(224, 168, 116, 0.88);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-ledger-item strong {
  display: block;
  max-width: 18ch;
  font-size: 0.98rem;
  line-height: 1.24;
  color: #fff;
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(235, 231, 224, 0.78);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.home-hero-media {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.62fr);
  align-items: start;
}

.hero-figure,
.project-tile,
.project-gallery figure,
.service-media-figure,
.page-hero-media,
.map-shell {
  margin: 0;
}

.hero-figure img,
.project-tile img,
.project-gallery img,
.page-hero-media img,
.service-media-figure img {
  width: 100%;
  object-fit: cover;
}

.hero-figure-main img {
  aspect-ratio: 4 / 4.9;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

.hero-figure-main figcaption,
.hero-figure-secondary figcaption,
.project-tile figcaption,
.page-hero-media figcaption,
.service-media-figure figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.home-hero .hero-figure-main figcaption,
.home-hero .hero-figure-secondary figcaption {
  color: rgba(235, 231, 224, 0.74);
}

.hero-figure-secondary img {
  aspect-ratio: 3 / 3.5;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-note {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-strong);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #fff;
}

.hero-note p {
  margin: 0;
  color: rgba(235, 231, 224, 0.78);
}

.intro-band {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.92fr) minmax(240px, 0.56fr);
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  background: linear-gradient(180deg, rgba(244, 238, 229, 0.88), rgba(228, 218, 203, 0.76));
  box-shadow: var(--shadow);
}

.intro-band-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.2vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.intro-band-text {
  display: grid;
  gap: 18px;
}

.intro-band-rail {
  display: grid;
  gap: 16px;
  padding-left: 18px;
  border-left: 2px solid var(--line);
}

.intro-band-stat {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.intro-band-stat:first-child {
  padding-top: 0;
  border-top: 0;
}

.intro-band-stat span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-band-stat p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-item {
  display: grid;
  gap: 24px;
  grid-template-columns: 72px minmax(0, 1fr) 220px;
  align-items: center;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.service-item:hover,
.service-item:focus-visible {
  transform: translateX(4px);
  border-color: rgba(184, 116, 57, 0.5);
  background: rgba(255, 255, 255, 0.52);
}

.service-number {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-text h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.service-text p {
  margin: 0;
  color: var(--ink-soft);
}

.service-item img {
  width: 100%;
  aspect-ratio: 4 / 2.9;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 19, 16, 0.12);
}

.process-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: start;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
}

.process-copy h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.4vw, 4.8rem);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: 0.01em;
}

.process-copy p {
  margin: 0;
}

.process-list,
.simple-steps {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li,
.simple-steps li {
  display: grid;
  gap: 16px;
  grid-template-columns: 56px minmax(0, 1fr);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-list span,
.simple-steps span {
  color: rgba(247, 228, 212, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-list h3,
.simple-steps h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
}

.process-list p,
.simple-steps p {
  margin: 0;
}

.project-grid {
  display: grid;
  gap: 28px;
}

.material-study,
.detail-grid,
.contact-map-layout,
.gallery-intro {
  display: grid;
  gap: 32px;
  align-items: start;
}

.material-study {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  background: linear-gradient(180deg, rgba(244, 238, 229, 0.88), rgba(230, 219, 203, 0.82));
  box-shadow: var(--shadow);
}

.material-study-copy,
.detail-copy,
.contact-prep-copy {
  display: grid;
  gap: 18px;
}

.material-study-copy h2,
.detail-copy h2,
.contact-prep-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.4vw, 4.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.material-study-copy p,
.detail-copy p,
.contact-prep-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.material-table,
.field-note-list,
.quote-prep,
.project-rail,
.map-notes {
  display: grid;
  gap: 16px;
}

.material-table {
  gap: 0;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

.material-row {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr) auto;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.material-row strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.material-row p {
  margin: 0;
  color: var(--ink-soft);
}

.material-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 19, 16, 0.12);
  background: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.material-study-media,
.story-side {
  display: grid;
  gap: 18px;
}

.editorial-figure {
  margin: 0;
}

.editorial-figure img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 19, 16, 0.12);
  box-shadow: var(--shadow);
}

.editorial-figure figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.material-note,
.field-note,
.map-note {
  padding: 16px 0 0 16px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}

.material-note strong,
.field-note strong,
.map-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.material-note p,
.field-note p,
.map-note p {
  margin: 0;
  color: var(--ink-soft);
}

.project-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.project-note {
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

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

.project-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

.project-note p {
  margin: 0;
  color: var(--ink-soft);
}

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

.project-tile img {
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 19, 16, 0.12);
  box-shadow: var(--shadow);
}

.project-tile.large {
  grid-column: span 7;
}

.project-tile.tall {
  grid-column: span 5;
}

.project-tile.medium {
  grid-column: span 4;
}

.split-panel {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  align-items: start;
}

.review-stack {
  display: grid;
  gap: 20px;
}

.review-block {
  margin: 0;
  padding-top: 20px;
  border-top: 3px solid var(--line);
}

.review-block p {
  margin: 0 0 16px;
  font-size: 1rem;
}

.review-block footer {
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quote-shell,
.contact-form-shell,
.service-highlight-box,
.contact-rail,
.map-shell,
.final-cta {
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(244, 238, 229, 0.94), rgba(226, 216, 201, 0.94));
  box-shadow: var(--shadow-strong);
}

.quote-shell h2,
.contact-form-shell h2,
.final-cta h2 {
  margin-bottom: 16px;
}

.quote-shell > p,
.contact-form-shell > p,
.final-cta p {
  margin-bottom: 22px;
}

.quote-prep {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote-prep div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.quote-prep span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quote-prep p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.service-area-strip {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding: 28px 28px 0;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  background: linear-gradient(180deg, rgba(244, 238, 229, 0.88), rgba(226, 217, 202, 0.82));
  box-shadow: var(--shadow);
}

.service-area-copy {
  display: grid;
  gap: 10px;
}

.service-area-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 3.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.service-area-strip p {
  margin: 0;
  max-width: 44rem;
  color: var(--ink-soft);
}

.service-area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.page-hero,
.service-hero {
  position: relative;
  padding: 62px 0 28px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(184, 116, 57, 0.24), transparent 20%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #111513 0%, #1a211d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero::before,
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 120px 120px;
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.86fr);
  align-items: end;
}

.page-hero-copy h1,
.service-hero-copy h1 {
  margin-bottom: 18px;
}

.page-actions {
  margin-top: 28px;
}

.page-hero .eyebrow,
.service-hero .eyebrow,
.final-cta .eyebrow {
  color: rgba(226, 169, 116, 0.9);
}

.page-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.page-meta li {
  padding: 14px 14px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(235, 231, 224, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.page-hero-copy p,
.service-hero-copy p,
.page-hero-media figcaption,
.page-hero .section-heading p {
  color: rgba(235, 231, 224, 0.76);
}

.page-hero-media img {
  aspect-ratio: 4 / 4.5;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

.story-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.9fr);
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.principles-list,
.benefit-grid,
.service-highlights {
  display: grid;
  gap: 18px;
}

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

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

.principle,
.benefit,
.service-highlight {
  padding: 18px 0 0 16px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}

.principle strong,
.benefit h3,
.service-highlight strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.principle p,
.benefit p,
.service-highlight p {
  margin: 0;
  color: var(--ink-soft);
}

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

.project-gallery figure {
  grid-column: span 4;
}

.project-gallery figure.wide {
  grid-column: span 8;
}

.project-gallery figure.tall {
  grid-column: span 4;
}

.project-gallery img {
  min-height: 280px;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 19, 16, 0.12);
  box-shadow: var(--shadow);
}

.project-gallery figcaption {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.project-gallery strong {
  font-size: 1rem;
}

.project-gallery span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

.contact-rail {
  background:
    radial-gradient(circle at top right, rgba(184, 116, 57, 0.16), transparent 22%),
    linear-gradient(180deg, var(--forest) 0%, #212923 100%);
  color: #fff;
}

.contact-rail .eyebrow {
  color: rgba(247, 228, 212, 0.82);
}

.contact-rail-list {
  display: grid;
  gap: 16px;
}

.contact-rail-list div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-rail-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
}

.contact-rail-list p,
.contact-rail-list a {
  margin: 0;
  color: rgba(240, 244, 241, 0.78);
}

.contact-rail-list a:hover,
.contact-rail-list a:focus-visible {
  color: #fff;
}

.contact-helper {
  display: grid;
  gap: 16px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-helper strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
}

.contact-helper p {
  margin: 0;
  color: rgba(240, 244, 241, 0.78);
}

.map-shell iframe {
  min-height: 440px;
  border-radius: var(--radius-md);
}

.contact-map-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
}

.service-overview {
  padding-top: 24px;
}

.service-overview-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 0.94fr);
  align-items: start;
}

.service-media-figure img {
  aspect-ratio: 4 / 4.8;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
}

.service-overview-copy {
  display: grid;
  gap: 18px;
}

.service-overview-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.service-highlight-box {
  padding-top: 28px;
}

.service-hero-copy .page-meta li {
  background: rgba(255, 255, 255, 0.05);
}

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

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

.faq-section {
  padding-top: 16px;
}

.faq-shell {
  padding-top: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 20px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
}

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

.faq-list summary {
  position: relative;
  display: block;
  padding: 18px 28px 18px 0;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 0;
  color: var(--accent-deep);
  font-size: 1.5rem;
}

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

.faq-list p {
  padding: 0 0 18px;
  margin: 0;
  color: var(--ink-soft);
}

.final-cta {
  display: grid;
  gap: 18px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(184, 116, 57, 0.2), transparent 22%),
    linear-gradient(180deg, #121614 0%, #202722 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.final-cta p,
.section-dark .final-cta p {
  color: rgba(235, 231, 224, 0.74);
}

.quote-form {
  display: grid;
  gap: 16px;
}

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

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

.field-span-2 {
  grid-column: span 2;
}

.field label {
  font-size: 0.86rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(140, 93, 63, 0.48);
  background: #fff;
  outline: none;
}

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

.form-note,
.form-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-status {
  min-height: 1.3em;
}

.site-footer {
  padding: 42px 0 28px;
  border-top: 3px solid var(--accent);
  background:
    radial-gradient(circle at top right, rgba(184, 116, 57, 0.16), transparent 24%),
    linear-gradient(180deg, #111513 0%, #1b211d 100%);
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
}

.site-brand-footer {
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 28rem;
  margin: 0;
  color: rgba(235, 231, 224, 0.7);
}

.footer-column h2 {
  margin: 0 0 14px;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column li,
.footer-column a {
  color: rgba(235, 231, 224, 0.7);
  font-size: 0.92rem;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(235, 231, 224, 0.62);
  font-size: 0.84rem;
}

.site-footer .site-brand strong {
  color: #fff;
}

.site-footer .site-brand span {
  color: rgba(235, 231, 224, 0.62);
}

a[x-apple-data-detectors],
.site-footer a[x-apple-data-detectors],
.site-footer [x-apple-data-detectors] {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
  text-decoration: none !important;
  font: inherit !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .home-hero-grid,
  .intro-band,
  .material-study,
  .process-grid,
  .split-panel,
  .page-hero-grid,
  .story-grid,
  .detail-grid,
  .gallery-intro,
  .contact-layout,
  .contact-map-layout,
  .service-overview-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .project-gallery figure,
  .project-gallery figure.wide,
  .project-gallery figure.tall,
  .project-tile.large,
  .project-tile.tall,
  .project-tile.medium {
    grid-column: span 6;
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    z-index: 60;
    display: none;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(16, 20, 17, 0.98);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-panel {
    display: grid;
  }

  .nav-list,
  .nav-actions {
    display: grid;
    gap: 8px;
  }

  .nav-link,
  .nav-label {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-item-services {
    display: grid;
    gap: 8px;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown a {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
  }

  .header-main-inner {
    min-height: 80px;
  }

  .nav-actions .button.secondary {
    color: rgba(240, 236, 229, 0.86);
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }
}

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

  .container {
    width: min(100vw - 28px, var(--container));
  }

  .header-bar-inner {
    gap: 8px;
    min-height: auto;
    padding: 8px 0;
  }

  .header-alert-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: auto;
    gap: 4px;
    padding: 8px 0;
    font-size: 0.63rem;
    letter-spacing: 0.08em;
  }

  .header-bar-copy {
    display: none;
  }

  .header-bar-links {
    gap: 6px 14px;
  }

  .header-contact {
    gap: 8px;
    min-height: 30px;
    padding: 0 9px;
  }

  .header-contact span {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .header-contact strong {
    font-size: 0.72rem;
  }

  .home-hero {
    padding-top: 42px;
  }

  .process-grid,
  .material-study,
  .intro-band,
  .service-area-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-ledger,
  .quote-prep,
  .page-meta,
  .project-rail {
    grid-template-columns: 1fr;
  }

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

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

  .service-item img {
    width: 100%;
  }

  .benefit-grid,
  .service-highlights,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-band-rail {
    padding-left: 0;
    border-left: 0;
  }

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

  .project-note {
    padding-right: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }

  .project-note:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .field-span-2 {
    grid-column: auto;
  }

  .quote-shell,
  .contact-form-shell,
  .service-highlight-box,
  .contact-rail,
  .map-shell,
  .final-cta {
    padding: 20px;
  }

  .service-area-strip {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

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

  .project-gallery figure,
  .project-gallery figure.wide,
  .project-gallery figure.tall {
    grid-column: auto;
  }

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

  .project-tile.large,
  .project-tile.tall,
  .project-tile.medium {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .page-hero,
  .service-hero {
    padding: 44px 0 24px;
  }

  .home-hero-copy h1,
  .page-hero-copy h1,
  .service-hero-copy h1,
  .section-heading h2,
  .quote-shell h2,
  .contact-form-shell h2,
  .service-overview-copy h2,
  .final-cta h2 {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .process-copy h2,
  .intro-band-copy h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

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

  .page-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-brand span {
    display: none;
  }

  .site-brand img {
    width: 48px;
    height: 48px;
  }

  .header-main-inner {
    min-height: 72px;
  }
}
