:root {
  --font-grotesk: "Helvetica Neue", Helvetica, Arial, "Arial Nova", sans-serif;
  --black: #050505;
  --charcoal: #111111;
  --ink: #1c1b18;
  --paper: #f3f0ea;
  --muted: #9a948b;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(20, 20, 18, 0.14);
  --accent: #b6895b;
  --accent-dark: #7f5b38;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-grotesk);
  color: var(--paper);
  background: var(--black);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.56);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, padding 220ms ease;
}

.site-header.scrolled {
  padding-block: 14px;
  background: rgba(5, 5, 5, 0.88);
}

.brand {
  font-family: var(--font-grotesk);
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: rgba(243, 240, 234, 0.78);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 220ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.nav a.active::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(243, 240, 234, 0.3);
  border-radius: 4px;
  background: transparent;
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--paper);
  color: var(--black);
  border-color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: transparent;
  color: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

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

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 140px clamp(18px, 5vw, 70px) 92px;
}

.hero-image,
.contact-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.32) 48%, rgba(0, 0, 0, 0.68)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.04) 44%, rgba(0, 0, 0, 0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
}

.eyebrow,
.detail-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-grotesk);
  font-size: clamp(64px, 16vw, 220px);
  font-weight: 400;
  line-height: 0.88;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(260px, 420px);
  align-items: start;
  gap: clamp(24px, 6vw, 96px);
  margin-top: 34px;
}

.hero h2,
.section-top h2,
.display-title,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-grotesk);
  font-weight: 400;
  line-height: 0.98;
}

.hero h2 {
  font-size: clamp(34px, 5vw, 70px);
}

.hero p,
.section-top p,
.intro-copy p,
.why-item p,
.timeline-step p,
.project-detail p,
.material-detail p,
.contact-copy p,
.footer p,
.product-card p {
  color: rgba(243, 240, 234, 0.68);
  line-height: 1.65;
}

.section-light .section-top p,
.section-light .intro-copy p,
.section-light .project-detail p,
.section-light .material-detail p {
  color: rgba(28, 27, 24, 0.66);
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.capability-strip {
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  right: clamp(18px, 5vw, 70px);
  bottom: 22px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  color: rgba(243, 240, 234, 0.72);
  font-size: 12px;
  text-transform: uppercase;
}

.capability-strip span {
  padding: 16px 14px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.intro,
.products,
.materials,
.why,
.projects,
.process,
.contact {
  padding: clamp(76px, 10vw, 136px) clamp(18px, 5vw, 70px);
}

.projects {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  column-gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-label {
  margin-bottom: 36px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: start;
}

.display-title {
  font-size: clamp(42px, 7vw, 104px);
  max-width: 920px;
}

.intro-copy {
  padding-top: 12px;
}

.section-top {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-top h2 {
  font-size: clamp(38px, 6vw, 86px);
}

.projects .section-top {
  grid-column: 1;
  grid-row: 1;
  max-width: 460px;
  margin-bottom: clamp(28px, 3vw, 42px);
}

.projects .section-top h2 {
  font-size: clamp(34px, 3.25vw, 56px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  position: relative;
  isolation: isolate;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101010;
  cursor: pointer;
  transition: transform 260ms ease;
}

.product-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 600ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.84));
  transition: background 320ms ease;
}

.product-card > *:not(.product-image) {
  position: relative;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card:hover .product-image {
  transform: scale(1.07);
}

.product-card:hover::before {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.7));
}

.product-card span,
.timeline-step span,
.project-row span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.product-card h3,
.why-item h3,
.timeline-step h3,
.project-detail h3,
.material-detail h3 {
  margin: 0;
  font-family: var(--font-grotesk);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.product-card p {
  margin: 28px 0 0;
}

.product-card:hover p {
  color: rgba(243, 240, 234, 0.84);
}

.material-layout,
.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}

.projects .project-layout {
  display: contents;
}

.material-visual,
.project-image {
  min-height: 500px;
  overflow: hidden;
  background: #161411;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 700ms ease;
}

.project-image:hover img {
  transform: scale(1.035);
}

.projects .project-image {
  grid-column: 1;
  grid-row: 2;
}

.finish-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-height: 500px;
  padding: 10px;
  background: #22201c;
}

.finish-swatch {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 232px;
  padding: 16px;
  overflow: hidden;
  border-radius: 4px;
  background: #28231e;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 260ms ease, filter 260ms ease;
}

.finish-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.finish-swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.08));
  transition: background 260ms ease;
}

.finish-label {
  position: relative;
  z-index: 1;
}

.finish-swatch:hover {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

.finish-swatch:hover .finish-image {
  transform: scale(1.06);
}

.material-panel {
  display: grid;
  gap: 24px;
}

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

.material-tabs button {
  min-height: 52px;
  border: 1px solid var(--dark-line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 0 16px;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.material-tabs button:hover,
.material-tabs button.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--paper);
}

.material-detail,
.project-detail {
  border-top: 1px solid var(--dark-line);
  padding-top: 26px;
}

.material-specs {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
}

.material-specs div {
  display: grid;
  grid-template-columns: minmax(112px, 0.35fr) 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--dark-line);
}

.material-specs div:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.material-specs dt,
.material-specs dd {
  margin: 0;
}

.material-specs dt {
  color: rgba(28, 27, 24, 0.48);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.material-specs dd {
  color: rgba(28, 27, 24, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.local-support {
  padding: clamp(76px, 10vw, 136px) clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
}

.local-support-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(290px, 0.95fr) minmax(340px, 1.28fr);
  gap: clamp(26px, 4vw, 66px);
  align-items: stretch;
}

.local-support-intro {
  display: flex;
  flex-direction: column;
}

.local-support-intro h2 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 400;
  line-height: 0.98;
}

.local-support-intro > p:last-child {
  max-width: 350px;
  margin: 28px 0 0;
  color: rgba(243, 240, 234, 0.66);
  line-height: 1.62;
}

.local-support-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.local-support-stats p {
  display: grid;
  gap: 6px;
  margin: 0;
}

.local-support-stats strong {
  color: var(--paper);
  font-size: clamp(19px, 1.65vw, 27px);
  font-weight: 400;
  line-height: 1.05;
}

.local-support-stats span {
  color: rgba(243, 240, 234, 0.54);
  font-size: 12px;
  line-height: 1.4;
}

.local-support-services {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.local-support-services article {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-content: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.local-support-services span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.local-support-services h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.05;
}

.local-support-services p {
  grid-column: 2;
  margin: 10px 0 0;
  color: rgba(243, 240, 234, 0.6);
  font-size: 14px;
  line-height: 1.52;
}

.local-support-map {
  display: grid;
  align-content: start;
  gap: 16px;
}

.local-support-map img {
  width: 100%;
  max-width: 650px;
  aspect-ratio: 1.35;
  object-fit: contain;
}

.local-support-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.local-support-cities span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(243, 240, 234, 0.84);
  font-size: 12px;
  text-transform: uppercase;
}

.local-support-cities span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.local-support-map p {
  max-width: 450px;
  margin: 8px 0 0;
  color: rgba(243, 240, 234, 0.6);
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(44px, 6vw, 82px);
}

.why-item {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-items: start;
  min-height: clamp(330px, 30vw, 430px);
  padding: 0 clamp(22px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.why-item::before {
  display: none;
}

.why-heading {
  max-width: 820px;
}

.why-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 400;
  line-height: 0.94;
}

.why-index {
  display: block;
  margin-bottom: clamp(32px, 4vw, 62px);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.why-item h3 {
  max-width: 310px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.02;
}

.why-item p {
  max-width: 330px;
  margin: 22px 0 0;
  font-size: 15px;
}

.why-detail {
  display: grid;
  gap: 6px;
  align-self: end;
  width: 48px;
  padding: 8px 0;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.why-detail i {
  display: block;
  height: 1px;
  background: var(--accent);
}

.why-detail i:nth-child(2) {
  width: 70%;
}

.why-detail i:nth-child(3) {
  width: 42%;
}

.project-list {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--dark-line);
}

.projects .project-list {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.projects .project-row {
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  min-height: 102px;
  padding-block: 20px;
}

.projects .project-row strong {
  font-size: clamp(30px, 2.8vw, 44px);
}

.projects .project-row em {
  grid-column: 2;
  margin-top: 4px;
}

.project-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  min-height: 112px;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.project-row strong {
  display: block;
  font-family: var(--font-grotesk);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.project-row em {
  display: block;
  margin-top: 8px;
  color: rgba(28, 27, 24, 0.58);
  font-style: normal;
}

.project-row.active strong,
.project-row:hover strong {
  color: var(--accent-dark);
}

.project-detail {
  max-width: 760px;
  margin-top: 42px;
}

.projects .project-detail {
  grid-column: 1;
  grid-row: 3;
  margin-top: 30px;
}

.projects-showcase {
  padding: clamp(76px, 10vw, 136px) clamp(18px, 5vw, 70px);
  background: var(--black);
  color: var(--paper);
}

.projects-showcase-top {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: start;
}

.projects-showcase-kicker {
  margin: 0;
  color: rgba(243, 240, 234, 0.88);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.projects-showcase h2 {
  max-width: 760px;
  justify-self: end;
  margin: 0;
  font-family: var(--font-grotesk);
  font-size: clamp(30px, 3.2vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.projects-showcase h2 span {
  color: rgba(243, 240, 234, 0.52);
}

.project-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
  align-items: start;
  margin-top: clamp(46px, 7vw, 100px);
}

.project-showcase-card {
  display: grid;
  gap: 12px;
  color: var(--paper);
}

.project-showcase-media {
  display: block;
  aspect-ratio: 0.76;
  overflow: hidden;
  background: #171412;
}

.project-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
  transition: transform 600ms ease, filter 300ms ease;
}

.project-showcase-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(243, 240, 234, 0.86);
  font-size: 12px;
  text-transform: uppercase;
}

.project-showcase-card strong,
.project-showcase-card em {
  font-style: normal;
  font-weight: 500;
}

.project-showcase-card em {
  color: rgba(243, 240, 234, 0.64);
}

.project-showcase-card:hover .project-showcase-media img,
.project-showcase-card:focus-visible .project-showcase-media img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.045);
}

.projects-showcase-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: clamp(42px, 6vw, 82px);
  padding: 0 16px;
  border: 1px solid rgba(243, 240, 234, 0.56);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.projects-showcase-cta::before {
  content: "•";
  margin-right: 10px;
}

.projects-showcase-cta:hover,
.projects-showcase-cta:focus-visible {
  background: var(--paper);
  color: var(--black);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline-step {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: clamp(20px, 3vw, 32px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.consultation-banner {
  position: relative;
  isolation: isolate;
  min-height: clamp(420px, 42vw, 650px);
  overflow: hidden;
  color: var(--paper);
}

.consultation-banner-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms ease;
}

.consultation-banner:hover .consultation-banner-image {
  transform: scale(1.025);
}

.consultation-banner-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.68), transparent 48%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.04) 58%, rgba(5, 5, 5, 0.42));
}

.consultation-banner-copy {
  position: absolute;
  z-index: 1;
  margin: 0;
  font-size: clamp(24px, 2.15vw, 40px);
  font-weight: 400;
  line-height: 1.04;
}

.consultation-banner-copy--primary {
  left: clamp(22px, 4vw, 64px);
  bottom: clamp(38px, 6vw, 88px);
  max-width: min(460px, 38vw);
}

.consultation-banner-copy--secondary {
  top: clamp(36px, 5vw, 72px);
  right: clamp(22px, 5vw, 82px);
  max-width: min(410px, 31vw);
  font-size: clamp(18px, 1.7vw, 30px);
}

.consultation-banner-cta {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: clamp(38px, 6vw, 88px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(270px, 25vw);
  min-height: 52px;
  padding: 0 22px;
  background: var(--paper);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.consultation-banner-cta::before {
  content: "•";
  margin-right: 10px;
}

.consultation-banner-cta:hover,
.consultation-banner-cta:focus-visible {
  transform: translateY(-3px);
  background: var(--accent);
}

.contact {
  position: relative;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.72)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.28));
}

.contact-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(42px, 7vw, 96px);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 10px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(243, 240, 234, 0.7);
  font-size: 14px;
  text-transform: uppercase;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  outline: none;
}

.quote-form textarea {
  resize: vertical;
  padding-top: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.quote-form .btn {
  font-size: 14px;
}

.quote-form option {
  background: var(--black);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-size: 13px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(340px, 1.8fr) minmax(230px, 1fr);
  align-items: end;
  gap: clamp(24px, 4vw, 72px);
  padding: 26px clamp(18px, 5vw, 70px) 24px;
  border-top: 1px solid var(--line);
  background: var(--black);
  color: rgba(243, 240, 234, 0.64);
}

.footer strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-grotesk);
  color: var(--paper);
  font-size: 18px;
  font-weight: 500;
}

.footer-address span {
  display: block;
  margin-bottom: 7px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
}

.footer p {
  margin: 0;
  color: rgba(243, 240, 234, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 13px;
  text-align: right;
}

.footer-contact {
  color: var(--paper);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 240, 234, 0.62);
  padding-bottom: 3px;
  transition: border-color 180ms ease, color 180ms ease;
}

.footer-contact:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-page {
  min-height: 100svh;
  padding: 158px clamp(18px, 5vw, 70px) 96px;
  background: var(--black);
}

.contact-page-intro {
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(42px, 10vw, 180px);
  align-items: start;
  padding-bottom: 62px;
}

.contact-page-intro h1 {
  margin: 0;
  font-size: clamp(64px, 8vw, 138px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-page-intro p {
  max-width: 610px;
  margin: 10px 0 0;
  color: rgba(243, 240, 234, 0.82);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.3;
}

.contact-directory {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.directory-row {
  display: grid;
  grid-template-columns: 0.85fr 1fr 1fr;
}

.directory-row + .directory-row {
  border-top: 1px solid var(--line);
}

.directory-label,
.directory-item {
  min-height: 144px;
  padding: 30px 0;
}

.directory-label {
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.directory-item span {
  display: block;
  margin-bottom: 16px;
  color: rgba(243, 240, 234, 0.48);
  font-size: 12px;
  text-transform: uppercase;
}

.directory-item strong {
  display: block;
  color: var(--paper);
  font-size: 18px;
  font-weight: 500;
}

.directory-item p {
  max-width: 330px;
  margin: 8px 0 0;
  color: rgba(243, 240, 234, 0.64);
  font-size: 14px;
  line-height: 1.45;
}

.contact-request {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(36px, 8vw, 140px);
  margin-top: 92px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.contact-request-heading h2 {
  max-width: 420px;
  margin: 12px 0 0;
  font-size: clamp(38px, 4.4vw, 72px);
  font-weight: 400;
  line-height: 0.98;
}

.contact-page-form {
  padding-top: 0;
}

.project-detail {
  max-width: none;
  margin-top: 0;
  border-top: 0;
  padding: 136px clamp(18px, 5vw, 84px) 96px;
  background: var(--black);
}

.project-detail-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(243, 240, 234, 0.5);
  font-size: 11px;
  text-transform: uppercase;
}

.project-detail-topline a {
  color: inherit;
  text-decoration: none;
}

.project-detail-heading {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(52px, 7vw, 108px);
}

.project-detail-kicker,
.project-detail-heading h1 {
  margin: 0;
  font-size: clamp(42px, 4.8vw, 78px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.project-detail-kicker {
  display: inline;
  color: rgba(243, 240, 234, 0.42);
}

.project-detail-kicker::after {
  content: " · ";
  color: var(--paper);
}

.project-detail-heading h1 {
  display: inline;
}

.project-detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  margin-top: 36px;
}

.project-detail-meta p { margin: 0; }

.project-detail-meta span,
.project-detail-copy dt {
  display: block;
  color: rgba(243, 240, 234, 0.48);
  font-size: 11px;
  text-transform: uppercase;
}

.project-detail-meta strong {
  display: block;
  margin-top: 7px;
  font-size: 15px;
  font-weight: 500;
}

.project-detail-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  gap: clamp(28px, 5vw, 88px);
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.project-detail-copy {
  min-height: auto;
}

.project-detail-copy > p {
  margin: 0;
  font-size: clamp(23px, 2.3vw, 38px);
  font-weight: 400;
  line-height: 1.14;
}

.project-detail-specs { margin: 0; }
.project-detail-specs div { padding: 0 0 24px; }
.project-detail-specs div + div { padding-top: 24px; border-top: 1px solid var(--line); }
.project-detail-specs dd { max-width: 430px; margin: 8px 0 0; color: rgba(243, 240, 234, 0.76); font-size: 15px; line-height: 1.45; }

.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 34px;
}

.project-detail-gallery-image { aspect-ratio: 0.84; margin: 0; overflow: hidden; background: #171717; }
.project-detail-gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.project-detail-gallery-image:hover img { transform: scale(1.025); }
.project-detail-gallery-image--wine img { object-position: 68% center; }
.project-detail-gallery-image--living-detail img { object-position: 18% center; }
.project-detail-gallery-image--dining-detail img { object-position: 76% center; }

.project-detail-related { margin-top: 96px; }
.project-detail-related h2 { margin: 12px 0 0; font-size: clamp(30px, 4vw, 58px); font-weight: 400; line-height: 1; }

.project-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.related-project { color: var(--paper); text-decoration: none; }
.related-project img { display: block; width: 100%; aspect-ratio: 1.35; object-fit: cover; transition: transform 350ms ease; }
.related-project { overflow: hidden; }
.related-project:hover img { transform: scale(1.035); }
.related-project span { display: block; margin-top: 10px; color: rgba(243, 240, 234, 0.78); font-size: 12px; text-transform: uppercase; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    grid-column: 3;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    justify-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.96);
  }

  .nav.open {
    display: grid;
  }

  .nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header-cta {
    display: none;
  }

  .hero-copy,
  .intro-grid,
  .material-layout,
  .project-layout,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .projects {
    display: block;
  }

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

  .projects .project-image,
  .projects .project-list {
    grid-column: auto;
    grid-row: auto;
  }

  .projects-showcase-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projects-showcase h2 {
    justify-self: start;
    text-align: left;
  }

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

  .local-support-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .local-support-intro {
    grid-column: 1 / -1;
  }

  .local-support-intro h2 {
    max-width: 600px;
  }

  .local-support-stats {
    margin-top: 32px;
  }

  .local-support-services {
    min-height: 0;
  }

  .consultation-banner {
    min-height: 560px;
  }

  .consultation-banner-copy--primary {
    max-width: 430px;
  }

  .consultation-banner-copy--secondary {
    max-width: 340px;
  }


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

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

  .timeline-step {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .projects-showcase {
    padding: 70px 18px;
  }

  .project-showcase-grid {
    gap: 14px;
    margin-top: 44px;
  }

  .project-showcase-meta {
    display: grid;
    gap: 4px;
  }

  .local-support {
    padding: 70px 18px;
  }

  .local-support-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .local-support-intro {
    grid-column: auto;
  }

  .local-support-intro h2 {
    max-width: 360px;
    font-size: clamp(38px, 12vw, 54px);
  }

  .local-support-stats {
    margin-top: 28px;
  }

  .local-support-services {
    grid-template-rows: none;
  }

  .local-support-map {
    gap: 14px;
  }

  .local-support-map img {
    max-width: 100%;
  }

  .consultation-banner {
    min-height: 590px;
  }

  .consultation-banner-image {
    object-position: 58% center;
  }

  .consultation-banner-shade {
    background: linear-gradient(0deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.08) 72%, rgba(5, 5, 5, 0.36));
  }

  .consultation-banner-copy--primary {
    right: 18px;
    bottom: 98px;
    max-width: 330px;
    font-size: clamp(26px, 8vw, 34px);
  }

  .consultation-banner-copy--secondary {
    top: 34px;
    left: 18px;
    right: 18px;
    max-width: 300px;
    font-size: 19px;
  }

  .consultation-banner-cta {
    right: 18px;
    bottom: 28px;
    left: 18px;
    min-width: 0;
  }

  .hero {
    min-height: 92svh;
    padding: 112px 18px 138px;
  }

  .hero h1 {
    font-size: clamp(58px, 21vw, 96px);
  }

  .capability-strip {
    grid-template-columns: 1fr;
    bottom: 16px;
  }

  .capability-strip span {
    padding: 7px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .intro,
  .products,
  .materials,
  .why,
  .projects,
  .process,
  .contact {
    padding: 70px 18px;
  }

  .product-grid,
  .why-grid,
  .material-tabs,
  .quote-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer-actions {
    justify-items: start;
    text-align: left;
  }

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

  .product-card,
  .why-item,
  .material-visual,
  .project-image {
    min-height: 260px;
  }

  .finish-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .finish-swatch {
    min-height: 148px;
  }

  .quote-form .full {
    grid-column: auto;
  }

  .contact-page {
    padding-top: 116px;
    padding-bottom: 64px;
  }

  .contact-page-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-page-intro {
    padding-bottom: 42px;
  }

  .project-detail {
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .project-detail-heading {
    margin-top: 78px;
  }

  .project-detail-meta,
  .project-detail-heading,
  .project-detail-feature,
  .project-detail-related-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-feature {
    margin-top: 42px;
  }

  .project-detail-copy {
    gap: 30px;
  }

  .project-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 56px;
  }

  .project-detail-related {
    margin-top: 64px;
  }

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

  .directory-label,
  .directory-item {
    min-height: auto;
    padding: 21px 0;
  }

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

}
