:root{
  --bg:#0f1411;
  --paper:#151c17;
  --paper2:#0c110e;
  --ink:#f1efe7;
  --muted:rgba(241,239,231,.74);
  --line:rgba(241,239,231,.10);

  --sage:#6fa38d;
  --terra:#c47b52;
  --gold:#b8a46c;

  --r:20px;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --max:1120px;

  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:
    radial-gradient(900px 520px at 12% 6%, rgba(111,163,141,.20), transparent 55%),
    radial-gradient(700px 480px at 88% 18%, rgba(196,123,82,.16), transparent 52%),
    radial-gradient(1000px 800px at 55% 110%, rgba(184,164,108,.10), transparent 55%),
    var(--bg);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}

header{
  position:sticky; top:0; z-index:60;
  background: rgba(15,20,17,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:900; letter-spacing:.2px;
}
.badge{
  width:34px;height:34px;border-radius:14px;
  background: linear-gradient(135deg, rgba(111,163,141,.95), rgba(196,123,82,.75));
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 16px 40px rgba(0,0,0,.55);
}
.navlinks{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.navlinks a{
  padding:8px 12px; border-radius:999px;
  color:var(--muted); font-weight:780;
  border:1px solid transparent;
}
.navlinks a:hover{
  color:var(--ink);
  background: rgba(111,163,141,.10);
  border-color: rgba(111,163,141,.18);
}
.navlinks a.active{
  color:var(--ink);
  background: rgba(196,123,82,.12);
  border-color: rgba(196,123,82,.20);
}

.lang{display:flex; gap:10px; align-items:center}
.flag{
  width:34px;height:34px;border-radius:999px;
  display:grid; place-items:center;
  background: rgba(21,28,23,.85);
  border:1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: transform .14s ease, border-color .14s ease;
}
.flag:hover{transform: translateY(-1px); border-color: rgba(111,163,141,.35)}
.flag[aria-current="page"]{border-color: rgba(196,123,82,.45)}

.hero{padding: 56px 0 30px}
.heroGrid{display:grid; grid-template-columns: 1.3fr .7fr; gap:18px; align-items:stretch}
.card{
  background: rgba(21,28,23,.88);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.media{
  min-height: 340px;
  background: #111;
  background-size: cover;
  background-position: center;
  position:relative;
  filter: contrast(.95) saturate(.92);
}
.media:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(15,20,17,.92));
}
.body{padding:20px}
.kicker{
  color: rgba(111,163,141,.95);
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.78rem;
}
h1{
  margin:10px 0 12px;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1.08;
}
.lead{color:var(--muted); max-width: 62ch; font-size: 1.06rem}

.btnrow{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(12,17,14,.65);
  color: var(--ink);
  font-weight: 850;
}
.btn:hover{transform: translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, rgba(111,163,141,.95), rgba(196,123,82,.82));
  border-color: rgba(255,255,255,.08);
}

.side{padding:18px}
.side h3{margin:0 0 8px; font-family: var(--serif)}
.side p{margin:0; color:var(--muted)}
.pills{display:flex; gap:8px; flex-wrap:wrap; margin-top:14px}
.pill{
  padding:6px 10px; border-radius:999px;
  border: 1px solid rgba(241,239,231,.12);
  background: rgba(12,17,14,.55);
  color: var(--muted);
  font-weight: 760;
  font-size:.86rem;
}

.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:16px; margin: 20px 0 56px}
.h2{
  margin:0 0 8px;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.copy{margin:0; color:var(--muted)}
.thumbRow{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top:14px}
.thumb{
  height: 160px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(12,17,14,.55);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  overflow:hidden;
}
.thumb img{width:100%;height:100%;object-fit:cover; filter: contrast(.95) saturate(.92)}

.split{display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; margin: 24px 0 60px}
.panel{padding:18px}
.panel h3{margin:0 0 10px; font-family: var(--serif)}
.legend{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; color:var(--muted); font-weight:760}
.dot{width:12px;height:12px;border-radius:999px;display:inline-block;margin-right:6px;vertical-align:middle}
.dot.free{background: rgba(111,163,141,.20); border:1px solid rgba(111,163,141,.35)}
.dot.booked{background: rgba(196,123,82,.22); border:1px solid rgba(196,123,82,.35)}
.dot.preliminary{background: rgba(184,164,108,.18); border:1px solid rgba(184,164,108,.30)}
.dot.changeover{background: linear-gradient(135deg, rgba(196,123,82,.22) 50%, rgba(111,163,141,.18) 50%); border:1px solid rgba(241,239,231,.12)}

.calendar{margin-top:14px}
.calHead{display:flex; justify-content:space-between; align-items:center; gap:10px; margin:12px 0}
.calHead button{
  background: rgba(12,17,14,.65);
  color: var(--ink);
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  cursor:pointer;
}
.calGrid{display:grid; grid-template-columns: repeat(7,1fr); gap:6px}
.weekday{
  color: rgba(241,239,231,.62);
  font-weight: 900;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align:center;
}
.day{
  display:grid; place-items:center;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(12,17,14,.55);
  font-weight: 850;
}
.day.empty{border-color:transparent;background:transparent}
.day.free{background: rgba(111,163,141,.14); border-color: rgba(111,163,141,.22)}
.day.booked{background: rgba(196,123,82,.14); border-color: rgba(196,123,82,.22); text-decoration: line-through}
.day.preliminary{background: rgba(184,164,108,.12); border-color: rgba(184,164,108,.20)}
.day.changeover{background: linear-gradient(135deg, rgba(196,123,82,.16) 50%, rgba(111,163,141,.12) 50%); border-color: rgba(241,239,231,.12)}

footer{
  border-top:1px solid var(--line);
  padding: 26px 0 40px;
  color: var(--muted);
}
.footerGrid{display:grid; grid-template-columns: repeat(3, 1fr); gap:18px}
small{opacity:.95}

@media (max-width: 920px){
  .heroGrid,.split{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .thumbRow{grid-template-columns: repeat(2, 1fr)}
}
