:root {
  --cream: #f4f0ea;
  --cream-dark: #ebe4d8;
  --ink: #1c1712;
  --espresso: #2b241d;
  --taupe: #8a7b6b;
  --stone: #cfc4b6;
  --white: #fbf9f6;
  --rule: rgba(28, 23, 18, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-left, .nav-right {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-right { justify-content: flex-end; }
.nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav a:hover { opacity: 0.55; }
.nav a.active { opacity: 0.45; }
.brand {
  text-align: center;
  line-height: 1;
}
.brand img {
  height: 42px;
  width: auto;
  max-width: 220px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}
.brand .word {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.28em;
  font-weight: 500;
}
.brand .sub {
  display: block;
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--taupe);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  letter-spacing: 0.2em;
  font-size: 11px;
  text-transform: uppercase;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,23,18,0.18), rgba(28,23,18,0.42));
}
.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 920px;
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
h1, .display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.08;
}
h1 { font-size: clamp(40px, 6vw, 78px); }
.btn {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 28px;
  border: 1px solid currentColor;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  transition: 0.25s ease;
}
.btn:hover { background: var(--white); color: var(--ink); }
.btn-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-dark:hover { background: var(--ink); color: var(--cream); }
.btn-solid {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.btn-solid:hover { background: transparent; color: var(--espresso); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.center { text-align: center; }
.lede {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  max-width: 820px;
  margin: 0 auto 24px;
}
.muted { color: var(--taupe); }
p { margin-bottom: 16px; }
.intro p { max-width: 640px; margin-left: auto; margin-right: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.split img { width: 100%; height: 100%; object-fit: cover; }
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--white);
}
.split-copy.dark {
  background: var(--espresso);
  color: var(--cream);
}
.split-copy h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  margin: 10px 0 22px;
}
.label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 72px 32px;
}
.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}
.stats span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

.grid-3, .grid-2 {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.card img { width: 100%; height: 320px; object-fit: cover; }
.card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 18px 0 8px;
}
.card p { font-size: 15px; color: #4a433b; }
.work-card { position: relative; overflow: hidden; }
.work-card img { height: 420px; width: 100%; object-fit: cover; }
.work-card figcaption {
  padding: 18px 0 8px;
}
.work-card .loc {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
}

.quote {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: 110px 32px;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto 28px;
}
.quote cite {
  font-style: normal;
  letter-spacing: 0.22em;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--stone);
}
.reviews {
  padding: 96px 24px;
  background: var(--espresso);
  color: var(--cream);
}
.reviews .label { color: var(--stone); }
.reviews .lede { color: var(--cream); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 48px auto 0;
}
.review-card {
  border: 1px solid rgba(244, 240, 234, 0.16);
  padding: 32px 28px;
  text-align: left;
}
.review-card .stars {
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--stone);
  margin-bottom: 16px;
}
.review-card blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.review-card cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.process-list { max-width: 760px; margin: 48px auto 0; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
.step .num {
  font-family: var(--serif);
  font-size: 28px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.inquire-band {
  background: var(--cream-dark);
  text-align: center;
  padding: 96px 24px;
}

form {
  max-width: 640px;
  margin: 40px auto 0;
  display: grid;
  gap: 16px;
}
input, textarea, select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--stone);
  padding: 14px 2px;
  font-size: 15px;
  color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); }

.footer {
  padding: 56px 32px 32px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.footer .word {
  font-family: var(--serif);
  letter-spacing: 0.28em;
  font-size: 20px;
}
.footer img.footer-logo {
  height: 48px;
  width: auto;
  margin: 0 auto 12px;
}
.footer p { color: var(--taupe); font-size: 13px; margin: 8px 0; }
.footer .social { margin: 10px 0 4px; }
.footer .social a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--stone);
}
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--stone);
}

.page-hero {
  padding: 88px 24px 48px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); }

.team-group { max-width: 1080px; margin: 56px auto 0; }
.team-group .group-label {
  text-align: center;
  margin-bottom: 28px;
}
.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 860px;
  margin: 0 auto;
}
.team.roster {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  gap: 28px 36px;
}
.team h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.team.roster h3 { font-size: 22px; }
.team span { display: block; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-top: 6px; }
.team p { margin-top: 10px; color: var(--taupe); font-size: 14px; }

@media (max-width: 860px) {
  .nav-inner { grid-template-columns: 1fr auto auto; }
  .nav-left, .nav-right a {
    display: none;
  }
  .nav-right {
    justify-content: flex-end;
  }
  .nav.open .nav-left,
  .nav.open .nav-right {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 16px;
  }
  .nav.open .nav-right a { display: block; }
  .nav-toggle { display: block; }
  .split, .grid-3, .grid-2, .stats, .team, .team.roster, .review-grid { grid-template-columns: 1fr; }
  .split { min-height: auto; }
  .split img { height: 320px; }
  .split-copy { padding: 48px 28px; }
  .card img, .work-card img { height: 260px; }
}
