:root {
  --ink: #171411;
  --muted: #5e574f;
  --soft: #8b8175;
  --paper: #f7f4ee;
  --paper-2: #eee8dd;
  --paper-3: #ded4c6;
  --night: #11100e;
  --night-2: #1c1915;
  --stone: #c9c0b2;
  --brass: #a77f50;
  --brass-2: #c2a47a;
  --line: rgba(23, 20, 17, 0.14);
  --line-dark: rgba(247, 244, 238, 0.16);
  --max: 1240px;
  --narrow: 820px;
  --pad: clamp(22px, 4.6vw, 72px);
  --section: clamp(82px, 10vw, 150px);
  --serif: "Playfair Display", Georgia, serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--paper); scroll-behavior: smooth; }
body {
  min-width: 320px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(167, 127, 80, 0.28); }

.skip {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 14px;
}
.skip:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 var(--pad);
  color: var(--paper);
  transition: background .24s var(--ease), border-color .24s var(--ease), height .24s var(--ease);
}
.site-header.scrolled,
.site-header.solid {
  height: 74px;
  background: rgba(17, 16, 14, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}
.brand img {
  width: 44px;
  height: 32px;
  object-fit: contain;
  filter: brightness(1.2);
}
.brand-copy { display: grid; gap: 3px; }
.brand-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.brand-sub {
  color: rgba(247, 244, 238, .68);
  font-size: 9px;
  letter-spacing: .36em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.7vw, 38px);
}
.main-nav a {
  color: rgba(247, 244, 238, .78);
  font-size: 13px;
  transition: color .18s var(--ease);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--paper); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  color: rgba(247, 244, 238, .82);
  font-size: 13px;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 244, 238, .26);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.menu-toggle.open span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:last-child { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 104px var(--pad) 44px;
  background: var(--night);
  color: var(--paper);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform .28s var(--ease), opacity .18s var(--ease), visibility .18s var(--ease);
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu > a:not(.button) {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 3.1rem);
  line-height: 1;
}
.mobile-menu .mobile-small {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 14px;
  color: rgba(247, 244, 238, .66);
  font-family: var(--sans);
  font-size: 14px;
}
.mobile-small a,
.mobile-small span {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.35;
}
.mobile-small a:last-of-type,
.mobile-small span {
  grid-column: 1 / -1;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 14px 20px;
  color: var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.button.primary {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--night);
}
.button.primary:hover { background: var(--paper-2); border-color: var(--paper-2); }
.button.dark {
  background: var(--night);
  border-color: var(--night);
  color: var(--paper);
}
.button.dark:hover { background: var(--night-2); }
.button.line {
  color: var(--paper);
  border-color: rgba(247, 244, 238, .28);
}
.button.line:hover { background: rgba(247, 244, 238, .08); }
.button.subtle:hover { border-color: rgba(23, 20, 17, .34); background: rgba(23, 20, 17, .04); }

.hero,
.page-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
}
.page-hero { min-height: 72svh; }
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 14, .26), rgba(17, 16, 14, .76) 72%, rgba(17, 16, 14, .97)),
    linear-gradient(90deg, rgba(17, 16, 14, .86), rgba(17, 16, 14, .24) 58%, rgba(17, 16, 14, .46)),
    var(--hero-image, url("https://images.unsplash.com/photo-1773427663260-8418a314f0ee?auto=format&fit=crop&q=78&w=2400")) center/cover;
  filter: saturate(.82) contrast(1.04);
}
.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px var(--pad) clamp(54px, 7vw, 92px);
}
.page-hero-inner { padding-top: 130px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.on-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow { color: rgba(247, 244, 238, .66); }
.hero h1,
.page-hero h1 {
  max-width: 660px;
  margin-top: clamp(28px, 4vw, 44px);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.005em;
}
.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
}
.hero-content,
.page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 620px) auto;
  gap: clamp(34px, 7vw, 92px);
  align-items: end;
  margin-top: clamp(32px, 5.8vw, 70px);
}
.hero-copy,
.page-hero-copy {
  color: rgba(247, 244, 238, .78);
  font-size: clamp(1.03rem, 1.32vw, 1.18rem);
  line-height: 1.76;
}
.micro-proof {
  margin-top: 18px;
  color: rgba(247, 244, 238, .72);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .12em;
  line-height: 1.55;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(247, 244, 238, .18);
  background: rgba(247, 244, 238, .14);
}
.hero-proof span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(17, 16, 14, .52);
  color: rgba(247, 244, 238, .78);
  font-size: 12px;
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--night);
  color: var(--paper);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.trust-item {
  padding: clamp(24px, 3vw, 38px) var(--pad);
  border-right: 1px solid var(--line-dark);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.trust-item span {
  color: rgba(247, 244, 238, .65);
  font-size: 13px;
  line-height: 1.55;
}
.credential-band {
  display: grid;
  grid-template-columns: 1.1fr repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.credential-band span {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .13em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}
.credential-band span:first-child {
  justify-content: flex-start;
  color: var(--ink);
  text-align: left;
}
.credential-band span:last-child { border-right: 0; }

.section { padding: var(--section) var(--pad); }
.section.tight { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(56px, 7vw, 96px); }
.section.dark { background: var(--night); color: var(--paper); }
.section.warm { background: var(--paper-2); }
.wrap { max-width: var(--max); margin: 0 auto; }
.narrow { max-width: var(--narrow); margin: 0 auto; }
h2 {
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}
h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  font-weight: 400;
  line-height: 1.16;
}
p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
}
.dark p { color: rgba(247, 244, 238, .68); }
.lede {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.36rem);
  line-height: 1.62;
}
.dark .lede { color: rgba(247, 244, 238, .72); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .58fr);
  gap: clamp(34px, 6.5vw, 88px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 84px);
}
.section-head.center {
  display: block;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center h2 { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-top: 24px; }
.rule { height: 1px; background: var(--line); margin: clamp(34px, 5vw, 64px) 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .65fr);
  gap: clamp(46px, 8vw, 112px);
  align-items: start;
}
.split.reverse { grid-template-columns: minmax(320px, .68fr) minmax(0, .9fr); }
.stack { display: grid; gap: 22px; }
.image-panel {
  min-height: 540px;
  display: grid;
  align-content: end;
  padding: clamp(26px, 4vw, 48px);
  background:
    linear-gradient(180deg, rgba(17, 16, 14, .08), rgba(17, 16, 14, .72)),
    var(--image) center/cover;
  color: var(--paper);
}
.image-panel small {
  max-width: 370px;
  color: rgba(247, 244, 238, .7);
  font-size: 13px;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: clamp(28px, 3.2vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .18);
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.service-card:hover { background: rgba(255, 255, 255, .36); transform: translateY(-2px); }
.service-card .num {
  color: var(--soft);
  font-size: 12px;
}
.service-card h3 { margin-bottom: 16px; }
.service-card p { font-size: .96rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.dark .text-link { color: var(--paper); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.why-item {
  min-height: 230px;
  padding: clamp(26px, 3.3vw, 42px);
  background: var(--paper);
}
.why-item h3 {
  margin: 34px 0 14px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 650;
}
.why-item .num { color: var(--soft); font-size: 12px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.proof-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 32px;
  padding: clamp(28px, 3.5vw, 46px);
  background: var(--paper);
}
.proof-card strong {
  color: var(--soft);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.proof-card h3 {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 650;
}
.proof-card p { font-size: .96rem; }
.proof-stat {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3.3rem);
  line-height: 1;
  color: var(--ink);
}

.process-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.process-row {
  display: grid;
  grid-template-columns: 86px minmax(0, .56fr) minmax(280px, .76fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}
.process-row span { color: var(--soft); font-size: 12px; }
.process-row h3 { font-family: var(--sans); font-size: 1.04rem; font-weight: 650; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.project-card {
  grid-column: span 6;
  min-height: 500px;
  position: relative;
  display: grid;
  align-content: end;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
  isolation: isolate;
}
.project-card.large { grid-column: span 7; min-height: 580px; }
.project-card.small { grid-column: span 5; min-height: 580px; }
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 14, .08), rgba(17, 16, 14, .74)),
    var(--image) center/cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform .5s var(--ease);
}
.project-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(247, 244, 238, .16);
  pointer-events: none;
  z-index: 1;
}
@media (hover: hover) {
  .project-card:hover::before { transform: scale(1.018); }
}
.project-card > * { position: relative; z-index: 1; }
.project-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.project-meta span,
.chip {
  border: 1px solid rgba(247, 244, 238, .26);
  padding: 7px 9px;
  color: rgba(247, 244, 238, .72);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-card p { max-width: 480px; margin-top: 12px; color: rgba(247, 244, 238, .7); }
.project-card h3 {
  max-width: 560px;
}
.project-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 22px;
  max-width: 620px;
  background: rgba(247, 244, 238, .18);
}
.project-specs span {
  padding: 11px 12px;
  background: rgba(17, 16, 14, .46);
  color: rgba(247, 244, 238, .76);
  font-size: 11px;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.testimonial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}
blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3.8rem);
  line-height: 1.14;
}
.quote-meta {
  margin-top: 26px;
  color: var(--soft);
  font-size: 13px;
}
.review-stack {
  display: grid;
  gap: 18px;
}
.review-note {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}
.review-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.standards-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(36px, 5vw, 62px);
  background: var(--line-dark);
}
.standards-panel .standard {
  min-height: 160px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(247, 244, 238, .06);
}
.standards-panel h3 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 650;
}
.standards-panel p {
  color: rgba(247, 244, 238, .68);
  font-size: .94rem;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.area-grid a,
.area-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--paper);
  padding: 22px;
  color: var(--ink);
  font-size: 15px;
}

.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  background: transparent;
  padding: 26px 0;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-q span:first-child {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
}
.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
  margin-top: 7px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.faq-icon::before { inset: 8px 0 auto; height: 1px; }
.faq-icon::after { inset: 0 auto 0 8px; width: 1px; }
.faq-item.open .faq-icon::after { display: none; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { max-width: 760px; padding-bottom: 28px; }

.cta-band {
  background: var(--night);
  color: var(--paper);
  padding: clamp(74px, 9vw, 128px) var(--pad);
}
.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
}
.cta-inner h2 { max-width: 760px; }
.cta-inner p { max-width: 560px; margin-top: 24px; color: rgba(247, 244, 238, .68); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}
.detail-item {
  min-height: 190px;
  background: var(--paper);
  padding: clamp(24px, 3vw, 36px);
}
.detail-item h3 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 650;
}
.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.62;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--brass);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 180px;
}
.related-card h3 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 650;
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.filter-button {
  border: 1px solid var(--line);
  background: transparent;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-button.active {
  background: var(--night);
  color: var(--paper);
  border-color: var(--night);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, .62fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: start;
}
.contact-methods {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}
.contact-methods a {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
}
.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(26px, 3.4vw, 42px);
}
.form-panel h2 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 650;
}
.fields {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fcfaf7;
  color: var(--ink);
  padding: 14px 14px;
  outline: none;
}
textarea { min-height: 128px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(167, 127, 80, .75); }
.form-panel .button { width: 100%; margin-top: 8px; }
.form-note {
  margin-top: 15px;
  color: var(--soft);
  font-size: .86rem;
}
.form-trust {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.form-trust span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.success {
  display: none;
  padding: 34px 0;
}
.success.show { display: block; }

.breadcrumbs {
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px var(--pad) 0;
  color: var(--soft);
  font-size: 12px;
}
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }

.site-footer {
  background: var(--night);
  color: var(--paper);
  padding: clamp(58px, 8vw, 92px) var(--pad) 36px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(140px, auto));
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}
.footer-logo {
  width: 210px;
  height: auto;
  margin-bottom: 28px;
}
.footer-grid p {
  max-width: 440px;
  color: rgba(247, 244, 238, .62);
}
.footer-col {
  display: grid;
  gap: 12px;
}
.footer-col h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-col a {
  color: rgba(247, 244, 238, .66);
  font-size: 14px;
}
.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(247, 244, 238, .46);
  font-size: 12px;
}
.mobile-dock {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: rgba(17, 16, 14, .94);
  border-top: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}
.mobile-dock a {
  min-height: 58px;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.mobile-dock a:last-child {
  background: var(--paper);
  color: var(--night);
}

/* Reveal — one quiet fade as each section enters view.
   Gated on (scripting: enabled) so no-JS and legacy browsers render fully visible. */
@media (scripting: enabled) and (prefers-reduced-motion: no-preference) {
  main > section {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
  }
  main > section.in {
    opacity: 1;
    transform: none;
  }
}

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

@media (max-width: 1080px) {
  .main-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .hero-content,
  .page-hero-content,
  .section-head,
  .split,
  .split.reverse,
  .testimonial,
  .cta-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero-actions,
  .cta-actions { justify-content: flex-start; }
  .trust-strip,
  .service-grid,
  .why-grid,
  .proof-grid,
  .area-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .credential-band { grid-template-columns: repeat(3, 1fr); }
  .credential-band span:first-child { grid-column: 1 / -1; justify-content: center; text-align: center; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .process-row { grid-template-columns: 72px 1fr; }
  .process-row p { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root {
    --pad: 22px;
    --section: 78px;
  }
  .site-header { height: 74px; }
  .site-header.scrolled, .site-header.solid { height: 68px; }
  .brand img { width: 39px; height: 29px; }
  .brand-name { font-size: 13px; letter-spacing: .17em; }
  .brand-sub { font-size: 8px; }
  .hero { min-height: 94svh; }
  .hero::before,
  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(17, 16, 14, .44), rgba(17, 16, 14, .84) 76%, rgba(17, 16, 14, .98)),
      linear-gradient(90deg, rgba(17, 16, 14, .86), rgba(17, 16, 14, .36)),
      var(--hero-image, url("https://images.unsplash.com/photo-1773427663260-8418a314f0ee?auto=format&fit=crop&q=74&w=1200")) center/cover;
  }
  .hero-inner { padding-top: 118px; padding-bottom: 156px; }
  .page-hero-inner { padding-top: 118px; padding-bottom: 118px; }
  .hero h1 { font-size: clamp(2.1rem, 8vw, 3rem); line-height: 1.08; }
  .page-hero h1 { font-size: clamp(1.95rem, 7vw, 2.7rem); line-height: 1.08; }
  .hero-copy, .page-hero-copy { font-size: 1rem; line-height: 1.68; }
  .hero-actions .button,
  .cta-actions .button { width: 100%; }
  .hero .hero-actions { display: none; }
  .hero-actions .line { display: none; }
  .trust-strip,
  .service-grid,
  .why-grid,
  .proof-grid,
  .area-grid,
  .detail-list,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .credential-band,
  .standards-panel,
  .project-specs,
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .hero-proof { display: none; }
  .credential-band span,
  .hero-proof span { min-height: auto; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .trust-item:last-child { border-bottom: 0; }
  .service-card { min-height: 260px; }
  .image-panel { min-height: 430px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card,
  .project-card.large,
  .project-card.small {
    grid-column: auto;
    min-height: 430px;
  }
  .project-card::after { inset: 10px; }
  .project-card p { font-size: .94rem; }
  .project-specs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-specs span { padding: 9px 8px; font-size: 10px; }
  .process-row,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .process-row p { grid-column: auto; }
  .form-panel { margin-left: -6px; margin-right: -6px; }
  .site-footer { padding-bottom: 92px; }
  .mobile-dock { display: grid; }
}
