:root{
  --bg:#070707;
  --bg2:#0B0B0B;
  --text:#F3F1EA;
  --muted:#B8B2A4;
  --gold:#CDA45A;
  --gold2:#E7D29B;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background: radial-gradient(1200px 700px at 15% -10%, rgba(205,164,90,.18), transparent 60%),
              radial-gradient(900px 600px at 100% 0%, rgba(231,210,155,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.6;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
strong{font-weight:600}

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

.nowrap{white-space:nowrap}
.muted{color:var(--muted)}
.small{font-size:.95rem}
.section{padding:72px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.section__head{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-end;
  margin-bottom:26px;
}
h1,h2{
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing:.2px;
  margin:0 0 12px;
}
h1{
  font-size: clamp(2.15rem, 3.6vw, 3.25rem);
  line-height:1.15;
}
h2{
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  line-height:1.18;
}
.lead{
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  max-width:62ch;
  margin:0 0 22px;
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,7,7,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:700;
  color:#1b1306;
  background: radial-gradient(circle at 30% 30%, var(--gold2), var(--gold));
  box-shadow: 0 14px 40px rgba(205,164,90,.20);
}
.brand__text{display:flex; flex-direction:column; line-height:1.05}
.brand__name{font-weight:600}
.brand__sub{font-size:.86rem; color:var(--muted)}

.nav__links{
  display:flex;
  gap:18px;
  color: rgba(243,241,234,.88);
  font-size:.95rem;
}
.nav__links a{padding:8px 10px; border-radius:12px}
.nav__links a:hover{background: rgba(255,255,255,.05)}
.nav__actions{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: 0 8px 22px rgba(0,0,0,.25);
  font-weight:600;
  font-size:.95rem;
}
.btn--lg{padding:12px 16px; border-radius:16px}
.btn--gold{
  border: 1px solid rgba(231,210,155,.28);
  background: radial-gradient(circle at 30% 10%, rgba(255,255,255,.25), transparent 55%),
              linear-gradient(135deg, var(--gold2), var(--gold));
  color:#1a1207;
  box-shadow: 0 18px 60px rgba(205,164,90,.22);
}
.btn--ghost{
  border: 1px solid rgba(231,210,155,.20);
  background: rgba(0,0,0,.20);
}

.hero{
  position:relative;
  min-height:78vh;
  display:grid;
  align-items:center;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background-image: url("../img/hero.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(7,7,7,.86) 0%, rgba(7,7,7,.64) 52%, rgba(7,7,7,.82) 100%),
              radial-gradient(700px 520px at 20% 50%, rgba(205,164,90,.14), transparent 60%);
}
.hero__content{position:relative; padding:72px 0}
.chip{
  display:inline-flex; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(231,210,155,.22);
  color: rgba(243,241,234,.92);
  font-weight:600;
  font-size:.92rem;
  margin-bottom:14px;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:28px}
.hero__meta{display:flex; gap:18px; flex-wrap:wrap; max-width:760px}
.meta{
  padding:14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(10px);
}
.meta__k{color: var(--muted); font-size:.88rem}
.meta__v{font-weight:600}

.grid2{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:start;
}
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px 18px;
}
.panel--glow{position:relative; overflow:hidden}
.panel--glow::before{
  content:"";
  position:absolute;
  inset:-40% -30%;
  background: radial-gradient(circle at 30% 30%, rgba(231,210,155,.18), transparent 60%);
  pointer-events:none;
}
.panel__title{position:relative; font-weight:700; margin-bottom:10px}
.panel__note{
  position:relative;
  margin-top:14px;
  color: rgba(243,241,234,.82);
  font-size:.95rem;
  padding-top:12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.kv{
  position:relative;
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:10px 14px;
}
.kv__k{color: var(--muted); font-size:.92rem}
.kv__v{font-weight:600}

.bullets{margin:14px 0 18px; padding-left:18px; color: rgba(243,241,234,.90)}
.bullets li{margin:6px 0}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

.cards{display:grid; grid-template-columns: repeat(3,1fr); gap:16px}
.card{
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  box-shadow: 0 18px 60px rgba(0,0,0,.40);
  overflow:hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(231,210,155,.18);
  background: rgba(0,0,0,.28);
}
.card__img{aspect-ratio: 4/3; background-size: cover; background-position:center; filter:saturate(1.05) contrast(1.03)}
.card__body{padding:14px 14px 16px}
.card__title{font-weight:700; margin-bottom:6px}
.card__desc{color: rgba(243,241,234,.80); font-size:.95rem}

.note{
  margin-top:18px;
  display:flex; align-items:center; gap:10px;
  color: rgba(243,241,234,.78);
  border: 1px dashed rgba(231,210,155,.22);
  background: rgba(0,0,0,.18);
  border-radius:16px;
  padding:12px 14px;
}
.note__dot{
  width:10px; height:10px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--gold2), var(--gold));
  box-shadow: 0 10px 24px rgba(205,164,90,.24);
}

.visit{
  margin:14px 0 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow:hidden;
}
.visit__row{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap:12px;
  padding:12px 14px;
  background: rgba(0,0,0,.20);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.visit__row:last-child{border-bottom:0}
.visit__k{color: var(--muted); font-size:.92rem}
.visit__v{font-weight:600}

.map{padding:0; overflow:hidden}
.map iframe{
  display:block;
  width:100%;
  height:360px;
  border:0;
}

.footer{
  padding:28px 0 44px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.12);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}
.footer__brand{font-weight:700; margin-bottom:4px}
.footer__muted{color: var(--muted); font-size:.92rem}

@media (max-width: 920px){
  .nav__links{display:none}
  .grid2{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .hero{min-height: 72vh}
  .section__head{align-items:flex-start; flex-direction:column}
  .map iframe{height: 320px}
}
