:root {
  --c-bg: #e3e1dc;
  --c-paper: #f7f3ea;
  --c-dark: #10130f;
  --c-ink: #192017;
  --c-muted: #6f7569;
  --c-accent: #374336;
  --c-moss: #5f6c4d;
  --c-sand: #c8b37a;
  --c-wood: #6d4a2d;
  --c-water: #162d2a;
  --c-line: rgba(16, 19, 15, 0.14);
  --font-display: "Syncopate", sans-serif;
  --font-body: "Manrope", sans-serif;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--c-bg); }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a, button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--c-sand); outline-offset: 4px; }
.display { font-family: var(--font-display); letter-spacing: 0; }

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header-h);
  padding: 18px clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  color: white;
  transition: background 220ms ease, min-height 220ms ease, padding 220ms ease, color 220ms ease;
}
.site-header.is-scrolled, .site-header.is-open {
  min-height: 72px;
  background: rgba(16, 19, 15, 0.9);
  backdrop-filter: blur(18px);
}
.brand-link { display: inline-flex; align-items: center; min-width: 150px; }
.brand-logo-shell { display: inline-flex; align-items: center; min-height: 46px; position: relative; }
.brand-logo { width: clamp(118px, 12vw, 172px); height: auto; max-height: 58px; object-fit: contain; }
.brand-logo-shell.is-missing .brand-logo { display: none; }
.brand-fallback {
  display: none;
  max-width: 180px;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 0.62rem;
  line-height: 1.35;
  text-transform: uppercase;
}
.brand-logo-shell.is-missing .brand-fallback { display: inline-block; }

.desktop-nav, .header-actions, .mobile-menu nav, .footer-grid nav, .footer-grid div {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-nav { justify-content: center; }
.desktop-nav a, .language-link, .footer-grid a {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.desktop-nav a { opacity: 0.82; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"], .footer-grid a:hover { opacity: 1; color: var(--c-sand); }
.header-actions { justify-content: end; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--c-paper);
  color: var(--c-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); background: var(--c-sand); color: var(--c-dark); }
.btn:disabled { cursor: not-allowed; opacity: 0.55; transform: none; }
.btn-small { min-height: 42px; padding: 0 16px; }
.btn-ghost { background: transparent; color: white; }
.text-link {
  width: max-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.text-link:hover { color: var(--c-sand); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: currentColor;
  cursor: pointer;
  place-items: center;
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: currentColor; margin: 4px auto; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 36px;
  background: rgba(16, 19, 15, 0.98);
  color: white;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { align-items: flex-start; flex-direction: column; }
.mobile-menu nav a { font-family: var(--font-display); font-size: clamp(1.3rem, 8vw, 3.2rem); line-height: 1.1; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--c-dark);
}
.hero-compact { min-height: 78svh; }
.hero-img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-img { object-fit: cover; transform: scale(1.04); }
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(16, 19, 15, 0.28), rgba(16, 19, 15, 0.5) 45%, rgba(16, 19, 15, 0.92)),
    radial-gradient(circle at 70% 35%, rgba(200, 179, 122, 0.18), transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 40px) 0 clamp(54px, 10vh, 110px);
}
.hero-title {
  margin: 0;
  max-width: 1180px;
  font-size: clamp(3.05rem, 11vw, 10.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.hero-text { display: block; overflow: hidden; }
.hero-text span { display: block; }
.hero-copy { max-width: 620px; margin: 26px 0 0; font-size: clamp(1.05rem, 2vw, 1.45rem); color: rgba(255, 255, 255, 0.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--c-sand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.intro-section, .split-section, .contact-section, .detail-layout, .image-text-section, .activity-section {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(78px, 13vw, 170px) 0;
}
.intro-section, .split-section, .contact-section, .image-text-section, .activity-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: start;
}
.intro-section h2, .section-header h2, .split-section h2, .image-text-section h2, .contact-info h2, .booking-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 5.6vw, 5.8rem);
  line-height: 1;
  text-transform: uppercase;
}
.lead { margin: 0; font-size: clamp(1.25rem, 2.3vw, 2rem); font-weight: 360; line-height: 1.42; }
.fact-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 42px 0 0; }
.fact-row div { border-top: 1px solid var(--c-line); padding-top: 16px; }
.fact-row dt { color: var(--c-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; }
.fact-row dd { margin: 8px 0 0; font-size: 1.1rem; font-weight: 800; }

.section-header { width: min(1200px, calc(100% - 36px)); margin: 0 auto clamp(40px, 6vw, 80px); }
.section-header p:last-child { max-width: 720px; color: var(--c-muted); font-size: 1.05rem; }
.stack-section { padding: clamp(84px, 13vw, 170px) 0; background: var(--c-dark); color: var(--c-bg); }
.stack-container { width: min(1480px, calc(100% - 36px)); margin: 0 auto; }
.card-item { position: sticky; top: 88px; min-height: 76vh; display: grid; align-items: center; margin-bottom: 5vh; }
.card-inner, .experience-card-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #171a15;
  overflow: hidden;
}
.experience-card-inner { min-height: 100%; border-color: var(--c-line); background: var(--c-paper); color: var(--c-ink); }
.card-content { padding: clamp(28px, 5vw, 72px); display: flex; flex-direction: column; justify-content: space-between; gap: 34px; }
.card-content h3 { margin: 10px 0 12px; font-size: clamp(1.5rem, 3vw, 3.2rem); line-height: 1.06; }
.card-content p { max-width: 620px; margin: 0; color: currentColor; opacity: 0.72; }
.meta, .card-number { font-size: 0.74rem; font-weight: 850; letter-spacing: 0.16em; text-transform: uppercase; }
.card-number { color: var(--c-sand); }
.card-img-wrap { min-height: 420px; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms ease; }
.card-inner:hover .card-img, .experience-card-inner:hover .card-img { transform: scale(1.045); }

.value-section, .listing-section, .journey-section, .gallery-section, .policy-section, .booking-cta, .related-section {
  padding: clamp(76px, 12vw, 150px) 0;
}
.pillar-grid, .experience-grid, .related-grid {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--c-line);
}
.pillar { min-height: 260px; padding: 32px; background: var(--c-bg); }
.pillar h3 { margin: 0 0 18px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.pillar p { margin: 0; color: var(--c-muted); }
.activity-section { align-items: center; }
.activity-section > img, .image-text-section > img { width: 100%; min-height: 620px; object-fit: cover; }
.activity-cloud { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 30px 0 0; list-style: none; }
.activity-cloud li { border: 1px solid var(--c-line); padding: 9px 12px; color: var(--c-muted); font-size: 0.82rem; }

.journey-list {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  list-style: none;
  background: var(--c-line);
}
.journey-list li { min-height: 170px; display: grid; place-items: center; padding: 18px; background: var(--c-paper); text-align: center; font-weight: 850; }
.filter-bar { width: min(1480px, calc(100% - 36px)); margin: 0 auto 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.filter-btn.is-active, .filter-btn:hover { background: var(--c-dark); color: var(--c-bg); }
.experience-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); background: transparent; gap: 28px; }
.experience-card[hidden] { display: none; }

.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(34px, 7vw, 110px); }
.breadcrumb { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; color: var(--c-muted); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.detail-main h1 { margin: 0 0 28px; font-size: clamp(2.1rem, 5vw, 5.5rem); line-height: 1; }
.detail-main h2 { margin: 58px 0 18px; font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; padding: 0; list-style: none; }
.check-list li { border-top: 1px solid var(--c-line); padding-top: 12px; }
.timeline { border-top: 1px solid var(--c-line); }
.timeline section { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--c-line); }
.timeline span { color: var(--c-accent); font-weight: 850; }
.timeline p { margin: 0; }
.price-panel { position: sticky; top: 110px; align-self: start; padding: 28px; background: var(--c-dark); color: var(--c-bg); }
.price-panel p { margin: 0; color: var(--c-sand); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.price-panel strong { display: block; margin: 8px 0 22px; font-size: 1.2rem; }

.mini-gallery, .masonry-grid {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.mini-gallery button, .gallery-tile { position: relative; min-height: 280px; padding: 0; border: 0; background: var(--c-dark); overflow: hidden; cursor: pointer; }
.mini-gallery img, .gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease, opacity 500ms ease; }
.gallery-tile:nth-child(3n + 1) { grid-row: span 2; min-height: 570px; }
.gallery-tile:hover img, .mini-gallery button:hover img { transform: scale(1.04); opacity: 0.78; }
.gallery-tile span { position: absolute; left: 16px; bottom: 16px; color: white; font-size: 0.72rem; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
.lightbox { position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; padding: 24px; background: rgba(8, 10, 8, 0.92); }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 86vh; object-fit: contain; }
.lightbox button { position: fixed; top: 20px; right: 20px; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, 0.35); background: transparent; color: white; cursor: pointer; }

.booking-cta { width: min(1180px, calc(100% - 36px)); margin: 0 auto; text-align: center; }
.booking-cta p { max-width: 640px; margin: 22px auto 30px; color: var(--c-muted); }
.contact-section { grid-template-columns: 0.75fr 1.25fr; }
.contact-info { position: sticky; top: 110px; }
.contact-info p { border-top: 1px solid var(--c-line); padding: 18px 0; margin: 0; }
.contact-form { padding: clamp(24px, 5vw, 54px); background: var(--c-paper); }
.contact-form h2 { margin: 0 0 24px; }
.contact-form label {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--c-muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--c-line);
  background: white;
  color: var(--c-ink);
  padding: 14px 16px;
  min-height: 48px;
  letter-spacing: 0;
  text-transform: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--c-accent); }
.contact-form input:invalid:not(:focus):not(:placeholder-shown) { border-color: #8f362d; }
.form-note, .form-status { color: var(--c-muted); font-size: 0.9rem; }
.form-status { display: block; min-height: 28px; margin-top: 14px; }

.policy-section { width: min(1080px, calc(100% - 36px)); margin: 0 auto; }
.policy-block { padding: 34px 0; border-top: 1px solid var(--c-line); }
.policy-block h2 { margin: 0 0 12px; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; }
.policy-block p { margin: 0; font-size: 1.05rem; }

.site-footer {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--c-dark);
  color: white;
}
.site-footer > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.site-footer::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 19, 15, 0.55), var(--c-dark)); }
.footer-content { position: relative; z-index: 1; width: min(1480px, calc(100% - 36px)); padding: 80px 0 34px; }
.footer-headline { display: block; margin-bottom: clamp(60px, 10vw, 120px); font-family: var(--font-display); font-size: clamp(3rem, 10vw, 10rem); line-height: 0.95; text-transform: uppercase; }
.footer-headline:hover { color: var(--c-sand); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; border-top: 1px solid rgba(255, 255, 255, 0.18); padding-top: 36px; }
.footer-grid nav, .footer-grid div { align-items: flex-start; flex-direction: column; }
.footer-grid p { color: rgba(255, 255, 255, 0.62); }
.copyright { margin: 60px 0 0; color: rgba(255, 255, 255, 0.42); font-size: 0.78rem; }
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #1f7a4d;
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.whatsapp-float img {
  width: 29px;
  height: 29px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.word-wrap { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; }
.word-inner { display: inline-block; transform: none; }
.reveal { opacity: 0; transform: translateY(24px); }

@media (max-width: 1050px) {
  .desktop-nav, .header-actions .btn-small, .header-actions > .language-link { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .intro-section, .split-section, .contact-section, .detail-layout, .image-text-section, .activity-section { grid-template-columns: 1fr; }
  .pillar-grid, .journey-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-panel, .contact-info { position: static; }
}

@media (max-width: 780px) {
  :root { --header-h: 74px; }
  .site-header { min-height: var(--header-h); padding: 14px 18px; }
  .hero-title { font-size: clamp(2.5rem, 16vw, 5rem); }
  .hero-copy { font-size: 1rem; }
  .btn { width: 100%; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .card-item { position: relative; top: auto; min-height: auto; }
  .card-inner, .experience-card-inner { grid-template-columns: 1fr; min-height: auto; }
  .card-img-wrap { order: -1; min-height: 280px; }
  .pillar-grid, .experience-grid, .related-grid, .journey-list, .mini-gallery, .masonry-grid, .check-list, .footer-grid { grid-template-columns: 1fr; }
  .activity-section > img, .image-text-section > img, .gallery-tile:nth-child(3n + 1) { min-height: 340px; }
  .timeline section { grid-template-columns: 1fr; }
  .footer-headline { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .word-inner { opacity: 1 !important; transform: none !important; }
}
