/* Palette & base */ 
:root{ --blend-red:#d1121b; --vanille:#fff9f0; --text:#111; --muted:#666; --border:#e8e2da; }
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--text);background:#fff;line-height:1.6}
img{max-width:100%;display:block}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.site-header{position:sticky;top:0;z-index:10;background:#fff;border-bottom:1px solid var(--border)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:110px} /* taller header */
.brand-img img{height:100px;display:block} /* ~3.5x the previous 28px */
.nav a{margin-left:16px;text-decoration:none;color:var(--text)}
.nav .btn{margin-left:16px}
.icon-link img{width:18px;height:18px;display:block}
.icon-link{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border:1px solid var(--border);border-radius:999px}
.hero{padding:56px 0 24px;background:#fff;overflow:hidden}
.hero-inner{display:grid;grid-template-columns:1.05fr .95fr;gap:28px;align-items:center}
.hero h1{font-size:36px;line-height:1.15;margin:0 0 12px}
.hero p{color:var(--muted);margin:0 0 18px}
.cta-row{display:flex;gap:12px}
.btn{display:inline-flex;align-items:center;gap:10px;border-radius:999px;padding:10px 16px;font-weight:600;text-decoration:none;border:1px solid var(--text);color:var(--text)}
.btn-primary{background:var(--blend-red);border-color:var(--blend-red);color:#fff}
.btn-outline{background:#fff}
.btn-icon img{width:18px;height:18px}
.hero-media{justify-self:end}
.hero-media img{width:170%; margin-right:-20%; height:auto}
.section{padding:48px 0}
.section-vanille{background:var(--vanille)}
.section h2{font-size:28px;margin:0 0 8px}
.note{color:var(--muted);margin:8px 0 24px}
.menu-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:20px}
.menu-card{background:#fff;border:1px solid var(--border);border-radius:14px;padding:18px}
.menu-card h3{margin:4px 0 10px;font-size:18px;color:#000}
.item{padding:10px 0;border-bottom:1px dashed var(--border)}
.item:last-child{border-bottom:none}
.item-head{display:flex;align-items:center;justify-content:space-between;font-weight:600}
.item-sub{margin:6px 0 0;color:var(--muted);font-size:14px}
.combo{margin-top:10px;padding-top:10px;border-top:1px solid var(--border);font-size:14px;color:#333}
.combo-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:8px}
.combo-name{font-weight:600}
.combo-prices{color:#333}
.price-list{list-style:none;padding:0;margin:0}
.price-list li{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px dashed var(--border)}
.price-list li:last-child{border-bottom:none}
.price-list em{font-style:normal;color:var(--muted);font-size:12px}
.mt{margin-top:16px}
.social-cta{display:flex;gap:12px;align-items:center}
.list{list-style:none;padding:0;margin:0}
.list li{margin:6px 0}
.site-footer{border-top:1px solid var(--border);background:#fff;padding:22px 0}
@media (max-width: 920px){
  .header-inner{height:88px}
  .brand-img img{height:72px}
  .hero-inner{grid-template-columns:1fr}
  .hero-media img{width:110%; margin-right:-5%}
  .menu-grid{grid-template-columns:1fr}
}

/* Floating toggle + hidden widget (bottom-right) */
.contact-widget{
  position:fixed; right:16px; bottom:16px; width:320px;
  background:#fff; border:1px solid var(--border); border-radius:16px;
  padding:14px; box-shadow:0 10px 30px rgba(0,0,0,.08); z-index:100; display:none;
}
.contact-widget.is-open{ display:block; }
.contact-widget input, .contact-widget textarea{
  width:100%; padding:10px; margin-bottom:8px; border:1px solid var(--border); border-radius:10px; background:#fff;
}
.contact-toggle{
  position:fixed; right:16px; bottom:16px; z-index:101;
  border:none; background:var(--blend-red); color:#fff; font-weight:700;
  padding:10px 14px; border-radius:999px; box-shadow:0 6px 18px rgba(0,0,0,.12);
  cursor:pointer;
}
.contact-toggle:focus{ outline:2px solid #000; outline-offset:2px }
@media (max-width: 920px){
  .contact-widget{ right:12px; bottom:12px; width:calc(100% - 24px) }
  .contact-toggle{ right:12px; bottom:12px }
}
