:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #171717;
  --text: #f5f2ea;
  --muted: #cdbd98;
  --gold: #c89c5d;
  --gold-2: #e2bf84;
  --border: rgba(200, 156, 93, 0.28);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(200,156,93,0.12), transparent 28%),
    linear-gradient(180deg, #000 0%, #050505 100%);
  color: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(0,0,0,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand-logo { width: 74px; height: 74px; object-fit: contain; }
.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav a {
  color: #f1e7d6;
  font-weight: 600;
  opacity: 0.92;
}
.site-nav a:hover { color: var(--gold-2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #111;
  box-shadow: 0 12px 30px rgba(200, 156, 93, 0.25);
}
.btn-outline {
  border-color: var(--border);
  background: rgba(255,255,255,0.02);
  color: var(--text);
}

.hero {
  padding: 64px 0 34px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 800;
}
.hero h1, h2 {
  margin: 0 0 16px;
  line-height: 1.05;
}
.hero h1 { font-size: clamp(2.3rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); }
.hero-text, .section-text, .card p, .section p, .booking-note {
  color: #e5dbc8;
  line-height: 1.7;
}
.hero-actions, .booking-actions, .contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-card, .info-panel, .booking-frame-wrap, .card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 28px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  width: min(100%, 520px);
  filter: drop-shadow(0 20px 45px rgba(0,0,0,0.55));
}

.section { padding: 72px 0; }
.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px;
}
.card { padding: 26px; }
.card h3 { margin-top: 0; font-size: 1.25rem; }
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.info-panel { padding: 24px; }
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-row:last-child { border-bottom: 0; }
.info-row strong { color: var(--gold-2); }

.booking-frame-wrap {
  overflow: hidden;
  margin-top: 24px;
  min-height: 920px;
}
.booking-frame {
  width: 100%;
  min-height: 920px;
  border: 0;
  background: #fff;
}
.booking-note { margin-top: 16px; }

.site-footer {
  padding: 24px 0 40px;
  color: #d6c7a7;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .hero-grid, .split, .card-grid {
    grid-template-columns: 1fr;
  }
  .desktop-book { display: none; }
  .site-nav {
    gap: 14px;
    font-size: 0.95rem;
    justify-content: center;
  }
  .nav-wrap {
    flex-direction: column;
    padding-bottom: 16px;
  }
  .hero-card { min-height: auto; }
  .booking-frame-wrap, .booking-frame { min-height: 760px; }
}

@media (max-width: 560px) {
  .container { width: min(1120px, calc(100% - 20px)); }
  .section { padding: 56px 0; }
  .btn { width: 100%; }
  .hero-actions .btn, .booking-actions .btn, .contact-actions .btn { width: 100%; }
  .brand-logo { width: 62px; height: 62px; }
}
