:root {
  --navy: #0b2a3d;
  --navy-soft: #14364c;
  --lake: #1c6b8a;
  --sand: #e8dcc8;
  --cream: #f7f3ec;
  --gold: #c98a3a;
  --gold-deep: #a86d28;
  --sage: #6b7f6a;
  --ink: #1a1a1a;
  --muted: #5b6570;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(11, 42, 61, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 42, 61, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 16px;
}
.brand {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
  color: var(--navy);
}
.brand span { color: var(--gold-deep); }
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--navy);
}
.nav-links a:hover { color: var(--gold-deep); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(247, 243, 236, 0.45);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.4rem;
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 88vh;
  background:
    linear-gradient(180deg, rgba(11,42,61,.18) 0%, rgba(11,42,61,.55) 100%),
    url("images/1_main_deck_hero.jpg") center/cover no-repeat;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
}
.hero-content {
  padding: 0 0 72px;
  max-width: 760px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 12px;
}
.hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.15rem;
  max-width: 620px;
  margin-bottom: 28px;
  color: #f3ece1;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.stats {
  background: var(--navy);
  color: var(--cream);
  padding: 22px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stats strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
}
.stats span { font-size: .9rem; color: var(--sand); }

section { padding: 88px 0; }
.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.lede { color: var(--muted); font-size: 1.08rem; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.checklist { list-style: none; margin-top: 22px; }
.checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
}
.checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 14px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.gallery img, .photo-grid img, .room img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
}
.gallery img:first-child { grid-row: 1 / span 2; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.photo-grid img { height: 160px; border-radius: 10px; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 32, 0.92);
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox button {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.lightbox .lb-prev,
.lightbox .lb-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  right: auto;
  padding: 8px 16px;
}
.lightbox .lb-prev { left: 12px; }
.lightbox .lb-next { right: 12px; }

.gallery-hero {
  padding: 72px 0 12px;
}
.gallery-hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}
.gallery-page { padding-top: 24px; }
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter {
  border: 1px solid rgba(11,42,61,.15);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
}
.filter.is-on {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.g-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}
.g-item.is-hidden { display: none; }

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

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3 {
  font-family: Fraunces, Georgia, serif;
  color: var(--navy);
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: .98rem; }
.icon { font-size: 1.4rem; margin-bottom: 10px; }

.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.room {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.room img { height: 220px; width: 100%; object-fit: cover; }
.room-body { padding: 20px; }
.room h3 { font-family: Fraunces, Georgia, serif; color: var(--navy); }
.room p { color: var(--muted); margin-top: 6px; }

.reviews { background: #efe7d8; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
}
.stars { color: var(--gold-deep); letter-spacing: 2px; margin-bottom: 10px; }
.review p { font-size: 1rem; margin-bottom: 14px; }
.review cite { font-style: normal; color: var(--muted); font-size: .92rem; }

.things {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.thing {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.thing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,42,61,.72));
}
.thing > * { position: relative; z-index: 1; }
.thing h3 { font-family: Fraunces, Georgia, serif; font-size: 1.6rem; }

.booking {
  background: var(--navy);
  color: var(--cream);
}
.booking .section-head h2,
.booking .lede { color: var(--cream); }
.booking .lede { color: #d7cfc2; }
.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
}
.form {
  background: var(--navy-soft);
  padding: 28px;
  border-radius: var(--radius);
  display: grid;
  gap: 12px;
}
.form label { font-size: .88rem; color: var(--sand); }
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid rgba(232, 220, 200, .2);
  background: rgba(255,255,255,.06);
  color: var(--cream);
  border-radius: 10px;
  padding: 12px 14px;
}
.form textarea { min-height: 110px; resize: vertical; }
.fine-print { font-size: .85rem; color: #c9bfb0; margin-top: 8px; }
.book-links { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.book-links a {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px 16px;
  border-radius: 12px;
}

.faq details {
  background: var(--white);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}
.faq p { margin-top: 8px; color: var(--muted); }

footer {
  background: #081c29;
  color: #d4cbbd;
  padding: 36px 0;
  font-size: .95rem;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 18px 24px 24px;
    border-bottom: 1px solid rgba(11,42,61,.08);
  }
  .menu-toggle { display: block; }
  .stats-grid, .cards, .rooms, .review-grid, .things, .split, .booking-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px 180px;
  }
  .gallery img:first-child { grid-column: 1 / span 2; grid-row: auto; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid img { height: 140px; }
  .split img { height: 320px; }
  section { padding: 64px 0; }
}
