:root{
  --bg:#f6f0e6;
  --bg2:#efe4d2;
  --card:#fffaf2;
  --text:#2a1f16;
  --muted:#6b5a4d;
  --brand:#7a4a2b;
  --brand2:#b07a4f;
  --line:rgba(42,31,22,.12);
  --shadow: 0 18px 50px rgba(42,31,22,.12);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 600px at 15% 5%, #fff 0%, var(--bg) 55%, #f3eadc 100%);
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
.container{max-width:1120px; margin:0 auto; padding:0 22px}
header.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,240,230,.76);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:44px; width:auto; object-fit:contain}
.header-actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background: rgba(255,250,242,.7);
  box-shadow: 0 8px 24px rgba(42,31,22,.06);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-weight:650;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(42,31,22,.12); background: rgba(255,250,242,.95)}
.btn.primary{
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  color:#fff;
  border-color: rgba(255,255,255,.18);
}
.btn.primary:hover{filter:brightness(1.03)}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,250,242,.75);
  font-weight:600;
  color:var(--muted);
}
.lang-toggle{
  display:flex; border:1px solid var(--line); border-radius:999px; overflow:hidden;
  background: rgba(255,250,242,.75);
}
.lang-toggle button{
  border:0; padding:9px 11px; background:transparent; cursor:pointer; font-weight:750; color:var(--muted);
}
.lang-toggle button.active{background: rgba(122,74,43,.12); color:var(--text)}
.hero{
  padding:54px 0 24px;
  position:relative;
}
.hero-grid{
  display:grid; grid-template-columns: 1.25fr .75fr; gap:22px;
  align-items:stretch;
}
.hero-card{
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,250,242,.92), rgba(239,228,210,.92));
  box-shadow: var(--shadow);
  position:relative;
}
.hero-media{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:saturate(1.05) contrast(1.02);
  opacity:.22;
  transform: scale(1.05);
}
.hero-content{position:relative; padding:26px}
.h-eyebrow{font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--brand)}
h1{
  margin:10px 0 10px;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height:1.06;
}
.lead{color:var(--muted); font-size: 16.5px; line-height:1.6; max-width:60ch}
.cta-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.quick-menu{
  display:grid; gap:12px; padding:18px;
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255,250,242,.9);
  box-shadow: 0 12px 38px rgba(42,31,22,.09);
}
.quick-menu h3{margin:2px 0 0; font-size:14px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted)}
.menu-buttons{display:grid; grid-template-columns:1fr; gap:10px}
.menu-btn{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,250,242,.9));
  transition: transform .15s ease, box-shadow .15s ease;
}
.menu-btn:hover{transform: translateY(-1px); box-shadow: 0 16px 30px rgba(42,31,22,.12)}
.menu-btn .label{font-weight:800}
.menu-btn .desc{color:var(--muted); font-size:13px; margin-top:3px}
.menu-btn .arrow{opacity:.6}
.section{padding:44px 0}
.section h2{margin:0 0 10px; font-size: 28px}
.section p{color:var(--muted); line-height:1.7; margin:0}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,250,242,.92);
  box-shadow: 0 10px 30px rgba(42,31,22,.08);
  overflow:hidden;
}
.card .media{height:160px; background-size:cover; background-position:center}
.card .body{padding:16px}
.card .title{font-weight:850; margin:0 0 6px}
.card .text{color:var(--muted); line-height:1.6; margin:0; font-size:14px}
.grid-2{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:16px;
  margin-top:16px;
}
.list{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.list li{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,250,242,.85);
}
.bullet{
  width:10px; height:10px; border-radius:3px;
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  margin-top:6px;
}
.kpis{display:grid; grid-template-columns: repeat(4,1fr); gap:12px; margin-top:18px}
.kpi{padding:14px; border-radius:16px; border:1px solid var(--line); background: rgba(255,250,242,.85)}
.kpi .num{font-size:24px; font-weight:900}
.kpi .lbl{color:var(--muted); font-size:13px; margin-top:3px}
.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:center;
}
.split .photo{
  border-radius: calc(var(--radius) + 10px);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.split .photo img{display:block; width:100%; height:360px; object-fit:cover}
.footer{
  padding:28px 0 38px;
  border-top:1px solid var(--line);
  background: rgba(246,240,230,.65);
}
.footer-grid{
  display:grid; grid-template-columns: 2fr 1fr 1fr;
  gap:18px;
}
.footer a{color:var(--muted)}
.small{font-size:13px; color:var(--muted); line-height:1.6}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.badge{border:1px solid var(--line); background: rgba(255,250,242,.8); border-radius:999px; padding:7px 10px; font-size:12.5px; color:var(--muted); font-weight:650}
.page-hero{
  padding:30px 0 8px;
}
.breadcrumb{color:var(--muted); font-size:13px}
.page-title{font-size:36px; margin:10px 0}
.form{
  display:grid; gap:10px; margin-top:14px;
}
.input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,250,242,.9);
  font:inherit;
}
textarea{min-height:120px; resize:vertical}
.notice{padding:12px; border:1px dashed rgba(122,74,43,.35); border-radius:14px; background: rgba(255,250,242,.6); color:var(--muted)}
/* Reveal on scroll */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease}
.reveal.in-view{opacity:1; transform:none}
/* Cookie banner */
.cookie{
  position:fixed; left:16px; right:16px; bottom:16px;
  max-width: 980px; margin:0 auto;
  padding:14px;
  border-radius:20px;
  border:1px solid var(--line);
  background: rgba(255,250,242,.92);
  box-shadow: 0 24px 60px rgba(42,31,22,.22);
  display:none;
  z-index:100;
}
.cookie .row{display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between}
.cookie .text{color:var(--muted); line-height:1.5; font-size:13.5px; max-width: 72ch}
.cookie .actions{display:flex; gap:10px; flex-wrap:wrap}
.cookie .link{color:var(--brand); text-decoration:underline}
/* Promo popup */
.modal-backdrop{
  position:fixed; inset:0; background: rgba(0,0,0,.35);
  display:none; align-items:center; justify-content:center;
  z-index:120;
}
.modal{
  width:min(560px, calc(100% - 28px));
  border-radius:24px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,250,242,.98), rgba(239,228,210,.98));
  box-shadow: 0 30px 80px rgba(42,31,22,.28);
  overflow:hidden;
}
.modal .top{
  padding:18px 18px 0;
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
}
.modal .close{border:0; background:transparent; cursor:pointer; font-size:26px; line-height:1}
.modal .content{padding:0 18px 18px}
.modal h3{margin:6px 0 6px; font-size:22px}
.modal p{margin:0; color:var(--muted); line-height:1.6}
.modal .mini{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}
/* Support widget */
.support{
  position:fixed; right:18px; bottom:18px; z-index:110;
}
.support .fab{
  width:56px; height:56px; border-radius:18px;
  border:1px solid var(--line);
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  color:#fff; cursor:pointer;
  box-shadow: 0 18px 50px rgba(42,31,22,.25);
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
}
.support-panel{
  width: min(360px, calc(100vw - 36px));
  position:absolute; right:0; bottom:68px;
  border:1px solid var(--line);
  border-radius:22px;
  background: rgba(255,250,242,.95);
  box-shadow: 0 24px 60px rgba(42,31,22,.22);
  overflow:hidden;
  display:none;
}
.support-panel header{
  padding:14px 14px;
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
}
.support-panel header .t{font-weight:850}
.support-panel .body{padding:14px; display:grid; gap:10px}
.support-panel .body .hint{color:var(--muted); font-size:13px; line-height:1.5}
.support-panel .body .sent{display:none; padding:10px; border-radius:14px; background: rgba(122,74,43,.08); color:var(--muted)}
/* responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .kpis{grid-template-columns: repeat(2, 1fr)}
  .split{grid-template-columns:1fr}
  .split .photo img{height:260px}
  .footer-grid{grid-template-columns:1fr}
}