
:root{
  --bg:#060606;
  --panel:#101010;
  --text:#f7f2ea;
  --muted:#b8afa4;
  --gold:#c8a25b;
  --line:rgba(255,255,255,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:20;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 5vw;
  background:linear-gradient(to bottom,rgba(0,0,0,.78),rgba(0,0,0,.08));
  backdrop-filter:blur(14px);
}
.brand{
  font-family:"Playfair Display",serif;
  font-size:24px;
  letter-spacing:.03em;
}
nav{display:flex;gap:24px;align-items:center;font-size:14px;color:rgba(255,255,255,.82)}
.nav-cta{border:1px solid var(--line);padding:10px 16px;border-radius:999px}
.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:0 5vw 8vw;
  overflow:hidden;
}
.hero-image-wrap{position:absolute;inset:0}
.hero-image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:58% center;
  transform:scale(1.02);
}
.hero-gradient{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.54) 36%,rgba(0,0,0,.10) 72%),linear-gradient(0deg,rgba(0,0,0,.88),transparent 50%);
}
.hero-content{position:relative;max-width:760px}
.eyebrow,.section-kicker{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:12px;
  font-weight:700;
}
h1,h2{
  font-family:"Playfair Display",serif;
  line-height:.95;
  margin:0;
}
h1{font-size:clamp(64px,10vw,148px);letter-spacing:-.05em}
h2{font-size:clamp(42px,6vw,86px);letter-spacing:-.04em}
.hero-copy{
  font-size:clamp(18px,2vw,26px);
  color:rgba(255,255,255,.82);
  max-width:620px;
  line-height:1.45;
}
.hero-actions,.contact-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
}
.button.primary{background:var(--text);color:#080808}
.button.secondary{border:1px solid var(--line);color:var(--text)}
.button:hover{transform:translateY(-2px)}
.section{padding:110px 5vw;border-top:1px solid var(--line)}
.intro{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:start;
}
.intro p:last-child,.feature-copy p,.redcarpet-card p,.contact p{
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}
.feature-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:54px;
  align-items:center;
}
.feature-grid.reverse{grid-template-columns:1fr 1fr}
.feature-copy{max-width:560px}
.image-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
figure{margin:0;position:relative;overflow:hidden;border-radius:28px;background:var(--panel)}
figure img{height:640px;width:100%;object-fit:cover}
figcaption{
  position:absolute;left:18px;bottom:18px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  border:1px solid var(--line);
  backdrop-filter:blur(12px);
  font-size:13px;
}
.redcarpet-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:center;
  background:radial-gradient(circle at top left,rgba(200,162,91,.18),transparent 34%),#0f0f0f;
  border:1px solid var(--line);
  border-radius:36px;
  padding:28px;
}
.redcarpet-card img{
  height:760px;
  width:100%;
  object-fit:cover;
  border-radius:28px;
}
.spotlight-frame{
  border-radius:36px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--panel);
}
.spotlight-frame img{height:760px;width:100%;object-fit:cover}
.gallery-header{display:flex;align-items:end;justify-content:space-between;margin-bottom:34px}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.gallery-grid img{
  height:620px;
  width:100%;
  object-fit:cover;
  border-radius:24px;
  filter:saturate(.95);
}
.moodboard{
  background:#0d0d0d;
}
.moodboard img{
  width:100%;
  border-radius:28px;
  border:1px solid var(--line);
  margin-top:36px;
}
.contact{
  text-align:center;
  max-width:980px;
  margin:0 auto;
}
.contact-actions{justify-content:center}
footer{
  padding:34px 5vw;
  color:var(--muted);
  border-top:1px solid var(--line);
}
@media(max-width:900px){
  .site-header{position:absolute}
  nav{display:none}
  .intro,.feature-grid,.feature-grid.reverse,.redcarpet-card{grid-template-columns:1fr}
  .image-grid,.gallery-grid{grid-template-columns:1fr}
  figure img,.gallery-grid img,.redcarpet-card img,.spotlight-frame img{height:auto;max-height:none}
  .hero{min-height:86vh}
  .hero-gradient{background:linear-gradient(0deg,rgba(0,0,0,.9),rgba(0,0,0,.1))}
}
