:root {
  --bg: #0b1220;
  --bg-alt: #0f172a;
  --surface: #111a2e;
  --border: rgba(148, 163, 184, 0.18);
  --text: #e5e7eb;
  --muted: #9aa4b2;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --accent: #22c55e;
  --max: 1100px;
  --radius: 12px;
}

* { box-sizing: border-box; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  margin: 0 0 0.5rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HEADER / NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 18, 32, 0.9);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand img { width: 32px; height: 32px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.55rem 0.85rem;
  color: var(--muted);
  border-radius: 8px;
  font-weight: 500;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-cta:hover { background: var(--primary-hover); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* HERO */
.hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(circle at 90% 30%, rgba(34, 197, 94, 0.1), transparent 60%);
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.05s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: rgba(148,163,184,0.45); }

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.5);
}

/* SECTIONS */
.section { padding: 3.5rem 0; }
.section-alt { background: linear-gradient(180deg, rgba(37,99,235,0.04) 0%, transparent 100%); }

.section-head {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
}
.section-head h2 { font-size: 1.75rem; }
.section-head p { color: var(--muted); margin: 0; }

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.2s ease, transform 0.1s ease;
}
.card:hover { border-color: rgba(148,163,184,0.35); }
.card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #93c5fd;
  font-weight: 600;
  font-size: 0.9rem;
}
.card-link::after { content: "\2192"; }
.card-link:hover { color: #bfdbfe; }

/* PAGE */
.page { padding: 2.5rem 0 3rem; }
.page-wrap { max-width: 760px; }
.page-head { margin-bottom: 1.75rem; }
.page-head h1 { font-size: 2rem; }
.page-lead { color: var(--muted); font-size: 1.05rem; }
.page-meta { font-size: 0.85rem; color: #64748b; margin: 0.25rem 0 0; }

.breadcrumbs {
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--muted);
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: #475569;
}
.breadcrumbs a {
  color: #93c5fd;
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

.page-body h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.page-body h3 {
  font-size: 1.1rem;
  margin-top: 1.4rem;
  margin-bottom: 0.35rem;
}
.page-body p, .page-body li { color: #d7dce4; }
.page-body a { color: #93c5fd; text-decoration: underline; text-underline-offset: 3px; }
.page-body a:hover { color: #bfdbfe; }
.page-body ul, .page-body ol { padding-left: 1.25rem; }
.page-body blockquote {
  margin: 1.25rem 0;
  padding: 0.5rem 1rem;
  border-left: 3px solid var(--primary);
  color: var(--muted);
  background: rgba(37,99,235,0.06);
  border-radius: 6px;
}
.page-body code {
  background: rgba(148,163,184,0.12);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.92em;
}
.page-body hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ROOMS CATALOG */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.room-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1.1rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none !important;
  transition: border-color 0.18s ease, transform 0.1s ease, background 0.18s ease;
}

.room-card:hover {
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(37, 99, 235, 0.06);
  transform: translateY(-1px);
}

.room-card h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--text);
}

.room-card p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.5;
}

.room-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  color: #93c5fd;
  border: 1px solid rgba(37, 99, 235, 0.28);
}

.room-meta {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

.room-card--adult .room-tag {
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.32);
}

.room-card--adult:hover {
  background: rgba(239, 68, 68, 0.05);
}

@media (max-width: 640px) {
  .rooms-grid { grid-template-columns: 1fr; }
}

/* BLOG */
.article-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.article-card {
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.18s ease;
}
.article-card:hover { border-color: rgba(148,163,184,0.35); }
.article-card h2 {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}
.article-card h2 a { color: var(--text); }
.article-card h2 a:hover { color: #bfdbfe; }
.article-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}
.article-meta {
  color: #64748b !important;
  font-size: 0.82rem;
  margin: 0 !important;
}

.article-tags {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.article-tags .tag {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  color: #93c5fd;
  font-size: 0.8rem;
  text-decoration: none;
}
.article-tags .tag:hover { background: rgba(37,99,235,0.22); }

/* FAQ */
.faq {
  margin: 1.5rem 0 1rem;
  display: grid;
  gap: 0.6rem;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
}
.faq details[open] { border-color: rgba(148,163,184,0.4); }
.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details > :not(summary) { margin-top: 0.6rem; color: #d7dce4; }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 2rem 0;
}
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-note { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .hero h1 { font-size: 2rem; }
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem 1rem 1rem;
    background: rgba(11, 18, 32, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link { padding: 0.75rem 0.75rem; }
  .nav-cta {
    margin: 0.25rem 0 0;
    text-align: center;
  }

  .hero { padding: 2.5rem 0 2rem; }
  .hero h1 { font-size: 1.7rem; }
  .lead { font-size: 0.98rem; }
  .btn { width: 100%; }

  .section { padding: 2.5rem 0; }
  .section-head h2 { font-size: 1.4rem; }

  .cards { grid-template-columns: 1fr; }

  .page-head h1 { font-size: 1.6rem; }
  .page-body h2 { font-size: 1.2rem; }

  .footer-wrap { justify-content: center; text-align: center; flex-direction: column; }
}
