:root{
  --bg:#fbf5e6;
  --ink:#2b241d;
  --muted:#6d5b4b;
  --card:rgba(255,255,255,.78);
  --stroke:rgba(43,36,29,.12);
  --shadow:0 18px 50px rgba(20,14,8,.12);
  --radius:22px;
}

*{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";
  color:var(--ink);
  background: radial-gradient(1200px 700px at 20% 0%, #fff 0%, var(--bg) 45%, #f7edd4 100%);
  overflow-x:hidden;
}

.bg-vanilla{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.16;
  background-image:url("../img/brand/Vanille.png");
  background-repeat:repeat;
  background-size:360px auto;
  background-attachment:fixed;
  filter: blur(.2px);
}

.bg-glow{
  position:fixed;
  inset:-30vh -30vw;
  pointer-events:none;
  background: radial-gradient(600px 600px at 15% 20%, rgba(255,214,122,.22), transparent 60%),
              radial-gradient(720px 720px at 85% 15%, rgba(255,232,186,.26), transparent 62%),
              radial-gradient(820px 820px at 70% 85%, rgba(255,200,120,.14), transparent 60%);
  mix-blend-mode:multiply;
}

.wrap{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  padding:18px 16px 64px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0 18px;
}

.brandmark{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brandmark img{
  height:46px;
  width:auto;
}

.pill{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  border-radius:999px;
  padding:8px 12px;
  font-weight:650;
  font-size:13px;
  color:var(--muted);
  box-shadow: 0 10px 25px rgba(20,14,8,.06);
  white-space:nowrap;
}

.hero{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}

@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
}

.card{
  border:1px solid var(--stroke);
  background:var(--card);
  backdrop-filter: blur(10px);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.hero-copy{
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.h1{
  margin:0;
  line-height:1;
}

.h1 img{
  width:min(520px, 100%);
  height:auto;
  display:block;
}

.subtitle{
  margin:0;
  font-size:18px;
  color:var(--muted);
  line-height:1.45;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:2px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.7);
  border:1px solid var(--stroke);
  font-weight:650;
  font-size:13px;
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:4px;
}

button{
  appearance:none;
  border:0;
  cursor:pointer;
  font:inherit;
}

.btn{
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.85);
  box-shadow: 0 12px 30px rgba(20,14,8,.10);
  font-weight:750;
  transition: transform .12s ease, box-shadow .12s ease;
}

.btn:active{transform: translateY(1px)}
.btn.primary{
  background: linear-gradient(180deg, #ffe6b8 0%, #ffd089 100%);
}

.hero-media{
  padding:10px;
  display:grid;
  gap:10px;
}

.figure{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.55);
}

.figure img{
  width:100%;
  height:auto;
  display:block;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

@media (max-width: 560px){
  .grid{grid-template-columns:1fr}
}

.section{
  margin-top:18px;
}

.section h2{
  margin:0 0 10px;
  font-size:20px;
}

.section p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-items:stretch;
}

@media (max-width: 900px){
  .split{grid-template-columns:1fr}
}

.panel{
  padding:16px 16px 18px;
}

.panel h3{
  margin:0 0 10px;
  font-size:18px;
}

.ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.li{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.62);
}

.li strong{display:block}
.li span{display:block; color:var(--muted); margin-top:2px}

.gallery{
  padding:14px 14px 16px;
}

.galleryHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.galleryHead p{margin:0; color:var(--muted)}
.scroller{
  display:flex;
  gap:12px;
  overflow:auto;
  padding:6px 2px 12px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroller::-webkit-scrollbar{height:10px}
.scroller::-webkit-scrollbar-thumb{background:rgba(43,36,29,.18); border-radius:999px}
.scroller::-webkit-scrollbar-track{background:rgba(43,36,29,.06); border-radius:999px}

.stickerCard{
  flex:0 0 auto;
  width:220px;
  scroll-snap-align:start;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.7);
  border-radius:20px;
  overflow:hidden;
  box-shadow: 0 16px 45px rgba(20,14,8,.10);
}

.stickerCard img{
  width:100%;
  height:auto;
  display:block;
}

.stickerMeta{
  padding:10px 12px 12px;
}

.stickerMeta div{
  font-weight:800;
  font-size:13px;
}

.stickerMeta span{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:12px;
}

.footer{
  margin-top:18px;
  padding:18px 16px 18px;
  text-align:center;
  color:var(--muted);
}

.alco{
  margin-top:18px;
  padding:18px 16px 20px;
}

.alco h2{
  margin:0 0 10px;
  font-size:20px;
}

.alco pre{
  margin:0;
  white-space:pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background:rgba(255,255,255,.72);
  border:1px solid var(--stroke);
  border-radius:18px;
  padding:14px 14px;
  color:#1f1a14;
  line-height:1.5;
}