:root {
  --ink: #12110f;
  --ink-soft: #292620;
  --paper: #f1eee7;
  --white: #fffefa;
  --wood: #a77b42;
  --gold: #c69b5d;
  --line: rgba(18,17,15,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.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;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  transform: translateY(-180%);
  background: var(--white);
  padding: .7rem 1rem;
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 6.25rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: inherit;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
  line-height: 1.25;
}
.brand em {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: .92rem;
  letter-spacing: .16em;
}
.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82rem;
  letter-spacing: -.02em;
}
.brand-logo img {
  width: clamp(13rem, 20vw, 19rem);
  height: auto;
}
nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.8rem); }
nav a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 650;
}
nav a:hover, nav a:focus-visible { color: #e3c393; }
.nav-contact {
  padding: .78rem 1rem;
  border: 1px solid rgba(255,255,255,.55);
}
.menu-toggle {
  display: none;
  color: inherit;
  background: transparent;
  border: 0;
  padding: .5rem;
}
.menu-toggle > span:not(.sr-only) { display: block; width: 1.65rem; height: 1px; background: currentColor; margin: .32rem 0; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,8,7,.82) 0%, rgba(9,8,7,.42) 44%, rgba(9,8,7,.08) 78%), linear-gradient(0deg, rgba(9,8,7,.62), transparent 52%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 11rem clamp(1.5rem, 8vw, 9rem) clamp(4rem, 8vw, 7.5rem);
  max-width: 57rem;
}
.eyebrow {
  margin: 0 0 1.4rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 700;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
  margin: 0;
}
h1 { font-size: clamp(4.5rem, 10vw, 9.7rem); }
h1 i, h2 i { color: #d7b47d; font-weight: 400; }
.hero-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 2rem 0 2.3rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 700;
  padding-bottom: .55rem;
  border-bottom: 1px solid currentColor;
}
.text-link span { font-size: 1.1rem; transition: transform .25s ease; }
.text-link:hover span { transform: translate(.25rem, .25rem); }
.hero-index {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4.5rem);
  bottom: 3rem;
  z-index: 2;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .65rem;
}

.section-pad { padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 7vw, 8rem); }
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  font-weight: 700;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.section-label::after { content: ""; height: 1px; width: 5rem; background: currentColor; opacity: .35; }
.section-label span { color: var(--wood); }
.statement-content {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, .75fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
}
.statement h2 { font-size: clamp(3.2rem, 6.5vw, 6.5rem); }
.statement .lead {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.35;
  margin: 0 0 2.2rem;
}
.statement-content > div:last-child > p:last-child { color: #5f5a51; max-width: 36rem; }

.work-section { background: var(--ink); color: var(--white); padding-bottom: clamp(5rem, 9vw, 9rem); }
.work-heading { padding-bottom: clamp(3rem, 5vw, 5rem); }
.light-label span { color: #d7b47d; }
.work-heading h2 { font-size: clamp(3.6rem, 7.5vw, 7.5rem); }
.work-heading > p { max-width: 37rem; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.gallery {
  padding: 0 clamp(1rem, 3vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(.8rem, 1.6vw, 1.5rem);
}
.project {
  grid-column: span 4;
  min-height: 27rem;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #24211d;
  color: var(--white);
  cursor: zoom-in;
  text-align: left;
}
.project-wide { grid-column: span 8; }
.project-tall { min-height: 36rem; }
.project img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82), transparent 50%);
}
.project span {
  position: absolute;
  z-index: 2;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.25rem;
}
.project b { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 400; }
.project small { text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; opacity: .72; }
.project:hover img, .project:focus-visible img { transform: scale(1.035); filter: brightness(.82); }
.project:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.process { background: #dfd8cb; }
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(26rem, 1.2fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.process h2 { font-size: clamp(3rem, 5vw, 5.4rem); max-width: 42rem; }
.process-grid > div > p { max-width: 37rem; color: #595349; margin: 2.25rem 0 3rem; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.steps li span { grid-row: 1 / 3; color: #8d6c3c; font-size: .7rem; padding-top: .15rem; }
.steps li b { font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; }
.steps li small { color: #696258; }
.process figure { margin: 0; }
.process figure img { width: 100%; aspect-ratio: 1.45 / 1; object-fit: cover; }
.process figcaption { margin-top: .75rem; font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; }

.about {
  background: var(--ink-soft);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(22rem, .95fr) minmax(25rem, 1.05fr);
  min-height: 53rem;
}
.about-photo { min-height: 46rem; overflow: hidden; background: #d8d0c1; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.about-copy { padding: clamp(4rem, 8vw, 8rem); align-self: center; }
.about-copy .section-label { margin-bottom: 4rem; }
.about h2 { font-size: clamp(3.5rem, 6vw, 6.5rem); margin-bottom: 2rem; }
.about-copy > p:not(.eyebrow) { color: rgba(255,255,255,.72); max-width: 45rem; }
.recognition { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.18); }
.recognition b { text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; }
.recognition p { color: rgba(255,255,255,.58); }

.testimonials h2 { font-size: clamp(3.5rem, 6vw, 6.5rem); margin-bottom: clamp(3.5rem, 6vw, 6rem); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
blockquote { margin: 0; padding: clamp(2rem, 4vw, 3.5rem); border-right: 1px solid var(--line); }
blockquote:last-child { border-right: 0; }
blockquote p { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 1.8vw, 1.65rem); line-height: 1.45; }
blockquote cite { font-style: normal; text-transform: uppercase; letter-spacing: .13em; font-size: .65rem; color: #71695e; }

.contact {
  min-height: 47rem;
  position: relative;
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.contact-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,10,8,.9), rgba(11,10,8,.5) 60%, rgba(11,10,8,.1)); }
.contact-inner { position: relative; z-index: 2; padding: clamp(4rem, 9vw, 9rem); width: 100%; }
.contact-inner .section-label { margin-bottom: 3.5rem; }
.contact h2 { font-size: clamp(4rem, 8vw, 8.5rem); max-width: 62rem; }
.contact-inner > p { max-width: 36rem; font-size: 1.08rem; color: rgba(255,255,255,.76); margin: 2rem 0 3rem; }
.contact-links { display: flex; flex-wrap: wrap; gap: 1rem 3rem; }
.contact-links a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.55); padding-bottom: .4rem; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.contact-links span { margin-left: 1.5rem; }

footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 2.5rem clamp(1.5rem, 4vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-brand { color: var(--white); }
footer p { margin: 0; }
footer p:last-child { text-align: right; }

.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  width: min(92vw, 85rem);
  max-width: none;
}
.lightbox::backdrop { background: rgba(8,7,6,.92); backdrop-filter: blur(8px); }
.lightbox img { max-height: 82vh; width: 100%; object-fit: contain; }
.lightbox p { margin: .8rem 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.lightbox-close { position: fixed; top: 1rem; right: 1.5rem; color: var(--white); border: 0; background: transparent; font-size: 2.7rem; line-height: 1; cursor: pointer; }

@media (max-width: 960px) {
  .statement-content, .process-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-photo { min-height: 38rem; }
  .quotes { grid-template-columns: 1fr; }
  blockquote { border-right: 0; border-bottom: 1px solid var(--line); }
  blockquote:last-child { border-bottom: 0; }
  .project, .project-wide { grid-column: span 6; min-height: 30rem; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p:nth-child(2) { display: none; }
}

@media (max-width: 720px) {
  .site-header { min-height: 5rem; padding: 1rem 1.25rem; }
  .brand-logo img { width: 12rem; }
  .menu-toggle { display: block; z-index: 30; }
  nav {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 6rem 2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  nav.open { transform: none; }
  nav a { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; text-transform: none; letter-spacing: -.02em; }
  .nav-contact { font-family: inherit; font-size: .75rem; text-transform: uppercase; letter-spacing: .13em; margin-top: 1.5rem; }
  .hero-copy { padding-bottom: 4.5rem; }
  .hero-shade { background: linear-gradient(0deg, rgba(9,8,7,.85) 0%, rgba(9,8,7,.35) 70%, rgba(9,8,7,.12)); }
  .hero-index { display: none; }
  .statement-content { gap: 2.5rem; }
  .gallery { grid-template-columns: 1fr; }
  .project, .project-wide { grid-column: 1; min-height: 25rem; }
  .project-tall { min-height: 31rem; }
  .process-grid > figure { order: -1; }
  .about-photo { min-height: 31rem; }
  .about-copy { padding: 4.5rem 1.5rem; }
  .contact-links { flex-direction: column; align-items: flex-start; }
  footer { grid-template-columns: 1fr; }
  footer p:last-child { text-align: left; }
}

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