:root {
  --navy: #0a2330;
  --sea: #0e5a72;
  --sea-light: #4fa3b5;
  --sand: #faf6ef;
  --sand-dark: #efe4d3;
  --text: #1e2a30;
  --text-muted: #5b6b72;
  --accent: #d99a4e;
  --accent-dark: #b97a2f;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 20px 40px -20px rgba(10, 35, 48, 0.35);
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 .5em;
  line-height: 1.15;
  color: var(--navy);
}

p { margin: 0 0 1em; color: var(--text-muted); }

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy);
  box-shadow: 0 10px 24px -8px rgba(217, 154, 78, 0.6);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-ghost-dark {
  border: 1.5px solid var(--sea);
  color: var(--sea);
}
.btn-ghost-dark:hover { background: var(--sea); color: var(--white); transform: translateY(-2px); }
.btn-call {
  background: var(--sea);
  color: var(--white);
  padding: 10px 18px;
  font-size: 14px;
}
.btn-call:hover { background: var(--navy); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(10,35,48,.08);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.site-header.scrolled .logo { color: var(--navy); }
.logo span { color: var(--accent); }
.logo-icon { font-size: 22px; }

.nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: .9;
  transition: opacity .2s ease, color .3s ease;
  position: relative;
  white-space: nowrap;
}
.site-header.scrolled .nav a { color: var(--navy); }
.nav a:hover { opacity: 1; }

.header-call { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: background .3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--navy); }

/* Hero */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
}
.hero-inner { max-width: 720px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(42px, 6vw, 68px);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.9);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 22px;
  opacity: .8;
  animation: bob 2s infinite ease-in-out;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Sections */
.section { padding: 100px 0; }
.section-alt { background: var(--sand-dark); }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sea);
  margin-bottom: 10px;
}
.section-lead {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16.5px;
}
.center { text-align: center; }
h2 { font-size: clamp(28px, 3.5vw, 38px); }

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse .split-media { order: 2; }
.split-reverse .split-text { order: 1; }
.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3.2;
  object-fit: cover;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.feature-list li {
  font-size: 15px;
  color: var(--text);
  padding-left: 26px;
  position: relative;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sea);
  font-weight: 700;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.amenity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 12px 28px -18px rgba(10,35,48,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: 0 20px 34px -18px rgba(10,35,48,.3); }
.amenity-card svg {
  width: 34px; height: 34px;
  color: var(--sea);
  margin-bottom: 14px;
}
.amenity-card h3 { font-size: 17px; margin-bottom: 6px; }
.amenity-card p { font-size: 14px; margin-bottom: 0; }

/* Wellness */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.wellness-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.wellness-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.wellness-card figcaption { padding: 22px 24px; }
.wellness-card h3 { font-size: 19px; margin-bottom: 6px; }
.wellness-card p { font-size: 14.5px; margin-bottom: 0; }

/* Gallery */
.gallery-grid {
  margin-top: 48px;
  columns: 4;
  column-gap: 16px;
}
.gallery-grid img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 10px;
  cursor: pointer;
  break-inside: avoid;
  transition: transform .3s ease, opacity .3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); opacity: .92; }

/* Location */
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.address {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
}
.distance-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.distance-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand-dark);
  font-size: 15px;
}
.distance-list li span { color: var(--text-muted); }
.distance-list li strong { color: var(--sea); font-weight: 600; }

/* CTA / Contact */
.section-cta {
  background: linear-gradient(160deg, var(--navy), var(--sea));
  color: var(--white);
}
.section-cta h2, .section-cta .section-eyebrow { color: var(--white); }
.section-cta .section-eyebrow { color: var(--accent); }
.section-cta .section-lead { color: rgba(255,255,255,.85); }
.cta-inner { max-width: 640px; }
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.address-cta { color: rgba(255,255,255,.75); margin-top: 26px; font-weight: 400; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 18px;
  margin: 0 0 4px;
}
.footer-logo span { color: var(--accent); }
.footer-inner p { margin: 0; font-size: 14px; }
.footer-phone { color: var(--accent); font-weight: 500; }
.footer-top { font-size: 14px; opacity: .8; }
.footer-top:hover { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 28, 0.94);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: flex;
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    transition: right .35s ease;
  }
  .nav.open { right: 0; }
  .nav a { color: var(--white); font-size: 17px; opacity: 1; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header-call { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split-reverse .split-media, .split-reverse .split-text { order: initial; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .wellness-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .amenities-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .gallery-grid { columns: 1; }
  .footer-inner { flex-direction: column; text-align: center; }
}
