/* ============================================
   MAISON 26 — Boutique & Café, Gembloux
   Design tokens
   - Fonts: system stacks only (no Google Fonts CDN —
     avoids the GDPR pre-consent IP issue flagged across
     the other Nexa sites; see playbook section 3 & 6)
   ============================================ */
:root{
  --pink:        #EC1876;
  --pink-deep:   #C4125F;
  --charcoal:    #191517;
  --cream:       #F7EFE9;
  --blush:       #F4DEE7;
  --paper:       #FFFDFB;
  --line:        rgba(25,21,23,0.12);
  --muted:       #7A7176;

  --serif: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--charcoal);
  font-family:var(--sans);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
.wrap{ max-width:var(--container); margin:0 auto; padding:0 6vw; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

.eyebrow{
  font-family:var(--sans);
  font-size:0.68rem;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--pink-deep);
}
.script{
  font-family:var(--serif);
  font-style:italic;
  font-weight:400;
  color:var(--pink);
}
h1,h2,h3{
  font-family:var(--serif);
  font-weight:700;
  letter-spacing:-0.01em;
  margin:0;
  color:var(--charcoal);
}

/* ============ SPLASH ============ */
#m26-splash{
  position:fixed; inset:0; z-index:9999;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  transition:opacity 0.9s ease, visibility 0.9s ease;
}
#m26-splash.gone{ opacity:0; visibility:hidden; pointer-events:none; }
.splash-bg{
  position:absolute; inset:0;
  background:url('images/store/splash-bg.jpg') center/cover no-repeat;
  filter:brightness(0.5) saturate(1.05);
  transform:scale(1.06);
  animation:splashZoom 10s ease forwards;
}
@keyframes splashZoom{ to{ transform:scale(1); } }
.splash-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,8,10,.45) 0%, rgba(20,10,16,.22) 45%, rgba(196,18,95,.30) 100%);
}
.splash-logo{
  position:relative; z-index:1;
  width:min(340px, 60vw);
  opacity:0;
  filter:drop-shadow(0 10px 34px rgba(0,0,0,0.55));
  animation:splashFade 1s ease 0.7s forwards;
}
.splash-scroll{
  position:absolute; bottom:2.5rem; z-index:1;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  opacity:0; animation:splashFade 1s ease 2s forwards; cursor:pointer;
  background:none; border:none;
}
.splash-line{
  width:1px; height:44px;
  background:linear-gradient(to bottom, rgba(255,255,255,0.75), transparent);
  animation:splashPulse 2s ease-in-out 2.5s infinite;
}
.splash-label{
  font-size:0.62rem; font-weight:700; letter-spacing:0.28em;
  text-transform:uppercase; color:rgba(255,255,255,0.8);
}
@keyframes splashFade{ from{opacity:0; transform:translateY(12px);} to{opacity:1; transform:translateY(0);} }
@keyframes splashPulse{ 0%,100%{opacity:0.35;} 50%{opacity:1;} }

/* ============ NAV ============ */
#site-nav{
  position:fixed; top:0; left:0; right:0; z-index:500;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.3rem 6vw;
  transition:background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
#site-nav.solid{
  background:rgba(247,239,233,0.92);
  backdrop-filter:blur(10px);
  padding:0.85rem 6vw;
  box-shadow:0 1px 0 var(--line);
}
.nav-logo img{ height:34px; width:auto; transition:height 0.35s ease; }
#site-nav.solid .nav-logo img{ height:28px; }
.nav-links{ display:flex; align-items:center; gap:2.4rem; }
.nav-links a{
  font-size:0.72rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
  position:relative; padding:4px 0; color:var(--charcoal);
}
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:1.5px;
  background:var(--pink); transform:scaleX(0); transform-origin:left;
  transition:transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ transform:scaleX(1); }
.nav-menu-btn{
  display:none; background:none; border:none; flex-direction:column; gap:5px; padding:6px;
}
.nav-menu-btn span{ width:22px; height:2px; background:var(--charcoal); display:block; }

@media (max-width:860px){
  .nav-links{
    position:fixed; inset:0; top:0; z-index:400;
    background:var(--paper);
    flex-direction:column; justify-content:center; gap:2.2rem;
    transform:translateY(-100%); transition:transform 0.4s ease;
  }
  .nav-links.open{ transform:translateY(0); }
  .nav-links a{ font-size:1.1rem; }
  .nav-menu-btn{ display:flex; z-index:410; }
}

/* ============ HERO ============ */
#hero{
  position:relative;
  min-height:100vh;
  display:flex; align-items:center;
  padding:8rem 6vw 4rem;
  background:var(--cream);
  overflow:hidden;
}
.hero-grid{
  width:100%; max-width:var(--container); margin:0 auto;
  display:grid; grid-template-columns:1fr 0.9fr; gap:5vw; align-items:center;
}
.hero-copy .eyebrow{ margin-bottom:1rem; display:block; }
.hero-copy h1{
  font-size:clamp(3rem, 6.4vw, 5.4rem);
  line-height:0.95;
}
.hero-copy .script{ font-size:clamp(1.4rem, 2.6vw, 2rem); display:block; margin-top:0.6rem; }
.hero-copy p.lede{
  font-family:var(--sans); font-size:0.95rem; line-height:1.7; color:var(--muted);
  max-width:30rem; margin:1.6rem 0 2.2rem;
}
.btn{
  display:inline-flex; align-items:center; gap:0.6rem;
  padding:0.95rem 1.9rem;
  font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
  border-radius:100px; border:1.5px solid var(--charcoal);
  background:var(--charcoal); color:var(--paper);
  transition:all 0.3s ease;
}
.btn:hover{ background:var(--pink); border-color:var(--pink); }
.btn.outline{ background:transparent; color:var(--charcoal); }
.btn.outline:hover{ background:var(--charcoal); color:var(--paper); }
.btn.pink{ background:var(--pink); border-color:var(--pink); }
.btn.pink:hover{ background:var(--pink-deep); border-color:var(--pink-deep); }

.hero-visual{ position:relative; aspect-ratio:4/5; border-radius:6px; overflow:hidden; }
.hero-slide{
  position:absolute; inset:0; opacity:0; transition:opacity 1.1s ease;
}
.hero-slide.active{ opacity:1; }
.hero-slide img{ width:100%; height:100%; object-fit:cover; }
.hero-slide-tag{
  position:absolute; left:1.1rem; bottom:1.1rem; z-index:2;
  background:rgba(255,253,251,0.92); backdrop-filter:blur(6px);
  padding:0.5rem 0.9rem; border-radius:100px;
  font-size:0.65rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--charcoal);
}
.hero-visual-nav{
  position:absolute; z-index:3; top:50%; transform:translateY(-50%);
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,253,251,0.85); border:none;
  display:flex; align-items:center; justify-content:center;
  transition:background 0.25s ease;
}
.hero-visual-nav:hover{ background:var(--paper); }
.hero-visual-nav.prev{ left:0.9rem; }
.hero-visual-nav.next{ right:0.9rem; }
.hero-dots{
  position:absolute; right:1.1rem; top:1.1rem; z-index:3;
  display:flex; flex-direction:column; gap:6px;
}
.hero-dot{
  width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.55);
  border:none; padding:0; transition:background 0.25s ease, transform 0.25s ease;
}
.hero-dot.active{ background:var(--paper); transform:scale(1.3); }

@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; aspect-ratio:4/3.4; }
  #hero{ padding-top:6.5rem; }
}

/* ============ STORE / CAFE INTRO ============ */
#store-intro{ padding:7rem 0; background:var(--paper); }
.store-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:5vw; align-items:center;
}
.store-photo{ position:relative; border-radius:6px; overflow:hidden; aspect-ratio:4/5; }
.store-photo img{ width:100%; height:100%; object-fit:cover; }
.store-copy h2{ font-size:clamp(2.2rem, 4vw, 3.1rem); line-height:1.05; margin-bottom:1.4rem; }
.store-copy p{ font-size:0.95rem; line-height:1.75; color:var(--muted); margin-bottom:1.6rem; max-width:28rem; }
.store-facts{ display:flex; gap:2.4rem; margin-top:2rem; flex-wrap:wrap; }
.store-fact{ }
.store-fact .label{ font-size:0.62rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--pink-deep); margin-bottom:0.4rem; }
.store-fact .value{ font-family:var(--serif); font-size:1.05rem; }
@media (max-width:900px){
  .store-grid{ grid-template-columns:1fr; }
  .store-photo{ order:-1; }
}

/* ============ COLLECTION TEASER (home) ============ */
#collection-teaser{ padding:7rem 0; background:var(--blush); overflow:hidden; }
.teaser-head{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:3rem; gap:2rem; flex-wrap:wrap; }
.teaser-head h2{ font-size:clamp(2.2rem, 4vw, 3.1rem); }
.teaser-strip{
  display:flex; gap:1.4rem; overflow-x:auto; padding-bottom:1rem;
  scroll-snap-type:x mandatory;
}
.teaser-strip::-webkit-scrollbar{ height:5px; }
.teaser-strip::-webkit-scrollbar-thumb{ background:var(--pink); border-radius:10px; }
.teaser-card{
  flex:0 0 auto; width:min(260px, 62vw);
  scroll-snap-align:start;
  border-radius:6px; overflow:hidden; position:relative;
  aspect-ratio:2/3; background:var(--paper);
}
.teaser-card img{ width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.teaser-card:hover img{ transform:scale(1.05); }
.teaser-card .num{
  position:absolute; top:0.9rem; left:0.9rem; z-index:2;
  background:rgba(255,253,251,0.92); padding:0.35rem 0.7rem; border-radius:100px;
  font-size:0.62rem; font-weight:700; letter-spacing:0.1em;
}

/* ============ FOOTER ============ */
footer{ background:var(--charcoal); color:var(--paper); padding:5rem 0 2rem; }
.footer-grid{
  display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:3rem;
  padding-bottom:3rem; border-bottom:1px solid rgba(255,255,255,0.12);
}
.footer-logo img{ height:46px; width:auto; margin-bottom:1.2rem; }
.footer-grid p{ font-size:0.85rem; line-height:1.7; color:rgba(255,255,255,0.6); max-width:22rem; }
.footer-col .label{ font-size:0.62rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--pink); margin-bottom:1rem; }
.footer-col a, .footer-col span{ display:block; font-size:0.88rem; color:rgba(255,255,255,0.78); line-height:2; }
.footer-col a:hover{ color:var(--pink); }
.footer-bottom{
  display:flex; justify-content:space-between; padding-top:1.6rem;
  font-size:0.72rem; color:rgba(255,255,255,0.4); flex-wrap:wrap; gap:0.6rem;
}
@media (max-width:760px){
  .footer-grid{ grid-template-columns:1fr; gap:2.2rem; }
}

/* ============ PAGE HEADER (collection / contact) ============ */
.page-header{
  padding:9.5rem 0 3.5rem; background:var(--paper);
  border-bottom:1px solid var(--line);
}
.page-header h1{ font-size:clamp(2.6rem, 5.4vw, 4rem); }
.page-header p{ font-size:0.9rem; color:var(--muted); margin-top:1rem; max-width:34rem; }

/* ============ COLLECTION GRID ============ */
#collection-grid{ padding:4.5rem 0 6rem; background:var(--cream); }
.look-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:1.6rem;
}
.look-card{
  cursor:pointer; position:relative; border-radius:6px; overflow:hidden;
  background:var(--paper); aspect-ratio:2/3;
}
.look-card img{ width:100%; height:100%; object-fit:cover; transition:opacity 0.4s ease; }
.look-card .img-b{ position:absolute; inset:0; opacity:0; }
.look-card:hover .img-b{ opacity:1; }
.look-card .tag{
  position:absolute; top:0.9rem; left:0.9rem; z-index:2;
  background:rgba(255,253,251,0.92); padding:0.35rem 0.7rem; border-radius:100px;
  font-size:0.6rem; font-weight:700; letter-spacing:0.1em;
}
.look-card .info{
  position:absolute; left:0; right:0; bottom:0; z-index:2; padding:1rem;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  color:#fff;
}
.look-card .info .name{ font-family:var(--serif); font-size:1.02rem; }
.look-card .info .price{ font-size:0.72rem; opacity:0.85; margin-top:2px; }

@media (max-width:980px){ .look-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:520px){ .look-grid{ grid-template-columns:1fr 1fr; gap:0.8rem; } }

/* ============ LIGHTBOX ============ */
#lightbox{
  position:fixed; inset:0; z-index:2000;
  background:rgba(20,15,17,0.94);
  display:none; align-items:center; justify-content:center;
  padding:4vh 4vw;
}
#lightbox.open{ display:flex; }
.lb-inner{
  position:relative; width:min(420px, 92vw); max-height:90vh;
  display:flex; flex-direction:column;
}
.lb-frame{ position:relative; aspect-ratio:2/3; border-radius:6px; overflow:hidden; background:#111; }
.lb-slide{ position:absolute; inset:0; opacity:0; transition:opacity 0.5s ease; }
.lb-slide.active{ opacity:1; }
.lb-slide img{ width:100%; height:100%; object-fit:cover; }
.lb-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:40px; height:40px; border-radius:50%; border:none;
  background:rgba(255,255,255,0.9); display:flex; align-items:center; justify-content:center;
}
.lb-nav.prev{ left:0.7rem; } .lb-nav.next{ right:0.7rem; }
.lb-close{
  position:absolute; top:-3rem; right:0; z-index:3; background:none; border:none;
  color:#fff; font-size:0.72rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase;
}
.lb-meta{ color:#fff; padding-top:1.2rem; }
.lb-meta .eyebrow{ color:var(--pink); }
.lb-meta h3{ color:#fff; font-size:1.5rem; margin:0.5rem 0; }
.lb-meta .price{ font-size:0.85rem; color:rgba(255,255,255,0.7); margin-bottom:1.2rem; }

/* ============ CONTACT ============ */
#contact-section{ padding:5rem 0 7rem; background:var(--cream); }
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:5vw; }
.contact-info .label{ font-size:0.62rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--pink-deep); margin-bottom:0.5rem; }
.contact-block{ margin-bottom:2.4rem; }
.contact-block .value{ font-family:var(--serif); font-size:1.25rem; line-height:1.5; }
.contact-block .sub{ font-size:0.85rem; color:var(--muted); margin-top:0.3rem; }
.contact-map-btn{ margin-top:0.6rem; }
.social-row{ display:flex; gap:0.8rem; margin-top:0.6rem; }
.social-row a{
  width:42px; height:42px; border-radius:50%; border:1.5px solid var(--charcoal);
  display:flex; align-items:center; justify-content:center; transition:all 0.25s ease;
}
.social-row a:hover{ background:var(--pink); border-color:var(--pink); color:#fff; }

form.m26-form{ display:flex; flex-direction:column; gap:1.2rem; }
.field{ display:flex; flex-direction:column; gap:0.5rem; }
.field label{ font-size:0.68rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); }
.field input, .field textarea{
  border:none; border-bottom:1.5px solid var(--line); background:transparent;
  padding:0.7rem 0.2rem; font-family:var(--sans); font-size:0.95rem; color:var(--charcoal);
  outline:none; transition:border-color 0.25s ease;
}
.field input:focus, .field textarea:focus{ border-color:var(--pink); }
.field textarea{ resize:vertical; min-height:110px; }
.hp-field{ position:absolute; left:-9999px; }
#form-status{ font-size:0.85rem; margin-top:0.4rem; min-height:1.2rem; }

@media (max-width:860px){
  .contact-grid{ grid-template-columns:1fr; gap:3rem; }
}

/* ============ REVEAL ON SCROLL ============ */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
