:root {
  --bg: #140e10;
  --paper: #161210;
  --ink: #f2e6d4;
  --mute: #9d8b76;
  --line: #2c241c;
  --copper: #c45c48;
  --pad: clamp(20px, 4vw, 56px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Songti SC", "Noto Serif SC", "Source Han Serif SC", "STSong", "SimSun", serif;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.top {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px var(--pad);
  background: rgba(12,10,8,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.mark { letter-spacing: .38em; font-size: 14px; }
nav { display: flex; gap: 8px; font-size: 14px; color: var(--mute); }
nav a, .cta, footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 12px;
}
nav a[aria-current="page"], nav a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, .cta:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}
.hero { position: relative; min-height: 86vh; overflow: hidden; }
.hero img,
.hero video { width: 100%; height: 86vh; object-fit: cover; filter: saturate(1.05); }
.hero-copy {
  position: absolute; left: var(--pad); bottom: 48px;
  max-width: 28rem;
  text-shadow: 0 12px 40px #000;
}
.hero-copy p { margin: 0 0 8px; color: #e8d9c4; letter-spacing: .28em; font-size: 12px; }
.hero-copy h1 { margin: 0 0 12px; font-size: clamp(40px, 8vw, 84px); font-weight: 500; letter-spacing: .18em; }
.hero-copy .sub { letter-spacing: 0; font-size: 16px; line-height: 1.8; max-width: 22em; }
.intro {
  width: min(720px, calc(100% - 2 * var(--pad)));
  margin: 64px auto 40px;
  color: var(--mute);
  text-align: center;
  font-size: 16px;
}
.grid {
  width: min(1180px, calc(100% - 2 * var(--pad)));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 22px;
}
.card { display: block; color: var(--ink); }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #090807; }
.card h2 { margin: 12px 0 0; font-size: 22px; font-weight: 500; letter-spacing: .12em; }
.card p { margin: 4px 0 0; color: var(--mute); font-size: 13px; }
.films {
  width: min(1180px, calc(100% - 2 * var(--pad)));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.films figure { margin: 0; }
.films video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #090807;
}
.films figcaption { margin-top: 8px; font-size: 13px; color: var(--mute); letter-spacing: .12em; }
.wrap { width: min(920px, calc(100% - 2 * var(--pad))); margin: 0 auto 88px; }
.wrap h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 500; letter-spacing: .14em; }
.wrap .lead { color: var(--mute); }
.look { width: 100%; max-height: 78vh; object-fit: cover; margin: 28px 0; }
.shots { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin: 20px 0 32px; }
.shots img { width: 100%; aspect-ratio: 1; object-fit: cover; cursor: zoom-in; background: #090807; }
.cta {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 22px;
  border: 1px solid var(--copper);
  color: var(--ink);
  letter-spacing: .2em;
  font-size: 13px;
}
.cta:hover { background: var(--copper); color: #fff; }
.note { color: var(--mute); font-size: 14px; }
footer {
  padding: 40px var(--pad) 56px;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 13px;
  text-align: center;
  line-height: 1.9;
}
.lb {
  display: none;
  position: fixed; inset: 0; z-index: 40;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
  padding: 24px;
}
.lb.on { display: flex; }
.lb img { max-width: 96vw; max-height: 92vh; object-fit: contain; }
@media (max-width: 800px) {
  .grid, .shots { grid-template-columns: 1fr 1fr; gap: 12px; }
  .films { grid-template-columns: 1fr 1fr; }
  .hero, .hero img, .hero video { min-height: 70vh; height: 70vh; }
  .hero-copy { bottom: 28px; }
}
@media (max-width: 520px) {
  nav { gap: 14px; font-size: 13px; }
  .films { grid-template-columns: 1fr; }
}
