:root {
  --ink: #111;
  --mute: #6b6b6b;
  --line: #e8e8e8;
  --paper: #fff;
  --wash: #f6f6f6;
  --black: #000;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Jost, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 15px;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--black);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

header.nav {
  position: sticky; top: 0; z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
header.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 24px;
}
.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.1;
}
.logo span {
  display: block;
  font-family: Jost, sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 400;
  margin-top: 3px;
}
nav ul { display: flex; gap: 22px; list-style: none; align-items: center; }
nav a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
nav a:hover, nav a.active { border-bottom: 1px solid #111; padding-bottom: 2px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px;
  background: var(--black);
  color: #fff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  border: 1px solid var(--black);
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: #333; }
.btn.ghost { background: transparent; color: var(--black); }
.btn.ghost:hover { background: var(--black); color: #fff; }
.btn.ghost.light { color: #fff; border-color: #fff; }
.btn.ghost.light:hover { background: #fff; color: #111; }

.hero-full {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: end center;
  color: #fff;
  overflow: hidden;
}
.hero-full img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-full .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.45) 100%);
}
.hero-full .copy {
  position: relative;
  text-align: center;
  padding: 0 24px 72px;
}
.hero-full h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(42px, 7vw, 88px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin: 8px 0 16px;
}
.hero-full .shop-link {
  display: inline-block;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
}
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: 24px; }
.lede { font-size: 16px; max-width: 520px; color: rgba(255,255,255,0.88); }

.section { padding: 72px 0; }
.section.alt { background: var(--wash); }
.section.tight { padding: 56px 0; }
.kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 8px;
  color: var(--mute);
}
.intro { max-width: 640px; margin: 10px 0 28px; color: var(--mute); }

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.duo a { position: relative; display: block; overflow: hidden; background: #111; }
.duo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.5s ease; }
.duo a:hover img { transform: scale(1.04); }
.duo span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.wall-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.wall-head h2 { margin: 0; }

.shop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.shop img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--wash);
}
.shop.contain img { object-fit: contain; padding: 12px; background: #fff; }
.shop figcaption { padding: 12px 4px 20px; text-align: center; }
.shop strong {
  display: block;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.shop small { color: var(--mute); font-size: 12px; }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.shot { background: #fff; }
.shot img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--wash); }
.shot.catalog img { object-fit: contain; aspect-ratio: 1/1; background: #fff; padding: 8px; }
.shot .cap { padding: 12px 4px 8px; text-align: center; }
.shot .cap strong {
  display: block;
  font-family: Jost, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.shot .cap span { display: block; color: var(--mute); font-size: 13px; margin-top: 2px; }

.grid-3, .grid-4, .grid-2 { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; align-items: start; }
.split { align-items: center; }
.split img { width: 100%; height: 520px; object-fit: cover; }
.split .copy { padding: 12px 8px 12px 36px; }

.card { background: #fff; border: 1px solid var(--line); padding: 28px 24px; }
.card h3 { margin: 8px 0 10px; }
.card p { color: var(--mute); }

.stat b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 500;
}
.stat span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }

.list { list-style: none; margin-top: 14px; }
.list li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.list li strong { display: block; }

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 0;
}
.strip .wrap { display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between; }

.page-hero {
  padding: 72px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero .lede { margin: 8px auto 0; color: var(--mute); }

form { display: grid; gap: 14px; }
label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  display: block;
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid #d8d8d8;
  background: #fff; font: inherit; color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-box { background: var(--wash); padding: 36px; }
.contact-box a { text-decoration: underline; text-underline-offset: 3px; }

.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-row h2 { margin: 0; }

footer {
  background: #fff;
  color: var(--mute);
  padding: 48px 0 24px;
  font-size: 13px;
  border-top: 1px solid var(--line);
}
footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
footer .logo { color: var(--ink); margin-bottom: 12px; }
.fine {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: #999;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wall { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 10px; }
.wall.three { grid-template-columns: repeat(3, 1fr); }
.tile { position: relative; display: block; overflow: hidden; background: #111; min-height: 220px; }
.tile img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform 0.5s ease; }
.tile.tall { grid-row: span 2; }
.tile.tall img { aspect-ratio: auto; min-height: 460px; }
.tile span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tile span b { display: block; font-weight: 400; font-size: 13px; letter-spacing: 0.14em; }
.tile:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .duo, .shots, .grid-3, .grid-4, .grid-2,
  .wall, .wall.three, .cta-row, .wall-head, .form-row, footer .wrap { grid-template-columns: 1fr; }
  nav ul { display: none; }
  .split .copy { padding: 20px 0 0; }
  .split img, .tile.tall img, .hero-full { min-height: 420px; }
  .shop { grid-template-columns: 1fr 1fr; }
}
