/* ═══════════════════════════════════════════════
   DESIGN TOKENS: Explora Journeys x Visit Sumba
   ═══════════════════════════════════════════════ */
:root {
  /* Core palette */
  --navy:        #0A1628;
  --navy-deep:   #061020;
  --navy-mid:    #1A3A4A;
  --gold:        #C9A96E;
  --gold-dark:   #B8902A;
  --gold-light:  #DFC495;
  --gold-a11y:   #856527;
  --cream:       #F5F0E8;
  --cream-mid:   #EDE5D8;
  --white:       #FFFFFF;
  --text-dark:   #1A1A2E;
  --text-body:   #4A4A5A;
  --text-muted:  #60606D;
  --border-light: rgba(0,0,0,0.08);
  --border-dark:  rgba(255,255,255,0.12);

  /* Sumba terracotta accent (brand color) */
  --terracotta:  #D17F61;
  --terracotta-dark: #B0654A;
  --terracotta-a11y: #8B4332;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;

  /* Layout */
  --max-w: 1280px;
  --pad-x: 40px;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* overflow-x lives on main, never on html/body: position:fixed children
   (mobile dock, lang pill, back-to-top) collapse to 0x0 on Chrome Android
   and iOS Safari if html/body clip overflow-x. */
main {
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-overline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-a11y);
  margin-bottom: 20px;
}
.section-overline::after {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--navy);
}

/* Scroll-reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.15);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 10px 24px;
  transition: background 0.2s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-content {
  padding-bottom: 48px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.82) 0%,
    rgba(10, 22, 40, 0.45) 45%,
    rgba(10, 22, 40, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}
.hero-overline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-overline::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 6.5vw, 86px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 680px;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.btn-primary {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 15px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
}
.btn-ghost {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border: none;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.55);
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s;
  display: inline-block;
}
.btn-ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--white);
  background: rgba(255,255,255,0.08);
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201,169,110,0.2);
}
.hero-stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 20px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-left: 32px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-stat-note {
  font-size: 9px;
  color: rgba(255,255,255,0.32);
  margin-top: 3px;
  display: block;
}

/* Hero scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 90px;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ═══════════════════════════════════════════════
   INTRO SECTION
   ═══════════════════════════════════════════════ */
.intro {
  padding: var(--space-2xl) 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text .section-heading {
  font-size: clamp(36px, 3.5vw, 52px);
  margin-bottom: 28px;
}
.intro-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
}
.intro-text p:last-of-type { margin-bottom: 36px; }
.intro-image {
  position: relative;
}
.intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.intro-image-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--navy);
  padding: 24px 28px;
  color: var(--white);
}
.intro-image-badge-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.intro-image-badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   DESTINATIONS GRID
   ═══════════════════════════════════════════════ */
.destinations {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}
.destinations-header {
  text-align: center;
  margin-bottom: 64px;
}
.destinations-header .section-overline { justify-content: center; color: var(--gold-a11y); }
.destinations-header .section-overline::after { display: none; }
.destinations-header .section-overline::before {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.destinations-header .section-heading {
  font-size: clamp(34px, 3.5vw, 50px);
  margin-bottom: 16px;
}
.destinations-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.dest-card {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}
.dest-card:first-child {
  grid-row: span 2;
}
.dest-card-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.dest-card:first-child .dest-card-img {
  min-height: 660px;
}
.dest-card:hover .dest-card-img {
  transform: scale(1.06);
}
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.1) 55%, transparent 100%);
  transition: background 0.3s ease;
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.25) 55%, rgba(10,22,40,0.05) 100%);
}
.dest-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
}
.dest-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.dest-card-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.dest-card:first-child .dest-card-title {
  font-size: 36px;
}
.dest-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 340px;
}
.dest-card-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.dest-card-link::after {
  content: '→';
  font-size: 14px;
}
.dest-card:hover .dest-card-link { gap: 14px; }

/* ═══════════════════════════════════════════════
   EXPERIENCES STRIP
   ═══════════════════════════════════════════════ */
.experiences {
  padding: var(--space-2xl) 0;
  background: var(--navy);
  overflow: hidden;
}
.experiences-header {
  margin-bottom: 60px;
}
.experiences-header .section-overline { color: var(--gold); }
.experiences-header .section-heading {
  font-size: clamp(34px, 3.5vw, 50px);
  color: var(--white);
  max-width: 520px;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.exp-item {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.exp-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
}
.exp-item:hover { background: var(--navy-mid); }
.exp-item:hover::before { transform: scaleX(1); }

.exp-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
  filter: brightness(0.85) saturate(0.9);
}
.exp-item:hover .exp-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}
.exp-content {
  padding: 32px 36px 44px;
  flex: 1;
}

.exp-number {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: rgba(201,169,110,0.55);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}
.exp-item:hover .exp-number { color: rgba(201,169,110,0.75); }
.exp-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}
.exp-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════════
   QUOTE / FEATURE BAND
   ═══════════════════════════════════════════════ */
.quote-band {
  padding: var(--space-xl) 0;
  background: var(--cream);
  border-top: 1px solid var(--cream-mid);
  border-bottom: 1px solid var(--cream-mid);
}
.quote-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 20px;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--navy);
  margin-bottom: 24px;
}
.quote-attribution {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.quote-attribution span { color: var(--gold-a11y); }

/* ═══════════════════════════════════════════════
   REGIONS FEATURE
   ═══════════════════════════════════════════════ */
.regions {
  padding: var(--space-2xl) 0;
  background: var(--white);
}
.regions-header {
  margin-bottom: 64px;
}
.regions-header .section-heading {
  font-size: clamp(34px, 3.5vw, 50px);
  max-width: 500px;
}

.regions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.region-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  overflow: hidden;
}
.region-item:nth-child(even) { direction: rtl; }
.region-item:nth-child(even) > * { direction: ltr; }

.region-img-wrap {
  overflow: hidden;
  position: relative;
}
.region-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.region-item:hover .region-img { transform: scale(1.05); }

.region-info {
  background: var(--cream);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.region-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold-a11y);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.region-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.region-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}
.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.region-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-a11y);
  border: 1px solid var(--terracotta);
  padding: 5px 12px;
}

/* ═══════════════════════════════════════════════
   RESORT HIGHLIGHT
   ═══════════════════════════════════════════════ */
.resort-highlight {
  padding: var(--space-2xl) 0;
  background: var(--navy);
}
.resort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.resort-img-wrap {
  position: relative;
  overflow: hidden;
}
.resort-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.resort-img-label {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
}
.resort-content .section-overline { color: var(--gold); }
.resort-content .section-heading {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--white);
  margin-bottom: 24px;
}
.resort-content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  margin-bottom: 20px;
}
.resort-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.resort-stat-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.resort-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════════
   CULTURE STRIP
   ═══════════════════════════════════════════════ */
.culture-strip {
  padding: var(--space-xl) 0;
  background: var(--terracotta-a11y);
}
.culture-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
}
.culture-left {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.culture-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.3);
}
.culture-right {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  max-width: 440px;
}

/* ═══════════════════════════════════════════════
   PORTFOLIO (domain acquisition)
   ═══════════════════════════════════════════════ */
.portfolio {
  padding: var(--space-2xl) 0;
  background: var(--navy-deep);
}
.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}
.portfolio-header .section-overline { justify-content: center; color: var(--gold); }
.portfolio-header .section-overline::after { display: none; }
.portfolio-header .section-overline::before {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.portfolio-header .section-heading {
  color: var(--white);
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 16px;
}
.portfolio-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.p-card {
  background: var(--navy);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease;
}
.p-card:hover { background: var(--navy-mid); }
.p-grade {
  align-self: flex-start;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.p-grade.platinum { border-color: var(--gold-light); color: var(--gold-light); }
.p-domain {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  word-break: break-word;
}
.p-domain a {
  color: inherit;
  text-decoration: none;
}
.p-domain a:hover {
  text-decoration: underline;
}
.p-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.p-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin-bottom: 22px;
  flex: 1;
}
.p-price {
  font-size: 12px;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 500;
}
.p-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.p-link::after { content: '→'; font-size: 13px; }
.p-card:hover .p-link { gap: 13px; }

/* ═══════════════════════════════════════════════
   SOURCE / FACT COMPONENTS (verification blocks)
   ═══════════════════════════════════════════════ */
.fact-block {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}
.fact-block-header { margin-bottom: 48px; }
.fact-block-header .section-heading { font-size: clamp(32px, 3.5vw, 48px); }
.fact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
  max-width: 960px;
}
.fact-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  padding-left: 22px;
  position: relative;
}
.fact-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
}
.fact-list li a { color: var(--terracotta-dark); text-decoration: underline; }
.fact-block-img {
  width: 100%;
  max-width: 960px;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 40px;
  display: block;
}
.verified-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.source-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 32px 36px;
  margin-top: 40px;
}
.source-card h2, .source-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
}
.source-card ul { display: flex; flex-direction: column; gap: 10px; }
.source-card li { font-size: 13px; line-height: 1.6; color: var(--text-muted); }
.source-card li a { color: var(--terracotta-dark); text-decoration: underline; }
.source-card.on-dark {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
}
.source-card.on-dark h2, .source-card.on-dark h3 { color: var(--white); }
.source-card.on-dark li { color: rgba(255,255,255,0.55); }
.source-card.on-dark li a { color: var(--gold-light); }

.breadcrumb-nav {
  padding: 100px 0 0;
}
.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.breadcrumb-nav li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--border-light); }
.breadcrumb-nav a { color: var(--terracotta-dark); }
.breadcrumb-nav li:last-child { color: var(--text-dark); font-weight: 600; }

.related-pages {
  padding: var(--space-xl) 0 var(--space-2xl);
  background: var(--white);
  border-top: 1px solid var(--cream-mid);
}
.related-pages h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 28px; }
.related-pages ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}
.related-pages a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
}

.buyer-fit {
  padding: var(--space-2xl) 0;
  background: var(--navy-deep);
}
.buyer-fit-header { text-align: center; margin-bottom: 56px; }
.buyer-fit-header .section-overline { justify-content: center; color: var(--gold); }
.buyer-fit-header .section-overline::after { display: none; }
.buyer-fit-header .section-overline::before {
  content: ''; flex: 0 0 48px; height: 1px; background: var(--gold); opacity: 0.6;
}
.buyer-fit-header .section-heading { color: var(--white); font-size: clamp(32px, 3.5vw, 48px); }
.buyer-fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.buyer-fit-card { background: var(--navy); padding: 32px 28px; }
.buyer-fit-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.buyer-fit-card p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.6); }
.buyer-fit-card .segment-label {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 10px;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header .section-overline { justify-content: center; }
.faq-header .section-overline::after { display: none; }
.faq-header .section-overline::before {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.faq-header .section-heading {
  font-size: clamp(32px, 3.5vw, 48px);
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  padding: 30px 0;
  border-bottom: 1px solid var(--cream-mid);
}
.faq-item:first-child { padding-top: 0; }
.faq-q {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}
.faq-a {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════════
   PRACTICAL INFO (CTA SECTION)
   ═══════════════════════════════════════════════ */
.practical {
  padding: var(--space-2xl) 0;
  background: var(--white);
}
.practical-header {
  text-align: center;
  margin-bottom: 60px;
}
.practical-header .section-overline { justify-content: center; }
.practical-header .section-overline::after { display: none; }
.practical-header .section-overline::before {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.practical-header .section-heading {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 12px;
}
.practical-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pcard {
  background: var(--cream);
  padding: 40px 36px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.pcard:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.pcard-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard-icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.pcard-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.pcard-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════════
   CONTACT / ACQUISITION FORM
   ═══════════════════════════════════════════════ */
.contact-band {
  padding: var(--space-2xl) 0;
  background: var(--navy);
}
.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact-inner .section-overline { justify-content: center; color: var(--gold); }
.contact-inner .section-overline::after { display: none; }
.contact-inner .section-overline::before {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.contact-inner .section-heading {
  color: var(--white);
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 16px;
}
.contact-inner > p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
}
.acq-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  text-align: left;
}
.acq-form .form-group { margin-bottom: 20px; }
.acq-form label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.acq-form input,
.acq-form select,
.acq-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
}
.acq-form select { background-color: #10203a; }
.acq-form textarea { resize: vertical; }
.acq-form .hp-field { position: absolute; left: -9999px; }
.acq-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px;
  cursor: pointer;
  transition: background 0.2s;
}
.acq-submit:hover { background: var(--gold-dark); }
.acq-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-feedback {
  margin-top: 14px;
  font-size: 12px;
  text-align: center;
  color: var(--gold-light);
  display: none;
}

/* General contact section sits on a light background, not navy: override
   the dark-theme form colors so text stays readable. */
#general-contact .contact-inner .section-heading { color: var(--navy); }
#general-contact .contact-inner > p { color: var(--text-body); }
#general-contact .acq-form {
  background: var(--white);
  border: 1px solid var(--border-light);
}
#general-contact .acq-form label { color: var(--text-body); }
#general-contact .acq-form input,
#general-contact .acq-form textarea {
  background: var(--cream-mid);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}
#general-contact .form-feedback { color: var(--terracotta-dark); }

/* Success modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,16,32,0.9);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-content {
  background: var(--cream);
  padding: 48px 44px;
  max-width: 400px;
  text-align: center;
}
.modal-icon { color: var(--gold-dark); margin: 0 auto 20px; width: 48px; height: 48px; }
.modal-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
.modal-content h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.modal-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: 72px 0 36px;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════
   MOBILE DOCK / LANG PILL / BACK-TO-TOP
   (fixed elements, always direct children of <body>,
   never nested inside an overlay that can display:none)
   ═══════════════════════════════════════════════ */
.mobile-dock {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding: max(6px, env(safe-area-inset-top)) 0 6px;
  justify-content: space-around;
  align-items: stretch;
}
.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 4px;
  border-radius: 10px;
  flex: 1;
  transition: color 0.16s, background 0.16s;
}
.dock-item svg { flex-shrink: 0; }
.dock-item:hover,
.dock-item.active {
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}

.mobile-lang-pill {
  display: none;
  position: fixed;
  top: max(86px, calc(76px + env(safe-area-inset-top)));
  right: 14px;
  z-index: 1190;
  align-items: center;
  gap: 6px;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  cursor: pointer;
}
.mobile-lang-pill:hover { background: rgba(201,169,110,0.12); }
.mobile-lang-pill-globe { width: 14px; height: 14px; opacity: 0.7; flex-shrink: 0; stroke: var(--gold); }
.mobile-lang-pill-chevron { width: 9px; height: 9px; opacity: 0.6; transition: transform 0.2s; flex-shrink: 0; stroke: var(--gold); }
.mobile-lang-pill.open .mobile-lang-pill-chevron { transform: rotate(180deg); }

.mobile-lang-dropdown {
  display: none;
  position: fixed;
  top: 128px;
  right: 14px;
  z-index: 1190;
  background: var(--navy);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  padding: 6px;
  min-width: 140px;
}
.mobile-lang-dropdown.open { display: block; }
.mobile-lang-dropdown-item {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: background 0.15s, color 0.15s;
}
.mobile-lang-dropdown-item:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.mobile-lang-dropdown-item.active { background: var(--gold); color: var(--navy); font-weight: 600; }
.mobile-lang-dropdown-name {
  margin-left: 10px;
  font-weight: 400;
  opacity: 0.65;
  letter-spacing: 0.02em;
  text-transform: none;
}

.back-top-btn {
  display: none;
  position: fixed;
  right: 16px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1180;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(8px);
  color: var(--gold);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.back-top-btn.visible { display: flex; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad-x: 28px; }
  .intro-grid,
  .resort-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-image { display: none; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .destinations-grid .dest-card:first-child { grid-column: span 2; grid-row: span 1; }
  .destinations-grid .dest-card:first-child .dest-card-img { min-height: 420px; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .regions-list { grid-template-columns: 1fr; }
  .region-item,
  .region-item:nth-child(even) { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .fact-list { grid-template-columns: 1fr; }

  /* Verberg volledige desktop nav-balk, toon mobile dock + lang pill */
  .nav { display: none; }
  .mobile-dock { display: flex; }
  .mobile-lang-pill { display: flex; }
  body { padding-top: max(72px, calc(62px + env(safe-area-inset-top))); }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; --space-2xl: 80px; }
  .hero-title { font-size: 44px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .destinations-grid { grid-template-columns: 1fr; }
  .destinations-grid .dest-card:first-child { grid-column: span 1; }
  .exp-grid { grid-template-columns: 1fr; gap: 1px; }
  .culture-inner { grid-template-columns: 1fr; gap: 24px; }
  .culture-divider { display: none; }
  .practical-cards { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .acq-form { padding: 28px 22px; }
  .buyer-fit-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .resort-stats { grid-template-columns: 1fr 1fr; }
  .region-item { grid-template-columns: 1fr; min-height: auto; }
  .region-img-wrap { height: 240px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .back-top-btn { width: 40px; height: 40px; right: 14px; font-size: 15px; }
}

/* ═══════════════ COOKIE CONSENT BANNER ═══════════════ */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--navy-deep);
  color: var(--cream);
  padding: 24px 0;
  z-index: 1100;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid var(--border-dark);
}
.cookie-banner.show { bottom: 0; }
.cookie-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cookie-text { font-size: 14px; line-height: 1.6; color: var(--cream-mid); }
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 16px; flex-shrink: 0; }
@media (max-width: 768px) {
  .cookie-content { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn-primary, .cookie-actions .btn-ghost { flex: 1; text-align: center; }
}
