/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #0f2e2e;
  --green-mid: #1a4040;
  --gold: #c8a96a;
  --gold-dark: #a8893a;
  --white: #ffffff;
  --cream: #faf8f5;
  --text: #2d2d2d;
  --text-light: #666;
  --border: #e8e0d4;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* === CONTAINER === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--green); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,106,0.35); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-ghost { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.4); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* === HEADER === */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: var(--transition);
}
.header.scrolled {
  background: rgba(15,46,46,0.97); backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 20px 24px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.logo-icon { color: var(--gold); font-size: 20px; }
.logo-text { font-family: var(--font-serif); font-size: 22px; font-weight: 400; }
.logo-text strong { font-weight: 700; }
.nav { display: flex; gap: 8px; margin-left: auto; }
.nav a { color: rgba(255,255,255,0.85); padding: 8px 12px; border-radius: 6px; font-size: 15px; }
.nav a:hover { color: var(--gold); background: rgba(255,255,255,0.08); }
.header-cta { display: flex; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: var(--transition); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; gap: 8px; padding: 16px 24px 24px; background: var(--green); }
.mobile-menu a { color: rgba(255,255,255,0.9); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 16px; }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* === HERO === */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,46,46,0.75) 0%, rgba(15,46,46,0.45) 50%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; text-align: center;
  padding: 120px 24px 80px; color: var(--white);
}
.hero-tag { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero-title {
  font-family: var(--font-serif); font-size: clamp(42px, 7vw, 80px);
  font-weight: 600; line-height: 1.15; margin-bottom: 20px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 40px; letter-spacing: 1px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 60px; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.badge {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 12px;
  padding: 14px 20px; min-width: 80px;
}
.badge span { font-size: 22px; }
.badge small { font-size: 11px; color: rgba(255,255,255,0.75); white-space: nowrap; }
.hero-dots { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* === HIGHLIGHTS === */
.highlights { background: var(--green); padding: 32px 0; }
.hl-grid { display: flex; justify-content: space-around; gap: 16px; flex-wrap: wrap; }
.hl-item { display: flex; align-items: center; gap: 14px; color: var(--white); }
.hl-icon { font-size: 28px; }
.hl-item strong { display: block; font-size: 15px; }
.hl-item small { font-size: 12px; color: rgba(255,255,255,0.6); }

/* === SECTIONS === */
.section { padding: 96px 0; }
.section-dark { background: var(--green); color: var(--white); }
.section-dark .section-tag { color: var(--gold); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,0.7); }
.section-reserve { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 48px); font-weight: 600; line-height: 1.2; margin-bottom: 20px; }
.section-sub { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* === ROOMS === */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.room-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--white); border: 1px solid var(--border); }
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.room-img { height: 240px; background-size: cover; background-position: center; position: relative; }
.room-badge { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--green); padding: 6px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.room-badge-gold { background: var(--green); color: var(--gold); }
.room-body { padding: 24px; }
.room-body h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 10px; }
.room-body p { color: var(--text-light); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.room-features { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.room-features li { font-size: 13px; color: var(--text-light); }
.room-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.room-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 12px; color: var(--text-light); }
.room-price strong { font-size: 24px; color: var(--green); }
.room-price small { font-size: 12px; color: var(--text-light); }

/* === SPLIT LAYOUT === */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 280px 200px; gap: 12px; }
.sg-main { grid-column: 1 / -1; border-radius: var(--radius-lg); background-size: cover; background-position: center; }
.sg-small { border-radius: var(--radius); background-size: cover; background-position: center; }
.split-content p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 17px; line-height: 1.75; }
.section:not(.section-dark) .split-content p { color: var(--text-light); }
.check-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { font-size: 15px; color: rgba(255,255,255,0.85); }
.section:not(.section-dark) .check-list li { color: var(--text); }
.split-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* === EVENTS === */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card { border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.event-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.event-img { height: 220px; background-size: cover; background-position: center; }
.event-body { padding: 24px; }
.event-tag { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.event-body h3 { font-family: var(--font-serif); font-size: 20px; color: var(--white); margin-bottom: 10px; }
.event-body p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.6; }

/* === PACKAGES === */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card { padding: 36px 28px; border-radius: var(--radius-lg); border: 2px solid var(--border); text-align: center; transition: var(--transition); position: relative; }
.pkg-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-featured { border-color: var(--gold); background: var(--green); color: var(--white); }
.pkg-featured h3, .pkg-featured p { color: var(--white); }
.pkg-featured .pkg-price strong { color: var(--gold); }
.pkg-label { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--green); padding: 4px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; white-space: nowrap; }
.pkg-icon { font-size: 40px; margin-bottom: 16px; }
.pkg-card h3 { font-family: var(--font-serif); font-size: 22px; margin-bottom: 12px; }
.pkg-card p { color: var(--text-light); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }
.pkg-price { margin-bottom: 24px; }
.pkg-price strong { font-size: 32px; color: var(--green); }
.pkg-price small { font-size: 14px; color: var(--text-light); }

/* === BOOKING === */
.booking-form { max-width: 780px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.booking-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.form-input { padding: 12px 16px; border: 2px solid var(--border); border-radius: 8px; font-size: 15px; font-family: var(--font-sans); transition: var(--transition); background: var(--white); color: var(--text); }
.form-input:focus { outline: none; border-color: var(--gold); }
.booking-note { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-light); }
.booking-note a { color: var(--green); font-weight: 600; }
.booking-note a:hover { color: var(--gold); }

/* === REVIEWS === */
.reviews-score { display: flex; align-items: center; gap: 20px; justify-content: center; margin-top: 24px; margin-bottom: 0; }
.score-big { font-family: var(--font-serif); font-size: 72px; font-weight: 700; color: var(--green); line-height: 1; }
.score-info { text-align: left; }
.stars { color: var(--gold); font-size: 22px; letter-spacing: 2px; }
.score-info div:nth-child(2) { font-size: 16px; font-weight: 600; margin: 4px 0; }
.score-info small { color: var(--text-light); font-size: 13px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--cream); transition: var(--transition); }
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.review-card p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.review-author strong { display: block; font-size: 14px; }
.review-author small { font-size: 12px; color: var(--text-light); }

/* === CONTACT === */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info .section-title { color: var(--white); margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 16px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 15px; color: rgba(255,255,255,0.8); }
.contact-item a:hover { color: var(--gold); }

/* === FOOTER === */
.footer { background: #0a1f1f; color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; transition: var(--transition); }
.social-links a:hover { background: var(--gold); color: var(--green); }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links a:hover { color: var(--gold); }

/* === STICKY MOBILE CTA === */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; }
.sticky-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 18px; font-weight: 600; font-size: 15px; transition: var(--transition); }
.sticky-call { background: var(--green); color: var(--white); }
.sticky-call:hover { background: var(--green-mid); }
.sticky-reserve { background: var(--gold); color: var(--green); }
.sticky-reserve:hover { background: var(--gold-dark); }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 998;
  background: #25d366; color: white; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001;
  background: var(--green); color: var(--white);
  padding: 20px 24px; display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%); transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 14px; color: rgba(255,255,255,0.85); flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--gold); }
.cookie-btns { display: flex; gap: 12px; }
.btn-cookie-reject { padding: 10px 20px; background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); border-radius: 6px; cursor: pointer; font-size: 13px; transition: var(--transition); }
.btn-cookie-reject:hover { border-color: var(--white); color: var(--white); }
.btn-cookie-accept { padding: 10px 20px; background: var(--gold); border: none; color: var(--green); border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; transition: var(--transition); }
.btn-cookie-accept:hover { background: var(--gold-dark); }

/* === ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .rooms-grid, .events-grid, .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split-layout { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .header-inner { padding: 16px 20px; }
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .hero-content { padding: 100px 20px 100px; }
  .hero-badges { gap: 12px; }
  .badge { padding: 10px 14px; }
  .hl-grid { justify-content: flex-start; gap: 24px 40px; }
  .rooms-grid, .events-grid, .packages-grid { grid-template-columns: 1fr; }
  .split-layout, .split-layout.split-reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-gallery { grid-template-rows: 220px 160px; }
  .contact-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .sticky-cta { display: flex; }
  .whatsapp-float { bottom: 80px; right: 16px; }
  body { padding-bottom: 64px; }
  .reviews-score { flex-direction: column; text-align: center; }
  .score-info { text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .booking-grid { grid-template-columns: 1fr; }
  .split-btns { flex-direction: column; }
  .hero-badges { display: none; }
  .section-header { margin-bottom: 40px; }
}
