:root {
  --bg: #15201d;
  --paper: #f3f0e8;
  --ink: #17201d;
  --muted: #69756f;
  --rust: #b25d33;
  --line: rgba(23, 32, 29, 0.16);
  --container: min(1240px, calc(100% - 44px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Aptos", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.58 var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 9;
  transform: translateY(-180%);
  background: #fff;
  color: #111;
  padding: 0.7rem 1rem;
}
.skip-link:focus {
  transform: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.topline {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.55rem 1rem;
  background: var(--bg);
  color: #fff;
  font-size: 0.82rem;
}
.topline a {
  color: #d9b08c;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem max(22px, calc((100vw - 1240px) / 2));
  background: rgba(243, 240, 232, 0.96);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.brand span {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
}
.brand strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}
.site-nav {
  display: flex;
  gap: 1.2rem;
}
.site-nav a {
  text-transform: uppercase;
  font-size: 0.76rem;
}
.site-nav a:hover {
  color: var(--rust);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 3rem;
  height: 3rem;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.3rem auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.95fr);
  min-height: calc(100vh - 2.2rem);
  align-items: center;
}
.hero-copy {
  padding: 6rem 0 6rem max(22px, calc((100vw - 1240px) / 2));
  max-width: 44rem;
}
.hero > img {
  width: 100%;
  height: 100%;
  min-height: 38rem;
}
.eyebrow {
  color: var(--rust);
  text-transform: uppercase;
  font-size: 0.76rem;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}
h1 {
  font-size: 6rem;
  line-height: 0.9;
}
h2 {
  font-size: 4rem;
  line-height: 0.94;
}
p {
  color: var(--muted);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 0.75rem 1rem;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.28s var(--ease),
    background 0.28s var(--ease),
    color 0.28s var(--ease);
}
.button:hover {
  transform: translateY(-2px);
  background: var(--ink);
  color: #fff;
}
.button.primary {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-strip article {
  padding: 2rem;
  border-right: 1px solid var(--line);
}
.proof-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}
.proof-strip span {
  color: var(--muted);
}

.split,
.services,
.quote {
  width: var(--container);
  margin: 0 auto;
  padding: 6.5rem 0;
}
.split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3rem;
}
.build-stack {
  display: grid;
  gap: 1rem;
}
.build-stack figure {
  margin: 0;
}
.build-stack img {
  width: 100%;
  height: 25rem;
}
.build-stack figcaption {
  padding: 0.8rem 0;
  color: var(--muted);
}

.services {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 3rem;
  border-top: 1px solid var(--line);
}
.service-list {
  display: grid;
  gap: 0;
}
.service-list article {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.service-list span {
  color: var(--rust);
}
.service-list h3 {
  margin: 0.2rem 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.quote {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 3rem;
  width: 100%;
  padding-left: max(22px, calc((100vw - 1240px) / 2));
  padding-right: max(22px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: #fff;
}
.quote p {
  color: #c5ccc7;
}
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.full {
  grid-column: 1 / -1;
}
label {
  display: grid;
  gap: 0.45rem;
  color: #c5ccc7;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #101714;
  color: #fff;
  padding: 0.85rem;
}
footer {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem max(22px, calc((100vw - 1240px) / 2))
    max(2rem, env(safe-area-inset-bottom));
  background: #0e1513;
  color: #fff;
}
.mobile-cta {
  display: none;
}
.reveal {
  opacity: 0;
  transform: translate3d(0, 1.4rem, 0);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 22px;
    display: none;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 1rem;
  }
  .site-nav.is-open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .hero,
  .split,
  .services,
  .quote {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 6rem 22px 3rem;
  }
  .hero > img {
    min-height: 24rem;
  }
  .proof-strip {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3rem;
  }
  .quote-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topline {
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
  }
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 10;
    justify-content: center;
    padding: 0.9rem;
    background: var(--rust);
    color: #fff;
  }
  .build-stack img {
    height: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

html,
body {
  max-width: 100%;
  min-height: 100%;
  background: var(--paper);
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
}

.site-header {
  isolation: isolate;
}

.site-header::before {
  position: absolute;
  inset: 0 -1rem;
  z-index: -1;
  content: "";
  background: rgba(246, 241, 231, 0.92);
  opacity: 0.96;
}

.hero > img,
.build-stack img {
  transform: translate3d(0, var(--parallax, 0), 0) scale(1.012);
  will-change: transform;
}

.build-stack figure {
  overflow: hidden;
}

.build-stack img {
  clip-path: inset(9% 0 9% 0);
  transition:
    opacity 850ms var(--ease),
    transform 1000ms var(--ease),
    clip-path 1000ms var(--ease),
    filter 520ms ease;
}

.build-stack img.is-visible,
.build-stack figure.is-visible img {
  clip-path: inset(0);
}

.build-stack figure:hover img {
  filter: saturate(0.92) contrast(1.05);
  transform: translate3d(0, calc(var(--parallax, 0) - 0.5rem), 0) scale(1.018);
}

.proof-strip article,
.service-list article {
  transition:
    background 420ms var(--ease),
    transform 420ms var(--ease),
    border-color 420ms ease;
}

.proof-strip article:hover,
.service-list article:hover {
  background: rgba(119, 70, 43, 0.06);
  transform: translate3d(0.6rem, 0, 0);
}

.site-nav {
  max-width: calc(100vw - 44px);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--rust);
  transition: transform 360ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.button::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 360ms var(--ease);
}

.button:hover::after,
.button:focus-visible::after {
  transform: scaleX(1);
}

.reveal {
  clip-path: inset(0 0 14% 0);
  transition:
    opacity 820ms var(--ease),
    transform 820ms var(--ease),
    clip-path 820ms var(--ease);
}

.reveal.is-visible {
  clip-path: inset(0);
}

.preview-world .site-header {
  position: sticky;
}

.preview-world .mobile-cta {
  position: sticky;
  bottom: 0;
}

.preview-world,
.preview-world body {
  overscroll-behavior: contain;
  scroll-padding-top: 5.5rem;
}

.preview-world .site-nav {
  contain: paint;
}

.split,
.services,
.quote {
  position: relative;
}

.split::before,
.services::before {
  position: absolute;
  left: 0;
  top: 3rem;
  width: min(16rem, 34vw);
  height: 1px;
  content: "";
  background: var(--rust);
  opacity: 0.4;
}

.quote-form {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 2rem 5rem rgba(5, 8, 7, 0.24);
}

input,
select,
textarea {
  transition:
    border-color 320ms var(--ease),
    background 320ms ease,
    transform 320ms var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(217, 176, 140, 0.68);
  background: #17211d;
  outline: none;
  transform: translate3d(0, -0.12rem, 0);
}

.proof-strip strong {
  letter-spacing: -0.03em;
}

.service-list article:hover h3 {
  color: var(--rust);
}

@media (max-width: 900px) {
  .site-nav {
    right: 22px;
    width: min(21rem, calc(100vw - 44px));
    max-height: min(24rem, calc(100svh - 5.5rem));
    overflow: auto;
    box-shadow: 0 2rem 5rem rgba(21, 32, 29, 0.2);
  }

  .site-nav.is-open {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero > img,
  .build-stack img,
  .build-stack figure:hover img {
    transform: none;
  }

  .reveal,
  .build-stack img {
    clip-path: none;
  }
}
