:root {
  --black: #050505;
  --white: #f7f2ea;
  --muted: #b8b0a5;
  --line: rgba(247, 242, 234, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 38px;
  background: linear-gradient(to bottom, rgba(0,0,0,.75), rgba(0,0,0,0));
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: 0.22em;
}
nav { display: flex; gap: 24px; font-size: 12px; text-transform: uppercase; }
nav a { opacity: .8; }
nav a:hover { opacity: 1; }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(120deg, #000, #111 45%, #030303);
}
.hero::before {
  content: '';
  position: absolute;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  filter: blur(.2px);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #050505 0%, transparent 40%);
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 24px;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: .38em;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  margin: 0;
}
h1 {
  font-size: clamp(74px, 14vw, 190px);
  letter-spacing: .14em;
  line-height: .85;
}
h2 { font-size: clamp(44px, 7vw, 92px); letter-spacing: .08em; }
h3 { font-size: 42px; letter-spacing: .12em; }
.tagline { color: var(--muted); margin: 22px 0 30px; }
.hero-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-block;
  padding: 13px 28px;
  border: 1px solid var(--white);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .18em;
  transition: .25s ease;
}
.button.primary { background: var(--white); color: var(--black); }
.button.secondary { background: transparent; color: var(--white); }
.button:hover { transform: translateY(-2px); }

.section {
  padding: 110px 8vw;
  border-top: 1px solid var(--line);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.card {
  border: 1px solid var(--line);
  padding: 48px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.01));
}
.video-frame {
  margin-top: 34px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #111;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.small-note, .about-text, .shop p, .split p { color: var(--muted); line-height: 1.8; }
.gallery-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.photo-card {
  min-height: 310px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #171717, #050505);
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  letter-spacing: .16em;
  color: rgba(247,242,234,.72);
}
.shop { text-align: center; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
footer div { display: flex; gap: 18px; }

.announcement {
  position: fixed;
  z-index: 20;
  left: 50%;
  top: 92px;
  transform: translateX(-50%);
  width: min(440px, calc(100vw - 34px));
  background: rgba(5,5,5,.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  text-align: center;
  padding: 30px;
  box-shadow: 0 20px 90px rgba(0,0,0,.7);
}
.announcement h2 { font-size: 54px; }
.announcement p { color: var(--muted); letter-spacing: .28em; font-size: 12px; }
.announcement a { border-bottom: 1px solid var(--white); padding-bottom: 3px; text-transform: uppercase; font-size: 12px; }
.close {
  position: absolute;
  right: 12px;
  top: 8px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}
.hidden { display: none; }

@media (max-width: 800px) {
  .site-header { padding: 18px 20px; align-items: flex-start; }
  nav { gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .split { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  h1 { letter-spacing: .08em; }
}
@media (max-width: 520px) {
  nav a:nth-child(3), nav a:nth-child(4) { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
