/* Oenognosia-ish styling (scoped per page wrapper) */
:root{
  --oen-burgundy:#b11f2a;
  --oen-ink:#111827;
  --oen-muted:#4b5563;
  --oen-line:#e5e7eb;
  --oen-bg:#fff7f8;
  --oen-card:#ffffff;
  --oen-radius:18px;
  --oen-shadow: 0 12px 28px rgba(17,24,39,.10);
  --max:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--oen-ink);
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(177,31,42,.10), transparent 55%),
    radial-gradient(900px 600px at 90% 20%, rgba(177,31,42,.06), transparent 50%),
    var(--oen-bg);
  line-height:1.55;
}

a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:18px 16px 28px;}

.topbar{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:10px 0 14px;
  border-bottom:1px solid var(--oen-line);
}

.brand{
  display:flex; align-items:center; gap:12px;
  text-decoration:none;
}
.logo{
  width:52px; height:52px; border-radius:12px; object-fit:cover;
  box-shadow: 0 8px 18px rgba(17,24,39,.12);
}
.brandTitle strong{display:block; font-size:16px}
.brandTitle span{display:block; font-size:13px; color:var(--oen-muted)}

.nav{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.pill{
  border:1px solid var(--oen-line);
  background:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  color:var(--oen-muted);
  text-decoration:none;
}
.pill:hover{border-color: rgba(177,31,42,.35); color:var(--oen-burgundy);}

.lang{
  display:flex; align-items:center; gap:8px;
}
.langBtn{
  border:1px solid var(--oen-line);
  background:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  color:var(--oen-muted);
  cursor:pointer;
}
.langBtn.active{
  border-color: rgba(177,31,42,.35);
  color: var(--oen-burgundy);
  font-weight:800;
}

.hero{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:16px;
}

.card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--oen-line);
  border-radius:var(--oen-radius);
  box-shadow:var(--oen-shadow);
  padding:18px;
}

.badges{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px;}
.badge{
  background:rgba(177,31,42,.08);
  color:var(--oen-burgundy);
  border:1px solid rgba(177,31,42,.18);
  padding:7px 10px;
  border-radius:999px;
  font-size:13px;
}

h1{margin:0 0 10px; font-size:36px; line-height:1.12}
h2{margin:0 0 10px; font-size:20px}
p{margin:0; color:var(--oen-muted)}
.sub{margin-top:8px; font-size:15px}

.cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:800;
  font-size:14px;
  text-decoration:none;
  cursor:pointer;
}
.btn.primary{background:var(--oen-burgundy); color:#fff;}
.btn.ghost{background:#fff; border-color:var(--oen-line); color:var(--oen-ink);}
.btn.ghost:hover{border-color: rgba(177,31,42,.35); color: var(--oen-burgundy);}

.metrics{
  margin-top:14px;
  display:grid; gap:10px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.mini{
  border:1px solid var(--oen-line);
  border-radius:14px;
  padding:12px;
  background:#fff;
}
.mini b{display:block; margin-bottom:4px; color:var(--oen-ink)}
.mini small{color:var(--oen-muted); font-size:13px}

.grid3{
  margin-top:16px;
  display:grid; gap:12px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.list{margin:10px 0 0; padding-left:18px; color:var(--oen-muted)}
.divider{height:1px; background:var(--oen-line); margin:14px 0}

.form{
  display:grid; gap:10px; max-width:860px;
}
.row{
  display:grid; gap:10px;
  grid-template-columns:1fr 1fr;
}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--oen-line);
  background:#fff;
  font-size:14px;
}
textarea{min-height:120px}

.notice{
  margin-top:10px;
  border:1px solid var(--oen-line);
  background:#fff;
  border-radius:14px;
  padding:12px;
  color:var(--oen-muted);
  font-size:14px;
}
.notice.ok{border-color: rgba(47,125,119,.30); color: var(--oen-ink);}
.notice.err{border-color: rgba(177,31,42,.35); color: var(--oen-burgundy);}

.faq details{
  border:1px solid var(--oen-line);
  border-radius:14px;
  padding:12px 12px;
  background:#fff;
}
.faq details + details{margin-top:10px}
.faq summary{cursor:pointer; font-weight:900; color:var(--oen-ink)}
.faq p{margin-top:10px}

.footer{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--oen-line);
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  color:var(--oen-muted);
  font-size:13px;
}

[data-lang]{display:none}
.lang-en [data-lang="en"]{display:block}
.lang-gr [data-lang="gr"]{display:block}

@media (max-width: 980px){
  .hero{grid-template-columns:1fr}
  .metrics{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  h1{font-size:30px}
}
