/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --primary:       #1B4D4B;
  --primary-light: #2A7B79;
  --accent:        #C5A880;
  --bg:            #F8F7F4;
  --surface:       #FFFFFF;
  --text:          #1A1A1A;
  --text-muted:    #6B6B6B;
  --border:        #E4E2DC;
  --booked:        #E8D5D5;
  --booked-text:   #A0706F;
  --radius:        8px;
  --shadow:        0 2px 16px rgba(0,0,0,.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.14);
  --nav-h:         64px;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.6; }
img  { display: block; width: 100%; height: 100%; object-fit: cover; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul   { list-style: none; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .15s;
}
.btn:active { transform: scale(.97); }
.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover { background: var(--primary-light); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.7);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: var(--surface);
  box-shadow: 0 1px 12px rgba(0,0,0,.1);
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: color .3s;
}
.nav.scrolled .nav__logo { color: var(--primary); }
.nav__links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav__links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  transition: color .2s;
}
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav__links a:hover { color: #fff; }
.nav.scrolled .nav__links a:hover { color: var(--primary); }
.lang-switcher {
  display: flex;
  gap: 4px;
}
.lang-btn {
  padding: 5px 10px;
  border-radius: 3px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
.lang-btn:hover,
.lang-btn.active {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.nav.scrolled .lang-btn { color: var(--text-muted); }
.nav.scrolled .lang-btn:hover,
.nav.scrolled .lang-btn.active {
  background: var(--primary);
  color: #fff;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background .3s;
}
.nav.scrolled .nav__burger span { background: var(--text); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img { object-position: center; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 760px;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  font-weight: 300;
}
.hero__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ─── HIGHLIGHTS BAR ─────────────────────────────────────── */
.highlights {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 8px;
  text-align: center;
}
.highlight__icon {
  width: 28px; height: 28px;
  color: var(--primary);
}
.highlight__icon svg { width: 100%; height: 100%; }
.highlight__value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}
.highlight__label {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .03em;
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery-section { padding: 80px 0 60px; }
.gallery-section .section-title { text-align: center; }
.gallery { overflow: hidden; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
  padding: 0 6px;
}
.gallery__item {
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 4px;
}
.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item img {
  transition: transform .4s ease, opacity .2s;
}
.gallery__item:hover img { transform: scale(1.04); }

/* ─── LIGHTBOX ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.93);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox__img-wrap {
  width: 90vw;
  max-width: 1100px;
  max-height: 85vh;
}
.lightbox__img {
  width: auto;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  margin: auto;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 1.8rem;
  opacity: .7;
  transition: opacity .2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  padding: 0 20px;
  opacity: .6;
  transition: opacity .2s;
  line-height: 1;
}
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: 0; }
.lightbox__nav--next { right: 0; }
.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: 80px 0;
  background: var(--surface);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about__intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.floors { display: flex; flex-direction: column; gap: 24px; }
.floor {
  padding: 20px 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.floor__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.floor__num {
  width: 36px; height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  flex-shrink: 0;
}
.floor__num svg { width: 18px; height: 18px; }
.floor__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
}
.floor__desc { font-size: .92rem; color: var(--text-muted); line-height: 1.7; }
.about__img {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border-radius: var(--radius);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--shadow-lg);
}

/* ─── AMENITIES ──────────────────────────────────────────── */
.amenities {
  padding: 80px 0;
  background: var(--bg);
}
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.amenity:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.amenity svg {
  width: 28px; height: 28px;
  color: var(--primary);
  flex-shrink: 0;
}
.amenity span { font-size: .85rem; color: var(--text-muted); font-weight: 500; line-height: 1.3; }

/* ─── ACTIVITIES ─────────────────────────────────────────── */
.activities {
  padding: 80px 0;
  background: var(--primary);
}
.activities .section-title { color: #fff; }
.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.activity-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  color: #fff;
  transition: background .2s;
}
.activity-card:hover { background: rgba(255,255,255,.12); }
.activity-card__icon { font-size: 2rem; margin-bottom: 14px; }
.activity-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.activity-card p { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.6; }

/* ─── CALENDAR ───────────────────────────────────────────── */
.calendar-section { padding: 80px 0; background: var(--surface); }
.calendar-legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: .85rem;
  color: var(--text-muted);
}
.legend-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  display: inline-block;
}
.legend-dot--available { background: #D1EDD4; border: 1.5px solid #7ABF82; }
.legend-dot--booked    { background: var(--booked); border: 1.5px solid #C9A0A0; }
.legend-label { margin-right: 16px; }
.calendar-wrapper { overflow: hidden; }
.calendar-nav {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cal-nav-btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--primary);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  transition: background .2s;
}
.cal-nav-btn:hover { background: var(--primary); color: #fff; }
.calendar-months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  flex: 1;
}
.cal-month { flex: 1; }
.cal-month__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day-header {
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .05em;
  padding: 6px 0;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  border-radius: 4px;
  transition: background .15s;
}
.cal-day--empty {}
.cal-day--past { color: var(--border); }
.cal-day--available {
  background: #EEF7EF;
  color: var(--text);
}
.cal-day--booked {
  background: var(--booked);
  color: var(--booked-text);
  text-decoration: line-through;
  cursor: not-allowed;
}
.cal-day--today {
  font-weight: 700;
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}
.calendar-loading {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
  font-size: .9rem;
}
.calendar-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.calendar-cta__desc {
  color: var(--text-muted);
  font-size: .95rem;
  flex: 1;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section { padding: 80px 0; background: var(--bg); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-rules {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
}
.contact-rule svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.contact-hidden { text-align: center; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .92rem;
  font-weight: 500;
  transition: background .2s, transform .15s;
}
.contact-link:active { transform: scale(.98); }
.contact-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-link--phone { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.contact-link--phone:hover { background: var(--border); }
.contact-link--email { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.contact-link--email:hover { background: var(--border); }
.contact-link--whatsapp { background: #25D366; color: #fff; }
.contact-link--whatsapp:hover { background: #1ebe5d; }
.contact-link--whatsapp svg { width: 20px; height: 20px; }
.contact__platform {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.airbnb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.airbnb-link:hover { color: #FF5A5F; }
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.contact__map iframe { width: 100%; height: 100%; }

/* ─── PROMO BANNER ───────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, #1a6b3a 0%, #25964f 100%);
  color: #fff;
  padding: 18px 0;
}
.promo-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.promo-banner__tag {
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.promo-banner__text {
  flex: 1;
  font-size: .97rem;
  font-weight: 500;
  margin: 0;
  min-width: 180px;
}
.promo-banner__btn {
  background: #fff;
  color: #1a6b3a;
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.promo-banner__btn:hover { background: #e6f5ec; color: #155230; }
@media (max-width: 600px) {
  .promo-banner__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .promo-banner__btn { align-self: stretch; text-align: center; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--primary); padding: 40px 0; color: rgba(255,255,255,.7); }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 4px;
}
.footer__copy,
.footer__addr { font-size: .82rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .highlights__grid { grid-template-columns: repeat(3, 1fr); }
  .amenities__grid  { grid-template-columns: repeat(3, 1fr); }
  .activities__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid    { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--large { grid-column: span 1; grid-row: span 1; }
  .about__inner { grid-template-columns: 1fr; }
  .about__img { position: static; height: 320px; }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__map { height: 300px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--surface);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
    gap: 0;
  }
  .nav__links.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: .95rem;
  }
  .nav.scrolled .lang-btn { color: var(--text-muted); }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .amenities__grid  { grid-template-columns: repeat(2, 1fr); }
  .activities__grid { grid-template-columns: 1fr; }
  .gallery__grid    { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .calendar-months  { grid-template-columns: 1fr 1fr; }
  .calendar-cta     { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .highlights__grid { grid-template-columns: repeat(2, 1fr); }
  .amenities__grid  { grid-template-columns: 1fr 1fr; }
  .gallery__grid    { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .hero__ctas       { flex-direction: column; align-items: center; }
  .lang-switcher    { gap: 2px; }
}
