
:root{
  --ink:#1a1c21;
  --ink-soft:#24272e;
  --pierre:#f2ede3;
  --pierre-deep:#e6dcc9;
  --pierre-line:#d7cab0;
  --marine:#37455c;
  --metal:#a4a196;
  --text-dark:#211e19;
  --text-dark-soft:#59544a;
  --text-light:#f2ede3;
  --text-light-soft:#c9c4b8;
  color-scheme: light;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} }
body{
  margin:0; background:var(--pierre); color:var(--text-dark);
  font-family:'Work Sans','Segoe UI',Arial,sans-serif; font-size:16px; line-height:1.6;
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}
img,video{max-width:100%; display:block;}
h1,h2,h3{font-family:'Fraunces',Georgia,serif; font-weight:500; text-wrap:balance; margin:0;}
p{margin:0;}
figure{margin:0;}
h2{position:relative; padding-bottom:1.1rem;}
h2::after{content:""; position:absolute; left:0; bottom:0; width:46px; height:2px; background:linear-gradient(90deg,var(--marine),var(--metal));}
.craft h2::after, .contact h2::after{background:linear-gradient(90deg,var(--metal),transparent);}
a{color:inherit;}
.wrap{max-width:1180px; margin:0 auto; padding-inline:clamp(1.25rem,5vw,4rem);}
.eyebrow{font-size:0.76rem; letter-spacing:0.22em; text-transform:uppercase; font-weight:600; color:var(--marine); display:inline-flex; align-items:center; gap:0.6em;}
.eyebrow::before{content:""; width:2em; height:1px; background:currentColor; display:inline-block;}
.craft .eyebrow, .videos .eyebrow{color:var(--metal);}

/* NAV */
header.site-nav{position:fixed; inset:0 0 auto 0; z-index:80; padding:0.9rem clamp(1.25rem,5vw,3rem); display:flex; align-items:center; justify-content:flex-end; transition:background .4s ease, padding .4s ease, box-shadow .4s ease;}
header.site-nav.scrolled, body.subpage header.site-nav{background:rgba(26,28,33,0.92); backdrop-filter:blur(6px); padding-block:0.55rem; box-shadow:0 1px 0 rgba(255,255,255,0.06);}
nav.links{display:flex; gap:clamp(1rem,2.4vw,2.2rem); align-items:center;}
nav.links a{color:#fff; text-decoration:none; font-size:0.85rem; font-weight:600; letter-spacing:0.02em; position:relative; padding-bottom:3px; text-shadow:0 2px 10px rgba(0,0,0,0.8);}
nav.links a::after{content:""; position:absolute; left:0; right:100%; bottom:0; height:1px; background:var(--metal); transition:right .3s ease;}
nav.links a:hover::after, nav.links a.current::after{right:0;}
nav.links a.cta{color:var(--ink); background:var(--pierre); padding:0.55rem 1.1rem; border-radius:1px; letter-spacing:0.04em; font-weight:600;}
nav.links a.cta::after{display:none;}
.nav-toggle{display:none;}
@media (max-width:820px){
  nav.links{position:fixed; inset:0 0 0 auto; width:min(78vw,320px); background:var(--ink); flex-direction:column; align-items:flex-start; padding:6rem 2rem 2rem; gap:1.6rem; transform:translateX(100%); transition:transform .35s ease;}
  nav.links.open{transform:translateX(0);}
  .nav-toggle{display:flex; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; z-index:90; padding:6px;}
  .nav-toggle span{width:22px; height:2px; background:var(--text-light); display:block;}
}

/* HERO */
.hero{position:relative; min-height:clamp(560px,92vh,860px); display:flex; align-items:center; background:#111;}
.hero-img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 60%;}
.hero-scrim{position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,11,13,0.72) 0%, rgba(10,11,13,0.32) 26%, rgba(10,11,13,0.38) 58%, rgba(10,11,13,0.94) 100%);}
.hero-logo{height:clamp(150px,19vw,250px); width:auto; margin:0 auto 0.6rem; filter:drop-shadow(0 8px 28px rgba(0,0,0,0.65));}
.hero-content{position:relative; z-index:2; width:100%; padding:7rem clamp(1.25rem,5vw,4rem) 4.5rem; display:flex; flex-direction:column; align-items:center; text-align:center;}
.hero h1{color:var(--text-light); font-size:clamp(2.4rem,5.6vw,4.4rem); line-height:1.05; max-width:16ch;}
.hero h1 em{font-style:italic; color:#d8cdb0;}
.hero-sub{color:var(--text-light-soft); max-width:46ch; margin-top:1.6rem; font-size:1.05rem; text-shadow:0 2px 12px rgba(0,0,0,0.75);}
.hero-actions{display:flex; gap:1rem; margin-top:2.4rem; flex-wrap:wrap; justify-content:center;}
.btn{display:inline-flex; align-items:center; gap:0.5rem; padding:0.9rem 1.6rem; font-size:0.88rem; font-weight:600; letter-spacing:0.03em; text-decoration:none; border-radius:1px; transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; border:1px solid transparent; cursor:pointer;}
.btn:hover{transform:translateY(-2px);}
.btn-solid{background:var(--pierre); color:var(--ink);}
.btn-solid:hover{background:#fff;}
.btn-ghost{border-color:rgba(242,237,227,0.5); color:var(--text-light);}
.btn-ghost:hover{border-color:#fff; background:rgba(255,255,255,0.08);}

.reveal{opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease;}
.reveal.is-visible{opacity:1; transform:none;}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1; transform:none; transition:none;} }

/* SUBPAGE HEADER (used on every page except the home hero) */
.page-head{background:var(--ink); padding:9rem clamp(1.25rem,5vw,4rem) 3.5rem; text-align:center;}
.page-head .eyebrow{color:var(--metal); justify-content:center;}
.page-head .eyebrow::before{display:none;}
.page-head h1{color:var(--text-light); font-size:clamp(2rem,4.2vw,3rem); max-width:22ch; margin:1rem auto 0;}

/* FOUNDING */
.founding{padding:5.5rem 0 4.5rem; background:var(--pierre);}
.founding .grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:clamp(2rem,6vw,5rem); align-items:start; margin-top:1.8rem;}
.founding h2{font-size:clamp(1.9rem,3.4vw,2.5rem); max-width:22ch;}
.founding p{margin-top:1.3rem; color:var(--text-dark-soft); max-width:56ch; font-size:1.02rem;}
.facts{display:flex; flex-direction:column; border-top:1px solid var(--pierre-line);}
.fact{display:flex; justify-content:space-between; gap:1rem; padding:1.1rem 0; border-bottom:1px solid var(--pierre-line);}
.fact dt{font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-dark-soft); font-weight:600;}
.fact dd{margin:0; font-family:'Fraunces',serif; font-size:1.08rem; text-align:right;}
@media (max-width:760px){ .founding .grid{grid-template-columns:1fr;} }

/* SERVICES */
.services{background:var(--pierre-deep); padding:5.5rem 0;}
.services h2{font-size:clamp(1.9rem,3.4vw,2.5rem); max-width:20ch; margin-top:1rem;}
.service-grid{margin-top:3rem; display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--pierre-line); border:1px solid var(--pierre-line);}
.service-card{background:var(--pierre-deep); padding:2.2rem 1.7rem; display:flex; flex-direction:column; gap:1.1rem;}
.service-card svg{width:30px; height:30px; color:var(--marine);}
.service-card h3{font-size:1.08rem;}
.service-card p{color:var(--text-dark-soft); font-size:0.92rem; line-height:1.6;}
@media (max-width:900px){ .service-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .service-grid{grid-template-columns:1fr;} }

/* GALLERY */
.gallery{background:var(--pierre); padding:5.5rem 0 6rem;}
.gallery-head{display:flex; justify-content:space-between; align-items:flex-end; gap:2rem; flex-wrap:wrap; margin-top:1rem;}
.gallery h2{font-size:clamp(1.9rem,3.4vw,2.5rem); max-width:18ch;}
.filters{display:flex; gap:0.5rem; flex-wrap:wrap; margin-top:2.4rem;}
.filter-btn{background:none; border:1px solid var(--pierre-line); color:var(--text-dark-soft); padding:0.5rem 1rem; font-size:0.82rem; font-family:'Work Sans',sans-serif; font-weight:500; cursor:pointer; border-radius:20px; transition:all .2s ease;}
.filter-btn:hover{border-color:var(--marine); color:var(--marine);}
.filter-btn.active{background:var(--ink); border-color:var(--ink); color:var(--text-light);}
.grid-gallery{margin-top:2.2rem; display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:190px; gap:0.5rem;}
.g-item{position:relative; overflow:hidden; cursor:zoom-in; background:var(--pierre-deep);}
.g-item img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease;}
.g-item:hover img{transform:scale(1.06);}
.g-item .g-cap{position:absolute; left:0; right:0; bottom:0; padding:0.7rem 0.85rem 0.6rem; background:linear-gradient(0deg, rgba(10,10,10,0.72), rgba(10,10,10,0)); color:#fff; font-size:0.74rem; letter-spacing:0.05em; opacity:0; transition:opacity .3s ease;}
.g-item:hover .g-cap{opacity:1;}
.g-item.big{grid-column:span 2; grid-row:span 2;}
.g-item.hidden{display:none;}
@media (max-width:900px){ .grid-gallery{grid-template-columns:repeat(2,1fr); grid-auto-rows:180px;} .g-item.big{grid-column:span 2; grid-row:span 1;} }
@media (max-width:520px){ .grid-gallery{grid-template-columns:repeat(1,1fr); grid-auto-rows:220px;} .g-item.big{grid-column:span 1;} }

.lightbox{position:fixed; inset:0; z-index:200; background:rgba(10,10,10,0.94); display:none; align-items:center; justify-content:center; padding:4vh 4vw;}
.lightbox.open{display:flex;}
.lightbox-cap{position:absolute; bottom:3vh; left:0; right:0; text-align:center; color:var(--text-light-soft); font-size:0.85rem; letter-spacing:0.04em;}
.lb-btn{position:absolute; top:50%; transform:translateY(-50%); background:none; border:0; color:#fff; font-size:2.2rem; cursor:pointer; padding:1rem; opacity:0.8; transition:opacity .2s ease; line-height:1;}
.lb-btn:hover{opacity:1;}
.lb-prev{left:0.5vw;} .lb-next{right:0.5vw;}
.lb-close{position:absolute; top:2.2vh; right:2vw; background:none; border:0; color:#fff; font-size:1.6rem; cursor:pointer; opacity:0.8;}
.lb-close:hover{opacity:1;}

/* PORTFOLIO */
.portfolio{background:var(--pierre-deep); padding:5.5rem 0 6rem;}
.portfolio h2{font-size:clamp(1.9rem,3.4vw,2.5rem); max-width:26ch; margin-top:1rem;}
.portfolio .lead{margin-top:1.2rem; color:var(--text-dark-soft); max-width:66ch; font-size:1.02rem;}
.compare-set{margin-top:3.4rem; padding-top:2.6rem; border-top:1px solid var(--pierre-line);}
.compare-set.first{margin-top:3rem; padding-top:0; border-top:none;}
.compare-head h3{font-size:1.25rem;}
.compare-head p{margin-top:0.55rem; color:var(--text-dark-soft); font-size:0.95rem; max-width:64ch;}
.compare-imgs{margin-top:1.3rem; display:grid; grid-template-columns:1fr 1fr; gap:0.6rem;}
.compare-imgs.three{grid-template-columns:repeat(3,1fr);}
.compare-imgs figure{position:relative; margin:0; aspect-ratio:4/3; overflow:hidden; background:var(--pierre-line);}
.compare-imgs img{width:100%; height:100%; object-fit:cover;}
.compare-imgs figcaption{position:absolute; top:0.8rem; left:0.8rem; background:rgba(26,28,33,0.78); color:#fff; font-size:0.66rem; letter-spacing:0.16em; text-transform:uppercase; padding:0.3rem 0.7rem;}
@media (max-width:820px){ .compare-imgs.three{grid-template-columns:1fr 1fr;} .compare-imgs.three figure:last-child{grid-column:span 2;} }
@media (max-width:640px){ .compare-imgs{grid-template-columns:1fr;} .compare-imgs.three figure:last-child{grid-column:span 1;} }

.compare-stage{margin-top:1.5rem;}
.stage-label{display:block; font-size:0.68rem; letter-spacing:0.16em; text-transform:uppercase; font-weight:600; color:var(--marine); margin-bottom:0.5rem;}
.stage-imgs{display:grid; grid-template-columns:repeat(3,1fr); gap:0.5rem;}
.stage-imgs.stage-imgs-2{grid-template-columns:repeat(2,1fr);}
.stage-imgs.stage-imgs-1{grid-template-columns:1fr; max-width:420px;}
.stage-imgs figure{margin:0; position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--pierre-line);}
.stage-imgs img{width:100%; height:100%; object-fit:cover;}
@media (max-width:640px){ .stage-imgs{grid-template-columns:repeat(2,1fr);} .stage-imgs.stage-imgs-2{grid-template-columns:1fr 1fr;} }

.behind-scenes{margin-top:4rem; padding-top:3rem; border-top:1px solid var(--pierre-line);}
.behind-scenes h3{font-size:1.25rem; margin-top:0.8rem; max-width:36ch;}
.behind-grid{margin-top:1.5rem; display:grid; grid-template-columns:repeat(3,1fr); gap:0.6rem;}
.behind-grid figure{margin:0; position:relative; aspect-ratio:4/3; overflow:hidden; background:var(--pierre-line);}
.behind-grid img{width:100%; height:100%; object-fit:cover;}
.behind-grid figcaption{position:absolute; left:0; right:0; bottom:0; padding:0.6rem 0.7rem; background:linear-gradient(0deg, rgba(0,0,0,0.72), rgba(0,0,0,0)); color:#fff; font-size:0.72rem;}
@media (max-width:820px){ .behind-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:520px){ .behind-grid{grid-template-columns:1fr;} }

/* VIDEOS */
.videos{background:var(--ink); color:var(--text-light); padding:5.5rem 0 6rem;}
.videos h2{color:var(--text-light); font-size:clamp(1.9rem,3.4vw,2.5rem); max-width:22ch; margin-top:1rem;}
.videos p.lead{color:var(--text-light-soft); max-width:60ch; margin-top:1.2rem; font-size:1.02rem;}
.video-grid{margin-top:3rem; display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem;}
.v-item{display:flex; flex-direction:column; gap:0.9rem;}
.v-frame{position:relative; aspect-ratio:9/16; overflow:hidden; background:var(--ink-soft); border:1px solid rgba(255,255,255,0.14);}
.v-frame video{width:100%; height:100%; object-fit:cover; display:block;}
.v-cap{font-size:0.86rem; color:var(--text-light-soft); text-align:center; letter-spacing:0.02em;}
@media (max-width:820px){ .video-grid{grid-template-columns:1fr; max-width:340px; margin-inline:auto;} }

/* CRAFT */
.craft{background:var(--ink); color:var(--text-light); padding:5.5rem 0 6rem;}
.craft h2{color:var(--text-light); font-size:clamp(1.9rem,3.4vw,2.5rem); max-width:20ch; margin-top:1rem;}
.craft p.lead{color:var(--text-light-soft); max-width:60ch; margin-top:1.2rem; font-size:1.02rem;}
.craft-grid{margin-top:3rem; display:grid; grid-template-columns:repeat(4,1fr); gap:0.6rem;}
.craft-grid figure{margin:0; position:relative; overflow:hidden; aspect-ratio:3/4; background:var(--ink-soft);}
.craft-grid img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease;}
.craft-grid figure:hover img{transform:scale(1.05);}
.craft-grid figcaption{position:absolute; left:0; right:0; bottom:0; padding:0.9rem 0.9rem 0.75rem; background:linear-gradient(0deg, rgba(0,0,0,0.75), rgba(0,0,0,0)); font-size:0.78rem; color:var(--text-light-soft); letter-spacing:0.03em;}
@media (max-width:900px){ .craft-grid{grid-template-columns:repeat(2,1fr);} }

.identity{margin-top:4rem; border-top:1px solid rgba(255,255,255,0.12); padding-top:3rem;}
.identity-grid{display:grid; grid-template-columns:1fr 1fr; gap:0.6rem; margin-top:1.6rem;}
.identity-item{position:relative; aspect-ratio:4/5; overflow:hidden; background:var(--ink-soft);}
.identity-item img{width:100%; height:100%; object-fit:cover; object-position:center 20%;}
.identity-item figcaption{position:absolute; left:0; right:0; bottom:0; padding:0.9rem 0.9rem 0.75rem; background:linear-gradient(0deg, rgba(0,0,0,0.75), rgba(0,0,0,0)); font-size:0.78rem; color:var(--text-light-soft); letter-spacing:0.03em;}
@media (max-width:640px){ .identity-grid{grid-template-columns:1fr;} }

/* CONTACT */
.contact{background:var(--pierre-deep); padding:5.5rem 0;}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,6vw,5rem); margin-top:2rem; align-items:stretch;}
.contact h2{font-size:clamp(1.9rem,3.4vw,2.5rem); max-width:16ch;}
.coord{margin-top:1.6rem; display:flex; flex-direction:column; gap:1.4rem;}
.coord-row{display:flex; gap:1rem; align-items:flex-start;}
.coord-row svg{width:20px; height:20px; flex:none; margin-top:3px; color:var(--marine);}
.coord-row a{text-decoration:none; border-bottom:1px solid var(--pierre-line);}
.coord-row a:hover{border-color:var(--marine);}
.coord-row .lbl{font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-dark-soft); font-weight:600; margin-bottom:0.25rem; display:block;}
.cta-card{background:var(--ink); color:var(--text-light); padding:2.6rem; display:flex; flex-direction:column; justify-content:center; gap:1.3rem;}
.cta-card h3{color:var(--text-light); font-size:1.5rem; max-width:16ch;}
.cta-card p{color:var(--text-light-soft); font-size:0.95rem; max-width:34ch;}

footer{background:var(--ink); color:var(--text-light-soft); padding:2.6rem 0; border-top:1px solid rgba(255,255,255,0.08);}
.foot-row{display:flex; justify-content:space-between; align-items:center; gap:1.5rem; flex-wrap:wrap; font-size:0.82rem;}
.foot-brand{display:flex; align-items:center; gap:0.6rem;}
.foot-brand img{height:26px; border-radius:2px;}
.foot-links{display:flex; align-items:center; gap:1.6rem; flex-wrap:wrap;}
.foot-links a{color:var(--text-light-soft); text-decoration:none; display:inline-flex; align-items:center; gap:0.4rem;}
.foot-links a:hover{color:#fff;}
.foot-links svg{width:16px; height:16px;}

/* LIGHTBOX — zoom sur toutes les galeries du site */
.lb-imgwrap{position:relative; display:inline-block; max-width:100%; max-height:86vh;}
.lb-imgwrap img{display:block; max-width:100%; max-height:86vh; margin:0 auto; box-shadow:0 20px 60px rgba(0,0,0,0.5);}
.compare-imgs figure, .stage-imgs figure, .behind-grid figure, .craft-grid figure, .identity-item{cursor:zoom-in;}
