:root {
  --paper: #f6f3ed;
  --cream: #e9dfcf;
  --ink: #161513;
  --muted: #5c574e;
  --olive: #3a4136;
  --olive-deep: #262b23;
  --clay: #a35b3a;
  --line: rgba(22, 21, 19, 0.14);
  --white: #fffcf7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Jost", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.wrap { width: min(1760px, calc(100% - 80px)); margin: 0 auto; }
.wrap-narrow { width: min(760px, calc(100% - 80px)); margin: 0 auto; }

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  color: var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
}
.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo img {
  width: auto;
  height: 56px;
  object-fit: contain;
}
.lockup {
  width: 168px;
  margin: 0 auto 28px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-brand img { display: none; }
.nav-links {
  display: flex;
  gap: 48px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links a { opacity: 0.78; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
}

.statement {
  width: min(1760px, calc(100% - 80px));
  margin: 8px auto 48px;
  background: var(--cream);
  padding: 64px 72px 68px;
  text-align: left;
}
.statement h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.12;
  font-size: clamp(1.6rem, 4.4vw, 3.05rem);
}
.statement h1:after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: var(--ink);
  margin: 20px 0 0;
}
.statement p {
  margin: 22px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
}

.bleed img { height: min(86vh, 820px); object-fit: cover; }
.caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.section { padding: 88px 0; }
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
}
.lede { color: var(--muted); margin-top: 18px; }

.projects {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
}
.project {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--olive-deep);
  color: var(--white);
}
.project img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project:hover img { transform: scale(1.04); }
.project figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
}
.project small {
  display: block;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.85;
}
.project strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.quote-block { padding: 96px 0; text-align: center; }
.quote-block q {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  quotes: none;
  display: block;
  max-width: 820px;
  margin: 0 auto;
}
.quote-block cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.list { list-style: none; margin-top: 28px; }
.list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
}
.list b {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  padding-top: 4px;
}

.link {
  display: inline-block;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.link.light { border-bottom-color: rgba(255,252,247,0.5); color: var(--white); }

.band {
  background: var(--olive-deep);
  color: var(--white);
  padding: 96px 0;
}
.band p { color: rgba(255,252,247,0.72); max-width: 520px; margin-top: 16px; }

form { display: grid; gap: 18px; }
label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
input, textarea, select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  width: 100%;
  border-radius: 0;
}
textarea { min-height: 120px; resize: vertical; }
button.submit {
  margin-top: 10px;
  background: var(--olive);
  color: var(--white);
  border: 0;
  padding: 16px 22px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
.note { font-size: 13px; color: var(--muted); }

.work-stack { display: grid; gap: 8px; }
.work-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
}
.work-item { position: relative; min-height: 280px; overflow: hidden; background: #1c1b18; }
.work-item.tall { min-height: 420px; }
.work-item img { height: 100%; object-fit: cover; min-height: 280px; }
.work-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.work-row.four { grid-template-columns: repeat(5, 1fr); }
.album {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.album small {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--clay);
}
.album h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}
.album p { color: var(--muted); margin-top: 8px; }
.album-photo {
  width: 100%;
  max-width: 720px;
  height: 380px;
  object-fit: cover;
  margin-top: 18px;
}

.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0 36px;
}
.ba figure { margin: 0; }
.ba img { width: 100%; height: 420px; object-fit: cover; }
.ba figcaption {
  padding: 10px 0 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 860px) {
  .work-row.four, .album { grid-template-columns: 1fr; }
}

footer {
  background: var(--olive);
  color: rgba(255,252,247,0.78);
  padding: 40px 0 56px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ig {
  display: inline-flex;
  align-items: center;
  vertical-align: -3px;
  color: #e3b4bc;
  opacity: 0.95;
}
.ig:hover { color: #f0c8ce; }
.ig svg { display: block; }

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    inset: 96px 0 auto;
    background: var(--paper);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .split, .projects, .work-row, .list li, .ba { grid-template-columns: 1fr; }
  .ba img { height: 280px; }
  .bleed img { height: 64vh; }
  .section, .band { padding: 64px 0; }
  .wrap, .statement { width: calc(100% - 40px); }
  .statement { padding: 40px 28px 44px; }
}
