/* ============ Tokens ============ */
:root {
  --bg: oklch(0.975 0.018 80);
  --fg: oklch(0.225 0.035 35);
  --card: oklch(0.99 0.012 85);
  --muted: oklch(0.93 0.025 75);
  --muted-fg: oklch(0.45 0.04 45);
  --primary: oklch(0.585 0.165 38);
  --primary-fg: oklch(0.985 0.01 80);
  --secondary: oklch(0.32 0.06 155);
  --secondary-fg: oklch(0.97 0.018 80);
  --accent: oklch(0.78 0.135 70);
  --border: oklch(0.88 0.025 70);
  --cream: oklch(0.975 0.018 80);

  --gradient-warm: linear-gradient(135deg, oklch(0.585 0.165 38) 0%, oklch(0.68 0.16 55) 60%, oklch(0.78 0.135 70) 100%);
  --hero-overlay: linear-gradient(180deg, oklch(0.18 0.04 35 / 0.15) 0%, oklch(0.18 0.04 35 / 0.55) 60%, oklch(0.18 0.04 35 / 0.85) 100%);
  --shadow-soft: 0 1px 2px oklch(0.225 0.035 35 / 0.06), 0 12px 32px -12px oklch(0.585 0.165 38 / 0.18);
  --shadow-card: 0 1px 2px oklch(0.225 0.035 35 / 0.05), 0 24px 48px -24px oklch(0.225 0.035 35 / 0.18);

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; margin: 0; font-weight: 600; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted-fg); }
.small { font-size: 0.875rem; }
.primary { color: var(--primary); }
.italic { font-style: italic; }
.display { font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3rem); line-height: 1.1; font-weight: 600; }
.display-sm { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.lead { font-size: 1.125rem; line-height: 1.65; color: var(--muted-fg); }

.eyebrow {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--primary);
}
.kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; opacity: 0.85; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); box-shadow: var(--shadow-soft); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary { background: var(--secondary); color: var(--secondary-fg); padding: 0.55rem 1rem; box-shadow: var(--shadow-soft); }
.btn-secondary:hover { opacity: 0.9; }
.btn-ghost { background: var(--card); color: var(--fg); border-color: var(--border); }
.btn-ghost:hover { background: var(--muted); }
.btn-cream { background: var(--cream); color: var(--fg); box-shadow: var(--shadow-soft); }
.btn-outline-cream { border: 1px solid color-mix(in oklab, var(--cream) 40%, transparent); color: var(--cream); }
.btn-outline-cream:hover { background: color-mix(in oklab, var(--cream) 10%, transparent); }

/* ============ Header ============ */
#site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  padding: 1.25rem 0; transition: all .3s ease;
}
#site-header.scrolled {
  padding: 0.75rem 0;
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.625rem; }
.brand-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--gradient-warm); color: var(--primary-fg);
  font-family: var(--font-display); font-size: 1.125rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.brand-loc { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-fg); margin-top: 2px; }
.nav-main { display: none; gap: 1.75rem; font-size: 0.875rem; }
.nav-main a { color: color-mix(in oklab, var(--fg) 75%, transparent); transition: color .2s; }
.nav-main a:hover { color: var(--primary); }
@media (min-width: 768px) { .nav-main { display: inline-flex; } }

/* ============ Hero ============ */
.hero { padding: 7rem 0 3rem; }
@media (min-width: 768px) { .hero { padding: 8rem 0 5rem; } }
.hero-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; } }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border); background: var(--card);
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-fg);
}
.eyebrow-pill .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--primary); }
.hero h1 {
  margin: 1.25rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.02; font-weight: 600;
}
.hero .lead { max-width: 32rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 2.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid var(--border); max-width: 28rem; }
.stats dt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-fg); }
.stats dd { margin: 0; }
.stats dd.num { margin-top: 4px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.stats dd.suf { font-size: 0.75rem; color: var(--muted-fg); }

.hero-media { position: relative; }
.hero-glow { position: absolute; inset: -0.75rem; background: var(--gradient-warm); opacity: 0.2; filter: blur(40px); border-radius: 2rem; }
.hero-frame { position: relative; overflow: hidden; border-radius: 1.75rem; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.hero-frame img { width: 100%; height: 460px; object-fit: cover; }
@media (min-width: 768px) { .hero-frame img { height: 560px; } }
.hero-overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.hero-caption {
  position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  display: flex; align-items: end; justify-content: space-between; color: var(--cream);
}
.hero-caption .display-sm { color: var(--cream); }
.rating { background: color-mix(in oklab, var(--cream) 95%, transparent); color: var(--fg); padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }

/* ============ Sections ============ */
section { padding: 5rem 0; }
@media (min-width: 768px) { section { padding: 7rem 0; } }
.section-header { max-width: 38rem; margin: 0 auto 3rem; text-align: center; }
.section-header .display { margin-top: 0.75rem; }
.section-header .muted { margin-top: 1rem; }

.highlights {
  background: color-mix(in oklab, var(--card) 60%, transparent);
  border-block: 1px solid var(--border);
  padding: 4rem 0;
}
.grid-4 { display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card-hl { background: var(--bg); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-soft); transition: transform .2s, box-shadow .2s; }
.card-hl:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-hl .ico { font-size: 1.875rem; }
.card-hl h3 { margin-top: 1rem; font-size: 1.25rem; }
.card-hl p { margin: 0.25rem 0 0; font-size: 0.875rem; color: var(--muted-fg); }

.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 5fr 7fr; } }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tags span { border: 1px solid var(--border); background: var(--card); border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; color: var(--muted-fg); }

/* Gallery */
.gallery { background: color-mix(in oklab, var(--muted) 40%, transparent); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.gallery-item { overflow: hidden; border-radius: 1rem; border: 1px solid var(--border); box-shadow: var(--shadow-soft); aspect-ratio: 1; cursor: pointer; padding: 0; background: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover img { transform: scale(1.05); }
@media (min-width: 768px) {
  .gallery-item.span-big { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .gallery-item.span-wide { grid-column: span 2; aspect-ratio: 4 / 3; }
}

/* Amenities */
.amen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (min-width: 768px) { .amen-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .amen-grid { grid-template-columns: repeat(4, 1fr); } }
.amen-item { display: flex; align-items: center; gap: 0.75rem; border: 1px solid var(--border); background: var(--card); border-radius: 0.75rem; padding: 0.85rem 1rem; font-size: 0.875rem; }
.amen-item .check { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 999px; background: color-mix(in oklab, var(--secondary) 10%, transparent); color: var(--secondary); font-weight: 700; }

/* Rules */
.rules { background: color-mix(in oklab, var(--card) 60%, transparent); border-block: 1px solid var(--border); }
.rules-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .rules-grid { grid-template-columns: 1fr 1fr; } }
.card-soft { background: var(--bg); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-soft); }
.card-soft .ico { font-size: 1.875rem; }
.card-soft h3 { margin-top: 0.75rem; }
.card-soft ul { margin-top: 1.25rem; display: grid; gap: 0.625rem; color: color-mix(in oklab, var(--fg) 80%, transparent); }
.card-soft p { margin: 0.5rem 0; }

/* Pricing */
.pricing-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.tier { position: relative; border: 1px solid var(--border); background: var(--card); border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-soft); }
.tier h3 { font-size: 1.25rem; }
.tier .price { margin-top: 1rem; font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--primary); }
.tier .note { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); }
.tier .btn { width: 100%; justify-content: center; margin-top: 1.5rem; }
.tier.featured { background: var(--gradient-warm); color: var(--primary-fg); border-color: transparent; transform: translateY(-0.5rem); box-shadow: var(--shadow-card); }
.tier.featured .price, .tier.featured h3 { color: var(--primary-fg); }
.tier.featured .note { color: color-mix(in oklab, var(--primary-fg) 85%, transparent); }
.tier .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--secondary); color: var(--secondary-fg);
  padding: 0.25rem 0.75rem; border-radius: 999px;
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
}

/* Location */
.location { background: color-mix(in oklab, var(--card) 60%, transparent); border-block: 1px solid var(--border); }
.location-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .location-grid { grid-template-columns: 8fr 4fr; } }
.map-frame { overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Reviews */
.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review { background: var(--card); border: 1px solid var(--border); border-radius: 1.5rem; padding: 1.75rem; box-shadow: var(--shadow-soft); margin: 0; }
.review .stars { color: var(--accent); letter-spacing: 0.1em; }
.review blockquote { margin: 1rem 0 0; font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: color-mix(in oklab, var(--fg) 90%, transparent); line-height: 1.4; }
.review figcaption { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.review .avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; background: var(--gradient-warm); color: var(--primary-fg); font-size: 0.875rem; font-weight: 600; }
.review figcaption b { display: block; font-size: 0.875rem; font-weight: 600; }
.review figcaption small { display: block; font-size: 0.75rem; color: var(--muted-fg); }

/* Final CTA */
.final-cta .container { max-width: 960px; }
.cta-card { position: relative; overflow: hidden; background: var(--gradient-warm); color: var(--primary-fg); border-radius: 2rem; padding: 2.5rem; box-shadow: var(--shadow-card); }
@media (min-width: 768px) { .cta-card { padding: 4rem; } }
.cta-glow { position: absolute; right: -80px; top: -80px; width: 256px; height: 256px; border-radius: 999px; background: color-mix(in oklab, var(--cream) 10%, transparent); filter: blur(60px); }
.eyebrow.on-warm { color: color-mix(in oklab, var(--primary-fg) 80%, transparent); }
.cta-card h2 { margin-top: 0.75rem; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; }
.cta-card h2 em { font-style: italic; }
.cta-card p { margin-top: 1rem; max-width: 32rem; color: color-mix(in oklab, var(--primary-fg) 85%, transparent); }

/* Footer */
.footer { border-top: 1px solid var(--border); background: color-mix(in oklab, var(--card) 40%, transparent); padding: 3rem 0; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer .brand { display: inline-flex; align-items: center; gap: 0.625rem; }
.footer a { display: block; margin-top: 0.25rem; font-size: 0.875rem; transition: color .2s; }
.footer a:hover { color: var(--primary); }
.footer .eyebrow { color: var(--muted-fg); margin-bottom: 0.5rem; }
.copyright { margin-top: 2.5rem; font-size: 0.75rem; color: var(--muted-fg); }

/* Floating WhatsApp */
.float-wpp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 30;
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--secondary); color: var(--secondary-fg);
  font-size: 1.5rem; box-shadow: var(--shadow-card);
  transition: transform .2s;
}
.float-wpp:hover { transform: scale(1.1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 50;
  /*display: flex; align-items: center; justify-content: center;*/
  padding: 1rem;
  background: color-mix(in oklab, var(--fg) 85%, transparent);
  backdrop-filter: blur(4px);
}
.lightbox img { max-height: 90vh; max-width: 95vw; border-radius: 1rem; box-shadow: var(--shadow-card); }
.lb-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px; border-radius: 999px; border: 0;
  background: var(--bg); color: var(--fg); font-size: 1.5rem; cursor: pointer;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
