/* ── TOKENS ─────────────────────────────────── */
:root {
  --jungle: #162D22;
  --palm:   #254D37;
  --sage:   #7A9E87;
  --mist:   #EDF4EF;
  --sand:   #F5EDD8;
  --terra:  #BF6950;
  --gold:   #C49235;
  --ocean:  #4A8FA3;
  --cream:  #FAF7F1;
  --bark:   #7A6050;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--jungle);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── REVEAL ANIMATIONS ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.50s; }

/* ── NAV ────────────────────────────────────── */
.cc-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 4rem;
  transition: padding .4s ease, background .4s ease, box-shadow .4s ease;
}
.cc-nav.nav-on {
  background: rgba(22,45,34,0.96);
  backdrop-filter: blur(14px);
  padding: 1.1rem 4rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--sand);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-links {
  display: flex;
  gap: 3rem;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,237,216,.7);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}
.nav-link:hover { color: var(--sand); }
.nav-book {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
  padding: .65rem 1.5rem;
  border: 1px solid var(--terra);
  transition: background .25s, color .25s;
}
.nav-book:hover { background: var(--terra); color: var(--cream); }

/* ── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(158deg, rgba(12,26,17,.72) 0%, rgba(22,45,34,.55) 45%, rgba(15,32,25,.68) 100%),
    url('/Playa-Negra.webp') center / cover no-repeat;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  top: -25%; right: -18%;
  width: 65%; aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(37,77,55,.22) 0%, transparent 70%);
}
.hero-orb-2 {
  bottom: -22%; left: -12%;
  width: 55%; aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(71,136,154,.12) 0%, transparent 70%);
}

.hero-body {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 7rem 2rem 5rem;
  max-width: 880px;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 2rem;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) .3s forwards;
}
.hero-h1 {
  margin: 0 0 2.5rem;
  line-height: .88;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(.16,1,.3,1) .5s forwards;
}
.h1-solid, .h1-outline {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(5.5rem, 16vw, 14rem);
  letter-spacing: -.03em;
}
.h1-solid  { color: var(--sand); font-style: italic; }
.h1-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,237,216,.4);
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,237,216,.6);
  margin: 0 0 3.5rem;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) .75s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) .95s forwards;
}

/* shared buttons */
.btn-terra {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.75rem;
  background: var(--terra);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--terra);
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-terra:hover { background: #a85840; border-color: #a85840; transform: translateY(-1px); }
.btn-lg { padding: 1.2rem 3.5rem; font-size: .9rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.75rem;
  background: transparent;
  color: var(--sand);
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(245,237,216,.33);
  cursor: pointer;
  transition: border-color .25s, background .25s;
}
.btn-ghost:hover { border-color: rgba(245,237,216,.7); background: rgba(245,237,216,.06); }
.btn-sand {
  display: inline-flex;
  align-items: center;
  padding: 1.2rem 3.5rem;
  background: transparent;
  color: var(--sand);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245,237,216,.38);
  cursor: pointer;
  transition: background .25s, border-color .25s;
}
.btn-sand:hover { background: rgba(245,237,216,.1); border-color: var(--sand); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) 1.15s forwards;
}
.h-stat { display: flex; flex-direction: column; align-items: center; gap: .2rem; padding: 0 2.5rem; }
.h-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--sand);
  line-height: 1;
}
.h-stat-l {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(245,237,216,.42);
}
.h-sep { width: 1px; height: 42px; background: rgba(245,237,216,.18); }

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(245,237,216,.38);
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
  transition: color .2s;
}
.scroll-cue:hover { color: rgba(245,237,216,.65); }
.scroll-cue span {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: currentColor;
  transform-origin: top;
  animation: lineGrow 2.5s ease infinite;
}

@keyframes fadeUp  { from { opacity:0; transform: translateY(22px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes lineGrow {
  0%   { transform: scaleY(0); opacity: 0; }
  50%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── SHARED SECTION TOKENS ───────────────────── */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 1rem;
}
.eyebrow-light { color: var(--sage); }
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem,5vw,4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--jungle);
  margin: 0;
}
.sec-title-light { color: var(--sand); }

/* ── FEATURES ────────────────────────────────── */
.features-sec {
  background: var(--cream);
  padding: 9rem 4rem;
}
.features-hdr {
  max-width: 1200px;
  margin: 0 auto 5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: 1100px;
  margin: 0 auto 6rem;
  background: rgba(22,45,34,.06);
}
.f-card {
  background: var(--cream);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background .35s ease;
}
.f-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--acc, var(--terra));
  transition: height .4s ease;
}
.f-card:hover::before { height: 100%; }
.f-card:hover { background: var(--mist); }
.f-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--jungle);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.f-unit { font-size: 2rem; }
.f-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--jungle);
  margin: 0 0 .9rem;
}
.f-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  line-height: 1.75;
  color: var(--bark);
  max-width: 300px;
  margin: 0;
}
.amenities {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid rgba(22,45,34,.1);
}
.amen-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--jungle);
  margin: 0 0 2rem;
}
.amen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 2rem;
}
.amen-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--bark);
}
.amen-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

/* ── GALLERY ─────────────────────────────────── */
.gallery-sec {
  background: var(--jungle);
  padding: 9rem 4rem;
}
.gallery-hdr {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

/* mosaic grid */
.gal-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  grid-template-rows: 360px 270px;
  gap: 4px;
  max-width: 1440px;
  margin: 0 auto;
}
.g-cell {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.g1 { grid-row: 1/2; grid-column: 1/2; }
.g2 { grid-row: 1/2; grid-column: 2/3; }
.g3 { grid-row: 1/2; grid-column: 3/4; }
.g4 { grid-row: 2/3; grid-column: 1/2; }
.g5 { grid-row: 2/3; grid-column: 2/4; }

.g-inner {
  position: absolute;
  inset: 0;
  transition: transform .65s cubic-bezier(.16,1,.3,1);
}
.g-cell:hover .g-inner { transform: scale(1.06); }

.g1 .g-inner { background: linear-gradient(150deg, #2E6B47 0%, #1A4530 100%); }
.g2 .g-inner { background: linear-gradient(150deg, #5A9BAE 0%, #2D6B88 100%); }
.g3 .g-inner { background: linear-gradient(150deg, #C97A58 0%, #8B4A2E 100%); }
.g4 .g-inner { background: linear-gradient(150deg, #1E3A28 0%, #0E2018 100%); }
.g5 .g-inner { background: linear-gradient(150deg, #8B7060 0%, #5E4840 100%); }

/* faint leaf-vein SVG texture overlay for each cell */
.g1 .g-inner::after,
.g2 .g-inner::after,
.g3 .g-inner::after,
.g4 .g-inner::after,
.g5 .g-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 Q30 0 60 30 Q30 60 0 30Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.g-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.55) 100%);
}
.g-lbl {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  z-index: 2;
}

/* ── ABOUT ───────────────────────────────────── */
.about-sec {
  background: var(--sand);
  padding: 9rem 4rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.about-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem,4vw,3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--jungle);
  margin: 0 0 2rem;
}
.about-p {
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  line-height: 1.82;
  color: var(--bark);
  margin: 0 0 1.25rem;
}
.about-facts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(22,45,34,.14);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.fact { display: flex; flex-direction: column; gap: .3rem; }
.fact-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
}
.fact-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--jungle);
}
.about-card {
  background: var(--cream);
  box-shadow: 0 22px 60px rgba(22,45,34,.12);
  overflow: hidden;
}
.map-vis {
  height: 260px;
  background:
    radial-gradient(circle at 55% 50%, rgba(71,136,154,.2) 0%, transparent 60%),
    linear-gradient(155deg, #1B3D2A 0%, #0E2318 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.map-svg { width: 90px; height: 90px; }
.map-place {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--sand);
  margin: 0;
}
.map-coords {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  color: rgba(245,237,216,.45);
  margin: 0;
}
.prox-list {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.prox-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--bark);
}
.prox-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pd-beach   { background: var(--ocean); }
.pd-town    { background: var(--terra); }
.pd-nature  { background: var(--sage); }
.pd-airport { background: var(--gold); }
.prox-name { flex: 1; }
.prox-dist { font-weight: 500; color: var(--jungle); }

/* ── TESTIMONIALS ────────────────────────────── */
.testi-sec {
  background: var(--mist);
  padding: 9rem 4rem;
}
.testi-hdr {
  max-width: 1200px;
  margin: 0 auto 5rem;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(22,45,34,.06);
}
.t-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.t-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  line-height: .68;
  color: rgba(191,105,80,.14);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.t-text {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  line-height: 1.82;
  color: var(--bark);
  font-style: italic;
  margin: 0 0 2rem;
  flex: 1;
}
.t-foot {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(22,45,34,.08);
}
.star-row { display: flex; gap: 3px; }
.star-icon { width: 14px; height: 14px; color: var(--gold); }
.t-author { display: flex; flex-direction: column; gap: .2rem; }
.t-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--jungle);
}
.t-loc {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: var(--sage);
  letter-spacing: .05em;
}

/* ── BOOKING ─────────────────────────────────── */
.book-sec {
  position: relative;
  padding: 10rem 4rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 110%, rgba(71,136,154,.2) 0%, transparent 60%),
    linear-gradient(155deg, #0C1A11 0%, #162D22 50%, #1E3A2B 100%);
}
.book-orb {
  position: absolute;
  top: -30%; left: -20%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(ellipse at center, rgba(37,77,55,.3) 0%, transparent 70%);
  border-radius: 60% 40% 40% 60% / 50% 60% 40% 50%;
  pointer-events: none;
}
.book-body {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 680px;
}
.book-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem,6vw,5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--sand);
  margin: 1rem 0 2rem;
}
.book-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245,237,216,.6);
  margin: 0 0 3.5rem;
}
.book-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.book-note {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: rgba(245,237,216,.3);
}
.book-note a { color: var(--sage); text-decoration: none; }
.book-note a:hover { text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────── */
.cc-footer {
  background: #0A1610;
  padding: 4rem 4rem 3rem;
  text-align: center;
}
.ft-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--sand);
  margin: 0 0 .5rem;
}
.ft-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 2.5rem;
}
.ft-links {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.ft-links button,
.ft-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(245,237,216,.38);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s;
}
.ft-links button:hover,
.ft-links a:hover { color: var(--sand); }
.ft-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: rgba(245,237,216,.18);
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .cc-nav, .cc-nav.nav-on { padding-left: 2.5rem; padding-right: 2.5rem; }
  .nav-links { gap: 2rem; }
  .nav-book { display: none; }
  .features-sec, .gallery-sec, .about-sec, .testi-sec, .book-sec { padding: 6rem 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .amen-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cc-nav, .cc-nav.nav-on { padding-left: 1.5rem; padding-right: 1.5rem; }
  .nav-links { display: none; }
  .hero-body { padding: 6rem 1.5rem 4rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .h-sep { display: none; }
  .features-sec, .gallery-sec, .about-sec, .testi-sec, .book-sec { padding: 5rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px 200px;
  }
  .g1 { grid-column: 1/3; }
  .g2, .g3 { grid-row: 2/3; height: 200px; }
  .g2 { grid-column: 1/2; }
  .g3 { grid-column: 2/3; }
  .g4 { grid-row: 3/4; grid-column: 1/2; height: 200px; }
  .g5 { grid-row: 3/4; grid-column: 2/3; height: 200px; }
  .book-ctas { flex-direction: column; align-items: center; }
  .cc-footer { padding: 3rem 1.5rem 2rem; }
  .ft-links { gap: 1.5rem; }
}
