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

:root {
  --green: #2C4A1E;
  --green-light: #3D6429;
  --amber: #C8860A;
  --amber-light: #E09B1A;
  --ivory: #F5EDD6;
  --mist: #E8E0D0;
  --charcoal: #1A1A18;
  --text: #2E2A22;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--ivory);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(26,26,24,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,134,10,0.25);
  transition: background 0.3s;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 52px; width: auto; background: rgba(255,255,255,0.92); padding: 5px 10px; border-radius: 4px; }
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a {
  text-decoration: none; color: var(--mist);
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--amber-light); }
.nav-book {
  background: var(--amber); color: var(--charcoal) !important;
  padding: 0.5rem 1.4rem; font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-book:hover { background: var(--amber-light) !important; color: var(--charcoal) !important; }

/* HERO */
.hero {
  height: 100vh; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0d1f07 0%, #1a2e0e 40%, #2c3a10 70%, #1a1209 100%);
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 60% 45%, rgba(200,134,10,0.12) 0%, transparent 60%),
                    radial-gradient(ellipse at 20% 70%, rgba(44,74,30,0.4) 0%, transparent 50%);
}
.hero-landscape {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 1; height: 45%;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1rem;
  margin-top: -4rem;
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--amber-light); font-family: 'Lato', sans-serif; font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--ivory);
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.hero h1 em {
  display: block; font-style: italic; font-weight: 400;
  color: rgba(245,237,214,0.6); font-size: 0.55em;
  letter-spacing: 0.05em; margin-top: 0.3em;
}
.hero-sub {
  margin-top: 2rem; color: rgba(245,237,214,0.75);
  font-size: 0.9rem; letter-spacing: 0.1em;
  max-width: 420px; margin-left: auto; margin-right: auto;
}
.hero-cta {
  display: inline-block; margin-top: 2.5rem;
  background: var(--amber); color: var(--charcoal);
  text-decoration: none; padding: 0.9rem 2.5rem;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover { background: var(--amber-light); transform: translateY(-2px); }
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(245,237,214,0.4); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* RIVER DIVIDER */
.river-divider {
  width: 100%; height: 60px; overflow: hidden;
  display: block; line-height: 0;
}
.river-divider.dark { background: var(--charcoal); }
.river-divider.light { background: var(--ivory); }

/* SECTIONS */
section { padding: 6rem 3rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--amber); font-weight: 700; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15; color: var(--green);
  max-width: 680px;
}
.section-body {
  margin-top: 1.5rem; max-width: 620px;
  color: var(--text); font-size: 1rem; line-height: 1.8;
}

/* ABOUT */
.about { background: var(--charcoal); }
.about .section-title { color: var(--ivory); }
.about .section-body { color: rgba(245,237,214,0.8); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-top: 3.5rem;
}
.about-stat-row {
  display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; color: var(--amber); line-height: 1;
  font-weight: 600;
}
.stat-label {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(245,237,214,0.5); margin-top: 0.3rem;
}
.about-map-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,134,10,0.2);
  padding: 2rem; border-radius: 2px;
}
.about-map-box p {
  color: rgba(245,237,214,0.7); font-size: 0.9rem; line-height: 1.7;
}
.about-map-box strong { color: var(--amber-light); font-weight: 400; }

/* ACCOMMODATION */
.accommodation { background: var(--ivory); }
.acc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.acc-card {
  background: white; border: 1px solid var(--mist);
  padding: 2rem; position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.acc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,74,30,0.1); }
.acc-card-icon {
  width: 40px; height: 40px; margin-bottom: 1.2rem;
  color: var(--amber);
}
.acc-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--green); margin-bottom: 0.75rem;
}
.acc-card p { font-size: 0.88rem; line-height: 1.7; color: #5a5449; }
.acc-card .badge {
  display: inline-block; margin-top: 1rem;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--amber); border: 1px solid var(--amber);
  padding: 0.2rem 0.6rem;
}
.acc-featured {
  grid-column: span 2;
  background: var(--green);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: center;
}
.acc-featured h3 { color: var(--ivory); }
.acc-featured p { color: rgba(245,237,214,0.75); }
.acc-featured .badge { color: var(--amber-light); border-color: var(--amber-light); }
.acc-featured-img {
  width: 100%; height: 220px; object-fit: cover;
  display: block;
}
@media(max-width: 700px){ .acc-featured { grid-column: span 1; grid-template-columns: 1fr; } }

/* RESTAURANT */
.restaurant { background: #1C1A16; }
.restaurant .section-title { color: var(--ivory); }
.rest-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 3.5rem; align-items: start;
}
.rest-body { color: rgba(245,237,214,0.75); font-size: 1rem; line-height: 1.85; }
.rest-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.rest-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 0.9rem 1rem;
  border-left: 2px solid var(--amber);
  background: rgba(255,255,255,0.03);
}
.rest-feature p { font-size: 0.88rem; color: rgba(245,237,214,0.7); }
.rest-feature strong { color: var(--amber-light); display: block; margin-bottom: 0.15rem; font-size: 0.82rem; letter-spacing: 0.05em; }
.rest-gallery {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px; gap: 0.5rem;
}
.rest-gallery-img {
  width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.9);
  transition: filter 0.3s;
}
.rest-gallery-img:hover { filter: brightness(1.05); }
.rest-gallery-img:first-child { grid-row: span 2; }
@media(max-width:700px){ .rest-layout{grid-template-columns:1fr;} .rest-gallery{grid-template-rows:180px 180px;} }

/* ACTIVITIES */
.activities { background: var(--ivory); }
.act-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.act-card {
  padding: 2.2rem 1.8rem;
  border-top: 3px solid transparent;
  background: white;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}
.act-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.act-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.act-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--green); margin-bottom: 0.6rem;
}
.act-card p { font-size: 0.87rem; color: #5a5449; line-height: 1.7; }
@media(max-width:700px){ .act-grid{grid-template-columns:1fr 1fr;} }

/* CONFERENCING */
.conferencing { background: var(--green); }
.conferencing .section-label { color: var(--amber-light); }
.conferencing .section-title { color: var(--ivory); }
.conf-layout {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 4rem; margin-top: 3.5rem; align-items: start;
}
.conf-body { color: rgba(245,237,214,0.8); font-size: 1rem; line-height: 1.85; }
.conf-specs {
  margin-top: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.conf-spec {
  background: rgba(0,0,0,0.2);
  padding: 1.2rem; border-bottom: 1px solid rgba(200,134,10,0.3);
}
.conf-spec-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 0.3rem; }
.conf-spec-val { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--ivory); }
.conf-aside { display: flex; flex-direction: column; gap: 1rem; }
.conf-aside-box {
  background: rgba(0,0,0,0.2);
  padding: 1.8rem;
  border: 1px solid rgba(200,134,10,0.2);
}
.conf-aside-box h4 {
  font-family: 'Playfair Display', serif;
  color: var(--amber-light); font-size: 1.1rem; margin-bottom: 0.6rem;
}
.conf-aside-box p { font-size: 0.87rem; color: rgba(245,237,214,0.7); line-height: 1.7; }
@media(max-width:700px){ .conf-layout{grid-template-columns:1fr;} }

/* CONTACT */
.contact { background: var(--charcoal); padding-bottom: 0; }
.contact .section-title { color: var(--ivory); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 3.5rem; padding-bottom: 5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item-label { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.3rem; }
.contact-item-val { color: rgba(245,237,214,0.85); font-size: 0.95rem; line-height: 1.6; }
.contact-item-val a { color: rgba(245,237,214,0.85); text-decoration: none; }
.contact-item-val a:hover { color: var(--amber-light); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(200,134,10,0.2);
  color: var(--ivory); padding: 0.85rem 1rem; font-family: 'Lato', sans-serif;
  font-size: 0.9rem; font-weight: 300; width: 100%;
  outline: none; transition: border-color 0.2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(245,237,214,0.3); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--amber); }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form button {
  background: var(--amber); color: var(--charcoal);
  border: none; padding: 1rem 2rem;
  font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover { background: var(--amber-light); }
@media(max-width:700px){ .contact-grid{grid-template-columns:1fr;} }

/* FOOTER */
footer {
  background: #0E0E0C; padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(200,134,10,0.15);
}
.footer-copy { font-size: 0.7rem; color: rgba(245,237,214,0.25); letter-spacing: 0.1em; }

/* RESPONSIVE */
@media(max-width: 800px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { display: none; }
  section { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

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

/* WHATSAPP WIDGET */
.wa-widget {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.wa-bubble {
  background: #25D366; color: white;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; outline: none;
}
.wa-bubble:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-bubble svg { width: 32px; height: 32px; }
.wa-bubble::before {
  content: ''; position: absolute;
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}
.wa-popup {
  background: white; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  width: 300px; overflow: hidden;
  transform: scale(0.85) translateY(10px);
  transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.wa-popup.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.wa-popup-header {
  background: #075E54; padding: 1.2rem 1.4rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.wa-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #25D366; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-header-text { flex: 1; }
.wa-header-name { color: white; font-weight: 700; font-size: 0.95rem; }
.wa-header-status { color: rgba(255,255,255,0.7); font-size: 0.75rem; margin-top: 0.1rem; }
.wa-popup-body { padding: 1.2rem; background: #ECE5DD; }
.wa-message {
  background: white; border-radius: 8px 8px 8px 2px;
  padding: 0.75rem 1rem; font-size: 0.88rem; line-height: 1.5;
  color: #303030; box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  max-width: 240px;
}
.wa-message-time { font-size: 0.65rem; color: #999; margin-top: 0.3rem; text-align: right; }
.wa-popup-footer { padding: 1rem 1.2rem; background: white; }
.wa-start-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  background: #25D366; color: white;
  text-decoration: none; padding: 0.75rem 1.2rem; border-radius: 6px;
  font-weight: 700; font-size: 0.85rem; width: 100%;
  transition: background 0.2s;
}
.wa-start-btn:hover { background: #22c05e; }
.wa-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 1.1rem; line-height: 1;
}
