/* Haute Cime Vhd — minimal dark */
:root{
  --bg:#0b0d10;
  --panel:#0f1217;
  --text:#e7e9ee;
  --muted:#9aa3b2;
  --line:#1f2630;
  --accent:#e7e9ee;
  --radius:18px;
  --max:1080px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 30% -10%, rgba(255,255,255,.06), transparent 60%),
              radial-gradient(1000px 700px at 90% 10%, rgba(255,255,255,.04), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
  letter-spacing:.2px;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.9}
.container{max-width:var(--max); margin:0 auto; padding:28px 18px 64px}

.nav{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,13,16,.65);
  border-bottom:1px solid rgba(31,38,48,.7);
}
.nav-inner{max-width:var(--max); margin:0 auto; padding:14px 18px; display:flex; align-items:center; justify-content:space-between; gap:14px}
.brand{
  display:flex; flex-direction:column; gap:2px;
}
.brand .name{font-weight:650; letter-spacing:.6px; display:flex; align-items:center; gap:10px}
.brand .tag{font-size:12px; color:var(--muted)}
.menu{display:flex; gap:14px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
.menu a{
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
}
.menu a[aria-current="page"]{
  color:var(--text);
  border-color:rgba(231,233,238,.18);
  background:rgba(231,233,238,.06);
}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  padding-top:26px;
}
@media (max-width:860px){
  .hero{grid-template-columns:1fr}
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.03);
  display:flex; align-items:center; justify-content:center;
}
.hero-media img{width:100%; height:100%; object-fit:cover; display:block; filter: contrast(1.02) saturate(.95)}
.hero-text{padding:20px 20px 18px}
.kicker{color:var(--muted); font-size:12px; letter-spacing:1.4px; text-transform:uppercase}
.h1{margin:10px 0 8px; font-size:34px; line-height:1.15; letter-spacing:.4px}
.p{margin:0; color:var(--muted)}
.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}

/* --- Contact page: centered, bigger & brand-colored social icons --- */
.contact-actions{
  /* Stack rows: (email+phone) then (social icons) */
  flex-direction: column;
  justify-content:center;
  align-items:center;
}

.contact-actions .contact-primary{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}

.contact-actions .contact-social{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
}

/* Keep the email button as a pill, but make social buttons perfectly centered squares */
.contact-actions .btn.social{
  width:52px;
  height:52px;
  padding:0;
  border-radius: var(--radius);
  /* Avoid browser edge artifacts on gradients: draw the border via pseudo-element */
  border: none;
  box-shadow: var(--shadow);
  color:#fff;
}

.contact-actions .btn.social::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events:none;
}

.contact-actions .btn.social .btn-icon svg{
  width:24px;
  height:24px;
}

/* Official brand colors */
.contact-actions .btn.social.facebook{
  background:#1877F2;
}

.contact-actions .btn.social.instagram{
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285AEB 90%);
}

/* Hover without altering gradient edges (prevents Instagram outline color artifacts) */
.contact-actions .btn.social{ position:relative; overflow:hidden; }
.contact-actions .btn.social::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,.06);
  opacity:0;
  transition: opacity .15s ease;
  pointer-events:none;
}
.contact-actions .btn.social:hover::after{ opacity:1; }
.contact-actions .btn.social:hover{ filter:none; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(231,233,238,.18);
  background: rgba(231,233,238,.06);
  color:var(--text);
  font-size:14px;
}
.btn.secondary{
  background: transparent;
  border-color: rgba(231,233,238,.12);
  color: var(--muted);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.hr{height:1px; background:rgba(31,38,48,.8); margin:26px 0}

.section-title{display:flex; align-items:baseline; justify-content:space-between; gap:12px; margin:0 0 12px}
.section-title h2{margin:0; font-size:16px; letter-spacing:.9px; text-transform:uppercase}
.section-title .small{color:var(--muted); font-size:13px}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:10px;
}
.tile{
  grid-column: span 4;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  position:relative;
}
.tile img{width:100%; height:100%; object-fit:cover; display:block; aspect-ratio: 4/3}
.tile:hover{border-color: rgba(231,233,238,.22)}
@media (max-width:980px){
  .tile{grid-column: span 6}
}
@media (max-width:560px){
  .grid{gap:8px}
  .tile{grid-column: span 6}
}
@media (max-width:380px){
  .tile{grid-column: span 12}
}

.footer{
  margin-top:40px;
  color:var(--muted);
  font-size:13px;
  display:flex; gap:10px; justify-content:space-between; flex-wrap:wrap;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.notice{
  padding:14px 14px;
  border-radius: 14px;
  border:1px dashed rgba(231,233,238,.16);
  background: rgba(231,233,238,.04);
  color: var(--muted);
  font-size: 13px;
}

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background: rgba(0,0,0,.86);
  display:none;
  align-items:center; justify-content:center;
  padding:22px;
  z-index:50;
}
.lightbox.open{display:flex}
.lightbox-inner{
  max-width:min(1100px, 96vw);
  max-height: 86vh;
  position:relative;
}
.lightbox img{
  width:100%; height:100%;
  object-fit:contain;
  display:block;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.lightbox-close{
  position:absolute;
  top:-44px; right:0;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(231,233,238,.18);
  background: rgba(231,233,238,.06);
  color: var(--text);
  font-size: 13px;
}
.lightbox-close:hover{opacity:.9}

/* SEO invisible text (accessible, non-intrusive) */
.seo-hidden{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}


/* Branding logo in header */
.brand-logo{
  width:28px;
  height:28px;
  flex:0 0 28px;
  object-fit:contain;
}

/* Icons inside buttons */
.btn-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-icon svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

/* Screen-reader only text */
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.email-btn{
  gap:10px;
}




/* Contact section: make email button match card outline style */
.contact-actions .email-btn{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}
/* --- Logo responsive --- */
.site-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header img.logo {
    height: 48px;
    width: auto;
}

@media (max-width: 768px) {
    .site-header img.logo {
        height: 34px;
    }
}

/* --- Social icons round style --- */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    background-color: #333;
}

.social-icons a i {
    font-size: 20px;
}

/* --- Contact icons : plus grands + couleurs --- */
.contact-icons, .social-icons {
    display: flex;
    gap: 18px;
    margin-top: 12px;
}

.contact-icons a, .social-icons a {
    width: 56px;
    height: 56px;
    font-size: 26px;
}

/* Instagram */
.social-icons a.instagram {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

/* Facebook */
.social-icons a.facebook {
    background-color: #1877F2;
}

/* Mail */
.contact-icons a.mail {
    background-color: #2ecc71;
}

.contact-icons a:hover,
.social-icons a:hover {
    transform: scale(1.15);
}

/* --- Lightbox (galerie) --- */
html.lb-lock, html.lb-lock body{overflow:hidden;}

.lb{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}
.lb.is-open{display:block;}

.lb-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
}

.lb-dialog{
  position:relative;
  height:100%;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}

.lb-figure{
  margin:0;
  max-width:min(1100px, 92vw);
  width:100%;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}

.lb-img{
  width:100%;
  max-height:78vh;
  object-fit:contain;
  border-radius:18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  background:rgba(255,255,255,.03);
}

.lb-cap{
  font-size:14px;
  opacity:.85;
  text-align:center;
  max-width:80ch;
}

/* Controls */
.lb-close, .lb-nav{
  position:absolute;
  border:0;
  background:rgba(255,255,255,.08);
  color:#fff;
  width:44px;
  height:44px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.lb-close svg, .lb-nav svg{width:22px; height:22px;}

.lb-close{top:18px; right:18px;}
.lb-prev{left:18px; top:50%; transform:translateY(-50%);}
.lb-next{right:18px; top:50%; transform:translateY(-50%);}

.lb-close:hover, .lb-nav:hover{
  background:rgba(255,255,255,.14);
  transform: translateY(-50%) scale(1.04);
}
.lb-close:hover{transform: scale(1.04);}

@media (hover:hover) and (pointer:fine){
  .lb-nav{opacity:.65;}
  .lb.is-open .lb-nav{opacity:.65;}
  .lb.is-open:hover .lb-nav{opacity:1;}
}

@media (max-width:600px){
  .lb-dialog{padding:14px;}
  .lb-prev{left:10px;}
  .lb-next{right:10px;}
  .lb-close{top:10px; right:10px;}
  .lb-figure{max-width:94vw;}
  .lb-img{max-height:74vh; border-radius:16px;}
}

/* Phone button: same look as other pills */
.phone-btn{ white-space: nowrap; }
