:root {
  --green: #173d2b;
  --green-2: #21553b;
  --gold: #d5a94f;
  --gold-light: #efcf8c;
  --cream: #f6f1e8;
  --white: #ffffff;
  --charcoal: #1e2522;
  --muted: #67716c;
  --line: #dde3df;
  --shadow: 0 18px 50px rgba(20, 47, 34, 0.12);
  --radius: 18px;
  --transition: 0.28s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}
body.no-scroll { overflow: hidden; }
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: 20px 0; }
.alt-bg { background: var(--cream); }
h1, h2, h3 { font-family: "Playfair Display", serif; line-height: 1.15; }
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
h3 { font-size: 1.4rem; }
p { color: var(--muted); }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #1f241f; }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border-color: rgba(255,255,255,.65); color: white; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.btn-dark { background: var(--green); color: white; }
.full-width-btn { width: 100%; }

.topbar { background: var(--green); color: rgba(255,255,255,.82); font-size: .82rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-actions { display: flex; align-items: center; gap: 18px; }
.topbar select { background: transparent; border: 0; color: white; outline: none; }
.topbar option { color: #222; }

header { position: fixed; top: 38px; left: 0; right: 0; z-index: 50; transition: background var(--transition), box-shadow var(--transition), top var(--transition); }
header.scrolled { top: 0; background: rgba(255,255,255,.96); box-shadow: 0 8px 30px rgba(0,0,0,.08); backdrop-filter: blur(15px); }
.navbar { min-height: 84px; display: flex; align-items: center; gap: 24px; color: white; }
header.scrolled .navbar { color: var(--charcoal); }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark { width: 44px; background: none; height: 44px; border-radius: 50%; display: grid; place-items: center; color: var(--green); font-weight: 800; }
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand strong { letter-spacing: .04em; font-size: .9rem; }
.brand small { font-size: .62rem; letter-spacing: .18em; margin-top: 4px; opacity: .78; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: .9rem; font-weight: 600; }
.nav-links a { position: relative; }
.nav-links a::after { content:""; position:absolute; left:0; right:100%; bottom:-6px; height:2px; background:var(--gold); transition:right var(--transition); }
.nav-links a:hover::after { right:0; }
.menu-toggle { display:none; background:none; border:0; font-size:1.6rem; color:inherit; }

.hero { min-height: 100vh; position: relative; display: flex; align-items: center; color: white; background: url("https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=2000&q=85") center/cover fixed; }
.hero-overlay { position:absolute; inset:0; background: linear-gradient(90deg, rgba(8,29,20,.82), rgba(10,26,19,.45) 55%, rgba(0,0,0,.2)); }
.hero-content { position: relative; z-index: 2; padding-top: 110px; max-width: 940px; }
.hero-content p { max-width: 760px; color: rgba(255,255,255,.85); font-size: clamp(1rem, 2vw, 1.25rem); margin: 24px 0 30px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.hero-trust { display:flex; gap:25px; flex-wrap:wrap; margin-top:28px; color:rgba(255,255,255,.78); font-size:.9rem; }
.scroll-indicator { position:absolute; bottom:26px; left:50%; transform:translateX(-50%); width:44px; height:44px; border:1px solid rgba(255,255,255,.4); border-radius:50%; display:grid; place-items:center; font-size:1.5rem; animation:bounce 2s infinite; }

.search-panel-wrap { position: relative; z-index: 5; margin-top: -52px; }
.search-panel { background:white; padding: 22px; border-radius:var(--radius); box-shadow:var(--shadow); display:grid; grid-template-columns: 1.2fr 1.2fr 1fr .7fr auto; gap:14px; align-items:end; }
.search-panel label, .booking-form label { display:grid; gap:7px; font-size:.78rem; font-weight:700; color:#49534e; }
input, select, textarea { width:100%; border:1px solid var(--line); border-radius:10px; padding:12px 13px; background:white; color:var(--charcoal); outline:none; }
input:focus, select:focus, textarea:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(213,169,79,.16); }

.section-heading { display:flex; align-items:end; justify-content:space-between; gap:40px; margin-bottom:38px; }
.section-heading > p { max-width:500px; }
.section-heading.light h2, .section-heading.light p { color:white; }
.destination-grid { display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:320px; gap:18px; }
.destination-card { position:relative; overflow:hidden; border-radius:var(--radius); background-image:var(--bg); background-size:cover; background-position:center; transition:transform var(--transition); }
.destination-card:hover { transform:translateY(-5px); }
.destination-card.large { grid-column:span 2; }
.card-shade { position:absolute; inset:0; background:linear-gradient(to top, rgba(8,24,17,.88), rgba(8,24,17,.06) 65%); }
.destination-content { position:absolute; z-index:2; left:24px; right:24px; bottom:22px; color:white; }
.destination-content span { color:var(--gold-light); font-size:.8rem; text-transform:uppercase; letter-spacing:.15em; }
.destination-content h3 { font-size:1.75rem; margin:4px 0 7px; }
.destination-content p { color:rgba(255,255,255,.75); margin-bottom:10px; }
.destination-content a { font-weight:700; font-size:.9rem; }

.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.about-media { position:relative; }
.about-media img { height:620px; object-fit:cover; border-radius:var(--radius); }
.experience-badge { position:absolute; right:-30px; bottom:35px; width:190px; padding:20px; border-radius:16px; background:var(--green); color:white; box-shadow:var(--shadow); }
.experience-badge strong { display:block; font-family:"Playfair Display"; font-size:2rem; color:var(--gold); }
.experience-badge span { font-size:.82rem; }
.about-copy > p { margin:24px 0; }
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; margin:28px 0 34px; }
.values-grid div { border-left:3px solid var(--gold); padding-left:14px; }
.values-grid strong, .values-grid span { display:block; }
.values-grid span { color:var(--muted); font-size:.9rem; margin-top:5px; }

.filter-row { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:28px; }
.filter-btn { border:1px solid var(--line); background:white; padding:9px 16px; border-radius:999px; font-weight:700; color:var(--muted); }
.filter-btn.active { background:var(--green); color:white; border-color:var(--green); }
.package-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.package-card { border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:white; transition:transform var(--transition), box-shadow var(--transition); }
.package-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.package-card.hidden { display:none; }
.package-image { position:relative; }
.package-image img { height:235px; object-fit:cover; }
.package-tag { position:absolute; top:14px; left:14px; background:var(--gold); color:#1d241f; padding:6px 10px; border-radius:999px; font-size:.72rem; font-weight:800; }
.package-body { padding:22px; }
.package-meta { display:flex; justify-content:space-between; color:var(--gold); text-transform:uppercase; letter-spacing:.08em; font-size:.72rem; font-weight:800; }
.package-body h3 { margin:9px 0; }
.package-body ul { list-style:none; display:grid; gap:7px; margin:17px 0; color:var(--muted); font-size:.88rem; }
.package-body li::before { content:"✓"; color:var(--gold); margin-right:8px; }
.package-footer { border-top:1px solid var(--line); padding-top:16px; display:flex; align-items:end; justify-content:space-between; gap:15px; }
.package-footer small, .package-footer strong { display:block; }
.package-footer strong { font-size:1.35rem; color:var(--green); }
.text-btn { border:0; background:none; color:var(--green); font-weight:800; }
.center-action { text-align:center; margin-top:36px; }

.experience-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.experience-grid article { border:1px solid rgba(255,255,255,.14); border-radius:16px; padding:22px; background:rgba(255,255,255,.05); transition:transform var(--transition), background var(--transition); }
.experience-grid article:hover { transform:translateY(-5px); background:rgba(255,255,255,.1); }
.experience-grid span { font-size:1.8rem; }
.experience-grid h3 { margin:10px 0 6px; font-size:1.18rem; }
.experience-grid p { color:rgba(255,255,255,.65); font-size:.88rem; }

.masonry-gallery { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:190px; gap:12px; }
.gallery-item { border:0; border-radius:14px; overflow:hidden; background:none; }
.gallery-item img { height:100%; object-fit:cover; transition:transform .45s ease; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item.tall { grid-row:span 2; }
.gallery-item.wide { grid-column:span 2; }

.testimonial-section { background:#eef3ef; }
.testimonial-layout { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:center; }
.testimonial-controls { display:flex; gap:10px; margin-top:25px; }
.testimonial-controls button { width:44px; height:44px; border-radius:50%; border:1px solid var(--line); background:white; }
.testimonial-card { background:white; border-radius:var(--radius); box-shadow:var(--shadow); padding:36px; }
.stars { color:var(--gold); letter-spacing:.2em; }
blockquote { font-family:"Playfair Display"; font-size:1.6rem; line-height:1.5; margin:20px 0 25px; }
.guest { display:flex; align-items:center; gap:13px; }
.avatar { width:48px; height:48px; border-radius:50%; background:var(--green); color:white; display:grid; place-items:center; font-weight:800; }
.guest strong, .guest span { display:block; }
.guest span { color:var(--muted); font-size:.84rem; }

.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.blog-card { background:white; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); }
.blog-card img { height:230px; object-fit:cover; }
.blog-card div { padding:22px; }
.blog-card span { color:var(--gold); text-transform:uppercase; letter-spacing:.12em; font-size:.72rem; font-weight:800; }
.blog-card h3 { margin:9px 0; }
.blog-card a { display:inline-block; margin-top:15px; font-weight:800; color:var(--green); }

.booking-section { background:linear-gradient(120deg, #173d2b, #0d291d); color:white; }
.booking-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; align-items:start; }
.booking-copy { position:sticky; top:120px; }
.booking-copy p { color:rgba(255,255,255,.7); margin:22px 0; }
.booking-benefits { display:grid; gap:12px; color:rgba(255,255,255,.86); }
.booking-form { background:white; color:var(--charcoal); border-radius:var(--radius); padding:28px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.full-width { grid-column:1/-1; }
.consent { display:flex !important; grid-template-columns:auto 1fr !important; align-items:start; margin:16px 0; font-weight:500 !important; }
.consent input { width:auto; margin-top:4px; }
.form-message { margin-top:12px; font-size:.9rem; }

.faq-grid { display:grid; grid-template-columns:.7fr 1.3fr; gap:60px; }
.accordion-item { border-bottom:1px solid var(--line); }
.accordion-item button { width:100%; background:none; border:0; padding:20px 0; display:flex; justify-content:space-between; text-align:left; font-weight:800; }
.accordion-content { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.accordion-content p { padding-bottom:20px; }
.accordion-item.active .accordion-content { max-height:180px; }
.accordion-item.active button span { transform:rotate(45deg); }

.contact-section { background:#101b16; color:white; }
.contact-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.contact-card { border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:22px; background:rgba(255,255,255,.04); }
.contact-card span { font-size:1.5rem; }
.contact-card h3 { margin:10px 0 5px; }
.contact-card p { color:rgba(255,255,255,.66); }
.map-placeholder { height:330px; margin-top:25px; border-radius:var(--radius); background:linear-gradient(rgba(23,61,43,.2),rgba(23,61,43,.2)), url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1600&q=80") center/cover; display:grid; place-items:center; text-align:center; }
.map-placeholder div { background:rgba(10,25,18,.85); padding:20px 28px; border-radius:12px; }
.map-placeholder strong, .map-placeholder span { display:block; }

.newsletter { background:var(--gold); padding:45px 0; }
.newsletter-inner { display:flex; justify-content:space-between; align-items:center; gap:30px; }
.newsletter .eyebrow { color:var(--green); }
.newsletter form { display:flex; width:min(500px,100%); }
.newsletter input { border-radius:999px 0 0 999px; border:0; }
.newsletter button { border-radius:0 999px 999px 0; background:var(--green); color:white; }

footer { background:#08130e; color:white; padding:65px 0 24px; }
.footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:45px; }
.footer-grid h3 { font-size:1rem; margin-bottom:14px; }
.footer-grid a:not(.brand) { display:block; color:rgba(255,255,255,.65); margin:8px 0; }
.footer-grid p { color:rgba(255,255,255,.55); margin:16px 0; }
.socials { display:flex; gap:8px; }
.socials a { width:34px; height:34px; border:1px solid rgba(255,255,255,.18); border-radius:50%; display:grid !important; place-items:center; margin:0 !important; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:40px; padding-top:20px; display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.45); font-size:.8rem; }

.whatsapp-float { position:fixed; right:22px; width:54px; height:54px; border-radius:50%; display:grid; place-items:center; z-index:60; box-shadow:var(--shadow); }
.whatsapp-float { bottom:22px;  font-size:1.7rem; }
.chat-header { background:var(--green); color:white; padding:16px; display:flex; justify-content:space-between; }
.chat-header span { display:block; font-size:.75rem; opacity:.7; }
.chat-header button { background:none; border:0; color:white; font-size:1.4rem; }
.chat-body { min-height:180px; padding:16px; background:#f5f7f5; }
.chat-body p { background:white; padding:10px 12px; border-radius:10px; }


.lightbox { position:fixed; inset:0; background:rgba(0,0,0,.92); z-index:100; display:grid; place-items:center; opacity:0; pointer-events:none; transition:opacity var(--transition); padding:30px; }
.lightbox.open { opacity:1; pointer-events:auto; }
.lightbox img { max-width:1000px; max-height:78vh; object-fit:contain; }
.lightbox p { color:white; margin-top:12px; }
.lightbox-close { position:absolute; top:20px; right:24px; border:0; background:none; color:white; font-size:2rem; }

.cookie-banner { position:fixed; left:18px; right:18px; bottom:18px; z-index:90; background:white; border-radius:14px; box-shadow:0 18px 60px rgba(0,0,0,.2); padding:16px 18px; display:flex; align-items:center; justify-content:space-between; gap:20px; transform:translateY(150%); transition:transform .35s ease; }
.cookie-banner.show { transform:none; }
.cookie-banner div { display:flex; gap:8px; }

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

@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

@media (max-width: 1020px) {
  .topbar { display:none; }
  header, header.scrolled { top:0; }
  .navbar { min-height:72px; }
  .nav-links { position:absolute; top:72px; left:18px; right:18px; background:white; color:var(--charcoal); border-radius:14px; box-shadow:var(--shadow); display:none; flex-direction:column; align-items:stretch; padding:18px; }
  .nav-links.open { display:flex; }
  .menu-toggle { display:block; }
  .nav-cta { display:none; }
  .search-panel { grid-template-columns:1fr 1fr; }
  .search-panel .btn { grid-column:1/-1; }
  .package-grid { grid-template-columns:repeat(2,1fr); }
  .experience-grid { grid-template-columns:repeat(3,1fr); }
  .contact-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 760px) {
  .section { padding:70px 0; }
  .hero { background-attachment:scroll; }
  .hero-content { padding-top:85px; }
  .hero-trust { gap:10px 18px; }
  .search-panel-wrap { margin-top:-22px; }
  .search-panel { grid-template-columns:1fr; }
  .search-panel .btn { grid-column:auto; }
  .section-heading { display:block; }
  .section-heading > p { margin-top:12px; }
  .destination-grid { grid-template-columns:1fr; grid-auto-rows:300px; }
  .destination-card.large { grid-column:auto; }
  .about-grid, .testimonial-layout, .booking-grid, .faq-grid { grid-template-columns:1fr; gap:35px; }
  .about-media img { height:460px; }
  .experience-badge { right:14px; }
  .values-grid { grid-template-columns:1fr; }
  .package-grid, .blog-grid { grid-template-columns:1fr; }
  .experience-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:1fr 1fr; gap:25px 0; }
  .stats-grid div:nth-child(2) { border-right:0; }
  .masonry-gallery { grid-template-columns:1fr 1fr; grid-auto-rows:170px; }
  .gallery-item.wide { grid-column:span 2; }
  .booking-copy { position:static; }
  .form-grid { grid-template-columns:1fr; }
  .full-width { grid-column:auto; }
  .newsletter-inner { display:block; }
  .newsletter form { margin-top:20px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 520px) {
  .container { width:min(100% - 24px,1180px); }
  .brand strong { font-size:.78rem; }
  .experience-grid, .contact-grid, .footer-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr; }
  .stats-grid div { border-right:0; border-bottom:1px solid rgba(31,36,31,.18); padding-bottom:16px; }
  .masonry-gallery { display:grid; grid-template-columns:1fr; grid-auto-rows:250px; }
  .gallery-item.wide, .gallery-item.tall { grid-column:auto; grid-row:auto; }
  .footer-bottom, .cookie-banner { flex-direction:column; align-items:flex-start; }
  .cookie-banner div { width:100%; }
  .cookie-banner .btn { flex:1; }
}
