.container{max-width:var(--container);margin:0 auto;padding:0 20px;}
@media (min-width:768px){.container{padding:0 32px;}}

.site-header{
  position:fixed;
  top:0;left:0;right:0;
  height:var(--header-h-mobile);
  background:rgba(242,239,230,.92);
  backdrop-filter:saturate(140%) blur(10px);
  -webkit-backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid transparent;
  z-index:var(--z-header);
  transition:border-color .3s ease,background .3s ease,box-shadow .3s ease;
}
.site-header.is-scrolled{
  border-bottom-color:var(--border);
  box-shadow:var(--shadow-sm);
}
.site-header .container{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
  min-width:0;
}
.brand-mark{
  width:36px;height:36px;
  display:grid;place-items:center;
  color:var(--accent);
  flex-shrink:0;
}
.brand-mark svg{width:100%;height:100%;}
.brand-name{
  font-family:var(--ff-display);
  font-weight:600;
  font-size:1.05rem;
  letter-spacing:.01em;
  line-height:1.1;
  color:var(--text);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-name small{
  display:block;
  font-family:var(--ff-ui);
  font-weight:500;
  font-size:.62rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent-2);
  margin-top:1px;
}

.nav-desktop{display:none;}
.header-cta{display:none;}

@media (min-width:900px){
  .site-header{height:var(--header-h);}
  .nav-desktop{display:flex;align-items:center;gap:28px;}
  .nav-desktop a{
    font-family:var(--ff-ui);
    color:var(--text);
    font-size:.92rem;
    font-weight:500;
    padding:6px 0;
    position:relative;
  }
  .nav-desktop a::after{
    content:"";
    position:absolute;
    left:0;right:0;bottom:0;
    height:1px;
    background:var(--accent);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .25s ease;
  }
  .nav-desktop a:hover::after{transform:scaleX(1);}
  .brand-name{font-size:1.15rem;}
  .header-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:var(--accent);
    color:#fff;
    border-radius:999px;
    font-family:var(--ff-ui);
    font-weight:600;
    font-size:.88rem;
    transition:background .2s ease,transform .2s ease;
  }
  .header-cta:hover{background:#1a3a2c;color:#fff;transform:translateY(-1px);}
  .header-cta svg{width:16px;height:16px;}
}

.burger{
  position:fixed;
  top:calc((var(--header-h-mobile) - 44px) / 2);
  right:16px;
  width:44px;height:44px;
  display:grid;place-items:center;
  background:transparent;border:0;cursor:pointer;
  z-index:1101;
}
.burger span,
.burger span::before,
.burger span::after{
  content:"";
  display:block;
  width:24px;height:2px;
  background:var(--text);
  border-radius:2px;
  transition:transform .3s ease,opacity .25s ease;
}
.burger span{position:relative;}
.burger span::before{position:absolute;left:0;top:-7px;}
.burger span::after{position:absolute;left:0;top:7px;}
.burger.is-open span{background:transparent;}
.burger.is-open span::before{transform:translateY(7px) rotate(45deg);}
.burger.is-open span::after{transform:translateY(-7px) rotate(-45deg);}

.menu-mobile{
  position:fixed;
  top:0;left:0;
  width:100%;
  height:100dvh;
  background:var(--bg);
  z-index:var(--z-menu);
  padding:calc(var(--header-h-mobile) + 24px) 28px 40px;
  display:flex;
  flex-direction:column;
  gap:6px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  transform:translateY(-100%);
  opacity:0;
  visibility:hidden;
  transition:transform .35s ease,opacity .35s ease,visibility 0s linear .35s;
}
.menu-mobile.is-open{
  transform:translateY(0);
  opacity:1;
  visibility:visible;
  transition:transform .35s ease,opacity .35s ease;
}
.menu-mobile a:not(.btn){
  font-family:var(--ff-display);
  font-size:1.6rem;
  color:var(--text);
  padding:14px 0;
  border-bottom:1px solid var(--border);
}
.menu-mobile .menu-actions a.btn-primary,
.menu-mobile .menu-actions a.btn-primary:hover{color:#fff;}
.menu-mobile .menu-actions a.btn-wa,
.menu-mobile .menu-actions a.btn-wa:hover{color:#fff;}
.menu-mobile .menu-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:24px;
}

@media (min-width:900px){
  .burger{display:none;}
  .menu-mobile{display:none;}
}

main{padding-top:var(--header-h-mobile);}
@media (min-width:900px){main{padding-top:var(--header-h);}}

section{padding:56px 0;}
@media (min-width:768px){section{padding:88px 0;}}

.section-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--ff-ui);
  font-size:.74rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:14px;
}
.section-eyebrow::before{
  content:"";
  width:28px;height:1px;
  background:var(--accent-2);
}

.site-footer{
  background:#1A2C24;
  color:#E2DBC9;
  padding:56px 0 28px;
  margin-top:0;
}
.site-footer h4{color:#fff;font-family:var(--ff-display);font-size:1.1rem;margin:0 0 12px;}
.site-footer .footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
  margin-bottom:32px;
}
.site-footer p,.site-footer li,.site-footer a{color:#D8D2C0;font-size:.92rem;line-height:1.6;}
.site-footer a:hover{color:var(--accent-2);}
.site-footer ul{list-style:none;padding:0;margin:0;}
.site-footer li{padding:4px 0;}
.footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
.footer-brand .brand-mark{color:var(--accent-2);}
.footer-brand .brand-name{color:#fff;}
.footer-bottom{
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:.82rem;
  color:#9C9683;
}
.footer-bottom a{color:#9C9683;text-decoration:underline;text-decoration-color:rgba(255,255,255,.2);}
.footer-bottom a:hover{color:#fff;}
@media (min-width:768px){
  .site-footer .footer-grid{grid-template-columns:1.4fr 1fr 1fr;}
  .footer-bottom{flex-direction:row;justify-content:space-between;align-items:center;}
}

/* FAB mobile (appel) */
.fab-call{
  position:fixed;
  right:18px;bottom:18px;
  width:58px;height:58px;
  border-radius:50%;
  background:var(--wa-green);
  color:#fff;
  display:grid;place-items:center;
  box-shadow:0 8px 22px rgba(18,140,126,.4);
  z-index:900;
  transition:transform .2s ease;
}
.fab-call:hover{transform:scale(1.06);color:#fff;}
.fab-call svg{width:28px;height:28px;}
@media (min-width:900px){.fab-call{display:none;}}
