:root{
  --mau-furi-bg:#ffffff;
  --mau-furi-fg:#1a1a1a;
  --mau-furi-muted:#6b7280;
  --mau-furi-brand:#d2b48c;
  --mau-furi-brand-dark:#c1a078;
  --mau-furi-paper:#f6f1e7;
  --mau-furi-ink:#0f0f0f;
  --mau-furi-ring:rgba(210,180,140,.45);
  --mau-furi-radius:16px;
  --mau-furi-radius-lg:24px;
  --mau-furi-shadow:0 10px 22px rgba(0,0,0,.10);
  --mau-furi-shadow-soft:0 10px 22px rgba(0,0,0,.08);
  --mau-furi-maxw:1140px;
}

*{box-sizing:border-box}
html,body{height:100%}
.mau-furi-body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  background:var(--mau-furi-bg);
  color:var(--mau-furi-fg);
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%;display:block}

.mau-furi-container{max-width:var(--mau-furi-maxw);margin-inline:auto;padding:0 1.25rem}

.mau-furi-skip{position:absolute;left:-9999px;top:auto}
.mau-furi-skip:focus{left:1rem;top:1rem;background:#fff;color:#000;padding:.5rem 1rem;border-radius:999px;box-shadow:var(--mau-furi-shadow);z-index:999}

.mau-furi-nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,11,11,.92);
  backdrop-filter:saturate(150%) blur(6px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mau-furi-nav-wrap{display:flex;align-items:center;justify-content:space-between;padding:.85rem 0;gap:1rem}
.mau-furi-brand{display:flex;align-items:center;gap:.75rem;font-weight:800;text-decoration:none}
.mau-furi-brand img{height:44px;width:auto;border-radius:10px;box-shadow:0 10px 18px rgba(0,0,0,.25)}
.mau-furi-nav-links{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.mau-furi-nav-links a{text-decoration:none;font-weight:650;color:#fff;opacity:.92}
.mau-furi-nav-links a:hover{opacity:1}

.mau-furi-nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  width:44px;
  height:44px;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.mau-furi-nav-toggle:focus-visible{outline:3px solid rgba(210,180,140,.6);outline-offset:2px}
.mau-furi-nav-toggle-icon{
  width:18px;
  height:2px;
  background:#fff;
  position:relative;
  display:block;
  border-radius:99px;
}
.mau-furi-nav-toggle-icon::before,.mau-furi-nav-toggle-icon::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#fff;
  border-radius:99px;
  transition:transform .2s ease,top .2s ease,opacity .2s ease;
}
.mau-furi-nav-toggle-icon::before{top:-6px}
.mau-furi-nav-toggle-icon::after{top:6px}
.mau-furi-nav.is-open .mau-furi-nav-toggle-icon{background:transparent}
.mau-furi-nav.is-open .mau-furi-nav-toggle-icon::before{top:0;transform:rotate(45deg)}
.mau-furi-nav.is-open .mau-furi-nav-toggle-icon::after{top:0;transform:rotate(-45deg)}

.mau-furi-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.9rem 1.25rem;
  border-radius:999px;
  background:var(--mau-furi-brand);
  color:#1a1a1a;
  font-weight:850;
  text-decoration:none;
  box-shadow:var(--mau-furi-shadow-soft);
  transition:transform .15s ease,background .2s ease,box-shadow .2s ease;
  border:0;
  line-height:1;
  white-space:nowrap;
}
.mau-furi-btn:hover{background:var(--mau-furi-brand-dark);transform:translateY(-1px);box-shadow:var(--mau-furi-shadow)}
.mau-furi-btn-outline{background:transparent;border:1.5px solid rgba(255,255,255,.85);color:#fff;box-shadow:none}
.mau-furi-btn-outline:hover{transform:translateY(-1px)}
.mau-furi-btn-dark-outline{background:transparent;border:1.5px solid rgba(0,0,0,.55);color:rgba(0,0,0,.88);box-shadow:none}
.mau-furi-btn-dark-outline:hover{transform:translateY(-1px)}

.mau-furi-hero{
  position:relative;
  min-height:84vh;
  display:grid;
  place-items:center;
  text-align:center;
  color:#fff;
  overflow:hidden;
}
.mau-furi-hero-bg{
  position:absolute;
  inset:0;
  background:url('https://lefuribard.com//images/espace-guinguette-concert.jpg') center/cover no-repeat;
  filter:saturate(112%);
  z-index:0;
  transform:scale(1.02);
  animation:mau-furi-hero-zoom 16s ease-in-out infinite alternate;
}
@keyframes mau-furi-hero-zoom{
  from{transform:scale(1.02)}
  to{transform:scale(1.10)}
}
.mau-furi-hero-fade{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.52),rgba(0,0,0,.68));
  z-index:1;
}
.mau-furi-hero-inner{position:relative;z-index:2;max-width:760px;padding:2rem}
.mau-furi-eyebrow{
  display:inline-block;
  letter-spacing:.12em;
  text-transform:uppercase;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  padding:.38rem .7rem;
  border-radius:999px;
  margin-bottom:1rem;
  font-size:.78rem;
  font-weight:800;
}
.mau-furi-hero h1{font-size:clamp(2rem,5vw,3.5rem);line-height:1.08;margin:.25rem 0 1rem;font-weight:950}
.mau-furi-lead{font-size:clamp(1rem,2.1vw,1.22rem);opacity:.96;margin:0 auto 1.5rem}
.mau-furi-cta-row{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap}

.mau-furi-section{padding:4rem 0;scroll-margin-top:84px}
.mau-furi-about{background:var(--mau-furi-paper);color:var(--mau-furi-ink)}
.mau-furi-grid{display:grid;gap:2rem;align-items:center}
@media (min-width:880px){.mau-furi-grid{grid-template-columns:1.1fr 1fr}}
.mau-furi-media{border-radius:var(--mau-furi-radius-lg);box-shadow:0 20px 40px rgba(0,0,0,.14)}

.mau-furi-about h2{font-size:clamp(1.5rem,3.2vw,2.5rem);margin:0 0 .5rem}
.mau-furi-about p{color:rgba(0,0,0,.78);margin:.55rem 0 0}

.mau-furi-reviews{background:var(--mau-furi-paper);color:var(--mau-furi-ink);padding-top:2.75rem}
.mau-furi-reviews h2{margin:0 0 .25rem;font-size:clamp(1.5rem,3vw,2.2rem)}
.mau-furi-reviews-sub{margin:0;color:rgba(0,0,0,.65)}
.mau-furi-reviews-head{display:flex;gap:1rem;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;margin-bottom:1.25rem}

.mau-furi-pill-row{display:flex;gap:.5rem;flex-wrap:wrap}
.mau-furi-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.62rem .95rem;
  border-radius:999px;
  font-weight:850;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.10);
  background:rgba(255,255,255,.65);
  color:rgba(0,0,0,.72);
  transition:transform .15s ease,background .2s ease,border-color .2s ease,color .2s ease;
  line-height:1;
  white-space:nowrap;
  box-shadow:0 10px 18px rgba(0,0,0,.06);
}
.mau-furi-pill:hover{transform:translateY(-1px);background:rgba(255,255,255,.92);border-color:rgba(0,0,0,.16);color:rgba(0,0,0,.86)}
.mau-furi-pill.is-active{background:var(--mau-furi-brand);border-color:rgba(0,0,0,.08);color:#1a1a1a;box-shadow:0 12px 22px rgba(0,0,0,.10)}

.mau-furi-reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1rem;margin-top:1rem}
.mau-furi-review{
  border-radius:var(--mau-furi-radius);
  background:rgba(255,255,255,.86);
  border:1px solid rgba(0,0,0,.08);
  padding:1.05rem 1.05rem 1rem;
  box-shadow:0 14px 24px rgba(0,0,0,.08);
  color:var(--mau-furi-ink);
  min-height:140px;
}
.mau-furi-review-top{display:flex;align-items:center;justify-content:space-between;gap:.75rem;margin-bottom:.6rem}
.mau-furi-review-stars{letter-spacing:.10em;color:#d6a756;font-weight:950;font-size:.98rem}
.mau-furi-review-source{
  font-size:.82rem;
  color:rgba(0,0,0,.70);
  background:rgba(210,180,140,.22);
  border:1px solid rgba(210,180,140,.40);
  padding:.18rem .55rem;
  border-radius:999px;
  font-weight:850;
}
.mau-furi-review-text{margin:.55rem 0 .75rem;color:rgba(0,0,0,.76)}
.mau-furi-review-meta{color:rgba(0,0,0,.60);font-weight:800}

.mau-furi-callout{
  background:linear-gradient(135deg,var(--mau-furi-brand) 0%,#ffeccc 100%);
  color:#1a1a1a;
  border-top:1px solid var(--mau-furi-ring);
  border-bottom:1px solid var(--mau-furi-ring);
}
.mau-furi-callout-wrap{display:flex;flex-direction:column;gap:1rem;align-items:center;text-align:center}
@media (min-width:820px){.mau-furi-callout-wrap{flex-direction:row;justify-content:space-between;text-align:left}}
.mau-furi-callout-title{margin:0}
.mau-furi-callout-sub{margin:.25rem 0 0;color:rgba(0,0,0,.72);font-weight:650}
.mau-furi-callout-actions{display:flex;gap:.5rem;flex-wrap:wrap}

.mau-furi-footer{
  background-color:#1a1a1a;
  color:#ffffff;
  padding:3.25rem 0 1.75rem;
}
.mau-furi-footer-container{
  display:flex;
  flex-wrap:wrap;
  gap:2.25rem;
  justify-content:space-between;
  align-items:flex-start;
}
.mau-furi-footer-column{flex:1 1 260px;min-width:240px}
.mau-furi-footer h3,.mau-furi-footer h4,.mau-furi-footer h5{
  color:var(--mau-furi-brand);
  margin:0 0 .9rem;
  font-size:1.2rem;
  font-weight:850;
}
.mau-furi-footer h3{font-size:1.45rem}
.mau-furi-footer p{font-size:.95rem;color:#d1d1d1;margin:.4rem 0}
.mau-furi-footer-small{font-size:.9rem}
.mau-furi-footer-link{color:#d1d1d1;text-decoration:none}
.mau-furi-footer-link:hover{color:var(--mau-furi-brand);text-decoration:underline}
.mau-furi-footer-link-underline{text-decoration:underline}
.mau-furi-footer-divider{height:1px;background:rgba(255,255,255,.10);margin:1rem 0}

.mau-furi-footer-map{flex:1 1 360px;min-width:280px}
.mau-furi-footer-map iframe{
  width:100%;
  height:320px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

.mau-furi-footer-social{
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
  margin-top:.5rem;
}
.mau-furi-footer-social a{
  color:#cfcfcf;
  font-size:1.25rem;
  text-decoration:none;
  transition:transform .15s ease,color .2s ease,background .2s ease,border-color .2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}
.mau-furi-footer-social a:hover{color:var(--mau-furi-brand);transform:translateY(-1px);background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.12)}
.mau-furi-footer-social img{width:20px;height:20px;border-radius:6px}

.mau-furi-footer-bottom{
  margin-top:2.25rem;
  padding-top:1.35rem;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  flex-direction:column;
  gap:.9rem;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#a7a7a7;
  font-size:.86rem;
}
.mau-furi-madeby{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
  color:#cfcfcf;
  padding:.55rem .8rem;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  transition:transform .15s ease,background .2s ease,border-color .2s ease,color .2s ease;
}
.mau-furi-madeby:hover{transform:translateY(-1px);background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.16);color:#fff}
.mau-furi-madeby img{height:20px;width:auto;border-radius:6px}

.mau-furi-reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .6s ease,transform .6s ease;
}
.mau-furi-reveal.is-visible{opacity:1;transform:translateY(0)}

@media (prefers-reduced-motion:reduce){
  .mau-furi-reveal{transition:none;transform:none;opacity:1}
  .mau-furi-hero-bg{animation:none}
  .mau-furi-btn,.mau-furi-pill,.mau-furi-footer-social a,.mau-furi-madeby{transition:none}
}

@media (max-width:880px){
  .mau-furi-nav-toggle{display:inline-flex}
  .mau-furi-nav-wrap{padding:.7rem 0}
  .mau-furi-nav-links{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    display:grid;
    gap:.65rem;
    padding:1rem 1.25rem 1.15rem;
    background:rgba(11,11,11,.96);
    border-bottom:1px solid rgba(255,255,255,.10);
    transform:translateY(-6px);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease,transform .18s ease;
  }
  .mau-furi-nav.is-open .mau-furi-nav-links{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }
  .mau-furi-nav-links a{font-size:1.05rem;padding:.35rem .25rem}
  .mau-furi-btn{padding:12px 22px;font-size:1.05rem}
  .mau-furi-reviews-head{align-items:flex-start}
  .mau-furi-footer{padding:2.75rem 0 1.5rem}
}