/* ============================================================
   LASSEUR — stark gallery white
   ============================================================ */

:root{
  --bg:#ffffff;
  --ink:#141210;
  --muted:#8f8a83;
  --line:#e9e6e1;
  --serif:"Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --maxw:1500px;
  --pad:clamp(20px, 5vw, 72px);
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{ color:inherit; text-decoration:none; }

.section-label{
  display:block;
  font-family:var(--sans);
  font-size:11px;
  font-weight:600;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 28px;
}

/* ---------- header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px var(--pad);
  background:rgba(255,255,255,0.82);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
}
.wordmark{
  font-family:var(--sans);
  font-weight:600;
  font-size:14px;
  letter-spacing:0.34em;
}
.nav{ display:flex; flex-wrap:wrap; gap:10px 24px; justify-content:flex-end; }
.nav a{
  font-size:12px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--muted);
  transition:color .25s ease;
}
.nav a:hover{ color:var(--ink); }

/* ---------- hero ---------- */
.hero{
  min-height:78vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px var(--pad);
}
.hero-name{
  margin:0;
  font-family:var(--sans);
  font-weight:600;
  font-size:clamp(38px, 11vw, 150px);
  letter-spacing:0.16em;
  line-height:0.95;
}
.hero-tag{
  margin:26px 0 0;
  font-family:var(--serif);
  font-style:italic;
  font-weight:300;
  font-size:clamp(20px, 3.4vw, 34px);
  color:var(--ink);
  letter-spacing:0.02em;
}
.hero-scroll{
  margin-top:56px;
  font-size:11px;
  letter-spacing:0.24em;
  text-transform:uppercase;
  color:var(--muted);
  transition:color .25s ease;
}
.hero-scroll:hover{ color:var(--ink); }

/* ---------- featured hero boxes ---------- */
.work-featured{ margin-bottom:clamp(18px,2.4vw,40px); }
.hero-boxes{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:clamp(14px,2vw,30px);
}
.hero-box{
  position:relative;
  display:block;
  cursor:zoom-in;
  background:#f4f2ef;
  overflow:hidden;
}
.hero-box img{
  display:block;
  width:100%;
  height:clamp(220px,30vw,420px);
  object-fit:cover;
  opacity:0;
  transition:opacity .8s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.hero-box img.loaded{ opacity:1; }
.hero-box:hover img{ transform:scale(1.03); }
@media (max-width:720px){
  .hero-boxes{ grid-template-columns:1fr; }
  .hero-box img{ height:auto; }
}

/* ---------- work grid (masonry via columns) ---------- */
.work{ padding:40px var(--pad) 30px; max-width:var(--maxw); margin:0 auto; }
.section-head{ margin-bottom:34px; }
.section-lede{
  font-family:var(--serif);
  font-style:italic;
  font-weight:300;
  font-size:clamp(18px,2vw,24px);
  color:#2b2823;
  margin:14px 0 0;
}

/* ---------- behind the scenes ---------- */
.behind{
  max-width:var(--maxw);
  margin:0 auto;
  padding:clamp(60px,9vw,110px) var(--pad) 40px;
}
.bts-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:clamp(14px,2vw,28px);
}
.bts-item{ display:block; cursor:zoom-in; }
.bts-frame{ position:relative; overflow:hidden; background:#f4f2ef; }
.bts-frame img{
  display:block;
  width:100%;
  height:clamp(220px,24vw,320px);
  object-fit:cover;
  opacity:0;
  transition:opacity .8s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.bts-frame img.loaded{ opacity:1; }
.bts-item:hover .bts-frame img{ transform:scale(1.03); }
.bts-cap{
  margin-top:10px;
  font-family:var(--serif);
  font-style:italic;
  font-size:15px;
  color:#2b2823;
}
@media (max-width:900px){ .bts-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .bts-grid{ grid-template-columns:1fr; } .bts-frame img{ height:auto; } }

.grid{
  column-count:3;
  column-gap:clamp(18px, 2.4vw, 40px);
}
@media (max-width:960px){ .grid{ column-count:2; } }
@media (max-width:560px){ .grid{ column-count:1; } }

.tile{
  break-inside:avoid;
  margin:0 0 clamp(18px, 2.4vw, 40px);
  cursor:zoom-in;
  display:block;
}
.tile-frame{
  position:relative;
  overflow:hidden;
  background:#f4f2ef;
}
.tile-num{
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  min-width:24px;
  height:24px;
  padding:0 7px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.92);
  color:#141210;
  font-family:var(--sans);
  font-size:12px;
  font-weight:600;
  letter-spacing:0.04em;
  border-radius:2px;
  box-shadow:0 1px 4px rgba(0,0,0,0.12);
}
.tile img{
  display:block;
  width:100%;
  height:auto;
  transition:opacity .8s ease, transform .9s cubic-bezier(.2,.7,.2,1);
  opacity:0;
}
.tile img.loaded{ opacity:1; }
.tile:hover img{ transform:scale(1.015); }

.tile-cap{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:16px;
  margin-top:12px;
  opacity:0;
  transform:translateY(4px);
  transition:opacity .3s ease, transform .3s ease;
}
.tile:hover .tile-cap,
.tile:focus-within .tile-cap{ opacity:1; transform:none; }
.tile-title{
  font-family:var(--serif);
  font-style:italic;
  font-size:18px;
}
.tile-meta{
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--muted);
  text-align:right;
}

/* ---------- statement ---------- */
.statement{
  max-width:var(--maxw);
  margin:0 auto;
  padding:clamp(80px,12vw,150px) var(--pad);
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:clamp(40px,6vw,90px);
  align-items:start;
}
.statement-copy .lede{
  font-family:var(--serif);
  font-weight:300;
  font-size:clamp(24px,3.2vw,38px);
  line-height:1.28;
  margin:0 0 34px;
}
.statement-copy p{
  font-family:var(--serif);
  font-size:clamp(17px,1.5vw,20px);
  line-height:1.65;
  color:#2b2823;
  margin:0 0 20px;
  max-width:44ch;
}
.statement-copy .signoff{
  font-style:italic;
  color:var(--muted);
  margin-top:30px;
}
.statement-figure{ margin:0; }
.statement-figure img{ width:100%; height:auto; display:block; background:#f4f2ef; }
.statement-figure figcaption{
  margin-top:12px;
  font-size:11px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--muted);
}
@media (max-width:820px){
  .statement{ grid-template-columns:1fr; }
  .statement-figure{ order:-1; }
}

/* ---------- testimonials ---------- */
.testimonials{
  max-width:var(--maxw);
  margin:0 auto;
  padding:clamp(60px,9vw,110px) var(--pad) 20px;
}
.testimonials-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:clamp(28px,4vw,56px);
}
.testimonial{ margin:0; }
.testimonial-quote{
  font-family:var(--serif);
  font-weight:300;
  font-size:clamp(20px,2.4vw,28px);
  line-height:1.35;
  margin:0;
  color:#2b2823;
}
.testimonial-cite{
  margin-top:16px;
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--muted);
}
.testimonials-soon{
  font-family:var(--serif);
  font-style:italic;
  font-size:clamp(18px,2vw,22px);
  color:var(--muted);
  margin:0;
}

/* ---------- inquiries ---------- */
.inquiries{
  border-top:1px solid var(--line);
  max-width:var(--maxw);
  margin:0 auto;
  padding:clamp(70px,9vw,120px) var(--pad);
  text-align:center;
}
.inquiries-lede{
  font-family:var(--serif);
  font-size:clamp(22px,3vw,32px);
  font-weight:300;
  margin:0 auto 30px;
  max-width:30ch;
  line-height:1.35;
}
.inquiries-contact{
  font-size:15px;
  letter-spacing:0.08em;
}
.inquiries-contact a{
  border-bottom:1px solid var(--ink);
  padding-bottom:2px;
  transition:opacity .25s ease;
}
.inquiries-contact a:hover{ opacity:0.55; }
.inquiries-contact .dot{ margin:0 16px; color:var(--muted); }

/* ---------- footer ---------- */
.site-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px var(--pad);
  border-top:1px solid var(--line);
  font-size:11px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--muted);
}

/* ---------- lightbox ---------- */
.lightbox{
  position:fixed;
  inset:0;
  z-index:100;
  background:rgba(255,255,255,0.985);
  display:none;
  align-items:center;
  justify-content:center;
  padding:clamp(20px,5vw,70px);
}
.lightbox.open{ display:flex; }
.lb-figure{ margin:0; max-width:92vw; max-height:88vh; display:flex; flex-direction:column; align-items:center; }
.lb-figure img{
  max-width:100%;
  max-height:78vh;
  object-fit:contain;
  box-shadow:0 30px 80px rgba(0,0,0,0.14);
}
.lb-figure figcaption{
  margin-top:18px;
  font-family:var(--serif);
  font-style:italic;
  font-size:17px;
  color:var(--ink);
  text-align:center;
}
.lb-figure figcaption .lb-meta{
  display:block;
  font-family:var(--sans);
  font-style:normal;
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-top:6px;
}
.lb-related{ margin-top:20px; text-align:center; }
.lb-related-label{
  font-size:10px;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:12px;
}
.lb-related-row{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.lb-thumb{
  position:relative;
  width:64px;
  height:64px;
  padding:0;
  border:1px solid var(--line);
  background:#f4f2ef;
  cursor:pointer;
  overflow:hidden;
  transition:border-color .2s ease, transform .2s ease;
}
.lb-thumb:hover{ border-color:var(--ink); transform:translateY(-2px); }
.lb-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.lb-thumb-num{
  position:absolute;
  top:3px;
  left:3px;
  background:rgba(255,255,255,0.92);
  color:#141210;
  font-size:9px;
  font-weight:600;
  line-height:1;
  padding:2px 4px;
  border-radius:2px;
}

.lb-close,.lb-nav{
  position:fixed;
  background:none;
  border:none;
  color:var(--ink);
  cursor:pointer;
  font-size:30px;
  line-height:1;
  padding:12px;
  transition:opacity .2s ease;
  opacity:0.55;
}
.lb-close:hover,.lb-nav:hover{ opacity:1; }
.lb-close{ top:20px; right:26px; font-size:22px; }
.lb-nav{ top:50%; transform:translateY(-50%); font-size:46px; }
.lb-prev{ left:18px; }
.lb-next{ right:18px; }
@media (max-width:560px){
  .lb-nav{ font-size:34px; }
  .lb-figure img{ max-height:70vh; }
}

/* reduced motion */
@media (prefers-reduced-motion:reduce){
  *{ scroll-behavior:auto; }
  .tile img{ transition:opacity .3s ease; }
  .tile:hover img{ transform:none; }
}
