:root{
  --bg:#0a0f16;
  --ink:#0f172a;
  --paper:#ffffff;
  --muted:#64748b;
  --line:rgba(15,23,42,.12);
  --shadow:0 22px 60px rgba(2,6,23,.14);
  --accent:#0f172a;
  --radius:24px;
}
*{box-sizing:border-box}
html,body{margin:0}
body{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:#f6f7fb;
  color:var(--ink);
}
a{color:inherit; text-decoration:none}
.container{width:min(1120px, 92vw); margin:0 auto}

.nav{
  position:sticky; top:0; z-index:30;
  background:rgba(246,247,251,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-row{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}
.brand{
  font-family:Fraunces, serif;
  font-weight:700;
  letter-spacing:.2px;
}
.links{display:flex; gap:18px; font-size:14px; color:rgba(15,23,42,.78); font-weight:600}
.links a:hover{color:var(--ink)}
.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-weight:800;
  border:1px solid rgba(15,23,42,.22);
  box-shadow:0 14px 34px rgba(2,6,23,.18);
}
.ghost{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--ink);
  font-weight:800;
  border:1px solid var(--line);
}

.hero{position:relative; overflow:hidden}
.hero-media{position:absolute; inset:0}
.hero-media img{width:100%; height:100%; object-fit:cover; filter:contrast(1.05) saturate(1.03)}
.hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(246,247,251,.94), rgba(246,247,251,.70));
}
.hero-inner{
  position:relative; z-index:2;
  padding:64px 0 44px;
}
.hero-kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.72);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero h1{
  font-family:Fraunces, serif;
  font-size:54px;
  line-height:1.02;
  margin:14px 0 12px;
  max-width:18ch;
}
.hero h1 span{display:inline-block}
.hero p{margin:0; max-width:70ch; color:rgba(15,23,42,.76); line-height:1.65}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:22px;
}
.stat{
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  box-shadow:0 12px 30px rgba(2,6,23,.06);
}
.num{font-weight:1000; font-size:22px}
.lbl{margin-top:4px; color:var(--muted); font-size:12px}

.section{padding:72px 0}
.section.alt{background:#fff}
.section-head h2{
  font-family:Fraunces, serif;
  font-size:34px;
  margin:0 0 10px;
}
.muted{color:var(--muted); margin:0}
.body{margin-top:12px; line-height:1.75; color:rgba(15,23,42,.78)}

.split{display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:center}
.photo img{
  width:100%;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.values{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:20px}
.value{
  background:linear-gradient(180deg, rgba(15,23,42,.04), rgba(255,255,255,1));
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:0 12px 30px rgba(2,6,23,.06);
}
.value-top{display:flex; justify-content:space-between; align-items:baseline}
.value-title{font-weight:900}
.value-k{color:rgba(15,23,42,.45); font-weight:1000}
.value-sub{margin-top:10px; color:var(--muted); line-height:1.6}

.stays{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:20px}
.stay{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(2,6,23,.06);
}
.stay img{width:100%; height:220px; object-fit:cover}
.stay-body{padding:16px}
.stay-title{font-weight:1000}
.stay-sub{margin-top:8px; color:var(--muted); line-height:1.6; font-size:13px}
.stay-meta{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.stay-meta span{
  padding:8px 10px;
  border-radius:999px;
  background:#f1f5f9;
  border:1px solid rgba(15,23,42,.10);
  font-size:12px;
  font-weight:700;
}
.link{display:inline-flex; margin-top:14px; font-weight:900}

.gallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:18px;
}
.gallery-item{border-radius:18px; overflow:hidden; border:1px solid var(--line); background:#fff; box-shadow:0 10px 26px rgba(2,6,23,.06); transition:transform .16s ease}
.gallery-item:hover{transform:translateY(-2px)}
.gallery-item.big{grid-column:span 2; grid-row:span 2}
.gallery img{width:100%; height:100%; object-fit:cover; aspect-ratio:4/3}
.gallery-item.big img{aspect-ratio:16/10}

.reviews{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:18px}
.review{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:0 12px 30px rgba(2,6,23,.06);
}
.review blockquote{margin:0; color:rgba(15,23,42,.78); line-height:1.7}
.review figcaption{margin-top:12px; font-weight:900; color:rgba(15,23,42,.85)}

.faqs{margin-top:12px}
.faq{
  border:1px solid var(--line);
  border-radius:18px;
  padding:12px 14px;
  background:#fff;
  margin:10px 0;
}
.faq summary{cursor:pointer; font-weight:900}
.faq-a{margin-top:10px; color:rgba(15,23,42,.76); line-height:1.6; font-size:13px}

.contact .meta{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:16px;
}
.k{font-size:12px; color:var(--muted)}
.v{font-weight:900}

.map iframe{
  width:100%;
  height:380px;
  border:0;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.footer{padding:22px 0; border-top:1px solid var(--line); background:#fff}
.footer-row{display:flex; justify-content:space-between; align-items:center; color:rgba(15,23,42,.7)}

/* Responsive */
@media (max-width: 980px){
  .links{display:none}
  .hero h1{font-size:40px}
  .hero-stats{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .values{grid-template-columns:1fr}
  .stays{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .gallery-item.big{grid-column:span 2; grid-row:span 1}
  .reviews{grid-template-columns:1fr}
  .contact .meta{grid-template-columns:1fr}
}

/* UX / production */
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
}

/* Better keyboard accessibility */
:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(15,23,42,.18);
  border-radius: 10px;
}

/* Skip link */
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  z-index:1000;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
}
.skip-link:focus{ left:10px; }

/* Make sections align nicely under the sticky header */
section[id]{ scroll-margin-top: 90px; }

/* Mobile navigation */
.nav-row{ position:relative; }

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:0;
}
.menu-toggle-bar{
  width:18px;
  height:2px;
  background:rgba(15,23,42,.8);
  display:block;
  border-radius:2px;
}

/* Gallery: no click affordance */
.gallery-item{ cursor:default; }

@media (max-width: 980px){
  .menu-toggle{ display:inline-flex; }

  /* override existing mobile behavior: show dropdown when opened */
  .links{
    display:none;
    position:absolute;
    top:58px;
    left:0;
    right:0;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:10px;
    box-shadow:var(--shadow);
    flex-direction:column;
    gap:8px;
  }
  .links a{
    padding:10px 12px;
    border-radius:14px;
    background:rgba(15,23,42,.04);
  }
  body.nav-open .links{ display:flex; }
}

.footer a:hover{ text-decoration:underline; }
