:root{
  --bg:#0b0f1a;
  --surface:#121a2e;
  --text:#f3e7d0;
  --muted:#d7c8a6;
  --gold:#c9a24a;
  --gold2:#e0c37a;
  --danger:#b04a3d;
  --maxw:1180px;
  --radius:16px;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Noto Sans",sans-serif;
  background: radial-gradient(1200px 700px at 70% -10%, rgba(201,162,74,.25), transparent 60%),
              radial-gradient(900px 600px at 10% 0%, rgba(224,195,122,.14), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:var(--gold2); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--maxw); margin:0 auto; padding:0 18px}
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,26,.78);
  border-bottom: 1px solid rgba(201,162,74,.18);
}
.header-inner{
  display:flex; align-items:center; justify-content:flex-start;
  gap:16px; padding:18px 0; min-height:90px;
}
.brand{display:flex; align-items:center; gap:10px}
/* Desktop logo: make it clearly visible */
.brand img{height:110px; width:auto; display:block}

/* Some pages had different header HTML order. Force a consistent visual order */
.nav{display:flex; align-items:center; gap:18px; order:2; margin-left:auto}
.lang{display:flex; align-items:center; gap:10px; font-weight:700; order:3; margin-left:14px}
.brand.lang-desktop{order:4; margin-left:14px}
.nav a{color:var(--text); opacity:.92; font-weight:600; font-size:15px}
.nav a:hover{color:var(--gold2); opacity:1}
.lang a{color:var(--text); opacity:.85}
.lang a.active{opacity:1; color:var(--gold2); text-decoration:none}
.lang .sep{opacity:.35}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px; font-weight:800;
  background: linear-gradient(135deg, rgba(201,162,74,.95), rgba(224,195,122,.9));
  color:#1a1407; box-shadow: var(--shadow);
}
.cta:hover{filter:brightness(1.02); text-decoration:none}
.hero{padding:38px 0 18px}
.card{
  background: linear-gradient(180deg, rgba(18,26,46,.95), rgba(18,26,46,.78));
  border: 1px solid rgba(201,162,74,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px}
.hero h1{margin:0 0 8px; font-size:38px; letter-spacing:.2px}
.hero p{margin:0 0 14px; color:var(--muted); font-size:17px}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.badge{padding:8px 10px; border-radius:999px; background: rgba(201,162,74,.12); border:1px solid rgba(201,162,74,.22); font-weight:700; color:var(--text); font-size:13px}
.section{padding:18px 0 34px}
.section h2{margin:0 0 10px; font-size:26px}
.section p{color:var(--muted)}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.tile{padding:16px}
.tile h3{margin:0 0 6px; font-size:18px}
.tile p{margin:0; color:var(--muted); font-size:14px}
.kicker{color:var(--gold2); font-weight:900; letter-spacing:.06em; text-transform:uppercase; font-size:12px}

.footer{border-top:1px solid rgba(201,162,74,.18); padding:22px 0 28px; background: rgba(0,0,0,.08)}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:18px; align-items:start}
.small{color:var(--muted); font-size:13px}
.list{margin:0; padding:0 0 0 18px; color:var(--muted)}
.notice{
  padding:12px 14px; border-radius:14px;
  border:1px solid rgba(176,74,61,.35);
  background: rgba(176,74,61,.10);
  color: var(--muted);
}
.form{padding:18px}
label{display:block; font-weight:800; margin:12px 0 6px}
input, textarea, select{
  width:100%; padding:12px 12px; border-radius:12px;
  border:1px solid rgba(201,162,74,.22);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
input::placeholder, textarea::placeholder{color: rgba(243,231,208,.55)}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.secondary{background: transparent; border:1px solid rgba(201,162,74,.35); color: var(--text); box-shadow:none}
.secondary:hover{background: rgba(201,162,74,.10)}
.hr{height:1px; background: rgba(201,162,74,.18); margin:14px 0}

.mobilebar{display:none; align-items:center; justify-content:flex-start; gap:14px}
.burger{background:transparent; border:1px solid rgba(201,162,74,.28); color:var(--text); border-radius:12px; padding:10px 12px; font-weight:900}
.drawer{
  position:fixed; top:0; right:-340px; width:320px; max-width:85vw; height:100%;
  background: rgba(11,15,26,.96);
  border-left:1px solid rgba(201,162,74,.18);
  transition:right .22s ease;
  z-index:80; padding:16px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}
.drawer.open{right:0}
.drawer a{display:block; padding:12px 10px; border-radius:12px; color:var(--text); font-weight:800}
.drawer a:hover{background: rgba(201,162,74,.10); text-decoration:none}
.drawer .drawer-cta{margin-top:10px}
.overlay{
  position:fixed; inset:0; background: rgba(0,0,0,.55);
  opacity:0; pointer-events:none; transition: opacity .22s ease; z-index:70;
}
.overlay.show{opacity:1; pointer-events:auto}

.map-wrap{overflow:hidden; border-radius: var(--radius); border:1px solid rgba(201,162,74,.18)}
.map-wrap iframe{width:100%; height:360px; border:0}

@media (max-width: 920px){
  .nav, .lang-desktop{display:none}
  .mobilebar{display:flex}
  /* Mobile: show the full logo without cropping */
  .brand img{height:44px; width:auto; max-width:180px; object-fit:contain}
  .hero-grid{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .row{grid-template-columns:1fr}
}

.no-scroll{overflow:hidden}
