:root {
  --bg: #0c0b0a;
  --bg-2: #161412;
  --ink: #f4efe8;
  --muted: #9a9186;
  --line: rgba(244, 239, 232, 0.12);
  --accent: #d4a574;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: linear-gradient(to bottom, rgba(12,11,10,0.92), transparent);
}

.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.nav { display: flex; gap: 1.75rem; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--ink); }

.menu-btn {
  display: none;
  background: none;
  border: 0;
  width: 28px;
  height: 16px;
  position: relative;
  cursor: pointer;
}
.menu-btn span {
  position: absolute; left: 0; right: 0; height: 1px; background: var(--ink);
}
.menu-btn span:first-child { top: 2px; }
.menu-btn span:last-child { bottom: 2px; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 35;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--serif);
  font-size: 2.4rem;
}
.mobile-nav.is-open { display: flex; }

.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 8vw 4rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); max-width: 12ch; }

h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

.lede {
  max-width: 38ch;
  color: var(--muted);
  margin: 1.25rem 0 2rem;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  padding: 0.85rem 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
  font-family: var(--sans);
}
.btn:hover { border-color: var(--accent); color: var(--accent); }

.featured { padding: 0 8vw 5rem; }
.featured-image img {
  width: 100%;
  height: min(78vh, 820px);
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}

.work { padding: 2rem 8vw 6rem; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }
@media (max-width: 900px) {
  .tile-meta { opacity: 1; }
}
.filter {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 0.45rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
}
.filter.is-active, .filter:hover {
  color: var(--ink);
  border-color: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}

.tile {
  grid-column: span 4;
  position: relative;
  border: 0;
  background: var(--bg-2);
  cursor: zoom-in;
  overflow: hidden;
  min-height: 280px;
  padding: 0;
}
.tile.tall { grid-row: span 2; min-height: 580px; }
.tile.wide { grid-column: span 8; }

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: saturate(0.9);
}
.tile:hover img { transform: scale(1.04); filter: saturate(1); }

.tile-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  opacity: 0;
  transition: opacity 0.3s;
}
.tile:hover .tile-meta { opacity: 1; }
.tile.is-hidden { display: none; }

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  padding: 5rem 8vw;
  align-items: center;
  border-top: 1px solid var(--line);
}
.about-copy p + p { margin-top: 1rem; color: var(--muted); }
.about-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.contact {
  padding: 5rem 8vw 6rem;
  border-top: 1px solid var(--line);
}
.contact .lede { margin-bottom: 2rem; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 720px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  font-family: var(--sans);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--accent);
}
.fine-print { margin-top: 1rem; color: var(--muted); font-size: 0.8rem; }

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 8vw 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.lightbox {
  border: 0;
  padding: 0;
  background: rgba(8,7,6,0.94);
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
}
.lightbox::backdrop { background: #000; }
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  margin: auto;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .tile, .tile.wide { grid-column: span 6; }
  .tile.tall { grid-row: span 1; min-height: 320px; }
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo img { height: 360px; }
  .contact-form { grid-template-columns: 1fr; }
  .hero { padding: 7rem 6vw 3rem; min-height: 78vh; }
  .featured, .work, .about, .contact, .site-footer { padding-left: 6vw; padding-right: 6vw; }
}

@media (max-width: 560px) {
  .tile, .tile.wide { grid-column: span 12; min-height: 260px; }
}
