:root{
  --bg:#f7f7f7;
  --ink:#0c0c0c;
  --muted:#4d4d4d;
  --panel: rgba(255,255,255,.78);
  --panel2: rgba(255,255,255,.62);
  --line: rgba(10,10,10,.10);
  --gold1:#8a6a1f;
  --gold2:#d8b45a;
  --gold3:#fff0b8;
  --shadow: 0 22px 60px rgba(0,0,0,.18);
  --radius: 18px;
  --radius2: 26px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color: var(--ink);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* "marble" base with black clouds/veins */
  background:
    radial-gradient(1100px 720px at 12% 6%, rgba(0,0,0,.14), transparent 62%),
    radial-gradient(900px 700px at 80% 18%, rgba(0,0,0,.10), transparent 58%),
    radial-gradient(820px 620px at 50% 115%, rgba(0,0,0,.08), transparent 56%),
    linear-gradient(115deg, rgba(0,0,0,.08), transparent 35%),
    linear-gradient(0deg, #ffffff, #f5f5f5);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{width:min(1120px, 92vw); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px; background:rgba(255,255,255,.9);
  border:1px solid var(--line); border-radius:14px; z-index:9999
}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(247,247,247,.72);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 220px}
.brand .logo{width: 190px; height:auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,.12))}

.navlinks{display:flex; align-items:center; gap: 10px}
.navlinks a{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing:.02em;
  border: 1px solid transparent;
}
.navlinks a:hover{
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255,255,255,.55);
}
.navlinks a.active{
  color: var(--ink);
  border-color: rgba(138,106,31,.35);
  background: rgba(216,180,90,.12);
}

.cta{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  color: var(--ink);
  font-weight: 800;
  letter-spacing:.02em;
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}
.btn:hover{border-color: rgba(138,106,31,.35); background: rgba(255,255,255,.72)}
.btn.primary{
  border-color: rgba(138,106,31,.55);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,.55), transparent 60%),
    linear-gradient(135deg, rgba(138,106,31,.98), rgba(216,180,90,.75));
  color: #121212;
}
.btn.primary:hover{filter: brightness(1.03)}

.btn svg{width:18px; height:18px}

.lang-switch img{
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.lang-switch a:hover img{border-color: rgba(138,106,31,.35)}

.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.55);
  align-items:center; justify-content:center;
}
.hamburger span{width:18px; height:2px; background: var(--ink); display:block; position:relative; border-radius:999px}
.hamburger span::before,.hamburger span::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background: var(--ink); border-radius:999px;
}
.hamburger span::before{top:-6px}
.hamburger span::after{top:6px}

.mobilepanel{display:none; border-top:1px solid var(--line); padding: 10px 0 16px 0}
.mobilepanel a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--muted);
  border:1px solid transparent;
}
.mobilepanel a:hover{color:var(--ink); background: rgba(255,255,255,.55); border-color: var(--line)}
.mobilepanel a.active{color: var(--ink); border-color: rgba(138,106,31,.35); background: rgba(216,180,90,.12)}

main{padding: 42px 0 70px}

.hero{
  position:relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(900px 520px at 14% 12%, rgba(0,0,0,.10), transparent 60%),
    radial-gradient(820px 520px at 86% 18%, rgba(216,180,90,.18), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.42));
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  padding: 34px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 11px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--gold2), var(--gold1));
  box-shadow: 0 0 20px rgba(216,180,90,.55);
}
h1{
  margin: 14px 0 10px 0;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 64ch;
}
.hero-actions{margin-top: 16px; display:flex; gap: 12px; flex-wrap:wrap}

.hero-card{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(255,255,255,.62);
  padding: 18px;
}
.hero-card h3{margin:0 0 8px 0; font-size: 14px; letter-spacing:.18em; text-transform: uppercase; color: var(--muted)}
.hero-card .big{font-size: 22px; font-weight: 950; letter-spacing: -.01em}
.hero-card .sub{color: var(--muted); margin-top: 6px; font-size: 13px; line-height:1.6}
.badges{display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px}
.badge{
  padding: 7px 10px;
  border-radius: 999px;
  border:1px solid rgba(138,106,31,.22);
  background: rgba(216,180,90,.14);
  color: #2a220d;
  font-weight: 850;
  font-size: 12px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 34px rgba(0,0,0,.10);
  overflow:hidden;
}
.card .p{padding: 18px}
.card h2{margin:0 0 10px 0; font-size: 18px}
.card p{margin:0; color: var(--muted); line-height:1.7}
.card .meta{margin-top: 10px; display:flex; gap:10px; flex-wrap:wrap}
.pill{
  font-size: 12px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
}

.section-title{
  margin: 36px 0 12px 0;
  display:flex;
  align-items:end;
  justify-content: space-between;
  gap: 14px;
}
.section-title h2{margin:0; font-size: 22px; letter-spacing:-.01em}
.section-title p{margin:0; color: var(--muted)}

.footer{
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--muted);
}
.footer .row{display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap}
.footer a{color: var(--gold1)}
.footer a:hover{text-decoration:underline}

.form{display:grid; gap: 12px}
.field{display:grid; gap:6px}
label{
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing:.12em;
  text-transform: uppercase;
}
input, select, textarea{
  width:100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  color: var(--ink);
  outline: none;
}
textarea{min-height: 120px; resize: vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(138,106,31,.55);
  box-shadow: 0 0 0 4px rgba(216,180,90,.22);
}
.help{color: var(--muted); font-size: 13px; line-height:1.6}
.two{display:grid; grid-template-columns: 1fr 1fr; gap: 12px}
hr.sep{border:0; border-top: 1px solid var(--line); margin: 16px 0}

.review{display:grid; gap: 10px}
.stars{
  letter-spacing: 2px;
  color: #6b5315;
  filter: drop-shadow(0 0 14px rgba(216,180,90,.35));
}
.review .who{font-weight: 950}
.review .when{color: var(--muted); font-size: 12px}
.review .txt{color: var(--muted); line-height:1.7}

.notice{
  border-radius: var(--radius);
  border:1px solid rgba(138,106,31,.25);
  background: rgba(216,180,90,.14);
  padding: 14px 16px;
  color: #2a220d;
}
.map{
  width:100%;
  height: 360px;
  border:0;
  border-radius: var(--radius2);
  overflow:hidden;
  filter: saturate(1.0) contrast(1.02);
}

@media (max-width: 920px){
  .hero-inner{grid-template-columns: 1fr; padding: 22px}
  .brand{min-width:auto}
}
@media (max-width: 760px){
  .navlinks{display:none}
  .cta .btn:not(.primary){display:none}
  .hamburger{display:inline-flex}
  .mobilepanel{display:block}
  main{padding: 26px 0 56px}
  .two{grid-template-columns: 1fr}
  .map{height: 320px}
  .brand .logo{width: 170px}
}
