@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
  --ink: #20241d;
  --charcoal: #2a3026;
  --graphite: #383e32;
  --paper: #eee8dc;
  --white: #faf5e9;
  --bronze: #95633d;
  --bronze-light: #c9955b;
  --muted: #6d7063;
  --line: rgba(32, 36, 29, .16);
  --shell: 1240px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --shadow: 0 30px 80px rgba(0, 0, 0, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Archivo, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -90px; left: 18px; z-index: 9999;
  padding: 12px 16px; background: var(--white); box-shadow: var(--shadow);
}
.skip-link:focus { top: 18px; }
:focus-visible { outline: 2px solid var(--bronze-light); outline-offset: 4px; }

.scroll-progress {
  position: fixed; inset: 0 0 auto; z-index: 2000; height: 3px; pointer-events: none;
}
.scroll-progress span {
  display: block; width: 100%; height: 100%; background: var(--bronze-light);
  transform: scaleX(var(--progress, 0)); transform-origin: left center; will-change: transform;
}

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: background .4s ease, transform .4s var(--ease), backdrop-filter .4s ease;
}
.site-header.scrolled { background: rgba(31, 36, 28, .9); backdrop-filter: blur(18px); }
.site-header.header-hidden { transform: translateY(-100%); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: clamp(210px, 19vw, 270px); }
.site-nav { display: flex; align-items: center; gap: 34px; color: rgba(255, 255, 255, .77); font-size: .86rem; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; padding-block: 9px; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 1px;
  background: var(--bronze-light); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.site-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.header-phone {
  display: inline-flex; align-items: center; gap: 10px; padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, .2); color: var(--white);
  font-size: .84rem; font-weight: 800; white-space: nowrap;
}
.phone-icon { width: 17px; height: 17px; fill: currentColor; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 16px; min-height: 45px; padding: 0 18px;
  color: var(--ink); background: var(--white); transition: background .25s ease, transform .25s var(--ease);
}
.nav-cta:hover { background: var(--bronze-light); transform: translateY(-2px); }
.nav-cta span, .button span, .arrow-link span { transition: transform .3s var(--ease); }
.nav-cta:hover span, .button:hover span, .arrow-link:hover span { transform: translate(3px, -3px); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-button span:not(.sr-only) {
  display: block; width: 28px; height: 2px; margin: 6px 0; background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
  --hero-scroll: 0px;
  position: relative; min-height: max(760px, 100svh); display: grid; align-items: center;
  overflow: hidden; color: var(--white); background: var(--ink); isolation: isolate;
}
.hero-media, .hero-shade, .hero-grain { position: absolute; inset: 0; }
.hero-media { z-index: -3; overflow: hidden; }
.hero-media > img, .hero-media > video {
  height: 100%; object-fit: cover;
  transform: scale(1.09) translate3d(0, var(--hero-scroll), 0);
  will-change: transform; transition: transform .15s linear;
}
.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at center, rgba(30, 35, 26, .22) 0%, rgba(24, 29, 21, .72) 100%),
    linear-gradient(0deg, rgba(31, 36, 27, .56), rgba(61, 57, 42, .2));
}
.hero-grain {
  z-index: -1; opacity: .22; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}
.hero-content { display: grid; place-items: center; padding: 110px 0 36px; text-align: center; }
.eyebrow {
  margin: 0 0 24px; color: var(--bronze); font-size: .72rem; font-weight: 800;
  letter-spacing: .19em; text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 0; font-family: Oswald, Impact, sans-serif; font-weight: 600;
  line-height: .92; letter-spacing: -.035em; text-transform: uppercase;
}
h1 { font-size: clamp(4.8rem, 11.2vw, 10.6rem); }
.build-title {
  max-width: 100%; overflow: hidden; margin-inline: auto; padding-bottom: .11em;
  font-size: clamp(4.2rem, 11.4vw, 10.2rem); text-transform: none; white-space: nowrap;
}
.build-line { position: relative; display: inline-flex; align-items: baseline; padding: .04em .02em .1em; }
.build-line::after {
  content: ""; position: absolute; right: .02em; bottom: 0; left: .02em; height: .045em;
  background: var(--bronze-light); transform: scaleX(0); transform-origin: left;
  animation: buildFoundation .55s .1s var(--ease) forwards, foundationFade .4s 2.05s ease forwards;
}
.build-letter {
  display: inline-block; color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .8);
  transform-origin: center bottom;
  animation: buildLetter .72s var(--delay) var(--ease) both;
}
.build-space { width: .25em; }
.button {
  display: inline-flex; min-height: 56px; align-items: center; justify-content: center; gap: 24px;
  padding: 0 24px; border: 1px solid transparent; border-radius: 0; font-weight: 800;
  cursor: pointer; transition: transform .25s var(--ease), background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--bronze); }
.button-primary:hover { color: var(--ink); background: var(--bronze-light); }
@keyframes buildLetter {
  0% { opacity: 0; color: transparent; transform: translateY(.82em) scaleY(.06); filter: blur(3px); }
  58% { opacity: 1; color: transparent; transform: translateY(0) scaleY(1); filter: blur(0); }
  100% { opacity: 1; color: var(--white); -webkit-text-stroke-color: transparent; transform: translateY(0) scaleY(1); filter: blur(0); }
}
@keyframes buildFoundation { to { transform: scaleX(1); } }
@keyframes foundationFade { to { opacity: 0; } }

.section { padding: clamp(110px, 14vw, 190px) 0; }
.services-section { background: var(--paper); }
.section-intro { display: block; margin-bottom: clamp(65px, 9vw, 120px); }
.section-intro .eyebrow { margin-bottom: 26px; }
.section-intro h2 { max-width: 1050px; }
h2 { font-size: clamp(3.4rem, 7vw, 7rem); }
.section-intro h2 span, .statement-section blockquote span { color: var(--bronze); }
.service-list { border-top: 1px solid var(--line); }
.service-item {
  --spot-x: 50%; --spot-y: 50%;
  position: relative; display: grid; grid-template-columns: 1fr .75fr; align-items: center; gap: 28px;
  min-height: 150px; padding: 22px 0; overflow: hidden; border-bottom: 1px solid var(--line);
  transition: color .35s ease;
}
.service-item::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0;
  background: radial-gradient(380px circle at var(--spot-x) var(--spot-y), rgba(149, 99, 61, .16), transparent 65%);
  transition: opacity .3s ease;
}
.service-item > * { position: relative; z-index: 1; }
.service-item:hover { padding-inline: 0; }
.service-item:hover::before { opacity: 1; }
.service-item h3 { margin: 0; font: 600 clamp(1.9rem, 3.5vw, 3.6rem)/1 Oswald, sans-serif; text-transform: uppercase; }
.service-item p { max-width: 330px; margin: 0; color: var(--muted); font-size: .93rem; }
.service-note { margin: 32px 0 0 auto; max-width: 560px; color: var(--muted); font-size: .85rem; }

.work-section { padding: clamp(110px, 14vw, 180px) 0 clamp(90px, 12vw, 150px); color: var(--white); background: var(--charcoal); }
.work-heading {
  display: grid; grid-template-columns: 1fr .45fr; align-items: end; gap: 50px;
  margin-bottom: clamp(55px, 8vw, 100px);
}
.work-heading .eyebrow { color: var(--bronze-light); }
.project-carousel { position: relative; outline: none; touch-action: pan-y; }
.project-carousel:focus-visible { outline: 2px solid var(--bronze-light); outline-offset: 8px; }
.carousel-viewport { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--graphite); box-shadow: var(--shadow); }
.carousel-track {
  display: flex; height: 100%; transform: translate3d(0, 0, 0);
  transition: transform .8s var(--ease); will-change: transform;
}
.carousel-slide { position: relative; flex: 0 0 100%; height: 100%; overflow: hidden; }
.carousel-slide::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(21, 26, 19, .68), transparent 42%);
  pointer-events: none;
}
.carousel-slide img, .carousel-slide video {
  height: 100%; object-fit: cover; transform: scale(1.055);
  transition: transform 1.25s var(--ease), filter .8s ease;
}
.carousel-slide.is-active img, .carousel-slide.is-active video { transform: scale(1); }
.carousel-caption {
  position: absolute; left: clamp(22px, 4vw, 54px); bottom: clamp(24px, 4vw, 48px); z-index: 2;
  display: grid; gap: 3px;
}
.carousel-caption span { font-size: clamp(1rem, 1.6vw, 1.35rem); font-weight: 800; }
.carousel-caption small { color: rgba(250, 245, 233, .62); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.carousel-dots {
  position: absolute; right: 0; bottom: clamp(25px, 4vw, 48px); left: 0; z-index: 3;
  display: flex; justify-content: center; gap: 9px; pointer-events: none;
}
.carousel-dot {
  width: 10px; height: 10px; padding: 0; border: 1px solid rgba(250, 245, 233, .82); border-radius: 999px;
  appearance: none; background: transparent; cursor: pointer; pointer-events: auto;
  transition: width .35s var(--ease), background .25s ease, transform .25s var(--ease);
}
.carousel-dot:hover { transform: scale(1.18); }
.carousel-dot[aria-current="true"] { width: 32px; background: var(--bronze-light); border-color: var(--bronze-light); }

.statement-section { padding: clamp(120px, 16vw, 220px) 0; background: var(--white); }
.statement-grid { display: grid; grid-template-columns: .35fr 1.15fr .55fr; gap: clamp(35px, 6vw, 85px); align-items: start; }
.statement-grid > .eyebrow { padding-top: 14px; }
.statement-section blockquote {
  margin: 0; font: 600 clamp(2.8rem, 5.7vw, 6.4rem)/1 Oswald, sans-serif;
  letter-spacing: -.035em; text-transform: uppercase;
}
.process-list { padding-top: 14px; }
.process-list div { display: grid; grid-template-columns: 35px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.process-list span { color: var(--bronze); font-size: .72rem; }
.process-list strong { font-size: .84rem; }

.about-section { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 760px; background: var(--paper); }
.about-media { overflow: hidden; }
.about-media img { height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.about-section:hover .about-media img { transform: scale(1.025); }
.about-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(70px, 8vw, 130px); }
.about-copy h2 { margin-bottom: 38px; font-size: clamp(3.1rem, 5.6vw, 6rem); }
.about-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 36px; color: var(--muted); }
.arrow-link { display: inline-flex; gap: 22px; padding-bottom: 8px; border-bottom: 1px solid var(--ink); font-size: .9rem; font-weight: 800; }

.estimate-section { padding: clamp(110px, 14vw, 180px) 0; color: var(--white); background: var(--ink); }
.estimate-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.estimate-intro h2 { margin-bottom: 34px; font-size: clamp(3.7rem, 6.5vw, 7rem); }
.estimate-intro > p:not(.eyebrow) { color: rgba(255, 255, 255, .53); }
.direct-contact { display: grid; gap: 9px; margin-top: 42px; font-size: .88rem; font-weight: 700; }
.direct-contact a { width: fit-content; border-bottom: 1px solid rgba(255, 255, 255, .3); }
.estimate-form { display: grid; gap: 25px; padding-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
label > span { display: block; margin-bottom: 8px; color: rgba(255, 255, 255, .55); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
input, select, textarea {
  width: 100%; padding: 15px 0; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .25); border-radius: 0;
  outline: none; color: var(--white); background: transparent; transition: border-color .25s ease;
}
select { color-scheme: dark; }
textarea { min-height: 100px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--bronze-light); }
::placeholder { color: rgba(255, 255, 255, .3); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 8px; }
.form-footer p { margin: 0; color: rgba(255, 255, 255, .35); font-size: .7rem; }

.site-footer { padding: 60px 0 26px; color: var(--white); background: #171b15; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 55px; }
.footer-top img { width: min(300px, 63vw); }
.footer-top a { display: inline-flex; gap: 15px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .38); font-size: .7rem; }

.js [data-reveal] {
  opacity: 0; transform: translateY(46px); transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.js [data-reveal-group] [data-reveal]:nth-child(2) { transition-delay: .06s; }
.js [data-reveal-group] [data-reveal]:nth-child(3) { transition-delay: .12s; }
.js [data-reveal-group] [data-reveal]:nth-child(4) { transition-delay: .18s; }

@media (max-width: 980px) {
  .shell { width: min(calc(100% - 40px), var(--shell)); }
  .nav-wrap { gap: 16px; }
  .header-phone {
    position: relative; z-index: 2; width: 44px; height: 44px; justify-content: center;
    margin-left: auto; padding: 0; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%;
  }
  .header-phone:hover { color: var(--ink); background: var(--bronze-light); border-color: var(--bronze-light); }
  .header-phone .phone-icon { width: 18px; height: 18px; }
  .phone-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
  .menu-button { display: block; position: relative; z-index: 2; }
  .site-nav {
    position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 10px; padding: 100px 40px 50px; visibility: hidden; opacity: 0; background: rgba(31, 36, 28, .98);
    transform: translateY(-18px); transition: opacity .35s ease, transform .35s var(--ease), visibility .35s;
  }
  .site-nav.open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav > a { font: 600 clamp(2.5rem, 10vw, 4.8rem)/1.1 Oswald, sans-serif; text-transform: uppercase; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 25px; min-height: 54px; font: 800 .9rem Archivo, sans-serif !important; text-transform: none !important; }
  .hero-content { padding: 100px 0 28px; }
  .work-heading { grid-template-columns: 1fr; gap: 25px; }
  .section-intro .eyebrow { padding-top: 0; }
  .statement-grid { grid-template-columns: .25fr 1fr; }
  .process-list { grid-column: 2; width: min(100%, 520px); }
  .about-section { grid-template-columns: 1fr; }
  .about-media { min-height: 600px; }
  .estimate-grid { grid-template-columns: 1fr; }
  .estimate-intro { max-width: 700px; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 184px; }
  .site-nav { padding-inline: 24px; }
  .hero { min-height: 740px; }
  .hero-content { padding: 92px 0 24px; }
  .hero-eyebrow { max-width: 300px; font-size: .62rem; line-height: 1.5; }
  .hero-eyebrow span { flex: 0 0 22px; }
  h1 { line-height: .88; }
  .build-title { font-size: clamp(3.05rem, 12.2vw, 5.1rem); letter-spacing: -.045em; }
  .build-letter { -webkit-text-stroke-width: 1px; }
  .section { padding: 100px 0; }
  h2 { font-size: clamp(3.25rem, 15vw, 5.15rem); }
  .section-intro { margin-bottom: 60px; }
  .service-item { grid-template-columns: 1fr; gap: 12px; min-height: 142px; padding-block: 26px; }
  .service-item h3 { font-size: clamp(1.65rem, 8vw, 2.35rem); }
  .service-item p { padding-right: 10px; font-size: .82rem; }
  .service-item:hover { padding-inline: 10px; }
  .service-note { font-size: .78rem; }
  .work-section { padding: 100px 0; }
  .work-heading { margin-bottom: 55px; }
  .carousel-viewport { aspect-ratio: 4 / 5; }
  .carousel-caption { bottom: 68px; }
  .carousel-dots { bottom: 26px; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-grid > .eyebrow { padding-top: 0; }
  .statement-section blockquote { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .process-list { grid-column: auto; margin-top: 30px; }
  .about-media { min-height: 430px; }
  .about-copy { padding: 85px 24px 100px; }
  .about-copy h2 { margin-bottom: 28px; }
  .estimate-section { padding: 100px 0; }
  .field-row { grid-template-columns: 1fr; gap: 25px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .direct-contact { overflow-wrap: anywhere; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-media > img, .hero-media > video { transform: scale(1.02); }
  .js [data-reveal] { opacity: 1; transform: none; }
}
