:root {
  --navy: #0d2340;
  --navy-deep: #07182c;
  --gold: #d7a941;
  --cream: #f7f3ea;
  --ink: #172033;
  --muted: #667085;
  --white: #ffffff;
  --line: #e7e1d4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(18px, 4vw, 64px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(13,35,64,.08);
  backdrop-filter: blur(12px);
}
.brand img { width: 124px; height: 56px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: .95rem; }
.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-cta { background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; color: var(--navy); }

.hero {
  position: relative;
  min-height: 79vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,24,44,.84), rgba(7,24,44,.48) 55%, rgba(7,24,44,.15)); }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 clamp(22px, 6vw, 92px) clamp(70px, 9vw, 118px);
  color: #fff;
}
.eyebrow { margin: 0 0 14px; font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #f1d48a; }
.eyebrow.dark { color: #a67518; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; margin: 0; line-height: 1.08; }
h1 { font-size: clamp(3rem, 7vw, 6rem); max-width: 720px; }
h2 { font-size: clamp(2rem, 4.1vw, 3.7rem); color: var(--navy); }
.hero-copy { max-width: 620px; font-size: clamp(1rem, 1.6vw, 1.22rem); line-height: 1.7; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 8px 28px rgba(0,0,0,.16); }
.btn-ghost { border: 1px solid rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.07); }
.hero-rate {
  position: absolute;
  right: clamp(22px, 5vw, 80px);
  bottom: 0;
  z-index: 3;
  display: grid;
  min-width: 230px;
  padding: 22px 28px;
  background: var(--cream);
  color: var(--navy);
  border-radius: 18px 18px 0 0;
}
.hero-rate span { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #6f6a5f; }
.hero-rate strong { font-size: 1.75rem; margin: 4px 0; }

.section { padding: clamp(70px, 9vw, 120px) clamp(20px, 6vw, 92px); }
.section-heading { max-width: 900px; }
.section-heading h2 { margin-bottom: 18px; }
.intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: end; margin-top: 24px; }
.lead { font-size: clamp(1.12rem, 1.8vw, 1.38rem); line-height: 1.8; color: #475467; margin: 0; }
.quick-facts { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 14px 40px rgba(13,35,64,.06); }
.quick-facts div { padding: 24px 16px; text-align: center; border-right: 1px solid var(--line); }
.quick-facts div:last-child { border-right: 0; }
.quick-facts strong { display: block; font-family: "Playfair Display", serif; font-size: 1.75rem; color: var(--navy); }
.quick-facts span { display: block; margin-top: 5px; font-size: .8rem; color: var(--muted); }

.gallery-section { background: var(--cream); }
.inline-heading { max-width: none; display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 34px; }
.inline-heading p:last-child { max-width: 500px; color: var(--muted); line-height: 1.7; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 14px; }
.gallery-card { position: relative; overflow: hidden; border: 0; padding: 0; cursor: pointer; background: #ddd; border-radius: 14px; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-card::after { content:""; position:absolute; inset:auto 0 0; height:55%; background:linear-gradient(transparent, rgba(7,24,44,.72)); }
.gallery-card span { position: absolute; z-index: 2; left: 18px; bottom: 16px; color: #fff; font-weight: 700; }
.gallery-large { grid-column: span 2; grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.details { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.details-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 22px; box-shadow: 0 24px 70px rgba(13,35,64,.12); }
.details-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.feature-list { display: grid; gap: 18px; margin-top: 28px; }
.feature-list div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding-top: 16px; border-top: 1px solid #e6e7ea; }
.feature-list span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #f4ead1; color: #916a18; font-weight: 700; }
.feature-list p { margin: 0; line-height: 1.55; color: #475467; }
.feature-list strong { color: var(--navy); }

.booking { background: var(--navy); }
.booking-card { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: center; max-width: 1180px; margin: auto; color: #fff; }
.booking-card h2 { color: #fff; }
.booking-card p { color: rgba(255,255,255,.78); line-height: 1.75; max-width: 700px; }
.booking-price { background: #fff; color: var(--navy); padding: 28px; border-radius: 20px; display: grid; }
.booking-price span { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--muted); }
.booking-price strong { font-size: 2rem; margin: 6px 0; }
.booking-price small { color: var(--muted); margin-bottom: 18px; }
.btn.full { width: 100%; }

footer { display: flex; justify-content: space-between; gap: 30px; padding: 42px clamp(20px,6vw,92px); background: #07182c; color: rgba(255,255,255,.7); font-size: .9rem; }
.footer-brand img { width: 120px; height: 56px; object-fit: contain; background: #fff; border-radius: 10px; padding: 3px 8px; }
.footer-brand p { margin-top: 12px; }
.footer-info { text-align: right; }
.footer-info p { margin: 6px 0; }

.floating-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 35; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; font-weight: 800; box-shadow: 0 10px 32px rgba(0,0,0,.25); }

.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 30px; background: rgba(3,10,18,.94); }
.lightbox.open { display: grid; }
.lightbox img { max-height: 82vh; max-width: min(1100px, 94vw); border-radius: 12px; }
.lightbox p { color: #fff; font-weight: 700; }
.lightbox-close { position: absolute; top: 20px; right: 25px; border: 0; background: transparent; color: #fff; font-size: 2.6rem; cursor: pointer; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 18px 24px 24px; background: #fff; border-bottom: 1px solid #eee; gap: 8px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .nav-cta { text-align: center; padding: 12px 18px !important; }
  .hero { min-height: 74vh; }
  .hero-rate { right: 0; min-width: 200px; }
  .intro-grid, .details, .booking-card { grid-template-columns: 1fr; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .quick-facts div:nth-child(2) { border-right: 0; }
  .quick-facts div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-large { grid-column: span 2; }
  .inline-heading { display: block; }
  footer { flex-direction: column; }
  .footer-info { text-align: left; }
}

@media (max-width: 560px) {
  .brand img { width: 104px; }
  .hero-content { padding-bottom: 150px; }
  .hero-shade { background: linear-gradient(180deg, rgba(7,24,44,.38), rgba(7,24,44,.9)); }
  .hero-rate { left: 20px; right: 20px; bottom: 20px; border-radius: 14px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 235px; }
  .gallery-large, .gallery-wide { grid-column: span 1; grid-row: span 1; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
}
