:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --brand: #b48a4a;
  --brand-dark: #89652f;
  --dark: #0b1220;
  --radius: 18px;
  --shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  --container: min(1160px, 92%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 5rem 0; }
.section.alt { background: linear-gradient(180deg, #fcfbf8 0%, #f7f3eb 100%); }

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.6rem; }
h1 { font-size: clamp(2.1rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

.skip-link { position: absolute; left: -10000px; }
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: #000;
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(11, 18, 32, 0.72);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.main-nav { margin-left: auto; }
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.nav-list a {
  text-decoration: none;
  color: #f8fafc;
  font-weight: 500;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
}

.nav-list a:hover { background: rgba(255, 255, 255, 0.14); }

.menu-btn {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.1rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-outline { border-color: #ffffffdd; color: #fff; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { opacity: 0.9; }

.hero {
  min-height: 90vh;
  position: relative;
  display: grid;
  place-items: center;
  background: center/cover no-repeat url("https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=80");
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 27, 0.38), rgba(10, 14, 27, 0.58));
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 860px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 0.78rem;
  color: #fde68a;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.trust-strip { background: #0f172a; color: #e2e8f0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-grid article {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}
.trust-grid h2 { font-size: 1.05rem; margin-bottom: 0.35rem; }

.section-head { max-width: 760px; margin-bottom: 1.5rem; }
.section-head p { color: var(--muted); }

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

.card,
.offer,
.booking-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-body, .offer { padding: 1rem; }

.two-col {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 2rem;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1.08fr; }

.feature-list { padding-left: 1rem; }
.feature-list li { margin-bottom: 0.45rem; }

.offers-grid .offer h3 { margin-bottom: 0.4rem; }

.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.masonry img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

.booking-box { padding: 1.2rem; }
.booking-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: end;
}
.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.booking-form input,
.booking-form select {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 0.64rem 0.7rem;
}

.note { color: #64748b; margin-top: 0.8rem; font-size: 0.92rem; }

.faq-list {
  display: grid;
  gap: 0.8rem;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.footer {
  background: #0b1220;
  color: #e2e8f0;
  padding: 2.8rem 0 1.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer li { margin-bottom: 0.4rem; }
.footer a { text-decoration: none; color: #e2e8f0; }
.copyright {
  text-align: center;
  margin: 1.4rem 0 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .masonry { grid-template-columns: repeat(2, 1fr); }
  .booking-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-form button { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .menu-btn { display: inline-block; }
  .desktop-book { display: none; }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    display: none;
  }
  .main-nav.open { display: block; }
  .nav-list {
    flex-direction: column;
    gap: 0.35rem;
  }

  .section { padding: 3.5rem 0; }
  .cards-3,
  .two-col,
  .two-col.reverse,
  .masonry,
  .booking-form,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 85vh;
    align-items: end;
    padding-bottom: 2rem;
  }
}
