:root {
  --forest-950: #052e1a;
  --forest-900: #063d24;
  --forest-800: #0b5633;
  --forest-700: #16703f;
  --forest-100: #e9f3e9;
  --cream: #f7f3e8;
  --paper: #fffdf8;
  --ink: #152019;
  --muted: #657068;
  --line: rgba(16, 73, 43, 0.15);
  --accent: #ed6b1f;
  --accent-dark: #cf5010;
  --whatsapp: #25d366;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(8, 49, 29, 0.12);
  --shadow-strong: 0 26px 70px rgba(5, 46, 26, 0.22);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --header-h: 64px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}
h1,
h2 {
  margin-bottom: 0.9rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(2.7rem, 12.6vw, 4rem);
  line-height: 0.98;
}
h2 {
  font-size: clamp(2.05rem, 8.2vw, 3.2rem);
  line-height: 1.02;
}
h3 {
  line-height: 1.2;
}
::selection {
  background: rgba(237, 107, 31, 0.22);
}

:focus-visible {
  outline: 3px solid #f5a15e;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 0.7rem;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: white;
  color: var(--forest-950);
  box-shadow: var(--shadow);
}
.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: max(0.45rem, env(safe-area-inset-top));
  left: 0.55rem;
  right: 0.55rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: rgba(5, 46, 26, 0.84);
  color: #fff;
  box-shadow: 0 16px 36px rgba(3, 24, 13, 0.2);
  backdrop-filter: blur(16px);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 46, 26, 0.96);
  box-shadow: 0 10px 28px rgba(3, 24, 13, 0.28);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 0.08rem;
}
.brand-name {
  display: none;
  text-transform: uppercase;
}
.brand-name b {
  display: block;
  color: #d7edcf;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.language-toggle {
  display: inline-flex;
  padding: 0.18rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.language-toggle button {
  min-width: 31px;
  min-height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
}
.language-toggle button.is-active {
  background: #fff;
  color: var(--forest-950);
}

.header-book {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}
.menu-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}
.menu-toggle span {
  width: 16px;
  height: 1.5px;
  display: block;
  border-radius: 2px;
  background: white;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.desktop-nav {
  display: none;
}
.mobile-menu {
  position: fixed;
  z-index: -1;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.25rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(5, 46, 26, 0.98);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: 0.2s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 720px;
  height: min(92svh, 820px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--forest-950);
}
.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: 52% 50%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 24, 13, 0.26) 0%,
      rgba(2, 24, 13, 0.12) 27%,
      rgba(2, 24, 13, 0.55) 58%,
      rgba(2, 24, 13, 0.95) 100%
    ),
    linear-gradient(90deg, rgba(2, 24, 13, 0.35), transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 1.5rem, 720px);
  margin: 0 auto;
  padding: 7rem 0 2rem;
}
.hero-kicker,
.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--forest-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-kicker {
  width: fit-content;
  padding: 0.36rem 0.65rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  letter-spacing: 0.06em;
}
.eyebrow.light {
  color: #9ed3ab;
}
.hero h1 {
  max-width: 9ch;
}
.hero-copy {
  max-width: 35rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
}
.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.button,
.text-cta {
  border: 0;
  font-weight: 800;
  text-align: center;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1rem;
  border-radius: 13px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}
.button:active,
.text-cta:active {
  transform: translateY(1px);
}
.button.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(237, 107, 31, 0.28);
}
.button.primary:hover,
.button.accent:hover {
  background: var(--accent-dark);
}
.button.outline-light {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(4, 35, 20, 0.22);
  color: #fff;
  backdrop-filter: blur(5px);
}
.button.secondary {
  background: #e9eee9;
  color: var(--forest-900);
}
.button.accent {
  background: var(--accent);
  color: #fff;
}
.button.whatsapp {
  background: var(--whatsapp);
  color: #073d1d;
}
.button.full {
  width: 100%;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero-trust div {
  text-align: center;
  padding: 0 0.35rem;
}
.hero-trust div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-trust b {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.25;
}
.trust-icon {
  color: #bde5c5;
  font-size: 1rem;
}

.quick-proof {
  position: relative;
  z-index: 10;
  width: calc(100% - 1.5rem);
  max-width: 720px;
  margin: -1.65rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(250, 244, 228, 0.96);
  box-shadow: var(--shadow);
}
.quick-proof div {
  padding: 0.85rem 0.4rem;
  text-align: center;
}
.quick-proof div + div {
  border-left: 1px solid var(--line);
}
.quick-proof strong {
  display: block;
  color: var(--forest-800);
  font-size: 1.35rem;
  line-height: 1;
}
.quick-proof span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.15;
}

.section {
  width: min(calc(100% - 1.5rem), var(--container));
  margin: 0 auto;
  padding: 3.2rem 0;
}
.section-heading {
  margin-bottom: 1.35rem;
}
.section-heading.compact {
  margin-bottom: 1rem;
}
.section-heading p:not(.eyebrow),
.story-copy p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
}
.story-section {
  padding-top: 3.2rem;
}
.story-copy h2 {
  max-width: 12ch;
}

.story-collage {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  height: 420px;
}
.story-collage figure {
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: #dce7db;
}
.story-collage .story-main {
  grid-row: 1 / -1;
}
.story-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trips-section {
  padding-top: 2.6rem;
}
.trip-list {
  display: grid;
  gap: 0.85rem;
}
.trip-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(8, 49, 29, 0.07);
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.trip-card.is-active {
  border-color: rgba(237, 107, 31, 0.75);
  box-shadow: 0 14px 30px rgba(237, 107, 31, 0.13);
}
.trip-image {
  position: relative;
  min-height: 190px;
  overflow: hidden;
}
.trip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trip-image.landscape img {
  object-position: center;
}
.trip-badge {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  max-width: calc(100% - 1rem);
  padding: 0.27rem 0.45rem;
  border-radius: 7px;
  background: rgba(5, 46, 26, 0.88);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.1;
}
.trip-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.75rem;
}
.trip-body h3 {
  margin: 0 0 0.3rem;
  color: var(--forest-950);
  font-size: 0.98rem;
}
.trip-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}
.trip-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.45rem;
  border-top: 1px solid var(--line);
}
.trip-meta span {
  color: var(--muted);
  font-size: 0.65rem;
}
.trip-meta strong {
  color: var(--forest-800);
  font-size: 0.82rem;
}
.text-cta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.15rem 0 0;
  background: transparent;
  color: var(--accent-dark);
  font-size: 0.75rem;
}

.package-section {
  padding-top: 1rem;
}
.package-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--forest-950);
  color: #fff;
  box-shadow: var(--shadow-strong);
}
.package-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.package-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.package-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 46, 26, 0.55));
}
.best-value {
  position: absolute;
  z-index: 2;
  left: 0.85rem;
  top: 0.85rem;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}
.package-content {
  padding: 1.25rem;
}
.package-content h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 8.8vw, 3.1rem);
}
.package-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}
.package-price {
  display: grid;
  gap: 0.18rem;
  margin: 1.1rem 0;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.package-price > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
}
.package-price strong {
  color: #ff9a59;
  font-size: 1.45rem;
}
.package-price strong small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
}
.package-price > small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.package-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin: 1rem 0;
}
.package-icons div {
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 0.25rem;
  padding: 0.65rem 0.2rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}
.package-icons span {
  color: #bde5c5;
}
.package-icons b {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.58rem;
  line-height: 1.15;
}
.package-includes {
  margin: 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}
.package-includes summary {
  padding: 0.8rem;
  cursor: pointer;
  color: #d9f0de;
  font-size: 0.78rem;
  font-weight: 800;
}
.package-includes ul {
  margin: 0;
  padding: 0 1rem 1rem 2rem;
}
.package-includes li {
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.detail-section {
  padding-top: 3.6rem;
}
.detail-tabs {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0 0 0.55rem;
  scrollbar-width: none;
}
.detail-tabs::-webkit-scrollbar {
  display: none;
}
.detail-tabs button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
}
.detail-tabs button.is-active {
  border-color: var(--forest-700);
  background: var(--forest-800);
  color: white;
}
.detail-card {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(8, 49, 29, 0.07);
}
.detail-card h3 {
  margin-bottom: 0.55rem;
  color: var(--forest-950);
  font-size: 1.1rem;
}
.detail-card > p {
  color: var(--muted);
  font-size: 0.83rem;
}
.facilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.facilities span {
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  background: var(--forest-100);
  color: var(--forest-800);
  font-size: 0.67rem;
  font-weight: 700;
}
.availability-note {
  margin: 0.8rem 0 0;
  padding: 0.85rem;
  border-left: 3px solid var(--accent);
  background: rgba(237, 107, 31, 0.06);
  color: var(--muted);
  font-size: 0.76rem;
}

.booking-wrap {
  scroll-margin-top: calc(var(--header-h) + 18px);
  background: linear-gradient(165deg, var(--forest-950), #0b442b);
  color: #fff;
}
.booking-inner {
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
}
.booking-heading h2 {
  max-width: 10ch;
}
.booking-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.booking-card {
  margin-top: 1.4rem;
  padding: 1rem;
  border-radius: 22px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}
.booking-progress {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 0.55rem;
  margin: 0 auto 1.25rem;
  max-width: 220px;
}
.booking-progress > span {
  height: 2px;
  background: #d9e3da;
}
.step-dot {
  width: 38px;
  height: 38px;
  border: 1px solid #cdd9cf;
  border-radius: 50%;
  background: #edf2ed;
  color: #788279;
  font-weight: 800;
}
.step-dot.is-active {
  border-color: var(--forest-700);
  background: var(--forest-700);
  color: white;
}
.booking-step {
  display: grid;
  gap: 0.9rem;
}
.booking-step[hidden] {
  display: none !important;
}
.step-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.15rem;
}
.step-title > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-950);
  color: white;
  font-weight: 800;
}
.step-title h3 {
  margin: 0;
  font-size: 1rem;
}
.step-title p {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.field {
  display: grid;
  gap: 0.38rem;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d3ddd4;
  border-radius: 11px;
  background: #fffefb;
  color: var(--ink);
  padding: 0.72rem 0.78rem;
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 84px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(22, 112, 63, 0.11);
}
.field input[aria-invalid="true"] {
  border-color: var(--danger);
}
.error-message {
  min-height: 1em;
  color: var(--danger);
  font-size: 0.68rem;
  font-weight: 600;
}

.pax-control {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  overflow: hidden;
  border: 1px solid #d3ddd4;
  border-radius: 11px;
  background: white;
}
.pax-control button {
  border: 0;
  background: #edf3ed;
  color: var(--forest-900);
  font-size: 1.2rem;
  font-weight: 800;
}
.pax-control input {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-weight: 800;
  appearance: textfield;
}
.pax-control input::-webkit-outer-spin-button,
.pax-control input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.trip-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
}
.trip-mode legend {
  margin-bottom: 0.38rem;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 700;
}
.trip-mode label {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid #d3ddd4;
  border-radius: 11px;
  background: #f4f7f3;
  font-size: 0.72rem;
  font-weight: 700;
}
.trip-mode input {
  accent-color: var(--forest-700);
}

.price-summary {
  display: grid;
  gap: 0.5rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: #edf4eb;
}
.price-summary.is-private {
  background: #f5eee7;
}
.price-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.74rem;
}
.price-summary strong {
  color: var(--forest-800);
}
.price-summary p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}
.final-summary {
  display: grid;
  gap: 0.4rem;
  padding: 0.9rem;
  border-radius: 14px;
  background: #f2f3ec;
  color: var(--muted);
  font-size: 0.72rem;
}
.final-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.final-summary strong {
  color: var(--ink);
  text-align: right;
}
.booking-buttons {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0.55rem;
}
.form-footnote {
  margin: -0.15rem 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  text-align: center;
}

.gallery-section {
  padding-top: 4rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 10px 25px rgba(8, 49, 29, 0.07);
}
.gallery-grid figure.featured {
  grid-row: span 2;
}
.gallery-grid img {
  height: 185px;
  object-fit: cover;
}
.gallery-grid .featured img {
  height: 405px;
}
.gallery-grid figcaption {
  padding: 0.65rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
}

.founder-section {
  position: relative;
  z-index: 1;

  margin-top: -2rem;
  padding: 3.8rem 0.75rem 3rem;

  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(105, 174, 120, 0.1),
      transparent 38%
    ),
    linear-gradient(180deg, #052e1a 0%, #063722 28%, #073d25 60%, #052e1a 100%);

  color: #fff;
}

.founder-section::before {
  content: "";
  position: absolute;

  left: 0;
  right: 0;
  top: -36px;
  height: 40px;

  background: linear-gradient(180deg, #052e1a 0%, #063722 55%, #063d24 100%);

  z-index: -1;
}

.founder-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}
.founder-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}
.founder-photo {
  position: relative;
  height: 330px;
  overflow: hidden;
}
.founder-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(5, 46, 26, 0.78));
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
.founder-photo span {
  position: absolute;
  z-index: 2;
  left: 0.9rem;
  bottom: 0.9rem;
  padding: 0.35rem 0.58rem;
  border-radius: 7px;
  background: var(--accent);
  color: white;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}
.founder-copy {
  padding: 1.2rem;
}
.founder-kicker {
  margin-bottom: 0.4rem;
  color: #9ed3ab;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.founder-copy h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 8.2vw, 3rem);
}
.founder-credential {
  margin-bottom: 1rem;
  color: #ff9a59;
  font-size: 0.84rem;
  font-weight: 800;
}
.founder-copy blockquote {
  margin: 0;
  padding: 1rem;
  border-left: 3px solid #92cda0;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.83);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.45;
}
.founder-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}
.founder-values span {
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 700;
}

.site-footer {
  padding: 2.8rem 0.75rem 5rem;
  background: #031f12;
  color: #fff;
}
.footer-inner,
.footer-bottom {
  width: min(100%, var(--container));
  margin: 0 auto;
}
.footer-inner {
  display: grid;
  gap: 1.8rem;
}
.footer-brand {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 0.8rem;
}
.footer-brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
}
.footer-brand strong {
  font-size: 1.05rem;
}
.footer-brand p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.footer-links h3 {
  margin: 0 0 0.55rem;
  color: #9ed3ab;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links a {
  min-height: 35px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.floating-whatsapp {
  position: fixed;
  z-index: 70;
  right: 0.8rem;
  bottom: max(0.8rem, env(safe-area-inset-bottom));
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--whatsapp);
  color: #073d1d;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 0.65rem;
  font-weight: 900;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.floating-whatsapp img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

body.whatsapp-muted .floating-whatsapp {
  opacity: 0.15;
  pointer-events: none;
  transform: scale(0.88);
}

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  width: min(calc(100% - 1.5rem), 440px);
  transform: translate(-50%, 25px);
  padding: 0.82rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(5, 46, 26, 0.97);
  color: white;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  pointer-events: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Founder diposisikan lebih awal setelah hero: mobile-first trust section */
@media (max-width: 759px) {
  .founder-section {
    margin-top: 1rem;
    padding-top: 2.75rem;
    padding-bottom: 3rem;
    border-radius: 28px 28px 0 0;
  }

  .founder-card {
    border-radius: 22px;
  }

  .founder-photo {
    height: 310px;
  }

  .founder-copy {
    padding: 1.15rem;
  }

  .founder-copy h2 {
    max-width: 14ch;
  }
}

@media (max-width: 759px) {
  .founder-section {
    margin-top: -2rem;
    padding-top: 3.8rem;
    padding-bottom: 3rem;
    border-radius: 0;
  }

  .founder-inner {
    position: relative;
    z-index: 2;
  }

  .founder-card {
    border-radius: 22px;
  }

  .founder-photo {
    height: 310px;
  }

  .founder-photo img {
    object-position: 50% 45%;
  }

  .founder-copy {
    padding: 1.15rem;
  }

  .founder-copy h2 {
    max-width: 14ch;
  }
}

@media (max-width: 370px) {
  .header-book {
    display: none;
  }
  .hero-actions {
    grid-template-columns: 1fr;
  }
  .trip-card {
    grid-template-columns: 105px minmax(0, 1fr);
  }
  .trip-image {
    min-height: 205px;
  }
}

@media (min-width: 520px) {
  .brand-name {
    display: inline-block;
  }
  .hero-content,
  .quick-proof {
    width: calc(100% - 2rem);
  }
  .trip-list {
    grid-template-columns: 1fr 1fr;
  }
  .trip-card {
    grid-template-columns: 1fr;
  }
  .trip-image {
    height: 240px;
    min-height: 0;
  }
  .trip-body {
    min-height: 220px;
  }
}

@media (min-width: 760px) {
  :root {
    --header-h: 70px;
  }
  .site-header {
    left: 50%;
    right: auto;
    width: min(calc(100% - 2rem), var(--container));
    transform: translateX(-50%);
    min-height: 62px;
    padding: 0.38rem 0.5rem;
    border-radius: 999px;
  }
  .brand {
    padding-right: 0.7rem;
  }
  .brand-name {
    display: inline-block;
  }
  .menu-toggle,
  .mobile-menu {
    display: none;
  }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    margin-left: auto;
  }
  .desktop-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 0.8rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
  }
  .desktop-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  .header-actions {
    margin-left: 0.4rem;
  }

  .hero {
    height: min(92svh, 900px);
    min-height: 720px;
    align-items: flex-end;
  }
  .hero-content {
    width: min(calc(100% - 2rem), var(--container));
    padding-top: 0;
    padding-bottom: 3.5rem;
  }
  .hero-content h1 {
    max-width: 13ch;
    font-size: clamp(3.4rem, 5vw, 5rem);
    line-height: 0.95;
  }
  .hero-copy {
    font-size: 1.05rem;
  }
  .hero-actions {
    width: 420px;
  }
  .hero-trust {
    width: 560px;
  }
  .hero-media img {
    object-position: center 45%;
  }

  .quick-proof {
    max-width: 760px;
    margin-top: -1.8rem;
  }
  .quick-proof div {
    padding: 1rem;
  }
  .quick-proof strong {
    font-size: 1.7rem;
  }

  .story-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    align-items: center;
  }
  .story-collage {
    margin: 0;
    height: 500px;
  }
  .trip-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .trip-card {
    grid-template-columns: 170px 1fr;
  }
  .trip-image {
    height: auto;
    min-height: 230px;
  }
  .trip-body {
    min-height: 0;
  }

  .package-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .package-media {
    height: auto;
    min-height: 560px;
  }
  .package-content {
    padding: 2.2rem;
    align-self: center;
  }

  .detail-section {
    max-width: 900px;
  }
  .booking-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2rem;
    align-items: start;
  }
  .booking-card {
    margin: 0;
    padding: 1.35rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-grid figure.featured {
    grid-row: auto;
  }
  .gallery-grid img,
  .gallery-grid .featured img {
    height: 320px;
  }

  .founder-section {
    margin-top: 1.5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .founder-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    min-height: 520px;
  }
  .founder-photo {
    height: 100%;
    min-height: 520px;
  }
  .founder-copy {
    padding: 2.2rem;
    align-self: center;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .trip-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .trip-card {
    grid-template-columns: 1fr;
  }
  .trip-image {
    height: 250px;
    min-height: 0;
  }
  .trip-body {
    min-height: 215px;
  }
}

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

/* =========================================
   SMOOTH HERO → FOUNDER TRANSITION
========================================= */

.quick-proof {
  position: relative;
  z-index: 10;
}

.founder-section {
  position: relative;
  z-index: 1;

  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(105, 174, 120, 0.10),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      #052e1a 0%,
      #063420 35%,
      #073a23 70%,
      #052e1a 100%
    );
}

.founder-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -36px;
  height: 40px;

  background: linear-gradient(
    180deg,
    #052e1a 0%,
    #063420 100%
  );

  z-index: -1;
}

@media (max-width: 759px) {
  .founder-section {
    margin-top: -2rem;
    padding-top: 3.8rem;
    padding-bottom: 3rem;
    border-radius: 0;
  }
}
