:root {
  color-scheme: light;
  --ink: #141711;
  --muted: #676f63;
  --paper: #f7f6ef;
  --paper-deep: #e9ebdd;
  --surface: #ffffff;
  --line: rgba(20, 23, 17, 0.14);
  --accent: #2f7266;
  --accent-dark: #27466e;
  --navy: #314a72;
  --peach: #ffc79f;
  --coral: #f9798e;
  --sun: #ffc79f;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(49, 74, 114, 0.2);
  --container: 1200px;
  font-family:
    "Plus Jakarta Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(200, 111, 61, 0.14), transparent 26rem),
    linear-gradient(180deg, var(--paper), #f1f2e8 55%, #e7eadf);
  color: var(--ink);
  font-size: 16px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(20, 23, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 23, 17, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

p {
  max-width: 65ch;
  line-height: 1.7;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 12px 0 0;
  background: transparent;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: clamp(16px, 2vw, 28px);
  align-items: center;
  min-height: 72px;
  width: min(calc(100% - clamp(32px, 8vw, 112px)), var(--container));
  margin: 0 auto;
  padding: 14px clamp(18px, 2.4vw, 34px);
  border: 1px solid rgba(20, 23, 17, 0.08);
  border-radius: 24px;
  background: rgba(247, 246, 239, 0.9);
  backdrop-filter: blur(18px);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.has-shadow .header-shell {
  border-color: rgba(20, 23, 17, 0.1);
  background: rgba(247, 246, 239, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(47, 65, 52, 0.07);
}

.brand,
.main-nav,
.hero-actions,
.site-footer address {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(112px, 10vw, 138px);
  height: auto;
  max-height: none;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, serif;
  font-weight: 700;
}

.main-nav {
  justify-content: flex-end;
  min-width: 0;
  padding-right: clamp(6px, 1vw, 14px);
  flex-wrap: nowrap;
  gap: clamp(12px, 1.7vw, 22px);
  color: #394036;
  font-size: 0.86rem;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  z-index: 10;
  display: none;
  height: 30px;
  content: "";
}

.nav-group:hover::after,
.nav-group:focus-within::after {
  display: block;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-parent::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  order: 2;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.72;
  margin-left: 6px;
  transition: transform 200ms ease;
}

.nav-group:hover .nav-parent::before,
.nav-group:focus-within .nav-parent::before {
  transform: translateY(1px) rotate(-135deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 24px);
  left: -16px;
  z-index: 11;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  transform: translateY(-8px);
  border: 1px solid rgba(20, 23, 17, 0.1);
  border-radius: 28px;
  background: rgba(247, 246, 239, 0.98);
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 32px 80px rgba(20, 23, 17, 0.16);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.submenu::before {
  position: absolute;
  top: -24px;
  right: 0;
  left: 0;
  height: 24px;
  content: "";
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.submenu a {
  border-radius: 16px;
  padding: 12px 16px;
  color: #394036;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.18s ease, color 0.18s ease;
}
.submenu a:hover,
.submenu a:focus-visible {
  background: rgba(20, 23, 17, 0.05);
  color: var(--ink);
}

.submenu--articles {
  min-width: 320px;
  max-width: min(360px, calc(100vw - 48px));
  max-height: min(72vh, 520px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 114, 102, 0.28) transparent;
}

.submenu--articles::-webkit-scrollbar {
  width: 8px;
}

.submenu--articles::-webkit-scrollbar-track {
  background: transparent;
}

.submenu--articles::-webkit-scrollbar-thumb {
  background: rgba(47, 114, 102, 0.24);
  border-radius: 999px;
}

.submenu-label {
  display: block;
  padding: 8px 16px 6px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.submenu-label--spaced {
  margin-top: 8px;
  border-top: 1px solid rgba(20, 23, 17, 0.08);
  padding-top: 14px;
}

.submenu--articles a {
  display: grid;
  gap: 3px;
  white-space: normal;
  line-height: 1.25;
}

.submenu--articles a small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.submenu--articles a span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.submenu--articles .submenu-more-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  margin-top: 4px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.submenu--articles .submenu-more-link::after {
  content: "→";
  font-size: 0.95rem;
  line-height: 1;
}

/* ─── Mega Menu (Trip) ──────────────────────────── */
.nav-group--mega {
  /* Must be relative so the absolute mega menu is positioned from here,
     keeping the :hover chain unbroken (no gap between trigger and panel) */
  position: relative;
}

.submenu--mega {
  position: absolute;
  top: 100%;   /* flush with bottom of nav-group */
  left: -16px; /* align with the 'Trip' menu item */
  transform: translateY(-8px);
  width: min(680px, calc(100vw - 48px));
  min-width: 0;
  /* padding-top acts as the invisible bridge between trigger and panel */
  padding-top: 24px; /* increased to push modal down further */
  
  /* Reset inherited styles from .submenu */
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  /* Ensure it floats above everything */
  z-index: 20;
}

#mega-trip {
  width: min(820px, calc(100vw - 48px));
}

.nav-group--mega:hover .submenu--mega,
.nav-group--mega:focus-within .submenu--mega {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}


.mega-inner {
  display: grid;
  grid-template-columns: 260px 1px 1fr;
  min-height: 320px;
  background: rgba(247, 246, 239, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(20, 23, 17, 0.16);
  border: 1px solid rgba(20, 23, 17, 0.1);
}

#mega-trip .mega-inner {
  grid-template-columns: 220px 1px 180px 1px 1fr;
}

.mega-section-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
  padding: 0 4px;
}

/* Left: categories */
.mega-categories {
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-cat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  color: #394036;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}
.mega-cat-link:hover,
.mega-cat-link.is-active {
  background: rgba(20, 23, 17, 0.05);
  color: var(--ink);
}
.mega-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
}

/* Nav Actions & Lang Switcher */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  border-left: 1px solid rgba(20, 23, 17, 0.12);
  padding-left: 16px;
  height: 36px;
}

.lang-switcher a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  opacity: 0.4;
  transition: opacity 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.lang-switcher a:hover,
.lang-switcher a.is-active {
  opacity: 1;
  background: rgba(20, 23, 17, 0.05);
}

.lang-switcher img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.mega-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(20, 23, 17, 0.05);
  flex-shrink: 0;
  transition: background 0.18s ease;
}
.mega-cat-icon svg { width: 13px; height: 13px; }
.mega-cat-link:hover .mega-cat-icon,
.mega-cat-link.is-active .mega-cat-icon {
  background: rgba(20, 23, 17, 0.1);
}

/* Divider */
.mega-divider {
  background: rgba(20, 23, 17, 0.08);
  margin: 16px 0;
}

/* Middle: duration groups */
.mega-durations {
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(20, 23, 17, 0.02);
}

.mega-dur-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #394036;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.mega-dur-link:hover,
.mega-dur-link.is-active {
  background: rgba(20, 23, 17, 0.07);
  color: var(--ink);
}
.mega-dur-link.is-active {
  background: rgba(20, 23, 17, 0.1);
}
.mega-dur-count {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(20, 23, 17, 0.08);
  color: var(--muted);
  border-radius: 99px;
  padding: 1px 6px;
  min-width: 18px;
  text-align: center;
}
.mega-dur-link.is-active .mega-dur-count {
  background: var(--ink);
  color: #fff;
}

/* Right: packages */
.mega-packages {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#mega-dest-packages-list,
#mega-packages-list {
  max-height: 360px;
  overflow-y: auto;
  padding-right: 4px;
}
#mega-dest-packages-list::-webkit-scrollbar,
#mega-packages-list::-webkit-scrollbar {
  width: 4px;
}
#mega-dest-packages-list::-webkit-scrollbar-track,
#mega-packages-list::-webkit-scrollbar-track {
  background: transparent;
}
#mega-dest-packages-list::-webkit-scrollbar-thumb,
#mega-packages-list::-webkit-scrollbar-thumb {
  background: rgba(20, 23, 17, 0.15);
  border-radius: 99px;
}
#mega-dest-packages-list::-webkit-scrollbar-thumb:hover,
#mega-packages-list::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 23, 17, 0.3);
}

.mega-pkg-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.18s ease;
}
.mega-pkg-link:hover { background: rgba(49, 74, 114, 0.06); }

.mega-pkg-img {
  width: 48px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(20,23,17,0.08);
}
.mega-pkg-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--accent));
  color: rgba(255,255,255,0.5);
  width: 48px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}
.mega-pkg-img--placeholder svg { width: 18px; height: 18px; }

.mega-pkg-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mega-pkg-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.mega-pkg-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  white-space: normal;
  line-height: 1.35;
}

.mega-empty {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 8px 10px;
  margin: 0;
}


.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 23, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 760;
}

.menu-toggle-label {
  line-height: 1;
}

.menu-toggle-icon {
  position: relative;
  width: 18px;
  height: 14px;
}

.menu-toggle-icon span {
  position: absolute;
  left: 50%;
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-icon span:first-child {
  top: 3px;
  transform: translateX(-50%);
}

.menu-toggle-icon span:last-child {
  bottom: 3px;
  transform: translateX(-50%);
}

body.menu-open .menu-toggle-icon span:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

body.menu-open .menu-toggle-icon span:last-child {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.main-nav a,
.nav-cta,
.button,
.intro-band a,
.site-footer a {
  text-decoration: none;
}

.main-nav > a,
.nav-parent {
  position: relative;
  white-space: nowrap;
}

.main-nav > a::after,
.nav-parent::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 220ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-parent:hover::after,
.nav-parent:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 720;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  padding: 0 20px;
  background: var(--accent);
  color: white;
}

.button {
  padding: 0 24px;
  white-space: nowrap;
}

.button.primary {
  background: var(--coral);
  color: var(--navy);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
  color: white;
  backdrop-filter: blur(14px);
}

.button.secondary.dark {
  border-color: rgba(247, 246, 239, 0.28);
  color: var(--paper);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:active,
.button:active {
  transform: translateY(1px) scale(0.98);
}

.company-profile-modal[hidden] {
  display: none;
}

.company-profile-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 40px);
}

.company-profile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 23, 17, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.company-profile-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1040px, 100%);
  height: min(82dvh, 900px);
  overflow: hidden;
  border: 1px solid rgba(247, 246, 239, 0.36);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(20, 23, 17, 0.35);
}

.company-profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(20, 23, 17, 0.1);
  padding: 16px 18px;
}

.company-profile-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.2;
}

.company-profile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.company-profile-actions a,
.company-profile-actions button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 23, 17, 0.14);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 760;
  padding: 0 14px;
  text-decoration: none;
}

.company-profile-actions button {
  background: var(--ink);
  color: var(--paper);
}

.company-profile-dialog iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #f0efe7;
}

body.company-profile-open {
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid rgba(47, 111, 95, 0.34);
  outline-offset: 4px;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy);
  padding:
    clamp(84px, 12vw, 160px)
    max(clamp(24px, 5vw, 84px), calc((100vw - var(--container)) / 2 + 56px))
    clamp(96px, 12vw, 150px);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: white;
}

.kicker {
  margin: 0 0 18px;
  color: var(--peach);
  font-size: 0.86rem;
  font-weight: 860;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 4.4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  display: block;
  max-width: 16ch;
  color: white;
  font-size: clamp(2.4rem, 4.4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-copy > p:not(.kicker) {
  margin: 22px 0 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-video,
.hero-overlay {
  position: relative;
}

.hero-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}

/* Spinner loader styles */
.hero-video-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(20, 24, 20, 0.35);
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}

.hero-video.is-loaded .hero-video-loader {
  opacity: 0;
  visibility: hidden;
}

.hero-video-loader .spinner-ring {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--peach, #ffc79f);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.hero-video-loader span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.64);
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-video.is-loaded iframe {
  opacity: 1;
}

body.is-file-preview .hero-video iframe {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 24, 20, 0.12) 0%, rgba(20, 24, 20, 0.42) 45%, rgba(20, 24, 20, 0.76) 100%),
    linear-gradient(90deg, rgba(10, 18, 22, 0.68) 0%, rgba(10, 18, 22, 0.22) 56%, rgba(10, 18, 22, 0.36) 100%);
}

/* ── Intro band (editorial pull-quote, no card chrome) ─────────────
   Per taste-skill: anti "card on card" default. No border / shadow /
   border-radius. Georgia serif quote marks. Inline text-CTA replaces
   pill button — anti-cliché. Hairline separator above & below.  */
.intro-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 56px);
  max-width: var(--container, 1200px);
  margin: clamp(40px, 6vw, 72px) auto;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  border-top: 1px solid rgba(20, 23, 17, 0.12);
  border-bottom: 1px solid rgba(20, 23, 17, 0.12);
  background: transparent;
}

.intro-band-text {
  margin: 0;
  flex: 1 1 360px;
  font-size: clamp(1.15rem, 1.85vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

/* Georgia serif curly quotes — accepted in skill's serif pool */
.intro-band-mark {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent);
  opacity: 0.55;
  user-select: none;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  margin: 0 0.04em;
}
.intro-band-mark--open {
  margin-right: 0.06em;
  position: relative;
  top: 0.05em;
}
.intro-band-mark--close {
  margin-left: 0.06em;
  position: relative;
  top: 0.05em;
}

/* Inline text-CTA — replaces the old navy pill button.
   Anti-cliché per skill: text-link with arrow affordance, not a pill. */
.intro-band-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--navy);
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 220ms,
              gap 220ms;
  flex-shrink: 0;
}
.intro-band-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
  gap: 14px;
}
.intro-band-cta svg {
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.intro-band-cta:hover svg {
  transform: translateX(3px);
}

/* Reveal animation polish so figure layout doesn't break mid-fade */
.intro-band.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.intro-band.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .intro-band { padding-block: 56px; }
  .intro-band-text { flex-basis: 100%; }
  .intro-band-cta { align-self: flex-start; }
}

.section {
  width: min(calc(100% - clamp(32px, 8vw, 112px)), var(--container));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) 0;
}

.section-heading {
  display: grid;
  max-width: 980px;
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading h2,
.why-copy h2,
.booking h2,
.terms h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.015em;
  max-width: 22ch;
  text-wrap: balance;
}

.section-heading p,
.booking-copy p {
  margin: 0;
  color: var(--muted);
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.trip-card {
  position: relative;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2.5px solid var(--accent-dark, #27466e);
}

/* ── With Image ── */
.trip-card--img {
  background: #141711;
}

.trip-card:nth-child(1),
.trip-card:nth-child(2) {
  grid-column: span 3;
  min-height: 460px;
}

.trip-card:nth-child(n + 3) {
  grid-column: span 2;
  min-height: 380px;
}

.trip-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: transform 0.24s ease-out, opacity 0.18s ease-out;
  will-change: transform, opacity;
}
.trip-card--img:hover .trip-card-bg { transform: scale(1.06); opacity: 1; }

.trip-card--img::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

/* ── Body bottom ── */
.trip-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.12s ease-out, transform 0.14s ease-out;
  will-change: opacity, transform;
}

.trip-card--img:hover .trip-card-body {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.trip-card-info { flex: 1; min-width: 0; }

.trip-card-num {
  display: block;
  color: var(--sun);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.trip-card--img h3 {
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 22ch;
  text-wrap: balance;
}

.trip-card--img p {
  color: rgba(255,255,255,0.78);
  margin-top: 6px;
  font-size: 0.85rem;
  line-height: 1.45;
}

/* ── Button ── */
.trip-card-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.trip-card-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s;
}
.trip-card-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}
.trip-card-btn:hover svg { transform: translateX(3px); }

.trip-card span:not(.trip-card-num),
.booking-steps span {
  color: var(--sun);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 980px) {
  .trip-card:nth-child(n) { grid-column: span 3; min-height: 380px; }
  .trip-card-body { flex-direction: column; align-items: flex-start; }
  .trip-card-btn { align-self: flex-start; }
}

@media (max-width: 600px) {
  .trip-grid { grid-template-columns: 1fr; }
  .trip-card:nth-child(n) { grid-column: auto; min-height: 320px; }
  .trip-card-num { font-size: 0.72rem; }
}

/* ── Trip Card Hover Overlay (Premium Modal) ── */

/* Dim overlay that deepens on hover */
.trip-card--img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 22, 0.12) 0%,
    rgba(10, 14, 22, 0.55) 55%,
    rgba(10, 14, 22, 0.82) 100%
  );
  opacity: 0;
  transition: opacity 0.16s ease-out;
  will-change: opacity;
}
.trip-card--img:hover::before { opacity: 1; }

/* Slide-up hover overlay panel */
.trip-card-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 30px);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.16s ease-out,
    transform 0.18s ease-out;
  pointer-events: none;
  will-change: opacity, transform;
}
.trip-card--img:hover .trip-card-hover {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: none) {
  .trip-card-hover {
    display: none;
  }

  .trip-card--img {
    cursor: pointer;
  }
}

/* Glass info box */
.trip-hover-box {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: clamp(14px, 2vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trip-hover-num {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--peach);
}

.trip-hover-title {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.trip-hover-desc {
  font-size: 0.84rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trip-hover-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 10px 20px;
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  transition: background 0.22s ease, transform 0.22s ease;
  margin-top: 4px;
}
.trip-hover-cta:hover {
  background: var(--peach);
  transform: translateY(-2px);
}
.trip-hover-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.22s ease;
}
.trip-hover-cta:hover svg { transform: translateX(3px); }

.destination-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.destination-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  width: 100%;
  height: 100%;
  border: 2.5px solid var(--accent-dark, #27466e);
}

.trip-card,
.package-panel,
.booking-trust,
.terms,
.why-section,
.section {
  scroll-margin-top: 120px;
}

.destination-card-wrapper.large,
.destination-card-wrapper:has(.destination-card.large) {
  grid-row: span 2;
}

.destination-card.large {
  min-height: 760px;
}

.destination-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.45) 65%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.destination-card-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(22px, 4vw, 38px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.12s ease-out, transform 0.14s ease-out;
  will-change: opacity, transform;
}

.destination-card-wrapper:hover .destination-card-body {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.destination-card-body p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.destination-card-body h3 {
  max-width: 580px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
}

.destination-card-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.destination-card-body li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.destination-card-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  /* overflow intentionally NOT set here — the inner .destination-card handles it */
}

/* Dim overlay that covers card on hover */
.destination-card-wrapper .destination-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 22, 0) 0%,
    rgba(10, 14, 22, 0.4) 60%,
    rgba(10, 14, 22, 0.72) 100%
  );
  opacity: 0;
  transition: opacity 0.24s ease-out;
  will-change: opacity;
}
.destination-card-wrapper:hover .destination-card::before {
  opacity: 1;
}

/* The info overlay – always visible on ALL devices */
.destination-card-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2.5vw, 28px);
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
  pointer-events: none; /* prevent tap issues on mobile */
}

/* On devices with real hover (desktop/mouse), re-enable pointer events */
@media (hover: hover) {
  .destination-card-hover {
    pointer-events: auto;
  }
}


/* Glass info box inside hover overlay */
/* Default (fallback for browsers without backdrop-filter support, e.g. some Android) */
.destination-hover-box {
  background: rgba(10, 14, 22, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: clamp(16px, 2.4vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* White glass effect only when backdrop-filter is supported (modern iOS, Chrome, desktop) */
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .destination-hover-box {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

.destination-hover-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peach);
  margin: 0;
}

.destination-hover-title {
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  font-weight: 700;
  line-height: 1.22;
  color: #fff;
  margin: 0;
}

.destination-hover-desc {
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-hover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.destination-hover-tags li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  padding: 5px 11px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
}

.destination-hover-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  padding: 12px 22px;
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22);
  transition: background 0.22s ease, transform 0.22s ease;
  text-decoration: none;
}
.destination-hover-cta:hover {
  background: var(--peach);
  transform: translateY(-2px);
}
.destination-hover-cta svg {
  width: 15px;
  height: 15px;
  transition: transform 0.22s ease;
}
.destination-hover-cta:hover svg {
  transform: translateX(3px);
}

.destination-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.package-panel {
  display: grid;
  gap: 22px;
  align-content: space-between;
  min-height: 320px;
  border: 1px solid rgba(49, 74, 114, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  padding: clamp(24px, 3vw, 34px);
}

.package-label {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 840;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.package-panel h3 {
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-wrap: balance;
}

.package-panel > p {
  margin: 0;
  color: #4d574c;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid rgba(49, 74, 114, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 8px 12px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.why-section {
  display: block;
  width: 100%;
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 50px) clamp(24px, 5vw, 64px) clamp(60px, 8vw, 100px);
  background: transparent;
  border-top: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.why-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.why-section-title {
  font-size: clamp(1.62rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--ink, #141711);
  margin-bottom: clamp(40px, 6vw, 64px);
  text-align: center;
  position: relative;
}
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: start;
}
.why-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.why-feature-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--paper, #f7f6ef);
  border: 1.5px solid #dedcca;
  color: #8c7e6c;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.why-feature-item:hover .why-feature-icon-wrapper {
  transform: translateY(-4px) scale(1.05);
  background: #8c7e6c;
  border-color: #8c7e6c;
  color: #f7f6ef;
}
.why-feature-title {
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  font-weight: 700;
  line-height: 1.4;
  color: #2b2e28;
  max-width: 160px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .why-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
  }
}
@media (max-width: 560px) {
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
  .why-feature-icon-wrapper {
    width: 64px;
    height: 64px;
  }
}
/* ── FAQ Section ── */
.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 64px);
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: clamp(40px, 6vw, 64px);
}
.faq-item {
  background: var(--surface, #fff);
  border: 1px solid rgba(20, 23, 17, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}
.faq-item:hover,
.faq-item.is-active {
  border-color: rgba(49, 74, 114, 0.25);
  box-shadow: 0 12px 32px rgba(20, 23, 17, 0.04);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--ink);
  font-family: inherit;
}
.faq-question {
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 700;
  line-height: 1.4;
  padding-right: 16px;
}
.faq-icon-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--paper, #f7f6ef);
  color: var(--muted);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
  flex-shrink: 0;
}
.faq-item.is-active .faq-icon-indicator {
  transform: rotate(180deg);
  background: var(--accent-dark, #27466e);
  color: var(--paper);
}
.faq-content {
  padding: 0 24px 24px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}
.faq-content p {
  margin: 0;
}

.booking {
  width: 100%;
  padding: clamp(72px, 9vw, 128px) 0;
  background: var(--ink);
  color: var(--paper);
}

.booking-inner {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 760px);
  gap: clamp(36px, 8vw, 96px);
  align-items: start;
  justify-content: center;
  width: min(calc(100% - clamp(32px, 8vw, 112px)), var(--container));
  margin: 0 auto;
}

.why-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-copy h2 {
  margin-bottom: 30px;
}

.reason-list {
  display: grid;
  border-top: 1px solid var(--line);
  counter-reset: reason-counter;
}

.reason-list article {
  position: relative;
  padding: 24px 0 24px 48px;
  border-bottom: 1px solid var(--line);
  counter-increment: reason-counter;
}

.reason-list article::before {
  content: "0" counter(reason-counter);
  position: absolute;
  left: 0;
  top: 24px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
}

.reason-list h3 {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-wrap: balance;
}

.reason-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Merged into main declaration */

.booking-copy {
  position: sticky;
  top: 102px;
}

.booking-copy p {
  color: rgba(247, 246, 239, 0.76);
  margin: 18px 0 26px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-trust {
  display: grid;
  gap: 7px;
  max-width: 420px;
  margin-top: 28px;
  border: 1px solid rgba(255, 199, 159, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 199, 159, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  padding: 20px;
}

.booking-trust span {
  color: var(--peach);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-trust strong {
  color: white;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: clamp(1.18rem, 2vw, 1.46rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.booking-trust p {
  margin: 0;
  color: rgba(247, 246, 239, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.booking-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.booking-steps li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(247, 246, 239, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-steps li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(247, 246, 239, 0.2);
  transform: translateX(4px);
}

.booking-steps li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 199, 159, 0.12);
  color: var(--peach);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.booking-steps p {
  margin: 0;
  color: rgba(247, 246, 239, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.55;
}

.terms {
  width: 100%;
  margin-block: clamp(40px, 7vw, 96px);
  padding: clamp(56px, 8vw, 112px) clamp(32px, 8vw, 120px);
  background: var(--paper-deep);
}

/* Editorial "rules of the road" — per taste-skill: banned card-border + shadow grid
   uses asymmetric 1+2 layout, hairline rules between items, accent Georgia numerals.
   No eyebrow above the section heading. No boxes around content. No hover lifts. */
.terms-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(24px, 4vw, 56px);
  margin-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid rgba(20, 23, 17, 0.18);
  list-style: none;
  padding: 0;
}

/* BENTO CELL COUNT RULE: 3 items → 1+2 split. Item 1 spans full width,
   items 2 & 3 share a column. Avoids the "3 equal cards" anti-pattern. */
.terms-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 3vw, 36px);
  align-items: baseline;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(20, 23, 17, 0.08);
}

.terms-item--feature {
  grid-column: 1 / -1;
  grid-template-columns: auto 1fr;
  align-items: start;
  padding-block: clamp(40px, 5vw, 64px);
}

.terms-num {
  /* Georgia serif — accepted in skill's serif pool (not the banned Fraunces/Instrument_Serif).
     Used ONLY for editorial numbers — not for body. */
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.terms-item--feature .terms-num {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  letter-spacing: -0.02em;
}

.terms-desc {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
  font-size: 0.95rem;
  max-width: 60ch;
}
.terms-item--feature .terms-desc {
  font-size: 1.05rem;
  max-width: 56ch;
  text-wrap: pretty;
}

@media (max-width: 768px) {
  .terms-list { grid-template-columns: 1fr; gap: 0; }
  .terms-item--feature { grid-column: 1; }
}

/* ── Public terms page (/syarat-dan-ketentuan) ────────────── */
/* Standalone page variant: more top/bottom breathing room than the home
   section's terms-list. Inherits .terms-list / .terms-item / .terms-num
   rules above for visual consistency, only adds page-specific chrome. */
.terms-page {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: clamp(96px, 12vw, 160px) clamp(24px, 5vw, 64px) clamp(64px, 8vw, 120px);
  min-height: 60vh;
}

.terms-page-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 18px;
  text-align: center;
  color: var(--ink);
}

.terms-page-intro {
  font-size: 1rem;
  color: var(--muted, #6b6f63);
  line-height: 1.55;
  margin: 0 auto 56px;
  max-width: 50ch;
  text-align: center;
}

/* On the dedicated page, slight top margin to separate from heading */
.terms-page .terms-list {
  margin-top: 0;
  max-width: 980px;
  margin-inline: auto;
}

.terms-page-back {
  display: flex;
  justify-content: center;
  margin-top: clamp(48px, 6vw, 72px);
}
.terms-page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--paper);
  border: 1px solid rgba(20, 23, 17, 0.12);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background 180ms, border-color 180ms, transform 180ms;
}
.terms-page-back-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
  transform: translateX(-2px);
}

.terms-page {
  width: min(calc(100% - clamp(32px, 8vw, 112px)), var(--container));
  max-width: none;
  margin: 0 auto;
  padding: clamp(128px, 13vw, 188px) 0 clamp(72px, 9vw, 132px);
  min-height: 72vh;
}

.terms-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(32px, 7vw, 104px);
  align-items: end;
  padding-bottom: clamp(42px, 6vw, 78px);
  border-bottom: 1px solid rgba(20, 23, 17, 0.16);
}

.terms-page-hero {
  max-width: 760px;
}

.terms-page-kicker {
  width: max-content;
  margin-bottom: clamp(22px, 3vw, 34px);
  padding: 8px 12px;
  border: 1px solid rgba(47, 114, 102, 0.24);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(247, 246, 239, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.terms-page-title {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 840;
  letter-spacing: 0;
  text-align: left;
  color: var(--ink);
  text-wrap: normal;
  white-space: nowrap;
}

.terms-page-intro {
  margin: clamp(22px, 3vw, 32px) 0 0;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.68;
  text-align: left;
}

.terms-page-note {
  border-left: 3px solid var(--accent);
  padding: clamp(18px, 3vw, 28px) 0 clamp(18px, 3vw, 28px) clamp(20px, 3vw, 30px);
}

.terms-page-note-label {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.terms-page-note strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.terms-page-note p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.terms-page-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-page-item {
  display: grid;
  grid-template-columns: minmax(72px, 0.2fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 72px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid rgba(20, 23, 17, 0.1);
}

.terms-page-num {
  color: var(--accent);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 820;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.terms-page-item p {
  margin: 0;
  max-width: 76ch;
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}

.terms-page-back {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(34px, 5vw, 58px);
}

.terms-page-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.terms-page-back-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .terms-page-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .terms-page-title {
    max-width: 100%;
  }

  .terms-page-note {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .terms-page {
    width: min(calc(100% - 32px), var(--container));
    padding-top: 112px;
  }

  .terms-page-title {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    white-space: normal;
  }

  .terms-page-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .terms-page-back {
    justify-content: stretch;
  }

  .terms-page-back-link {
    width: 100%;
  }
}

.site-footer {
  width: min(calc(100% - clamp(32px, 8vw, 112px)), var(--container));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 68px) 0;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 96px);
}

.footer-brand-block p {
  margin: 18px 0 0;
  max-width: 360px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-links div,
.footer-links address {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span,
.footer-links strong {
  color: #374036;
  line-height: 1.5;
}

.footer-links a {
  width: fit-content;
}

.footer-links a:hover {
  color: var(--accent);
}

.site-footer address {
  font-style: normal;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.social-links a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(49, 74, 114, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--navy);
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--navy);
  color: white;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: clamp(34px, 5vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--accent-dark);
  font-weight: 760;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 12;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: #25d366;
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(49, 74, 114, 0.18);
  transition: transform 180ms ease;
}

.scroll-top-button {
  position: fixed;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 12;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(20, 23, 17, 0.1);
  border-radius: 999px;
  background: rgba(247, 246, 239, 0.92);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(49, 74, 114, 0.16);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.scroll-top-button[hidden] {
  display: none;
}

.scroll-top-button.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-button:hover {
  background: white;
  transform: translateY(-3px);
}

.scroll-top-button svg {
  width: 23px;
  height: 23px;
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition:
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 720ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (min-width: 1121px) and (max-width: 1360px) {
  .header-shell {
    width: min(calc(100% - 64px), var(--container));
    column-gap: 16px;
    min-height: 66px;
    padding: 12px 16px;
    border-radius: 22px;
  }

  .brand-logo {
    width: 104px;
  }

  .main-nav {
    gap: clamp(10px, 1.1vw, 14px);
    padding-right: 4px;
    font-size: 0.8rem;
  }

  .nav-parent {
    gap: 4px;
  }

  .nav-parent::before {
    width: 5px;
    height: 5px;
    margin-left: 4px;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .lang-switcher {
    gap: 3px;
    padding-left: 10px;
  }

  .lang-switcher a {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 1120px) {
  .company-profile-modal {
    padding: 10px;
  }

  .company-profile-dialog {
    height: 88dvh;
    border-radius: 14px;
  }

  .company-profile-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .company-profile-actions {
    width: 100%;
  }

  .company-profile-actions a,
  .company-profile-actions button {
    flex: 1;
  }

  .site-header {
    padding-top: 10px;
    z-index: 10000;
  }

  .header-shell {
    grid-template-columns: 1fr auto auto;
  }

  .brand,
  .menu-toggle,
  .nav-actions {
    position: relative;
    z-index: 10002;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav-actions {
    order: 2;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    transform: translateY(-8px);
    border: none;
    border-radius: 0;
    background: #f7f6ef;
    overflow-y: auto;
    padding: 118px clamp(28px, 7vw, 56px) 44px;
    opacity: 0;
    pointer-events: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    scrollbar-width: none;
    isolation: isolate;
    z-index: 10001;
    transition:
      transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 250ms ease;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: #f7f6ef;
    content: "";
  }

  body.menu-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden;
  }

  body.menu-open main,
  body.menu-open .site-footer,
  body.menu-open .floating-whatsapp,
  body.menu-open .scroll-top-button {
    visibility: hidden;
  }

  body.menu-open .site-header {
    z-index: 10002 !important;
  }

  body.menu-open .header-shell {
    border-color: rgba(20, 23, 17, 0.08);
    background: #f7f6ef;
    box-shadow: none;
    z-index: 10003 !important;
  }

  .main-nav a {
    border-radius: 0;
    padding: 0;
  }

  .main-nav a:hover {
    color: var(--ink);
  }

  .main-nav a::after {
    content: none;
  }

  .nav-group {
    display: grid;
    gap: 0;
    border-bottom: 1px solid rgba(20, 23, 17, 0.08);
  }

  .nav-parent {
    min-height: 50px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--accent-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    transition:
      color 180ms ease;
  }

  .nav-parent::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 220ms ease;
    opacity: 0.72;
    order: 2;
    flex-shrink: 0;
    margin: 0 2px 0 14px;
  }

  .nav-group.is-open .nav-parent {
    color: var(--ink);
  }

  .nav-group.is-open .nav-parent::before {
    transform: translateY(0) rotate(-135deg);
  }

  .submenu {
    position: static;
    display: none !important;
    min-width: 0;
    transform: none;
    border: 0;
    grid-template-columns: 1fr;
    gap: 2px;
    border-radius: 0;
    background: transparent;
    padding: 0 0 18px;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    backdrop-filter: none;
  }

  .submenu--mega {
    position: static;
    width: 100%;
    padding: 0 0 18px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none !important;
  }

  .nav-group.is-open .submenu {
    display: grid !important;
  }

  .nav-group.is-open .submenu--mega {
    display: block !important;
  }

  .mega-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mega-categories {
    padding: 0;
    display: grid;
    gap: 2px;
  }

  .mega-divider {
    display: none;
  }

  .mega-durations,
  .mega-packages {
    display: none !important;
  }

  .submenu::before {
    content: none;
  }

  .submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 8px 0;
    border-radius: 0;
    color: #4d574c;
    font-size: 1rem;
    font-weight: 740;
    line-height: 1.35;
    white-space: normal;
    transition:
      background 180ms ease,
      color 180ms ease;
  }

  .submenu a:hover,
  .submenu a:focus-visible,
  .submenu a.is-active {
    background: transparent;
    color: var(--ink);
  }

  .submenu-label {
    padding: 14px 0 6px;
    font-size: 0.72rem;
  }

  .submenu-label--spaced {
    margin-top: 6px;
  }

  .mega-section-label {
    margin: 2px 0 8px;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .mega-cat-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(20, 23, 17, 0.055);
    color: var(--accent);
  }

  .mega-cat-link:hover .mega-cat-icon,
  .mega-cat-link.is-active .mega-cat-icon {
    background: var(--ink);
    color: #fff;
  }

  .main-nav > a {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(20, 23, 17, 0.08);
    border-radius: 0;
    background: transparent;
    color: var(--accent-dark);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
  }

  .hero,
  .why-section,
  .booking-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100dvh;
  }

  .why-media {
    min-height: 500px;
  }

  h1 {
    max-width: 14ch;
  }

  .destination-grid,
  .destination-details,
  .terms-grid {
    grid-template-columns: 1fr;
  }

  .destination-card.large {
    min-height: 560px;
  }

  .booking-copy {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: 100%;
    min-height: 64px;
    padding: 8px 0 0;
  }

  .header-shell {
    width: min(calc(100% - clamp(32px, 8vw, 112px)), var(--container));
    min-height: 58px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .brand-logo {
    width: min(150px, 40vw);
    height: auto;
    max-height: 12px;
    object-position: left;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-switcher {
    height: 38px;
    gap: 4px;
    padding-left: 10px;
  }

  .lang-switcher a {
    width: 34px;
    height: 34px;
    background: rgba(20, 23, 17, 0.04);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    border-color: rgba(20, 23, 17, 0.14);
    background: #fff;
    box-shadow: 0 1px 0 rgba(20, 23, 17, 0.04);
  }

  body.menu-open .menu-toggle {
    background: #fff;
    border-color: rgba(20, 23, 17, 0.16);
  }

  .main-nav {
    padding-top: 112px;
    padding-inline: 30px;
  }

  .nav-parent,
  .main-nav > a {
    min-height: 50px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
  }

  .mega-cat-link {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 8px;
    gap: 8px;
  }
  
  .mega-cat-icon {
    width: 24px;
    height: 24px;
  }
  
  .mega-section-label {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    width: 100%;
    min-height: 100dvh;
    margin-top: 0;
    border-radius: 0;
    padding: 84px 20px 96px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 4.2vw, 3rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .why-media {
    min-height: 430px;
  }

  .intro-band {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    width: calc(100% - 32px);
    padding: 32px 24px;
  }

  .section,
  .why-section,
  .booking {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .booking {
    padding: 38px 24px;
    border-radius: 24px;
    overflow: hidden;
  }

  .booking-inner {
    width: 100%;
    gap: 36px;
  }

  .booking-copy h2 {
    font-size: clamp(2rem, 11vw, 2.65rem);
    line-height: 1.05;
  }

  .booking-copy p {
    margin: 16px 0 22px;
    font-size: clamp(1.02rem, 5.4vw, 1.28rem);
    line-height: 1.52;
  }

  .booking-actions {
    display: grid;
    gap: 12px;
  }

  .booking-trust {
    max-width: none;
    margin-top: 24px;
    padding: 18px;
    border-radius: 18px;
  }

  .booking-trust strong {
    overflow-wrap: anywhere;
  }

  .booking-steps {
    gap: 12px;
    padding-bottom: 16px;
  }

  .booking-steps li {
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .booking-steps li:hover {
    transform: none;
  }

  .booking-steps li span {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1rem;
  }

  .booking-steps p {
    font-size: clamp(1rem, 5.1vw, 1.18rem);
    line-height: 1.48;
  }

  .destination-card,
  .destination-card.large {
    min-height: 450px;
  }

  .package-panel {
    min-height: auto;
  }

  .terms {
    width: calc(100% - 32px);
  }

  .site-footer {
    width: calc(100% - 32px);
  }
}

@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 {
    transform: none;
    opacity: 1;
  }
}

/* ── Package-detail page (paket-detail.blade.php) ─────────── */
/* Smaller variant of h1 used as the package title in paket-detail   */
.pkg-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 22ch;
  text-wrap: balance;
}

/* Sub-section heading inside package detail (Description / Rundown / etc) */
.pkg-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* Eyebrow subtitle above pkg-title */
.pkg-subtitle {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
/* ── Paket detail page (redesign per reference) ─────────────── */
.pkg-page { display: flex; flex-direction: column; }

/* 1. Hero header */
.pkg-page-header {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px) clamp(32px, 4vw, 48px);
  max-width: var(--container, 1200px);
  margin: 0 auto;
  width: 100%;
}
.pkg-page-header-inner { max-width: 880px; }

.pkg-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pkg-tag {
  display: inline-flex; align-items: center;
  padding: 7px 16px;
  background: var(--ink); color: white;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
}

/* 2. Itinerary band (full-width dark) */
.pkg-itinerary {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 64px);
}
.pkg-itinerary-inner { max-width: var(--container, 1200px); margin: 0 auto; }
.pkg-itinerary-title { display: none; }
.pkg-itinerary-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
  max-width: 880px; margin-inline: auto;
}
.pkg-itinerary-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 23, 17, 0.08);
}
.pkg-itinerary-item:last-child { border-bottom: 0; }
.pkg-itinerary-time {
  display: flex; flex-wrap: wrap; gap: 6px;
  color: var(--navy);
  font-size: 0.92rem;
  font-feature-settings: 'tnum';
  font-weight: 600;
}
.pkg-itinerary-time strong { color: var(--ink); font-weight: 800; }
.pkg-itinerary-sep { color: var(--muted); font-weight: 400; }
.pkg-itinerary-desc {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* 3. Notes callout (bilingual) */
.pkg-notes-wrap {
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 64px);
  max-width: var(--container, 1200px);
  margin: 0 auto;
  width: 100%;
}
.pkg-notes-container {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  width: 100%;
}
.pkg-notes-main-title {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  text-align: left;
}
.pkg-notes-list-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.pkg-note-card-new {
  background: #112d3a;
  color: #ffffff;
  border-radius: 9999px;
  padding: 16px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(17, 45, 58, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pkg-note-card-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(17, 45, 58, 0.14);
}
.pkg-note-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.pkg-note-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--peach);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .pkg-note-card-new {
    border-radius: 20px;
    padding: 18px 22px;
  }
}
.pkg-notes {
  background: #fff;
  border: 1px solid rgba(20, 23, 17, 0.1);
  border-radius: 16px;
  padding: 22px 26px 18px;
  max-width: 640px;
  margin: 0 auto;
}
.pkg-notes-title {
  display: inline;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 700;
  margin-right: 6px;
}
.pkg-notes-list {
  list-style: none; margin: 8px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
  font-size: 0.92rem;
  color: var(--muted, #6b6f63);
  line-height: 1.5;
}
.pkg-notes-row { display: flex; align-items: center; gap: 6px; }

/* Big bottom notes variant */
.pkg-notes--large {
  background: #21404b;
  border-color: transparent;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: var(--container, 1200px);
  padding: 36px 40px;
}
.pkg-notes--large .pkg-notes-title { color: var(--paper); }

/* Flag chip — pure CSS stripes, no emoji dependency */
.pkg-flag {
  display: inline-flex;
  flex-direction: column;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(20, 23, 17, 0.2);
  box-shadow: 0 0 0 0.5px rgba(20, 23, 17, 0.1);
}
.pkg-flag-stripe {
  flex: 1;
  display: block;
}
.pkg-flag--id .pkg-flag-stripe:nth-child(1) { background: #ce1126; }  /* red */
.pkg-flag--id .pkg-flag-stripe:nth-child(2) { background: #fff; }    /* white */
.pkg-flag--gb .pkg-flag-stripe:nth-child(1) { background: #012169; }  /* navy */
.pkg-flag--gb .pkg-flag-stripe:nth-child(2) { background: #fff; }     /* white */
.pkg-flag--gb .pkg-flag-stripe:nth-child(3) { background: #c8102e; }  /* red */

/* Add-on icon wrapper (replaces emoji for SVG icons) */
.pkg-addon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(247, 246, 239, 0.85);
  flex-shrink: 0;
}
.pkg-addon-icon svg {
  width: 18px;
  height: 18px;
}
.pkg-notes--large .pkg-notes-text {
  color: rgba(247, 246, 239, 0.85);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 6px 0 0;
}
.pkg-notes--large .pkg-notes-emoji {
  font-size: 3rem; line-height: 1; flex-shrink: 0;
}
.pkg-notes-body { min-width: 0; }

/* 4. Pricing table */
.pkg-pricing {
  width: 100%;
  background: var(--paper-deep);
  color: var(--ink);
  padding: clamp(48px, 5vw, 72px) clamp(20px, 4vw, 48px);
}
.pkg-pricing-inner {
  max-width: 1060px;
  margin: 0 auto;
}

/* ── Pricelist Header Row with Chips ── */
.pkg-pricing-header-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  text-align: center;
}
.pkg-pricing-subtitle {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2d6a4f; /* Green color indicating "price difference" */
  margin-bottom: 6px;
}
.pkg-pricing-title {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: #000000; /* Black color indicating Pricelist/person */
  margin: 0;
}
.pkg-pricing-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pkg-pricing-chip {
  display: inline-flex;
  align-items: center;
  background: #1e293b; /* Dark navy */
  color: #f8fafc; /* Off-white */
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

/* ── Refined Pricing Table ── */
.pkg-pricing-table-wrap {
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(30, 41, 59, 0.15);
  box-shadow: 0 12px 32px rgba(20, 23, 17, 0.04);
}
.pkg-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 0.9rem;
  min-width: 680px; /* Keep table columns structured */
}
.pkg-pricing-table thead tr {
  background: #2e3f5b; /* Darker Navy */
}
.pkg-pricing-th {
  text-align: center;
  padding: 15px 16px;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1.5px solid #2e3f5b;
}
.pkg-pricing-th:first-child {
  border-top-left-radius: 16px;
}
.pkg-pricing-th:last-child {
  border-right: 0;
  border-top-right-radius: 16px;
}
.pkg-pricing-cell {
  padding: 16px 16px;
  text-align: center;
  color: #000000;
  font-weight: 600;
  background: #eaece8; /* Cream Abu-abu */
  border-bottom: 1px solid rgba(20, 23, 17, 0.15);
  border-right: 1px solid rgba(20, 23, 17, 0.15);
  vertical-align: middle;
}
.pkg-pricing-durasi {
  border-right: 0 !important;
}
.pkg-pricing-table tbody tr:last-child .pkg-pricing-cell {
  border-bottom: 0;
}

/* Spanned cells */
.pkg-pricing-spanned-cell {
  background: #eaece8 !important; /* Cream Abu-abu */
  font-weight: 700;
  color: #000000;
}
.pkg-pricing-spanned-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000000;
}

/* Pax */
.pkg-pricing-cell-pax {
  font-weight: 800;
  color: #334155;
  font-feature-settings: 'tnum';
}

/* Price */
.pkg-pricing-cell-price {
  font-weight: 700;
  color: #0f172a;
  font-feature-settings: 'tnum';
}
.pkg-pricing-price-value {
  font-size: 0.95rem;
}
.pkg-pricing-suffix {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

/* Duration Block */
.pkg-pricing-durasi-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pkg-pricing-durasi-badge {
  display: inline-flex;
  align-items: center;
  background: #e2e8f0; /* Gray capsule/badge */
  color: #334155;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pkg-pricing-table .col-trip-type { width: 16%; }
.pkg-pricing-table .col-pax { width: 16%; }
.pkg-pricing-table .col-price { width: 24%; }
.pkg-pricing-table .col-car { width: 24%; }
.pkg-pricing-table .col-durasi { width: 20%; }
.pkg-pricing-table-wrap::-webkit-scrollbar {
  height: 8px;
}
.pkg-pricing-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(30, 41, 59, 0.2);
  border-radius: 999px;
}

/* 5. Inclusions */
.pkg-inclusions {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 64px);
  max-width: var(--container, 1200px);
  margin: 0 auto; width: 100%;
}
.pkg-inclusions-inner { max-width: 980px; }
.pkg-inclusions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px; margin-top: 24px;
}
.pkg-inclusion-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 8px 0;
}
.pkg-inclusion-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(47, 114, 102, 0.12);
  color: var(--accent); border-radius: 50%;
}
.pkg-inclusion-text {
  font-size: 0.98rem; color: var(--ink);
  line-height: 1.5; padding-top: 6px;
}

/* 6. Documentation / Add-ons */
.pkg-documentation {
  background: var(--paper-deep);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 64px) clamp(34px, 4vw, 52px);
}

.pkg-documentation-inner {
  max-width: var(--container, 1200px);
  margin: 0 auto;
}

.pkg-documentation-head {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

.pkg-documentation-head > div:first-child {
  max-width: 720px;
  margin: 0 auto;
}

.pkg-documentation-controls {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pkg-documentation-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 23, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pkg-documentation-controls button:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 114, 102, 0.35);
  background: #fff;
}

.pkg-documentation-track {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2px;
  padding: 2px 2px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 114, 102, 0.32) transparent;
}

.pkg-documentation-track::-webkit-scrollbar {
  height: 8px;
}

.pkg-documentation-track::-webkit-scrollbar-track {
  background: transparent;
}

.pkg-documentation-track::-webkit-scrollbar-thumb {
  background: rgba(47, 114, 102, 0.28);
  border-radius: 999px;
}

.pkg-documentation-item {
  flex: 0 0 clamp(280px, 36vw, 430px);
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 2.5px solid var(--accent-dark, #27466e);
  background: #fff;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  box-shadow: 0 18px 48px rgba(20, 23, 17, 0.08);
}

.pkg-documentation-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pkg-addons {
  width: 100%; background: var(--ink); color: var(--paper);
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 64px);
}
.pkg-addons-inner { max-width: var(--container, 1200px); margin: 0 auto; }
.pkg-addons-row {
  display: grid; grid-template-columns: 2fr 1fr;
  border-bottom: 1px solid rgba(247, 246, 239, 0.12);
}
.pkg-addons-row:last-child { border-bottom: 0; }
.pkg-addons-row.pkg-addons-head {
  border-bottom: 1px solid rgba(247, 246, 239, 0.25);
}
.pkg-addons-cell {
  padding: 18px 24px; font-size: 0.95rem;
  color: rgba(247, 246, 239, 0.92);
}
.pkg-addons-label {
  font-weight: 700; color: var(--paper);
}
.pkg-addons-cell.pkg-addons-label { text-align: right; }
.pkg-addons-cell.pkg-addons-price {
  text-align: right; font-feature-settings: 'tnum';
}
.pkg-addons-row.pkg-addons-row-alt .pkg-addons-cell {
  background: rgba(247, 246, 239, 0.04);
}
.pkg-addons-item { display: flex; align-items: center; gap: 10px; }

/* Bottom notes context */
.pkg-notes-wrap:has(.pkg-notes--large) {
  background: transparent;
}

/* 8. Related packages */
.pkg-other {
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 64px);
  max-width: var(--container, 1200px);
  margin: 0 auto; width: 100%;
}
.pkg-other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px; margin-top: 24px;
}
.pkg-other-card {
  position: relative;
  display: block;
  border: 2.5px solid var(--accent-dark, #27466e);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 220ms, border-color 220ms;
  background: #f7f6ef;
  aspect-ratio: 4 / 3;
}
.pkg-other-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 22, 0) 0%,
    rgba(10, 14, 22, 0.4) 60%,
    rgba(10, 14, 22, 0.72) 100%
  );
  opacity: 0;
  transition: opacity 0.24s ease-out;
  will-change: opacity;
}
.pkg-other-card:hover::before {
  opacity: 1;
}
.pkg-other-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 114, 102, 0.32);
}
.pkg-other-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pkg-other-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  background: rgba(10, 14, 22, 0.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pkg-other-meta strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  line-height: 1.3;
}
.pkg-other-meta span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .pkg-itinerary-item { grid-template-columns: 1fr; gap: 4px; }
  .pkg-documentation-head {
    text-align: center;
  }
  .pkg-documentation-head > div:first-child {
    margin-left: auto;
    margin-right: auto;
  }
  .pkg-documentation-controls {
    position: static;
    margin-top: 14px;
  }
  .pkg-documentation-controls button {
    width: 38px;
    height: 38px;
  }
  .pkg-documentation-item {
    flex-basis: min(82vw, 360px);
  }
  .pkg-inclusions-grid { grid-template-columns: 1fr; }
  .pkg-addons-row { grid-template-columns: 1fr; }
  .pkg-addons-cell.pkg-addons-label,
  .pkg-addons-cell.pkg-addons-price { text-align: left; }
  .pkg-notes--large { grid-template-columns: 1fr; }
}

/* ── Articles / Blog section ─────────────────────────────────── */
.articles {
  padding: 96px 32px;
  background: var(--paper);
}

.articles .section-heading {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid rgba(47, 114, 102, 0.22);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.section-link:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 114, 102, 0.4);
  background: #fff;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container, 1200px);
  margin: 0 auto;
}

/* First article: slightly larger, image bigger (asymmetric per anti-default) */
.article-card--feature {
  grid-column: span 1;
}
.article-card--feature .article-img { aspect-ratio: 16 / 10; }
.article-card--feature .article-body h3 { font-size: clamp(1.1rem, 1.8vw, 1.45rem); }
.article-card--feature .article-body p  { max-width: 52ch; }

.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2.5px solid var(--accent-dark, #27466e);
  border-radius: 18px;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20, 23, 17, 0.08);
}

.article-img {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f1f2;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.article-card:hover .article-img img { transform: scale(1.04); }

.article-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.article-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.article-body h3 {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 10px;
  max-width: 28ch;
  text-wrap: balance;
}
.article-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 56ch;
  text-wrap: pretty;
}
.article-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.article-more:hover { color: var(--accent); }

@media (max-width: 768px) {
  .article-grid { grid-template-columns: 1fr; gap: 20px; }
  .article-card--feature { grid-column: span 1; }
}

.article-archive {
  width: 100%;
  padding: clamp(120px, 14vw, 172px) clamp(20px, 5vw, 64px) clamp(56px, 8vw, 96px);
  background: var(--paper);
}

.article-archive-hero {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.article-archive-hero h1 {
  max-width: 18ch;
  margin: 20px auto 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.article-archive-hero p {
  max-width: 58ch;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.65;
}

.article-archive-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto clamp(28px, 5vw, 48px);
}

.article-archive-filters a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid rgba(20, 23, 17, 0.1);
  color: #394036;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.article-archive-filters a.is-active {
  border-color: rgba(47, 114, 102, 0.42);
  color: #fff;
  background: var(--accent);
}

.article-archive-filters span {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  background: rgba(20, 23, 17, 0.06);
  font-size: 0.74rem;
}

.article-archive-filters a.is-active span {
  background: rgba(255, 255, 255, 0.18);
}

.article-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: var(--container, 1200px);
  margin: 0 auto;
}

.article-archive-pagination {
  max-width: var(--container, 1200px);
  margin: 34px auto 0;
}

@media (max-width: 900px) {
  .article-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .article-archive {
    padding-top: 104px;
  }

  .article-archive-hero {
    text-align: left;
  }

  .article-archive-hero h1,
  .article-archive-hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .article-archive-filters {
    justify-content: flex-start;
  }

  .article-archive-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.article-detail {
  width: 100%;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 5vw, 64px) clamp(56px, 8vw, 96px);
  background: var(--paper);
}

.article-detail-hero {
  max-width: 860px;
  margin: 0 auto clamp(28px, 5vw, 52px);
  text-align: center;
}

.article-detail-back,
.article-detail-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--accent);
  background: rgba(47, 114, 102, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.article-detail-tag {
  margin-left: 8px;
}

.article-detail h1 {
  max-width: 18ch;
  margin: 20px auto 0;
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.article-detail-hero p {
  max-width: 56ch;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.article-detail-media {
  max-width: 1080px;
  aspect-ratio: 16 / 8.5;
  margin: 0 auto clamp(32px, 5vw, 56px);
  overflow: hidden;
  border-radius: 20px;
  background: rgba(20, 23, 17, 0.06);
}

.article-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-detail-body {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.85;
}

.article-detail-related {
  max-width: var(--container, 1200px);
  margin: clamp(48px, 8vw, 88px) auto 0;
}

.article-detail-related h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

@media (max-width: 768px) {
  .article-detail { padding-top: 104px; }
  .article-detail-hero { text-align: left; }
  .article-detail h1,
  .article-detail-hero p {
    margin-left: 0;
    margin-right: 0;
  }
  .article-detail-media {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }
}

/* ── Testimonials section (single-quote carousel) ─────────── */
/* Paper bg, fades between slides, auto-advance every 7s, pause on hover.
   One testimonial visible at a time — gives editorial weight instead of
   a generic 3-card row. */
.testimonials {
  padding: 96px 32px;
  background: var(--paper-deep);
}

.testimonials .section-heading {
  display: block;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 48px;
  text-align: center;
}
.testimonials .section-heading h2 { margin-inline: auto; }
.testimonials .section-heading p  { margin-inline: auto; max-width: 56ch; }

/* Stage: relative, fixed min-height to prevent layout jump between slides */
.testimonial-stage {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

/* Inner slide content — vertical layout */
.testimonial-slide-inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-quote-wrap {
  position: relative;
  margin-bottom: 36px;
}

.testimonial-quote-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.32;
  user-select: none;
  margin: 0 auto -16px;
}

.testimonial-slide-inner blockquote {
  margin: 0 auto;
  max-width: 60ch;
  font-size: clamp(1.2rem, 1.85vw, 1.6rem);
  line-height: 1.42;
  letter-spacing: -0.012em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: pretty;
}

.testimonial-slide-inner::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 32px auto 0;
  border-radius: 3px;
}

/* Author row — avatar + name/role + stars, side-by-side, centered */
.testimonial-author-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 8px 12px;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.3;
  text-align: left;
}

.testimonial-author-meta strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
}

.testimonial-role {
  color: var(--muted, #6b6f63);
  font-size: 0.78rem;
  font-weight: 500;
}

.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent);
  font-size: 0.85rem;
  line-height: 1;
  letter-spacing: 0.06em;
}

/* ── Carousel controls: prev / next / dots ─────────────────── */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(20, 23, 17, 0.12);
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms, border-color 180ms, transform 180ms;
  box-shadow: 0 1px 2px rgba(20, 23, 17, 0.04);
}
.carousel-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
  transform: translateY(-1px);
}
.carousel-arrow:active { transform: translateY(0) scale(0.97); }
.carousel-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.carousel-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.carousel-dots li { display: inline-flex; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(20, 23, 17, 0.18);
  cursor: pointer;
  padding: 0;
  transition: width 240ms cubic-bezier(0.4, 0, 0.2, 1),
              background 240ms;
}
.carousel-dot:hover { background: rgba(20, 23, 17, 0.35); }
.carousel-dot.is-active {
  width: 28px;
  background: var(--accent);
}
.carousel-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Alpine transition classes — fade between slides */
[x-cloak] { display: none !important; }
.testimonial-fade-enter {
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-fade-start { opacity: 0; transform: translateY(8px); }
.testimonial-fade-end   { opacity: 1; transform: translateY(0);   }
.testimonial-fade-leave {
  transition: opacity 320ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.section-heading.is-centered {
  display: block;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(28px, 5vw, 56px);
  text-align: center;
}
.section-heading.is-centered h2 { margin-inline: auto; }
.section-heading.is-centered p  { margin-inline: auto; max-width: 56ch; }

/* Reduce motion: skip transitions, just hard-swap */
@media (prefers-reduced-motion: reduce) {
  .testimonial-fade-enter,
  .testimonial-fade-leave { transition: none; }
}

@media (max-width: 360px) {
  .menu-toggle {
    width: 42px;
    padding: 0;
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .booking {
    width: calc(100% - 20px);
    padding: 30px 16px 82px;
    border-radius: 22px;
  }

  .booking-copy h2 {
    font-size: clamp(1.85rem, 11vw, 2.25rem);
  }

  .booking-copy p {
    font-size: 1rem;
  }

  .booking-actions .button {
    min-height: 52px;
    padding-inline: 18px;
    font-size: 0.98rem;
  }

  .booking-trust {
    padding: 16px;
  }

  .booking-steps li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .booking-steps p {
    font-size: 1rem;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .scroll-top-button {
    left: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }

  .scroll-top-button svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .testimonials { padding: 72px 20px; }
  .testimonial-stage { min-height: 320px; }
  .testimonial-slide-inner blockquote { font-size: 1.1rem; line-height: 1.45; }
  .testimonial-quote-mark { font-size: 3.5rem; }
  .carousel-controls { gap: 18px; margin-top: 28px; }
  .carousel-arrow { width: 38px; height: 38px; }
  .carousel-dot.is-active { width: 22px; }
}

.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}


/* ── Paket detail Alt A — hero image, grouped inclusions, addon cards ── */

/* Hero image — full-bleed with dark overlay */
.pkg-hero-img {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 56vh, 560px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--paper);
}
.pkg-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 23, 17, 0.25) 0%,
    rgba(20, 23, 17, 0.55) 55%,
    rgba(20, 23, 17, 0.92) 100%);
  z-index: 1;
}
.pkg-hero-img-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container, 1200px);
  margin: 0 auto;
  width: 100%;
  padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 64px) clamp(48px, 6vw, 80px);
}
.pkg-hero-img .pkg-subtitle {
  color: rgba(247, 246, 239, 0.78);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.pkg-hero-img .pkg-title {
  color: var(--paper);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 18ch;
  margin-bottom: 24px;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.25);
}
.pkg-hero-img .pkg-tags { margin-top: 0; }
.pkg-hero-img .pkg-tag {
  background: rgba(247, 246, 239, 0.92);
  color: var(--ink);
}
.pkg-hero-img-scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(247, 246, 239, 0.7);
  animation: pkg-scroll-bounce 2.6s ease-in-out infinite;
}
@keyframes pkg-scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* Section header (eyebrow + title) */
.pkg-section-head {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 36px);
}
.pkg-section-head--light .pkg-section-h2 { color: var(--paper); }
.pkg-section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.pkg-section-h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  text-wrap: balance;
}
.pkg-pricing .pkg-section-eyebrow,
.pkg-itinerary .pkg-section-eyebrow { color: var(--peach); }

/* Inclusions — 2-col grouped */
.pkg-inclusions-inner {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 64px);
}
.pkg-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(20px, 3vw, 48px);
  max-width: 1080px;
  margin: 0 auto;
}
.pkg-logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(20px, 3vw, 48px);
  max-width: 1080px;
  margin: 32px auto 0;
}
.pkg-inclusions-col {
  background: #fff;
  border: 1px solid rgba(20, 23, 17, 0.08);
  border-radius: 18px;
  padding: clamp(20px, 2.5vw, 32px);
}
.pkg-inclusions-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 23, 17, 0.08);
}
.pkg-inclusions-col-icon {
  display: inline-flex;
  color: var(--accent);
}
.pkg-inclusions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pkg-inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}
.pkg-inclusion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 2px;
}
.pkg-inclusions-col--exclude .pkg-inclusions-col-title,
.pkg-inclusions-col--exclude .pkg-inclusions-col-icon,
.pkg-inclusion-icon--exclude {
  color: #8c4b38;
}

/* Add-ons — 3-card grid */
.pkg-addons { background: var(--paper-deep); }
.pkg-addons-inner {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 5vw, 64px);
}
.pkg-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.pkg-addon-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(20, 23, 17, 0.08);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 240ms,
              box-shadow 240ms;
}
.pkg-addon-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 114, 102, 0.32);
  box-shadow: 0 16px 40px rgba(20, 23, 17, 0.06);
}
.pkg-addon-card--featured {
  background: linear-gradient(180deg, var(--paper) 0%, rgba(47, 114, 102, 0.06) 100%);
  border-color: rgba(47, 114, 102, 0.32);
}
.pkg-addon-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: white;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.pkg-addon-card-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 114, 102, 0.1);
  color: var(--accent);
  border-radius: 12px;
}
.pkg-addon-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 4px 0 0;
}
.pkg-addon-card-desc {
  font-size: 0.88rem;
  color: var(--muted, #6b6f63);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}
.pkg-addon-card-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  font-feature-settings: 'tnum';
  border-top: 1px solid rgba(20, 23, 17, 0.08);
  padding-top: 14px;
  margin-top: 4px;
}

/* More breathing room between sections */

/* Responsive */
@media (max-width: 768px) {
  .pkg-itinerary-item { grid-template-columns: 1fr; gap: 4px; }
  .pkg-inclusions-grid { grid-template-columns: 1fr; }
  .pkg-addons-grid { grid-template-columns: 1fr; }
  .pkg-pricing {
    padding-inline: 16px;
  }
  .pkg-pricing-table-wrap {
    overflow-x: auto;
    border-radius: 18px;
  }
}

@media (max-width: 640px) {
  .pkg-pricing-table-wrap {
    overflow-x: visible !important;
    border-radius: 18px !important;
    border: 1px solid rgba(30, 41, 59, 0.15) !important;
  }
  .pkg-pricing-table {
    min-width: 0 !important;
    width: 100% !important;
    table-layout: fixed !important;
    font-size: 0.76rem !important;
  }
  .pkg-pricing-th {
    padding: 10px 4px !important;
    font-size: 0.65rem !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
  }
  .pkg-pricing-cell {
    padding: 10px 4px !important;
    font-size: 0.74rem !important;
    border-right: 1px solid rgba(30, 41, 59, 0.1) !important;
    word-break: break-word !important;
  }
  .pkg-pricing-price-value {
    font-size: 0.82rem !important;
  }
  .pkg-pricing-suffix {
    font-size: 0.62rem !important;
    display: block !important;
    margin-top: 2px !important;
  }
  .pkg-pricing-spanned-text {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
  }
  
  /* Hide the redundant 5th Durasi column on mobile since it is in header badge */
  .pkg-pricing-table .col-durasi {
    display: none !important;
  }
  .pkg-pricing-table th:nth-child(5),
  .pkg-pricing-table td.pkg-pricing-durasi {
    display: none !important;
  }
  
  /* Redefine column widths for the remaining 4 columns */
  .pkg-pricing-table .col-trip-type { width: 20% !important; }
  .pkg-pricing-table .col-pax { width: 14% !important; }
  .pkg-pricing-table .col-price { width: 38% !important; }
  .pkg-pricing-table .col-car { width: 28% !important; }
  
  /* Remove right border on the 4th column elements */
  .pkg-pricing-table th:nth-child(4),
  .pkg-pricing-table td.pkg-pricing-cell-car {
    border-right: 0 !important;
  }
}


/* ── Tighter spacing for paket detail ──────────────────── */
/* Reduce vertical padding across all sections to tighten reading rhythm */
.pkg-description {
  width: 100%;
  background: var(--paper);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 5vw, 64px) clamp(20px, 3vw, 32px);
}
.pkg-description-inner {
  max-width: 760px;
  margin: 0 auto;
}
.pkg-description-text {
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.6;
  color: var(--ink);
  text-wrap: pretty;
  white-space: pre-line;
}

.pkg-metadata-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
  border-top: 1px solid rgba(20, 23, 17, 0.08);
  padding-top: 20px;
}

.pkg-metadata-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pkg-metadata-label {
  font-size: 0.74rem;
  font-weight: 850;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pkg-metadata-value {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1.45;
  white-space: pre-line;
}

/* ── Dynamic Day-by-Day Itinerary & Destinations ── */
.pkg-itinerary-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 16px);
  margin: 0 0 clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.pkg-itinerary-tab-btn {
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 999px;
  transition: all 250ms ease;
  position: relative;
  text-transform: uppercase;
}

.pkg-itinerary-tab-btn:hover {
  color: var(--accent-dark);
  background: rgba(49, 74, 114, 0.05);
}

.pkg-itinerary-tab-btn.is-active {
  color: #ffffff;
  background: var(--accent-dark);
  box-shadow: 0 8px 24px rgba(39, 70, 110, 0.2);
}

.pkg-day-pane {
  animation: fadeIn 300ms ease;
}

/* Destinations within a Day */
.pkg-day-destinations {
  background: rgba(47, 114, 102, 0.04);
  border: 1px solid rgba(47, 114, 102, 0.12);
  border-radius: 18px;
  padding: clamp(20px, 3vw, 28px);
  margin-bottom: clamp(24px, 4vw, 36px);
}

.pkg-day-dest-title {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pkg-day-dest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pkg-day-dest-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(49, 74, 114, 0.12);
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 14px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(49, 74, 114, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pkg-day-dest-card:hover {
  transform: translateY(-1.5px);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(47, 114, 102, 0.08);
}

.pkg-day-dest-icon {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Rundown within a Day */
.pkg-day-rundown {
  padding-inline: 4px;
}

.pkg-day-rundown-title {
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(49, 74, 114, 0.08);
  padding-bottom: 8px;
}

.pkg-wa-cta {
  width: 100%;
  background: var(--paper);
  padding: clamp(34px, 5vw, 64px) clamp(18px, 5vw, 64px);
}

.pkg-wa-cta-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(20, 23, 17, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 23, 17, 0.08);
}

.pkg-wa-cta-copy {
  min-width: 0;
}

.pkg-wa-cta-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pkg-wa-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.pkg-wa-cta p {
  margin: 8px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.pkg-wa-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: #2f7266;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(47, 114, 102, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pkg-wa-cta-button:hover {
  transform: translateY(-2px);
  background: #245e54;
  box-shadow: 0 16px 36px rgba(47, 114, 102, 0.34);
}

.pkg-wa-cta-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
}

.pkg-wa-cta-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 720px) {
  .pkg-wa-cta {
    padding-inline: 16px;
  }

  .pkg-wa-cta-inner {
    grid-template-columns: 1fr;
    padding: 20px;
    border-radius: 16px;
  }

  .pkg-wa-cta-button {
    width: 100%;
  }
}

/* Reduce itinerary/pricing padding to match new tighter rhythm */

/* ── Office Map Section ── */
.office-map-section {
  width: 100%;
  padding: clamp(64px, 8vw, 112px) clamp(32px, 8vw, 120px);
  background: var(--paper);
}

.office-map-inner {
  width: min(calc(100% - 0px), var(--container));
  margin: 0 auto;
}

.office-map-heading {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.office-map-heading h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 8px;
}

.office-map-heading p {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.office-map-panel {
  position: relative;
  width: min(1120px, 100%);
  min-height: clamp(360px, 42vw, 520px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(20, 23, 17, 0.08);
  border-radius: clamp(18px, 2vw, 28px);
  background: rgba(20, 23, 17, 0.06);
  box-shadow: 0 26px 90px rgba(47, 65, 52, 0.13);
}

.office-map-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

.office-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

/* ── Office Map Card (Google Maps link) ── */
.office-map-card {
  position: absolute;
  left: clamp(16px, 2.4vw, 28px);
  bottom: clamp(16px, 2.4vw, 28px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(520px, calc(100% - clamp(32px, 4.8vw, 56px)));
  padding: 18px 20px;
  border: 1px solid rgba(20, 23, 17, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 54px rgba(20, 23, 17, 0.16);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}
.office-map-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.office-map-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  flex-shrink: 0;
}
.office-map-card-text {
  flex: 1;
  min-width: 0;
}
.office-map-card-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.office-map-card-text span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.office-map-card-arrow {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s, color 0.2s;
}
.office-map-card:hover .office-map-card-arrow {
  transform: translate(3px, -3px);
  color: var(--ink);
}

@media (max-width: 640px) {
  .office-map-section {
    padding-inline: 16px;
  }

  .office-map-panel {
    min-height: 440px;
    border-radius: 16px;
  }

  .office-map-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
  }

  .office-map-card-icon {
    width: 46px;
    height: 46px;
  }
}

/* ─── Instagram Feed Section ──────────────────────── */
.instagram-feed-section {
  width: 100%;
  background: var(--paper-deep, #f5f4eb);
  padding: clamp(60px, 8vw, 90px) clamp(24px, 5vw, 64px);
  border-top: 1px solid rgba(20, 23, 17, 0.05);
}
.instagram-feed-inner {
  max-width: var(--container, 1200px);
  margin: 0 auto;
  width: 100%;
}
.instagram-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2d6a4f; /* Accent Green */
  margin-bottom: 8px;
}
.instagram-username-heading {
  margin-bottom: 8px !important;
}
.instagram-profile-link {
  color: var(--ink, #141711) !important;
  text-decoration: none;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease;
}
.instagram-profile-link:hover {
  opacity: 0.8;
}
.instagram-bio {
  font-size: 0.95rem;
  color: var(--muted, #70756b);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: 40px;
}

/* Dynamic Grid Column Sizes depending on size configuration */
.instagram-grid {
  display: grid;
  gap: 16px;
  width: 100%;
}
.instagram-grid--small {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
}
.instagram-grid--medium {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.instagram-grid--large {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

@media (max-width: 768px) {
  .instagram-grid--small {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-grid--medium {
    grid-template-columns: repeat(2, 1fr);
  }
  .instagram-grid--large {
    grid-template-columns: repeat(1, 1fr);
  }
}

.instagram-item {
  display: block;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--accent-dark, #27466e); /* Matches border style theme */
  box-shadow: 0 8px 24px rgba(20, 23, 17, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.instagram-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(39, 70, 110, 0.12);
}

.instagram-img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Perfect 1:1 Square aspect ratio */
  background: #eef0eb;
  overflow: hidden;
}
.instagram-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-item:hover .instagram-img {
  transform: scale(1.06);
}

/* Premium Hover Overlay */
.instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(39, 70, 110, 0.9); /* Dark navy translucent overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  z-index: 1;
}
.instagram-item:hover .instagram-overlay {
  opacity: 1;
}
.instagram-overlay-content {
  text-align: center;
  color: #ffffff;
  transform: translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.instagram-item:hover .instagram-overlay-content {
  transform: translateY(0);
}
.instagram-overlay-icon {
  margin-inline: auto;
  margin-bottom: 12px;
  color: #ffffff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}
.instagram-caption {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
