* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0b0b0b;
  color: #f2f0ec;
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: fixed; z-index: 20; top: 0; left: 0; right: 0;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; background: linear-gradient(#080808cc, transparent);
}
.brand { font-size: 12px; letter-spacing: .22em; font-weight: 600; }
nav { display: flex; gap: 34px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
nav a { opacity: .75; transition: opacity .2s; }
nav a:hover { opacity: 1; }
.menu-btn { display: none; background: none; border: 0; color: white; font-size: 22px; }

.hero { min-height: 100vh; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero-image {
  position: absolute; inset: 0;
  background: url("photos/hero.jpg") center/cover no-repeat;
  background-color: rgba(36, 36, 36, 0.5);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,#000b 0%,#0003 55%,#0005), linear-gradient(0deg,#0b0b0b 0%,transparent 45%); }
.hero-content { position: relative; z-index: 1; max-width: 760px; padding: 0 5vw 10vh; }
.eyebrow { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; opacity: .6; margin: 0 0 18px; }
h1,h2,h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 400; margin: 0; }
h1 { font-size: clamp(52px, 7vw, 105px); line-height: .98; letter-spacing: -.035em; }
h1 em { font-weight: 400; color: #c9c4bb; }
.hero-text { max-width: 460px; margin: 28px 0; color: #d1cec8; line-height: 1.7; font-size: 15px; }
.button { display: inline-flex; gap: 28px; border-bottom: 1px solid #aaa; padding: 13px 0; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }

.section { padding: 130px 5vw; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
h2 { font-size: clamp(42px, 5vw, 72px); line-height: 1; }
.section-note { max-width: 340px; color: #96938d; font-size: 12px; line-height: 1.7; }

.gallery { columns: 3 280px; column-gap: 18px; }
.photo-card { break-inside: avoid; margin: 0 0 18px; cursor: pointer; position: relative; overflow: hidden; background: #171717; }
.photo-card img { display: block; width: 100%; height: auto; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s; }
.photo-card:hover img { transform: scale(1.025); filter: brightness(.7); }
.photo-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 45px 22px 20px; background: linear-gradient(transparent,#000b); opacity: 0; transition: opacity .3s; }
.photo-card:hover .photo-caption { opacity: 1; }
.photo-caption strong { display:block; font-family:"Playfair Display",serif; font-size:22px; font-weight:400; }
.photo-caption span { font-size:10px; color:#bbb; letter-spacing:.08em; text-transform:uppercase; }

.about { border-top: 1px solid #202020; }
.about-grid { display:grid; grid-template-columns: 1fr 1.5fr; gap: 8vw; max-width: 1100px; margin:auto; }
.about-copy { max-width: 650px; color:#aaa; line-height:1.9; font-size:15px; }
.about-copy .lead { color:#eee; font-family:"Playfair Display",serif; font-size:28px; line-height:1.45; margin-top:0; }
.contacts { background:#e9e6df; color:#111; text-align:center; min-height:60vh; display:flex; align-items:center; justify-content:center; }
.contacts .eyebrow { color:#555; }
.contacts h2 { font-size:clamp(50px,7vw,95px); }
.contacts-inner { max-width:900px; }
.contacts-inner > p:not(.eyebrow) { max-width:500px; margin:28px auto; color:#555; line-height:1.7; }
.email { display:inline-block; font-family:"Playfair Display",serif; font-size:clamp(22px,3vw,40px); border-bottom:1px solid #999; padding-bottom:7px; }

footer { padding:28px 5vw; display:flex; justify-content:space-between; color:#666; font-size:10px; text-transform:uppercase; letter-spacing:.15em; }

.lightbox { position:fixed; inset:0; z-index:100; display:none; background:#050505f5; }
.lightbox.open { display:block; }
.lightbox-close { position:absolute; z-index:3; right:25px; top:18px; border:0; background:none; color:white; font-size:38px; font-weight:200; cursor:pointer; }
.lightbox-content { height:100%; display:grid; grid-template-columns:minmax(0,1fr) 330px; }
.photo-stage { display:flex; align-items:center; justify-content:center; padding:45px; min-width:0; }
.photo-stage img { max-width:100%; max-height:92vh; object-fit:contain; }
.photo-info { border-left:1px solid #222; padding:100px 38px 40px; overflow:auto; }
.photo-info h3 { font-size:40px; line-height:1.1; }
.photo-description { color:#999; font-size:13px; line-height:1.7; margin:20px 0 45px; }
dl { margin:0; }
dl div { display:flex; justify-content:space-between; gap:15px; border-top:1px solid #242424; padding:13px 0; font-size:11px; }
dt { color:#777; }
dd { margin:0; text-align:right; }

@media (max-width: 800px) {
  nav { display:none; }
  .menu-btn { display:block; }
  .section { padding:90px 6vw; }
  .section-heading { display:block; }
  .section-note { margin-top:20px; }
  .gallery { columns: 2 180px; }
  .about-grid { grid-template-columns:1fr; gap:35px; }
  .lightbox-content { display:block; overflow:auto; }
  .photo-stage { min-height:55vh; padding:70px 18px 20px; }
  .photo-info { border-left:0; border-top:1px solid #222; padding:30px 24px 50px; }
  .photo-info h3 { font-size:32px; }
}
@media (max-width: 500px) {
  .gallery { columns:1; }
  h1 { font-size:50px; }
}
