/* Noël d'Altitude — website prototype styles */
:root{
  --burgundy:#4F1118; --burgundy-deep:#430E14;
  --green:#2F4233; --green-deep:#26352A;
  --stone:#D6CEC3; --stone-2:#E7E1D8; --stone-3:#EFEAE2;
  --ink:#2B2B2B; --ink-soft:#6A645C;
  --paper:#F9F9F7; --gold:#C2A269;
  --serif:'Playfair Display', Georgia, serif;
  --sans:'Montserrat', system-ui, sans-serif;
  /* uniform type scale — one size per level of detail */
  --fs-eyebrow:12px;        /* kickers + links (uppercase, tracked) */
  --fs-body:15px;           /* all descriptions / FAQ answers / captions */
  --fs-lead:16px;           /* subtitle line under a section heading */
  --fs-h:clamp(29px,3vw,41px); /* section headings */
  --serv-bg:#63292C;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; font-family:var(--sans); color:var(--ink); background:var(--paper); position:relative; overflow-x:hidden; }
img{ display:block; }
a{ color:inherit; text-decoration:none; }

/* ---------- nav ---------- */
.nav{ position:fixed; top:40px; left:0; right:0; z-index:50; display:grid; grid-template-columns:1fr auto 1fr; align-items:center; padding:22px 48px; transition:background .4s, padding .4s, top .4s, box-shadow .4s; }
.nav .links{ display:flex; gap:30px; font-size:13px; letter-spacing:.2em; text-transform:uppercase; }
.nav .links.r{ justify-self:end; }
.nav .brand{ justify-self:center; }
.nav .brand img{ height:54px; transition:height .4s; filter:drop-shadow(0 0 16px rgba(194,162,105,.35)); }
.nav .brand .seal-dark{ display:none; }
.nav.solid .brand .seal-light{ display:none; }
.nav.solid .brand .seal-dark{ display:block; }
.nav.light .links{ color:#F0E9DC; text-shadow:0 1px 5px rgba(20,12,11,.6), 0 0 16px rgba(20,12,11,.4); }
.nav.solid{ top:0; background:var(--paper); box-shadow:0 1px 0 rgba(43,43,43,.08); padding:16px 48px; }
.nav.solid .links{ color:var(--ink); }
.nav.solid .brand img{ height:42px; filter:none; }
.nav .links a{ position:relative; padding-bottom:3px; }
.nav .links a::after{ content:''; position:absolute; left:0; right:100%; bottom:0; height:1px; background:currentColor; transition:right .3s; }
.nav .links a:hover::after{ right:0; }
/* language toggle — EN live, FR wired once English copy is locked */
.lang{ display:inline-flex; align-items:baseline; gap:8px; margin-left:14px; font-size:12px; letter-spacing:.18em; }
.lang .sep{ opacity:.45; }
.lang .on{ border-bottom:1px solid var(--gold); padding-bottom:2px; }
.lang .off{ opacity:.45; cursor:default; }
.lang a.off::after{ display:none; }
.navtoggle{ display:none; }

/* ---------- seasonal bar ---------- */
.topbar{ position:absolute; top:0; left:0; right:0; z-index:60; text-align:center; padding:11px; font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:rgba(214,206,195,.92); background:rgba(20,12,11,.32); border-bottom:1px solid rgba(214,206,195,.16); }

/* ---------- festive overlays ---------- */
.snow{ position:absolute; inset:0; z-index:1; pointer-events:none; overflow:hidden; }
.snow::before,.snow::after{ content:''; position:absolute; left:0; right:0; top:-40%; height:140%; background-image:radial-gradient(2.5px 2.5px at 40px 60px,rgba(255,255,255,.9),transparent),radial-gradient(2px 2px at 130px 180px,rgba(255,255,255,.7),transparent),radial-gradient(1.5px 1.5px at 220px 100px,rgba(255,255,255,.8),transparent),radial-gradient(2px 2px at 300px 260px,rgba(255,255,255,.6),transparent),radial-gradient(1.5px 1.5px at 380px 50px,rgba(255,255,255,.7),transparent); background-size:420px 420px; animation:snowfall 16s linear infinite; }
.snow::after{ background-size:300px 300px; animation-duration:26s; opacity:.5; }
@keyframes snowfall{ from{ transform:translateY(-28%); } to{ transform:translateY(0); } }
.spk{ position:absolute; color:var(--gold); line-height:1; z-index:2; text-shadow:0 0 8px rgba(194,162,105,.6); animation:twinkle 4.5s ease-in-out infinite; pointer-events:none; }
@keyframes twinkle{ 0%,100%{ opacity:.14; transform:scale(.6); } 50%{ opacity:.95; transform:scale(1); } }

/* ---------- client-types marquee ---------- */
.clients{ background:var(--paper); border-bottom:1px solid rgba(43,43,43,.1); overflow:hidden; }
.clients .track{ display:flex; width:max-content; animation:clientsroll 36s linear infinite; }
.clients .set{ display:flex; align-items:center; gap:44px; padding:19px 22px 19px; white-space:nowrap; }
.clients .set span{ font-size:var(--fs-eyebrow); letter-spacing:.26em; text-transform:uppercase; color:var(--burgundy); }
.clients .set .st{ color:var(--gold); font-size:10px; letter-spacing:0; }
@keyframes clientsroll{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .clients .track{ animation:none; } }
.trail{ position:fixed; z-index:80; pointer-events:none; color:#DBC089; transform:translate(-50%,-50%); text-shadow:0 0 5px rgba(214,178,112,.55); animation:trailfade 1.15s cubic-bezier(.22,.7,.3,1) forwards; will-change:transform,opacity; }
@keyframes trailfade{ 0%{ opacity:0; transform:translate(-50%,-50%) scale(.15) rotate(-35deg); } 22%{ opacity:1; transform:translate(-50%,-50%) scale(1) rotate(0deg); } 60%{ opacity:.6; } 100%{ opacity:0; transform:translate(-50%,-78%) scale(.28) rotate(28deg); } }

/* ---------- hero ---------- */
.hero{ position:relative; height:100vh; min-height:720px; overflow:hidden; display:flex; flex-direction:column; align-items:center; justify-content:flex-end; text-align:center; }
.hero>img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transform:scale(1.05); animation:cinzoom 22s ease-in-out infinite alternate; }
@keyframes cinzoom{ from{ transform:scale(1.05); } to{ transform:scale(1.16); } }
.hero::after{ content:''; position:absolute; inset:0; background:linear-gradient(to bottom, rgba(20,12,11,.45), rgba(20,12,11,.05) 35%, rgba(20,12,11,.66)); }
.hero .htext{ position:relative; z-index:3; color:var(--paper); padding-bottom:92px; }
.hero .k{ font-size:var(--fs-eyebrow); letter-spacing:.4em; text-transform:uppercase; margin-bottom:26px; color:#E7C98A; text-shadow:0 1px 2px rgba(20,12,11,.95), 0 2px 10px rgba(20,12,11,.85), 0 0 26px rgba(20,12,11,.7); }
.hero h1{ font-family:var(--serif); font-weight:500; font-size:clamp(38px,5.2vw,68px); line-height:1.06; margin:0 0 32px; color:#F2E9D8; }
.hero .lnk{ font-size:13px; letter-spacing:.28em; text-transform:uppercase; border-bottom:1px solid var(--gold); padding-bottom:7px; color:var(--paper); }
.hero .scrollcue{ position:absolute; bottom:34px; left:50%; transform:translateX(-50%); z-index:3; font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:rgba(214,206,195,.6); }

/* ---------- split tiers ---------- */
.split{ position:relative; display:flex; height:88vh; min-height:620px; overflow:hidden; }
.shalf{ flex:1; position:relative; overflow:hidden; display:flex; align-items:flex-end; justify-content:center; transition:flex .7s cubic-bezier(.5,0,.2,1); }
.shalf>img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 1.2s ease; }
.shalf:hover>img{ transform:scale(1.05); }
.shalf::after{ content:''; position:absolute; inset:0; background:linear-gradient(to top, rgba(20,12,11,.72), rgba(20,12,11,.12) 55%, rgba(20,12,11,.3)); }
.split:hover .shalf{ flex:.82; }
.split .shalf:hover{ flex:1.4; }
.shalf .c{ position:relative; z-index:2; text-align:center; color:var(--paper); padding-bottom:80px; }
.shalf .tl{ font-size:13px; letter-spacing:.32em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.shalf h2{ font-family:var(--serif); font-weight:500; font-size:clamp(40px,4vw,60px); margin:0 0 20px; color:#F2E9D8; }
.shalf .lnk{ font-size:13px; letter-spacing:.26em; text-transform:uppercase; border-bottom:1px solid rgba(249,249,247,.6); padding-bottom:6px; }
.sdiv{ position:absolute; top:0; bottom:0; left:50%; width:1px; background:rgba(249,249,247,.4); z-index:3; opacity:1; transition:opacity .45s ease; }
.split:hover .sdiv{ opacity:0; }

/* ---------- service (3-step elf band) ---------- */
.serv{ background:var(--serv-bg); min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:90px 48px; text-align:center; }
.serv .lead{ font-family:var(--serif); font-weight:500; font-size:var(--fs-h); color:#EFE7DA; margin:0 auto 14px; }
.serv .k{ font-size:var(--fs-eyebrow); letter-spacing:.32em; text-transform:uppercase; color:var(--gold); margin-bottom:30px; }
.serv .lnk{ display:inline-block; margin-top:64px; font-size:var(--fs-eyebrow); letter-spacing:.26em; text-transform:uppercase; color:#EFE7DA; border-bottom:1px solid var(--gold); padding-bottom:7px; }
.serv .lnk:hover{ color:#fff; }
.serv .sub{ font-family:var(--serif); font-style:italic; font-size:var(--fs-lead); letter-spacing:0; text-transform:none; color:rgba(239,231,218,.82); max-width:44ch; margin:0 auto 72px; line-height:1.4; }
.steps{ position:relative; display:grid; grid-template-columns:repeat(3,1fr); column-gap:36px; max-width:1000px; margin:0 auto; }
.steps::before{ content:''; position:absolute; left:16.66%; right:16.66%; top:187px; border-top:1px dashed var(--gold); opacity:.55; }
.step{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.step>img{ width:150px; height:150px; object-fit:contain; display:block; }
.step .num{ position:relative; margin:16px 0 0; background:var(--serv-bg); padding:0 18px; font-family:var(--serif); font-weight:500; font-size:42px; line-height:1; color:var(--gold); }
.step h4{ font-family:var(--sans); font-weight:600; font-size:14px; letter-spacing:.22em; text-transform:uppercase; color:#EFE7DA; margin:22px 0 10px; }
.step .cap{ font-size:var(--fs-body); letter-spacing:0; text-transform:none; line-height:1.6; color:rgba(239,231,218,.8); margin:0 auto; max-width:30ch; }

/* ---------- story ---------- */
.story{ display:grid; grid-template-columns:1fr 1fr; }
.story .img{ overflow:hidden; min-height:560px; }
.story .img img{ width:100%; height:100%; object-fit:cover; }
.story .img img.bw{ filter:grayscale(1) contrast(1.02); }
.story .tx{ display:flex; flex-direction:column; justify-content:center; padding:90px 90px; }
.story .k{ font-size:13px; letter-spacing:.3em; text-transform:uppercase; color:var(--burgundy); margin-bottom:26px; }
.story h3{ font-family:var(--serif); font-weight:500; font-size:var(--fs-h); line-height:1.12; margin:0 0 26px; }
.story p{ font-size:var(--fs-body); line-height:1.75; color:var(--ink-soft); margin:0 0 28px; max-width:42ch; }
.story .lnk{ font-size:13px; letter-spacing:.26em; text-transform:uppercase; color:var(--ink); border-bottom:1px solid var(--ink); padding-bottom:6px; width:fit-content; }

/* ---------- footer ---------- */
.foot{ background:var(--ink); color:var(--stone); padding:80px 56px 40px; }
.foot .top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; max-width:1340px; margin:0 auto; }
.foot .seal{ height:120px; }
.foot .col .h{ font-size:12px; letter-spacing:.24em; text-transform:uppercase; color:rgba(214,206,195,.6); margin-bottom:16px; }
.foot .col{ font-size:15px; line-height:2; color:rgba(214,206,195,.85); }
.foot .col a:hover{ color:var(--gold); }
.foot .bottom{ border-top:1px solid rgba(214,206,195,.18); margin:40px auto 0; max-width:1340px; padding-top:24px; display:flex; justify-content:space-between; font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:rgba(214,206,195,.5); }

/* ---------- inner page: collections ---------- */
.subhero{ position:relative; height:64vh; min-height:460px; overflow:hidden; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.subhero>img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.subhero::after{ content:''; position:absolute; inset:0; background:rgba(20,12,11,.5); }
.subhero .in{ position:relative; z-index:3; color:var(--paper); }
.subhero .k{ font-size:var(--fs-eyebrow); letter-spacing:.4em; text-transform:uppercase; color:var(--gold); margin-bottom:22px; }
.subhero h1{ font-family:var(--serif); font-weight:500; font-size:clamp(46px,6vw,82px); margin:0; color:#F2E9D8; }
/* forest & gold variant — no photography, engraved plate rules */
.subhero.forest{ background:radial-gradient(ellipse 72% 82% at 50% 44%, #3D3D41 0%, #242426 56%, #18181A 100%); height:auto; min-height:64vh; padding:128px 40px 96px; }
.subhero.forest::after{ display:none; }
.subhero.forest h1{ font-size:clamp(38px,4.6vw,58px); line-height:1.12; }
.subhero.forest h1 em{ font-style:italic; font-weight:400; }
.subhero.forest .intro{ max-width:56ch; margin:24px auto 0; font-size:var(--fs-body); line-height:1.74; color:rgba(231,225,216,.9); }
.subhero.forest .intro strong{ color:#F1E9DA; font-weight:500; }
.subhero.forest .k{ letter-spacing:.38em; margin-bottom:20px; }
.subhero.forest .rule{ display:flex; align-items:center; justify-content:center; gap:18px; color:var(--gold); font-size:12px; }
.subhero.forest .rule span{ width:90px; border-top:1px solid rgba(194,162,105,.6); }
.subhero.forest .rule.top{ margin-bottom:28px; }
.subhero.forest .rule.btm{ margin-top:32px; }
.tier{ display:grid; grid-template-columns:1fr 1fr; min-height:640px; }
.tier.flip .img{ order:2; }
.tier .img{ overflow:hidden; }
.tier .img img{ width:100%; height:100%; object-fit:cover; }
.tier .tx{ display:flex; flex-direction:column; justify-content:center; padding:90px 90px; }
.tier.t-burg{ background:var(--burgundy); color:var(--stone); }
.tier.t-stone{ background:var(--stone-3); color:var(--ink); }
.tier .k{ font-size:13px; letter-spacing:.3em; text-transform:uppercase; color:var(--gold); margin-bottom:24px; }
.tier h2{ font-family:var(--serif); font-weight:500; font-size:clamp(40px,4vw,58px); margin:0 0 24px; }
.tier .lead{ font-size:22px; line-height:1.5; margin:0 0 22px; opacity:.92; }
.tier p{ font-size:17px; line-height:1.7; margin:0 0 30px; max-width:42ch; opacity:.85; }
.ways{ display:flex; flex-wrap:wrap; gap:18px 26px; }
.way{ display:flex; align-items:center; gap:12px; font-size:14px; letter-spacing:.05em; }
.way .dotc{ width:30px; height:30px; border-radius:50%; box-shadow:inset 0 0 0 1px rgba(255,255,255,.25); }

/* ---------- finishing touches ---------- */
.touches{ padding:110px 56px 100px; background:var(--paper); text-align:center; }
.touches .k{ font-size:var(--fs-eyebrow); letter-spacing:.34em; text-transform:uppercase; color:var(--burgundy); margin-bottom:18px; }
.touches h2{ font-family:var(--serif); font-weight:500; font-size:var(--fs-h); margin:0 0 12px; }
.touches .sub{ font-family:var(--serif); font-style:italic; font-size:var(--fs-lead); color:var(--ink-soft); margin:0 0 60px; }
.tgrid{ display:grid; grid-template-columns:repeat(2,1fr); gap:40px; max-width:1100px; margin:0 auto; text-align:left; }
.touch{ margin:0; }
.touch .ph{ overflow:hidden; aspect-ratio:4/3; }
.touch .ph img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s cubic-bezier(.22,.61,.36,1); }
.touch:hover .ph img{ transform:scale(1.045); }
.touch h3{ font-family:var(--serif); font-weight:500; font-size:26px; margin:24px 0 10px; }
.touch p{ font-size:var(--fs-body); line-height:1.7; color:var(--ink-soft); margin:0; max-width:48ch; }
.touches .lnk{ display:inline-block; margin-top:54px; font-size:13px; letter-spacing:.26em; text-transform:uppercase; color:var(--ink); border-bottom:1px solid var(--ink); padding-bottom:6px; }
.touches .lnk:hover{ color:var(--burgundy); border-color:var(--burgundy); }

/* ---------- reveal ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity 1s ease, transform 1s cubic-bezier(.22,.61,.36,1); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } .hero>img{ animation:none; } }

/* ---------- responsive ---------- */
@media (max-width:900px){
  .nav{ padding:18px 22px; grid-template-columns:1fr auto 1fr; }
  .nav .links{ display:none; }
  .nav.solid{ padding:12px 22px; }
  .split{ flex-direction:column; height:auto; }
  .shalf{ height:62vh; }
  .split:hover .shalf, .split .shalf:hover{ flex:1; }
  .sdiv{ display:none; }
  .story, .tier, .tier.flip{ grid-template-columns:1fr; }
  .story .img{ min-height:420px; } .tier .img{ order:0 !important; min-height:380px; }
  .story .tx, .tier .tx{ padding:60px 28px; }
  .steps{ grid-template-columns:1fr; row-gap:48px; max-width:340px; }
  .steps::before{ display:none; }
  .step>img{ width:140px; height:140px; }
  .step .num{ font-size:38px; }
  .serv{ padding:80px 24px 88px; }
  .foot .top{ grid-template-columns:1fr 1fr; gap:30px; }
  .foot .bottom{ flex-direction:column; gap:10px; }
  .faq{ padding:72px 24px; }
  .faqhead{ margin-bottom:38px; }
  .qa summary{ font-size:18px; padding-right:40px; }
  .enquiry{ padding:72px 24px 88px; }
  .touches{ padding:72px 24px; }
  .tgrid{ grid-template-columns:1fr; gap:48px; }
  .enqform .row2{ grid-template-columns:1fr; }
}

/* ---------- faq ---------- */
.faq{ background:var(--stone-3); padding:108px 56px 112px; }
.faqhead{ max-width:780px; margin:0 auto 54px; text-align:center; }
.faqhead h2{ font-family:var(--serif); font-weight:500; font-size:var(--fs-h); color:var(--ink); margin:0 0 18px; }
.faqhead p{ font-size:var(--fs-lead); line-height:1.6; color:var(--ink-soft); margin:0; }
.qa{ max-width:860px; margin:0 auto; border-top:1px solid rgba(43,43,43,.16); }
.qa details{ border-bottom:1px solid rgba(43,43,43,.16); }
.qa summary{ list-style:none; cursor:pointer; padding:26px 48px 26px 0; position:relative; font-family:var(--serif); font-weight:500; font-size:21px; line-height:1.3; color:var(--ink); transition:color .25s; }
.qa summary::-webkit-details-marker{ display:none; }
.qa summary:hover{ color:var(--burgundy); }
.qa summary::after{ content:'+'; position:absolute; right:6px; top:50%; transform:translateY(-50%); color:var(--gold); font-family:var(--sans); font-size:25px; font-weight:300; }
.qa details[open] summary::after{ content:'−'; }
.qa .a{ padding:0 56px 30px 0; }
.qa .a p{ font-size:var(--fs-body); line-height:1.78; color:var(--ink-soft); margin:0; max-width:74ch; }

/* ---------- enquiry ---------- */
.enquiry{ background:var(--paper); padding:110px 56px 120px; }
.enqhead{ max-width:720px; margin:0 auto 52px; text-align:center; }
.enqhead .k{ font-size:13px; letter-spacing:.3em; text-transform:uppercase; color:var(--burgundy); margin-bottom:20px; }
.enqhead h2{ font-family:var(--serif); font-weight:500; font-size:var(--fs-h); color:var(--ink); margin:0 0 18px; }
.enqhead p{ font-size:var(--fs-lead); line-height:1.6; color:var(--ink-soft); margin:0; }
.enqform{ max-width:720px; margin:0 auto; display:flex; flex-direction:column; gap:26px; }
.enqform .row2{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.fld{ display:block; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-soft); }
.fld .req{ color:var(--burgundy); }
.enqform input, .enqform select, .enqform textarea{ display:block; width:100%; margin-top:9px; font-family:var(--sans); font-size:15px; color:var(--ink); background:#fff; border:1px solid rgba(43,43,43,.2); padding:13px 15px; border-radius:0; outline:none; transition:border-color .25s, box-shadow .25s; letter-spacing:0; text-transform:none; }
.enqform input::placeholder, .enqform textarea::placeholder{ color:rgba(43,43,43,.4); }
.enqform input:focus, .enqform select:focus, .enqform textarea:focus{ border-color:var(--burgundy); box-shadow:0 0 0 3px rgba(79,17,24,.08); }
.enqform textarea{ resize:vertical; min-height:120px; }
.enqform fieldset{ border:none; padding:0; margin:0; }
.enqform legend{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:14px; padding:0; }
.enqform .opts{ display:flex; flex-wrap:wrap; gap:14px 28px; }
.opt-line{ display:flex; align-items:center; gap:10px; font-size:14.5px; color:var(--ink); letter-spacing:0; text-transform:none; cursor:pointer; }
.opt-line input{ width:17px; height:17px; accent-color:var(--burgundy); flex:0 0 auto; }
.enqform button{ align-self:flex-start; margin-top:6px; background:var(--burgundy); color:#F2E9D8; border:none; padding:16px 44px; font-family:var(--sans); font-size:13px; letter-spacing:.22em; text-transform:uppercase; cursor:pointer; transition:background .3s; }
.enqform button:hover{ background:var(--green); }
.fine{ font-size:12px; line-height:1.6; color:var(--ink-soft); letter-spacing:.02em; text-transform:none; margin:2px 0 0; }
.enqthanks{ max-width:640px; margin:0 auto; text-align:center; }
.enqthanks .k{ font-size:13px; letter-spacing:.3em; text-transform:uppercase; color:var(--burgundy); margin-bottom:18px; }
.enqthanks h2{ font-family:var(--serif); font-weight:500; font-size:var(--fs-h); color:var(--ink); margin:0 0 16px; }
.enqthanks p{ font-size:var(--fs-lead); line-height:1.65; color:var(--ink-soft); margin:0; }

/* ---------- look book button ---------- */
.tier .lookbook{ display:inline-flex; align-items:center; gap:12px; margin-top:36px; padding:15px 30px; border:1px solid; font-size:var(--fs-eyebrow); letter-spacing:.22em; text-transform:uppercase; text-decoration:none; transition:background .3s, color .3s; }
.t-burg .lookbook{ color:#F2E9D8; border-color:var(--gold); }
.t-burg .lookbook:hover{ background:var(--gold); color:var(--burgundy); }
.t-stone .lookbook{ color:var(--burgundy); border-color:var(--burgundy); }
.t-stone .lookbook:hover{ background:var(--burgundy); color:#F2E9D8; }

/* ---------- founder page ---------- */
.fhero{ display:grid; grid-template-columns:0.9fr 1.1fr; min-height:90vh; }
.fhero .img{ overflow:hidden; min-height:60vh; }
.fhero .img img{ width:100%; height:100%; object-fit:cover; }
.fhero .tx{ display:flex; flex-direction:column; justify-content:center; padding:80px 7vw; }
.fhero .k{ font-size:var(--fs-eyebrow); letter-spacing:.3em; text-transform:uppercase; color:var(--burgundy); margin-bottom:26px; }
.fhero h1{ font-family:var(--serif); font-weight:500; font-size:clamp(40px,5vw,72px); line-height:1.04; margin:0 0 28px; }
.fhero .stand{ font-family:var(--serif); font-style:italic; font-size:clamp(19px,1.8vw,24px); line-height:1.45; color:var(--ink-soft); margin:0; max-width:32ch; }
.fbody{ background:var(--stone-3); padding:clamp(70px,9vw,120px) 24px; }
.fbody .col{ max-width:60ch; margin:0 auto; }
.fbody p{ font-size:var(--fs-body); line-height:1.85; color:var(--ink-soft); margin:0 0 26px; }
.fbody p:last-child{ margin-bottom:0; }
.fbody .fquote{ font-family:var(--serif); font-style:italic; font-size:clamp(26px,3vw,40px); line-height:1.2; color:var(--burgundy); text-align:center; max-width:18ch; margin:54px auto; }
.fclose{ background:var(--paper); padding:clamp(70px,8vw,110px) 24px; text-align:center; }
.fclose .k{ font-size:var(--fs-eyebrow); letter-spacing:.3em; text-transform:uppercase; color:var(--burgundy); margin-bottom:24px; }
.fclose p{ font-family:var(--serif); font-weight:500; font-size:clamp(26px,3vw,40px); line-height:1.3; color:var(--ink); max-width:24ch; margin:0 auto 40px; }
.btn-burg{ display:inline-block; background:var(--burgundy); color:#F2E9D8; padding:17px 46px; font-size:var(--fs-eyebrow); letter-spacing:.24em; text-transform:uppercase; transition:background .3s; }
.btn-burg:hover{ background:var(--green); }
@media (max-width:900px){ .fhero{ grid-template-columns:1fr; } .fhero .img{ min-height:52vh; } .fhero .tx{ padding:58px 28px; } }


/* ====================================================== */
/* ============ v2 — APPROVED REVIEW CHANGES ============ */
/* ====================================================== */
:root{ --line:rgba(43,43,43,.1); }

/* Rec 02 — hero re-centred, lighter scrim, sub line (magic kept) */
.hero{ justify-content:center; }
.hero::after{ background:linear-gradient(to bottom, rgba(20,12,11,.34), rgba(20,12,11,.12) 45%, rgba(20,12,11,.5)); }
.hero .htext{ padding-bottom:0; }
.hero h1{ margin-bottom:24px; }
.hero .htext .sub{ margin:0 auto 30px; max-width:46ch; font-size:var(--fs-body); line-height:1.7; font-weight:300; color:rgba(244,236,221,.9); text-shadow:0 1px 8px rgba(20,12,11,.7); }

/* Rec 03 — real-photo proof strip beneath the elves */
.serv .proof{ width:100%; max-width:1000px; margin:74px auto 0; border-top:1px solid rgba(239,231,218,.22); padding-top:42px; }
.serv .proof .lbl{ font-family:var(--serif); font-style:italic; font-size:18px; color:rgba(239,231,218,.86); margin:0 0 28px; }
.serv .proofstrip{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.serv .proofstrip figure{ margin:0; }
.serv .proofstrip img{ width:100%; aspect-ratio:4/3; object-fit:cover; }
.serv .proofstrip figcaption{ margin-top:12px; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); }

/* Rec 06 Draft B — what a scheme includes (forest grid) */
.includes{ background:radial-gradient(ellipse at 50% -20%, #34492C, var(--green-deep) 72%); color:var(--stone); padding:clamp(80px,9vw,130px) 48px; }
.includes .ih{ max-width:1040px; margin:0 auto; }
.includes .ih .k{ font-size:var(--fs-eyebrow); letter-spacing:.34em; text-transform:uppercase; color:var(--gold); }
.includes .ih h2{ font-family:var(--serif); font-weight:500; color:#F1E9DA; font-size:var(--fs-h); margin:22px 0 0; max-width:22ch; line-height:1.12; }
.includes .g{ display:grid; grid-template-columns:repeat(2,1fr); gap:46px 64px; margin:60px auto 0; max-width:1040px; }
.includes .it{ border-top:1px solid rgba(214,206,195,.24); padding-top:24px; }
.includes .it .t{ font-family:var(--serif); font-size:25px; color:#F1E9DA; margin-bottom:12px; }
.includes .it p{ font-size:var(--fs-body); line-height:1.7; color:rgba(214,206,195,.84); margin:0; max-width:42ch; }
.includes .it .tag{ display:inline-block; margin-top:14px; font-size:10.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); }

/* The problem we solve — editorial tension band */
.problem{ background:var(--paper); padding:clamp(90px,11vw,152px) 40px; text-align:center; border-bottom:1px solid var(--line); }
.problem .k{ font-size:var(--fs-eyebrow); letter-spacing:.34em; text-transform:uppercase; color:var(--gold); }
.problem h2{ font-family:var(--serif); font-weight:500; font-size:clamp(28px,3.7vw,50px); line-height:1.18; margin:26px auto 0; max-width:19ch; }
.problem h2 em{ font-style:italic; }
.problem p{ font-size:var(--fs-body); line-height:1.8; color:var(--ink-soft); max-width:56ch; margin:30px auto 0; }
.problem .resolve{ font-family:var(--sans); font-style:normal; font-size:var(--fs-body); line-height:1.8; color:var(--ink-soft); margin:24px auto 0; max-width:56ch; }
.problem .em{ color:var(--burgundy); font-weight:500; }

/* Why work with us — four reasons */
.reasons{ background:var(--paper); padding:clamp(80px,9vw,124px) 48px; border-bottom:1px solid var(--line); }
.reasons .rhead{ text-align:center; max-width:60ch; margin:0 auto 62px; }
.reasons .rhead .k{ font-size:var(--fs-eyebrow); letter-spacing:.34em; text-transform:uppercase; color:var(--burgundy); }
.reasons .rhead h2{ font-family:var(--serif); font-weight:500; font-size:var(--fs-h); margin:20px 0 0; line-height:1.12; }
.reasons .rgrid{ display:grid; grid-template-columns:repeat(2,1fr); gap:48px 70px; max-width:1000px; margin:0 auto; }
.reasons .ritem{ border-top:1px solid var(--line); padding-top:24px; }
.reasons .ritem .rn{ font-family:var(--serif); font-style:italic; font-size:30px; line-height:1; color:var(--gold); }
.reasons .ritem h4{ font-family:var(--serif); font-weight:500; font-size:23px; margin:14px 0 11px; color:var(--ink); }
.reasons .ritem p{ font-size:var(--fs-body); line-height:1.72; color:var(--ink-soft); margin:0; max-width:42ch; }
@media (max-width:900px){ .reasons{ padding-left:24px; padding-right:24px; } .reasons .rgrid{ grid-template-columns:1fr; gap:42px; } }

/* Per-collection look-book scroller (on Collections page) */
.lookscroll{ background:var(--paper); padding:clamp(56px,6vw,88px) 0; border-bottom:1px solid var(--line); }
.lookscroll.stone{ background:var(--stone-3); }
.lookscroll .lh{ max-width:1180px; margin:0 auto 32px; padding:0 40px; display:flex; align-items:flex-end; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.lookscroll .lh .k{ font-size:var(--fs-eyebrow); letter-spacing:.34em; text-transform:uppercase; color:var(--gold); }
.lookscroll .lh h3{ font-family:var(--serif); font-weight:500; font-size:clamp(22px,2.5vw,34px); margin:12px 0 0; line-height:1.1; }
.lookscroll .lh .all{ font-size:var(--fs-eyebrow); letter-spacing:.2em; text-transform:uppercase; color:var(--ink); border-bottom:1px solid var(--ink); padding-bottom:5px; white-space:nowrap; }
.lookscroll .lh .all:hover{ color:var(--burgundy); border-color:var(--burgundy); }
.lookscroll .strip{ display:flex; gap:18px; padding:0 40px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; }
.lookscroll .strip::-webkit-scrollbar{ height:0; }
.lookscroll figure{ margin:0; flex:0 0 auto; scroll-snap-align:start; }
.lookscroll figure img{ width:300px; height:400px; object-fit:cover; display:block; }
.lookscroll figcaption{ margin-top:13px; display:flex; flex-direction:column; gap:5px; width:0; min-width:100%; font-size:11px; line-height:1.5; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-soft); }
.lookscroll figcaption .src{ color:var(--gold); white-space:nowrap; }
.lookscroll .more{ flex:0 0 auto; scroll-snap-align:start; width:300px; height:400px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; text-align:center; border:1px solid var(--line); background:var(--paper-2,#F3EFE8); color:var(--ink); transition:background .35s; }
.lookscroll .more:hover{ background:#fff; }
.lookscroll .more .mk{ font-family:var(--serif); font-style:italic; font-size:22px; }
.lookscroll .more .ml{ font-size:var(--fs-eyebrow); letter-spacing:.22em; text-transform:uppercase; color:var(--burgundy); border-bottom:1px solid var(--burgundy); padding-bottom:5px; }
.lookscroll .ghint{ text-align:center; margin-top:28px; font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:var(--ink-soft); }
@media (max-width:900px){
  .lookscroll .strip{ padding:0 22px; -webkit-overflow-scrolling:touch; }
  .lookscroll figure img, .lookscroll .more{ width:250px; height:340px; }
  .lookscroll .lh{ padding:0 22px; }
}

/* Rec 04 — editorial gallery band */
.gallery{ background:var(--paper); padding:clamp(80px,9vw,120px) 0; }
.gallery .gtop{ text-align:center; max-width:60ch; margin:0 auto 54px; padding:0 40px; }
.gallery .gtop .k{ font-size:var(--fs-eyebrow); letter-spacing:.34em; text-transform:uppercase; color:var(--burgundy); }
.gallery .gtop h2{ font-family:var(--serif); font-weight:500; font-size:var(--fs-h); margin:20px 0 14px; }
.gallery .gtop p{ font-size:var(--fs-body); line-height:1.7; color:var(--ink-soft); }
.gallery .strip{ display:flex; gap:20px; padding:0 40px; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; }
.gallery .strip::-webkit-scrollbar{ height:0; }
.gallery figure{ margin:0; flex:0 0 auto; scroll-snap-align:start; }
.gallery figure img{ height:clamp(360px,46vw,500px); width:auto; aspect-ratio:3/4; object-fit:cover; }
.gallery figure.wide img{ aspect-ratio:16/10; }
.gallery figcaption{ margin-top:14px; display:flex; flex-direction:column; gap:5px; width:0; min-width:100%; font-size:11px; line-height:1.5; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-soft); }
.gallery figcaption .src{ color:var(--gold); white-space:nowrap; }
.gallery .ghint{ text-align:center; margin-top:32px; font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:var(--ink-soft); }

/* Rec 06 Draft A — the approach (editorial two-column) */
.approach{ background:var(--paper); padding:clamp(80px,9vw,130px) 48px; border-top:1px solid var(--line); }
.approach .inner{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; max-width:1080px; margin:0 auto; align-items:start; }
.approach .l .k{ font-size:var(--fs-eyebrow); letter-spacing:.34em; text-transform:uppercase; color:var(--burgundy); }
.approach .l h2{ font-family:var(--serif); font-weight:500; font-size:var(--fs-h); line-height:1.1; margin-top:22px; }
.approach .l h2 em{ font-style:italic; }
.approach .bd p{ font-size:var(--fs-body); line-height:1.82; color:var(--ink-soft); margin:0 0 20px; }
.approach .bd .sign{ font-family:var(--serif); font-style:italic; font-size:19px; color:var(--ink); margin-top:8px; }
.approach .bd .lnk{ display:inline-block; margin-top:26px; font-size:13px; letter-spacing:.26em; text-transform:uppercase; color:var(--ink); border-bottom:1px solid var(--ink); padding-bottom:6px; }
.approach .bd .lnk:hover{ color:var(--burgundy); border-color:var(--burgundy); }

/* Rec 05 — honest proof band */
.proofband{ background:var(--stone-3); }
.proofband .row{ display:grid; grid-template-columns:repeat(3,1fr); max-width:1180px; margin:0 auto; }
.proofband .cell{ padding:56px 44px; border-right:1px solid rgba(43,43,43,.12); }
.proofband .cell:last-child{ border-right:none; }
.proofband .stat{ font-family:var(--serif); font-size:42px; line-height:1; color:var(--burgundy); }
.proofband .cell .lab{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft); margin-top:16px; line-height:1.7; }
.proofband .quote{ background:var(--burgundy); color:#F4ECDD; display:grid; grid-template-columns:0.9fr 1.1fr; }
.proofband .quote .img{ overflow:hidden; min-height:440px; }
.proofband .quote .img img{ width:100%; height:100%; object-fit:cover; filter:grayscale(.25) contrast(1.02); }
.proofband .quote .tx{ padding:clamp(50px,6vw,72px); display:flex; flex-direction:column; justify-content:center; }
.proofband .quote .k{ color:#D9BF8E; font-size:var(--fs-eyebrow); letter-spacing:.3em; text-transform:uppercase; }
.proofband .quote blockquote{ margin:24px 0 0; font-family:var(--serif); font-style:italic; font-size:clamp(26px,2.8vw,38px); line-height:1.34; color:#F4ECDD; }
.proofband .quote .attr{ margin-top:28px; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:rgba(244,236,221,.74); }
.proofband .quote .lnk{ margin-top:30px; font-size:12px; letter-spacing:.24em; text-transform:uppercase; color:#F4ECDD; border-bottom:1px solid var(--gold); padding-bottom:6px; width:fit-content; }

/* v2 responsive */
@media (max-width:900px){
  .includes .g, .approach .inner, .proofband .row, .proofband .quote{ grid-template-columns:1fr; }
  .includes, .approach{ padding-left:24px; padding-right:24px; }
  .proofband .cell{ border-right:none; border-bottom:1px solid rgba(43,43,43,.12); }
  .gallery figure img{ height:360px; }
  .serv .proofstrip{ grid-template-columns:1fr; max-width:340px; margin:0 auto; }
}

/* Collections — redesigned "two signatures" layout */
.collection{ display:grid; grid-template-columns:1.08fr .92fr; min-height:88vh; }
.collection.flip .cimg{ order:2; }
.collection .cimg{ position:relative; overflow:hidden; }
.collection .cimg img{ width:100%; height:100%; object-fit:cover; transition:transform 1.5s cubic-bezier(.22,.61,.36,1); }
.collection:hover .cimg img{ transform:scale(1.045); }
.collection .cbody{ display:flex; flex-direction:column; justify-content:center; padding:clamp(56px,7vw,112px); }
.collection .idxrow{ display:flex; align-items:center; gap:24px; margin-bottom:28px; }
.collection .idx{ font-family:var(--serif); font-style:italic; font-size:clamp(42px,4.4vw,66px); line-height:1; }
.collection .idxrow .rule{ flex:1; height:1px; background:currentColor; opacity:.28; }
.collection .ck{ font-size:var(--fs-eyebrow); letter-spacing:.34em; text-transform:uppercase; }
.collection h2{ font-family:var(--serif); font-weight:500; font-size:clamp(42px,4.6vw,66px); margin:14px 0 18px; line-height:1; }
.collection .lead{ font-family:var(--serif); font-style:italic; font-size:clamp(20px,2vw,26px); margin:0 0 22px; opacity:.92; }
.collection .desc{ font-size:var(--fs-body); line-height:1.78; margin:0 0 36px; max-width:46ch; opacity:.88; }
.collection .palette{ margin-bottom:38px; }
.collection .palette .plabel{ display:block; font-size:10.5px; letter-spacing:.24em; text-transform:uppercase; opacity:.6; margin-bottom:16px; }
.collection .ways{ display:flex; flex-wrap:wrap; gap:15px 26px; }
.collection .way{ display:flex; align-items:center; gap:11px; font-size:13px; letter-spacing:.04em; }
.collection .way .dotc{ width:22px; height:22px; border-radius:50%; box-shadow:inset 0 0 0 1px rgba(255,255,255,.25); }
.collection .lookbook{ display:inline-flex; align-items:center; gap:12px; padding:15px 30px; border:1px solid; font-size:var(--fs-eyebrow); letter-spacing:.22em; text-transform:uppercase; transition:background .3s,color .3s; width:fit-content; }
.collection.c-burg{ background:var(--burgundy); color:var(--stone); }
.collection.c-burg .idx, .collection.c-burg .ck{ color:var(--gold); }
.collection.c-burg .lookbook{ color:#F2E9D8; border-color:var(--gold); }
.collection.c-burg .lookbook:hover{ background:var(--gold); color:var(--burgundy); }
.collection.c-stone{ background:var(--stone-3); color:var(--ink); }
.collection.c-stone .idx, .collection.c-stone .ck{ color:var(--burgundy); }
.collection.c-stone .way .dotc{ box-shadow:inset 0 0 0 1px rgba(43,43,43,.18); }
.collection.c-stone .lookbook{ color:var(--burgundy); border-color:var(--burgundy); }
.collection.c-stone .lookbook:hover{ background:var(--burgundy); color:#F2E9D8; }
.collection.c-paper{ background:var(--paper); color:var(--ink); }
.collection.c-paper .idx, .collection.c-paper .ck{ color:var(--burgundy); }
.collection.c-paper .way .dotc{ box-shadow:inset 0 0 0 1px rgba(43,43,43,.18); }
.collection.c-paper .lookbook{ color:var(--burgundy); border-color:var(--burgundy); }
.collection.c-paper .lookbook:hover{ background:var(--burgundy); color:#F2E9D8; }
@media (max-width:900px){
  .collection, .collection.flip{ grid-template-columns:1fr; }
  .collection .cimg, .collection.flip .cimg{ order:0; min-height:60vh; }
  .collection .cbody{ padding:58px 26px; }
}

/* ====================================================== */
/* ============ MOBILE NAVIGATION & TUNING ============== */
/* ====================================================== */
.navtoggle{ display:none; }
.mobmenu{ display:none; }

@media (max-width:900px){
  /* hamburger toggle sits in the left nav cell, brand stays centred */
  .navtoggle{ display:inline-flex; flex-direction:column; justify-content:center; gap:6px; width:40px; height:40px; padding:9px 7px; margin:0; background:none; border:0; cursor:pointer; justify-self:start; }
  .navtoggle span{ display:block; height:1.5px; width:100%; background:currentColor; transition:transform .35s, opacity .25s; }
  .nav.light .navtoggle{ color:#F0E9DC; }
  .nav.solid .navtoggle{ color:var(--ink); }

  /* full-screen mobile menu */
  .mobmenu{ display:flex; position:fixed; inset:0; z-index:100; flex-direction:column; align-items:center; justify-content:center; text-align:center; background:radial-gradient(ellipse at 50% 0%, #5A1620, var(--burgundy-deep) 75%); color:#F2E9D8; opacity:0; pointer-events:none; transform:translateY(-10px); transition:opacity .45s ease, transform .45s cubic-bezier(.22,.61,.36,1); }
  .mobmenu.open{ opacity:1; pointer-events:auto; transform:none; }
  .mobmenu .mseal{ height:78px; margin-bottom:38px; opacity:0; transform:translateY(10px); transition:opacity .5s ease .08s, transform .5s ease .08s; filter:drop-shadow(0 0 18px rgba(194,162,105,.4)); }
  .mobmenu.open .mseal{ opacity:1; transform:none; }
  .moblinks{ display:flex; flex-direction:column; align-items:center; gap:30px; }
  .moblinks a{ font-family:var(--serif); font-weight:500; font-size:34px; line-height:1; color:#F4ECDD; opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s cubic-bezier(.22,.61,.36,1); }
  .mobmenu.open .moblinks a{ opacity:1; transform:none; }
  .mobmenu.open .moblinks a:nth-child(1){ transition-delay:.12s; }
  .mobmenu.open .moblinks a:nth-child(2){ transition-delay:.18s; }
  .mobmenu.open .moblinks a:nth-child(3){ transition-delay:.24s; }
  .mobmenu.open .moblinks a:nth-child(4){ transition-delay:.30s; }
  .mobmenu .menq{ margin-top:44px; display:inline-block; font-size:12px; letter-spacing:.26em; text-transform:uppercase; color:#F4ECDD; border-bottom:1px solid var(--gold); padding-bottom:8px; opacity:0; transition:opacity .5s ease .36s; }
  .mobmenu.open .menq{ opacity:1; }
  .mobmenu .mlang{ margin-top:40px; font-size:12px; letter-spacing:.22em; color:rgba(242,233,216,.65); }
  .mobmenu .mlang .on{ border-bottom:1px solid var(--gold); padding-bottom:2px; }
  .mobmenu .mlang .sep{ opacity:.45; margin:0 8px; }
  .mobclose{ position:absolute; top:22px; right:24px; width:42px; height:42px; background:none; border:0; color:#F4ECDD; font-size:30px; line-height:1; cursor:pointer; }
  body.menu-open{ overflow:hidden; }

  /* general mobile tuning */
  .hero{ min-height:88svh; }
  .hero .htext .sub{ padding:0 8px; }
  .topbar{ letter-spacing:.18em; font-size:9.5px; padding:9px 14px; line-height:1.5; }
  .collection .cimg, .collection.flip .cimg{ min-height:66svh; }
  .collection h2{ font-size:clamp(38px,11vw,52px); }
  .gallery .strip{ padding:0 22px; -webkit-overflow-scrolling:touch; }
  .gallery figure img{ height:340px; }
  .proofband .stat{ font-size:38px; }
  .foot{ padding:64px 26px 36px; }
  .larive{ padding:72px 22px 80px; }
  .lr-grid{ column-count:2; column-gap:12px; }
  .lr-item{ margin-bottom:12px; }
  .lr-lb .lr-prev{ left:8px; } .lr-lb .lr-next{ right:8px; }
  .lr-lb .lr-prev, .lr-lb .lr-next{ width:44px; height:44px; font-size:26px; }
}

/* ====================================================== */
/* ====== CHALET LA RIVE — founder portfolio gallery ==== */
/* ====================================================== */
.larive{ background:var(--paper-2,#F3EFE8); padding:clamp(84px,9vw,128px) 48px; border-top:1px solid var(--line); }
.lr-head{ max-width:680px; margin:0 auto 52px; text-align:center; }
.lr-head .k{ font-size:var(--fs-eyebrow); letter-spacing:.34em; text-transform:uppercase; color:var(--burgundy); }
.lr-head h2{ font-family:var(--serif); font-weight:500; font-size:var(--fs-h); margin:20px 0 16px; }
.lr-head p{ font-size:var(--fs-body); line-height:1.78; color:var(--ink-soft); }
.lr-head p .hint{ display:block; margin-top:14px; font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); }
.lr-grid{ column-count:3; column-gap:16px; max-width:1080px; margin:0 auto; }
.lr-item{ break-inside:avoid; display:block; width:100%; margin:0 0 16px; padding:0; border:0; background:none; cursor:zoom-in; position:relative; overflow:hidden; }
.lr-item img{ width:100%; display:block; transition:transform .9s cubic-bezier(.22,.61,.36,1); }
.lr-item::after{ content:''; position:absolute; inset:0; background:rgba(20,12,11,0); transition:background .4s; }
.lr-item:hover img{ transform:scale(1.045); }
.lr-item:hover::after{ background:rgba(20,12,11,.12); }
.lr-item .cap{ position:absolute; left:0; right:0; bottom:0; z-index:2; padding:34px 16px 14px; font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:#F4ECDD; opacity:0; transform:translateY(6px); transition:opacity .4s, transform .4s; background:linear-gradient(to top, rgba(20,12,11,.66), rgba(20,12,11,0)); text-align:left; }
.lr-item:hover .cap{ opacity:1; transform:none; }

/* lightbox */
.lr-lb{ position:fixed; inset:0; z-index:200; display:flex; align-items:center; justify-content:center; background:rgba(18,11,10,.94); opacity:0; pointer-events:none; transition:opacity .4s ease; }
.lr-lb.open{ opacity:1; pointer-events:auto; }
.lr-lb figure{ margin:0; max-width:88vw; max-height:86vh; display:flex; flex-direction:column; align-items:center; transform:scale(.97); transition:transform .45s cubic-bezier(.22,.61,.36,1); }
.lr-lb.open figure{ transform:none; }
.lr-lb img{ max-width:88vw; max-height:78vh; width:auto; height:auto; object-fit:contain; box-shadow:0 30px 80px -30px rgba(0,0,0,.8); }
.lr-lb figcaption{ margin-top:18px; font-size:11px; letter-spacing:.22em; text-transform:uppercase; color:rgba(244,236,221,.78); }
.lr-lb figcaption .ct{ color:var(--gold); margin-left:10px; }
.lr-lb .lr-close{ position:absolute; top:22px; right:26px; width:46px; height:46px; background:none; border:0; color:#F4ECDD; font-size:32px; line-height:1; cursor:pointer; opacity:.8; }
.lr-lb .lr-close:hover{ opacity:1; }
.lr-lb .lr-prev, .lr-lb .lr-next{ position:absolute; top:50%; transform:translateY(-50%); width:56px; height:56px; border-radius:50%; background:rgba(244,236,221,.08); border:1px solid rgba(244,236,221,.25); color:#F4ECDD; font-size:30px; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .3s; }
.lr-lb .lr-prev:hover, .lr-lb .lr-next:hover{ background:rgba(244,236,221,.2); }
.lr-lb .lr-prev{ left:28px; } .lr-lb .lr-next{ right:28px; }
.lr-lb .lr-count{ position:absolute; bottom:26px; left:50%; transform:translateX(-50%); font-size:11px; letter-spacing:.24em; color:rgba(244,236,221,.55); }
body.lb-open{ overflow:hidden; }
@media (max-width:560px){ .lr-grid{ column-count:1; } }
