@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap");
:root{
  --brand:#7a0b16;
  --brand-2:#a61422;
  --text:#0c0f14;
  --muted:#4b5563;
  --bg:#ffffff;
  --card:#ffffff;
  --border:rgba(15,23,42,.12);
  --shadow:0 14px 26px rgba(0,0,0,.06);
  --radius:18px;
  --max:1120px;
  --focus:0 0 0 3px rgba(122,11,22,.18);
  --chip-bg:rgba(122,11,22,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit; text-decoration:none}
a:hover{color:var(--brand)}
img{max-width:100%; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}

/* Top bar */
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  display:grid;
  grid-template-columns:48px 1fr 160px;
  align-items:center;
  gap:12px;
  padding:12px 0;
}
.brand{display:flex; justify-content:center; align-items:center; gap:10px}
.brand img{width:52px;height:52px;object-fit:contain}
.brand .title{font-weight:900; letter-spacing:.1px; line-height:1.05; font-size:18px}
.icon-btn{
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  display:grid; place-items:center;
  cursor:pointer;
  transition:.18s transform,.18s box-shadow,.18s border-color;
}
.icon-btn:hover{transform: translateY(-1px); box-shadow: var(--shadow); border-color:#d6d6d6}
.icon-btn:focus{outline:none; box-shadow: var(--shadow), var(--focus)}

.lang-switch{display:flex; justify-content:flex-end; align-items:center}
.lang-pill{
  border:1px solid var(--border);
  background:#fff;
  padding:8px 10px;
  border-radius:14px;
  display:flex;
  gap:8px;
  align-items:center;
}
.lang-pill button{
  border:none; background:transparent;
  font-weight:900; cursor:pointer;
  padding:6px 10px; border-radius:10px;
}
.lang-pill button.active{background:var(--chip-bg); color:var(--brand)}
.lang-pill button:focus{outline:none; box-shadow: var(--focus)}

/* Drawer */
.drawer-backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.35);
  opacity:0; pointer-events:none;
  transition:.2s opacity;
  z-index:60;
}
.drawer{
  position:fixed; top:0; left:0; bottom:0;
  width:320px; max-width:86vw;
  background:#fff;
  border-right:1px solid var(--border);
  transform: translateX(-105%);
  transition:.22s transform;
  z-index:70;
  display:flex; flex-direction:column;
}
.drawer.open{transform: translateX(0)}
.drawer-backdrop.open{opacity:1; pointer-events:auto}
.drawer header{
  padding:14px 16px;
  display:flex; gap:12px; align-items:center;
  border-bottom:1px solid var(--border);
}
.drawer header img{width:44px;height:44px;object-fit:contain}
.drawer .small{color:var(--muted); font-size:12px; font-weight:700}
.drawer nav{padding:10px 10px; overflow:auto}
.drawer nav a{
  display:flex; align-items:center;
  padding:12px 12px;
  border-radius:14px;
  font-weight:900;
  color:var(--text);
}
.drawer nav a:hover{background:rgba(0,0,0,.04)}
.drawer .drawer-close{
  margin-left:auto;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}

/* Sections */
.section{padding:44px 0}
.section.alt{background:rgba(122,11,22,.03)}
.section-head{margin-bottom:16px}
.section h1{font-size:44px; letter-spacing:-.6px; margin:10px 0 12px}
.section h2{font-size:28px; letter-spacing:-.3px; margin:0 0 10px}
.section h3{margin:0 0 8px}
.lead{color:var(--muted); line-height:1.75; margin:0}

.kpis{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:16px}
.kpi{padding:16px 16px; border:1px solid var(--border); border-radius:var(--radius); background:#fff; box-shadow: var(--shadow)}
.kpi .big{font-weight:950; font-size:22px}
.kpi .small{color:var(--muted); font-weight:700; margin-top:6px}

.grid{display:grid; gap:14px; margin-top:16px}
.cards-3{grid-template-columns:repeat(3,1fr)}
.cards-2{grid-template-columns:repeat(2,1fr)}
@media (max-width: 980px){
  .topbar-inner{grid-template-columns:48px 1fr 140px}
  .cards-3{grid-template-columns:1fr}
  .cards-2{grid-template-columns:1fr}
  .kpis{grid-template-columns:1fr}
  .brand .title{font-size:16px}
  .section h1{font-size:36px}
}

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px 18px;
}
.card p{color:var(--muted); line-height:1.75; margin:0}
.card + .card{margin-top:12px}

.card-icon{
  width:44px;height:44px;
  border-radius:14px;
  background:var(--chip-bg);
  display:grid; place-items:center;
  font-size:22px;
  margin-bottom:10px;
  color:var(--brand);
}

/* Chips */
.chips .chip-row{display:flex; flex-wrap:wrap; gap:8px; margin:12px 0 10px}
.chip{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(122,11,22,.18);
  background:var(--chip-bg);
  font-weight:800;
  font-size:12px;
  color:var(--brand);
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  background:var(--brand);
  color:#fff;
  border:none;
  border-radius:14px;
  padding:12px 16px;
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 12px 22px rgba(122,11,22,.18);
  transition:.18s transform,.18s box-shadow,.18s background;
}
.btn:hover{transform: translateY(-1px); background:var(--brand-2)}
.btn:focus{outline:none; box-shadow: 0 12px 22px rgba(122,11,22,.18), var(--focus)}
.btn.secondary{background:#fff; color:var(--brand); border:1px solid rgba(122,11,22,.25); box-shadow:none}
.btn.secondary:hover{background:rgba(122,11,22,.06)}

/* Forms */
.form{display:grid; gap:12px; margin-top:14px}
.field{display:grid; gap:6px}
label{font-weight:900}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  font:inherit;
  background:#fff;
}
input:focus, textarea:focus{outline:none; box-shadow: var(--focus); border-color: rgba(122,11,22,.35)}
textarea{min-height:140px; resize:vertical}

/* Footer */
.footer{border-top:1px solid var(--border); padding:34px 0; margin-top:0; background:rgba(122,11,22,.03)}
.footer-grid{display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap:14px}
.footer .muted{color:var(--muted); line-height:1.7}
.footer a{color:var(--muted); font-weight:800}
.footer a:hover{color:var(--brand)}
@media (max-width: 980px){.footer-grid{grid-template-columns:1fr}}

/* Cookie banner */
.cookie-banner{
  position:fixed;
  left:18px; right:18px; bottom:18px;
  max-width:var(--max);
  margin:0 auto;
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow: 0 20px 36px rgba(0,0,0,.12);
  padding:14px 14px;
  z-index:80;
  display:none;
}
.cookie-banner.show{display:block}
.cookie-banner .row{display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:space-between}
.cookie-banner .text{color:var(--muted); line-height:1.6}
.cookie-banner .actions{display:flex; gap:10px; flex-wrap:wrap}
.small{font-size:12px}
.muted{color:var(--muted)}
.hr{height:1px; background:var(--border); margin:14px 0}

/* Legacy layout helpers (used in HTML) */
.hero{padding:44px 0}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:18px; align-items:start}
@media (max-width: 980px){.hero-grid{grid-template-columns:1fr}}

.h1{font-size:44px; letter-spacing:-.7px; margin:10px 0 12px}
@media (max-width: 980px){.h1{font-size:36px}}

.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.btn.primary{background:var(--brand); color:#fff}
.btn.primary:hover{background:var(--brand-2)}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:16px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:16px}
@media (max-width: 980px){.grid-3,.grid-2{grid-template-columns:1fr}}

.kpis{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:16px}
@media (max-width: 980px){.kpis{grid-template-columns:1fr}}

.kpi.card{display:flex; flex-direction:column; align-items:flex-start; gap:6px; padding:16px}
.kpi.card strong{font-size:20px; font-weight:950; letter-spacing:-.2px; line-height:1.1}
.kpi.card span{display:block; color:var(--muted); font-weight:700; line-height:1.35}

.media-card{overflow:hidden}
.media-card img{width:100%; max-height:280px; object-fit:contain; padding:18px; background:#fff; border-radius:16px; border:1px solid var(--border)}
.media-card .body{padding:12px 2px 0}
.media-card h3{font-weight:950}
.media-card p{margin-top:8px}

/* Reveal animation */
.reveal{opacity:0; transform: translateY(10px); transition: .45s opacity, .45s transform}
.reveal.visible{opacity:1; transform: translateY(0)}

.cookie{position:fixed;left:18px;right:18px;bottom:18px;max-width:var(--max);margin:0 auto;background:#fff;border:1px solid var(--border);border-radius:20px;box-shadow:0 20px 36px rgba(0,0,0,.12);padding:14px;z-index:80;display:none}
.cookie.show{display:block}
.cookie .row{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:space-between}
.cookie .text{color:var(--muted);line-height:1.6}
.cookie .actions{display:flex;gap:10px;flex-wrap:wrap}

.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.badge{display:inline-flex; align-items:center; padding:7px 10px; border-radius:999px; border:1px solid rgba(122,11,22,.18); background:var(--chip-bg); font-weight:800; font-size:12px; color:var(--brand)}

.card h3{font-weight:950; letter-spacing:-.2px}


/* Hero (image first) */
.hero-center{display:flex; justify-content:center; margin-top:14px}
.hero-image{
  width:min(980px, 100%);
  max-height:420px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid var(--border);
  box-shadow: 0 18px 34px rgba(0,0,0,.10);
}
.hero-copy{max-width:860px; margin:22px auto 0; text-align:center}
.hero-copy .lead{margin:0 auto; max-width:760px}
.hero-copy .cta-row{justify-content:center}
.hero-copy .kpis{max-width:860px; margin-left:auto; margin-right:auto}

/* Timeline */
.timeline{position:relative; margin-top:18px; display:grid; gap:14px}
.timeline:before{
  content:"";
  position:absolute;
  left:26px; top:6px; bottom:6px;
  width:2px;
  background:rgba(122,11,22,.18);
}
.t-item{display:grid; grid-template-columns:72px 1fr; gap:14px; align-items:start; position:relative}
.t-year{
  width:52px; height:52px;
  border-radius:16px;
  display:grid; place-items:center;
  background:var(--chip-bg);
  border:1px solid rgba(122,11,22,.18);
  color:var(--brand);
  font-weight:950;
  margin-left:0;
  position:relative;
  z-index:1;
}
.t-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:16px 16px;
}
.t-card p{color:var(--muted); line-height:1.75; margin:0}
.t-card h3{margin:0 0 8px; font-weight:950; letter-spacing:-.2px}

/* Gallery */
.g-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.g-card img{width:100%; height:260px; object-fit:cover}
.g-card figcaption{padding:12px 14px; color:var(--muted); font-weight:700; line-height:1.5}
@media (max-width: 980px){
  .timeline:before{left:22px}
  .t-item{grid-template-columns:66px 1fr}
  .g-card img{height:220px}
}


/* Fix KPI alignment inside centered hero */
.hero-copy .kpis{justify-items:stretch}
.hero-copy .kpi.card{align-items:flex-start; text-align:left; min-height:96px}
.hero-copy .kpi.card strong, .hero-copy .kpi.card span{ text-align:left }
.hero-copy .kpi.card span{max-width: 26ch}

/* Offer visual cropping */
.offer-visual{max-height:320px !important; height:320px; object-fit:cover !important; padding:0 !important; background:#fff}

/* Footer separation */
.footer, footer, .site-footer{
  background: rgba(122,11,22,.04);
  border-top: 1px solid var(--border);
}
.footer .container, footer .container, .site-footer .container{padding-top:10px}
