/* ═══════════════════════════════════════════════════════════════
   TERUG NAAR MIJ — Site Styles
   Vogue editorial × Aman resort × Cinematic luxury
   ═══════════════════════════════════════════════════════════════ */

/* ══ NAVIGATION ══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 72px;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: var(--line-dark);
}
.site-header.overlay {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.ivory {
  background: var(--ivory);
  border-bottom: var(--line-ivory);
}
.site-header.scrolled {
  background: rgba(247,245,242,.97);
  backdrop-filter: blur(16px);
  border-bottom: var(--line-ivory);
  box-shadow: 0 1px 24px rgba(13,11,8,.06);
}
.site-header.scrolled .brand-name { color: var(--ink); }
.site-header.scrolled .nav-link { color: var(--ink-soft); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--ink); }

/* Brand lock — masthead centered */
.brand-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  justify-self: center;
}
/* Header: full stacked logo image */
.site-header .brand-lock img {
  display: block;
  height: 108px;
  width: auto;
  opacity: 1;
}
/* Footer small logo */
.brand-lock.small img {
  display: block;
  width: 36px;
  height: auto;
  opacity: .75;
}
/* Hide CSS text — text is baked into the stacked image */
.site-header .brand-text { display: none; }
.brand-text { display: flex; flex-direction: column; align-items: center; gap: 0; }
.brand-name {
  font-family: var(--sans);
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--on-dark);
  line-height: 1;
}
.site-header.ivory .brand-name { color: var(--ink); }
.brand-tag { display: none; }

/* Nav links — verdeeld, CTA rechts uitgelijnd */
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 6px;
}
/* Duw Gratis Zelftest CTA helemaal naar rechts */
.primary-nav .nav-cta {
  margin-left: auto;
}
/* Mobiele CTA — NOOIT zichtbaar op desktop */
.nav-cta-mobile { display: none !important; }
.nav-link {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(13,11,8,.18);
  padding: 8px 20px;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.nav-link:hover { border-color: var(--gold); color: var(--gold); }
.nav-link.active { border-color: var(--ink); color: var(--ink); background: rgba(13,11,8,.04); }
.site-header.overlay .nav-link { color: var(--ivory); border-color: rgba(247,244,239,.35); }
.site-header.overlay .nav-link:hover { border-color: var(--gold); color: var(--gold); }
.site-header.scrolled .nav-link { color: var(--ink); border-color: rgba(13,11,8,.18); }
.site-header.scrolled .nav-link:hover { border-color: var(--gold); color: var(--gold); }

/* Retreat Ibiza — subtiel gold accent */
.nav-link.nav-retreat { color: var(--gold); border-color: rgba(198,164,106,.35); }
.nav-link.nav-retreat:hover { border-color: var(--gold); background: rgba(198,164,106,.07); }
.site-header.overlay .nav-link.nav-retreat { color: var(--gold); border-color: rgba(198,164,106,.45); }
.site-header.scrolled .nav-link.nav-retreat { color: var(--gold); border-color: rgba(198,164,106,.4); }
.nav-drawer a.nav-retreat { color: var(--gold); border-color: rgba(198,164,106,.3); }

/* Dropdown nav */
.nav-item-dropdown { position: relative; }
.nav-has-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.nav-has-dropdown::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-item-dropdown:hover .nav-has-dropdown { border-color: var(--gold); color: var(--gold); }
.nav-item-dropdown:hover .nav-has-dropdown::after { transform: rotate(-135deg) translateY(-2px); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ivory);
  border: 1px solid rgba(13,11,8,.14);
  border-top: 2px solid var(--gold);
  min-width: 240px;
  display: none;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(13,11,8,.12);
  z-index: 200;
}
.nav-item-dropdown:hover .nav-dropdown { display: flex; }
.nav-dropdown a {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 20px;
  border-bottom: .5px solid rgba(13,11,8,.07);
  transition: color .2s, background .2s, padding-left .2s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--gold); background: rgba(198,164,106,.05); padding-left: 26px; }
.nav-dropdown a::before { content: '—'; margin-right: 8px; color: var(--gold); }

/* Mobile drawer */
.drawer-section-label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  pointer-events: none;
  align-self: center;
}
.drawer-sub {
  font-size: clamp(18px, 2.5vw, 26px) !important;
  color: var(--on-dark-mid) !important;
  border-left: 2px solid rgba(198,164,106,.3) !important;
  padding-left: 20px !important;
  margin-left: 8px;
}
.drawer-sub:hover { color: var(--gold) !important; border-left-color: var(--gold) !important; }

/* Nav CTA gold — gevuld blok */
.nav-cta {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  border: 1px solid var(--gold) !important;
  padding: 8px 18px;
  transition: background var(--dur-fast), box-shadow var(--dur-fast);
}
.nav-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light) !important;
  color: var(--black) !important;
  box-shadow: 0 0 20px rgba(198,164,106,.4);
}

/* Masthead — split nav columns */
.header-nav-left {
  display: flex;
  align-items: center;
  justify-self: start;
}
.header-nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}

/* MENU text trigger (replaces hamburger bars) */
.menu-trigger {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(13,11,8,.18);
  padding: 8px 14px;
  background: none;
  cursor: pointer;
  transition: border-color var(--dur-fast), color var(--dur-fast);
  -webkit-tap-highlight-color: transparent;
}
.menu-trigger:hover { border-color: var(--gold); color: var(--gold); }
.site-header.overlay .menu-trigger { color: var(--ivory); border-color: rgba(247,244,239,.35); }
.site-header.scrolled .menu-trigger { color: var(--ink); border-color: rgba(13,11,8,.18); }
.site-header.overlay .brand-lock img { filter: brightness(0) invert(1); opacity: .65; }
.site-header.scrolled .brand-name { color: var(--ink); }

/* Mobile hamburger */
.nav-hamburger,
button.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span,
button.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .35s var(--ease), opacity .2s ease, background var(--dur);
  transform-origin: center;
}
.site-header.overlay .nav-hamburger span,
.site-header.overlay button.hamburger span { background: var(--ivory); }
.site-header.scrolled .nav-hamburger span,
.site-header.scrolled button.hamburger span { background: var(--ink); }

/* Hamburger → X when open */
.nav-hamburger.open span:nth-child(1),
button.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2),
button.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3),
button.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Scroll lock when drawer is open */
body.nav-open { overflow: hidden; }

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100vh;
  background: var(--black-rich);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  pointer-events: none;
}
.nav-drawer.open { transform: none; pointer-events: auto; }
.nav-drawer a {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--on-dark);
  border: 1px solid rgba(247,244,239,.15);
  padding: 14px 32px;
  width: 80%;
  text-align: center;
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.nav-drawer a:hover { color: var(--gold); border-color: var(--gold); background: rgba(198,164,106,.06); }
.nav-drawer .drawer-section-label {
  width: 80%;
  text-align: center;
}
.nav-drawer .drawer-sub {
  font-size: clamp(18px, 2.5vw, 24px) !important;
  width: 72% !important;
  border-color: rgba(247,244,239,.1) !important;
  border-left: none !important;
  padding: 10px 32px !important;
  margin-left: 0 !important;
  color: rgba(247,244,239,.55) !important;
}
.nav-drawer .drawer-sub:hover { color: var(--gold) !important; border-color: var(--gold) !important; }

/* ══ BUTTONS ══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all var(--dur-fast) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--dur) var(--ease-out);
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  border: 3px solid transparent;
  border-left: 5px solid currentColor;
}
.btn:hover .arrow { width: 42px; }

/* Primary: black/ivory */
.btn-primary {
  background: var(--black-rich);
  color: var(--ivory);
  padding: 14px 36px;
}
.btn-primary:hover { background: var(--black-panel); }

/* Primary gold */
.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 14px 36px;
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 0 32px rgba(176,141,87,.4); }

/* Ghost on dark */
.btn-ghost {
  border: 1px solid rgba(247,244,239,.45);
  color: var(--on-dark-mid);
  padding: 13px 35px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Ghost on ivory */
.btn-outline {
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 13px 35px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Arrow link */
.link-arrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--dur) var(--ease-out);
}
.link-arrow:hover { gap: 18px; }
.link-arrow::after {
  content: '';
  display: inline-block;
  width: 24px; height: .5px;
  background: var(--gold);
  position: relative;
}

/* ══ EYEBROW LABEL ════════════════════════════════════════════════ */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--label);
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: .5px;
  background: var(--gold);
  opacity: 1;
}

/* ══ SECTION WRAPPERS ════════════════════════════════════════════ */
.s-dark  { background: var(--black-rich); }
.s-panel { background: var(--black-warm); }
.s-ivory { background: var(--ivory); }
.s-warm  { background: var(--ivory-warm); }

/* ══ PAGE HERO (inner pages) ═════════════════════════════════════ */
.page-hero {
  background: var(--ivory);
  padding: var(--xl) var(--gutter) var(--lg);
  text-align: center;
  overflow: hidden;
}
.page-hero .eyebrow { justify-content: center; margin-bottom: 48px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: var(--h1);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 36px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .lead {
  font-family: var(--sans);
  font-size: var(--lead);
  font-weight: 300;
  line-height: 2.0;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto;
}
.accent-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* ══ EDITORIAL SPLIT ══════════════════════════════════════════════ */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.editorial-photo {
  background-size: cover;
  background-position: center;
  min-height: 480px;
  filter: saturate(.85);
}
.editorial-text {
  padding: var(--lg) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}
.editorial-text h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 22px;
}
.editorial-text h2 em { font-style: italic; color: var(--gold); }
.editorial-text .accent-italic { font-size: var(--h4); display: block; margin-bottom: 44px; }
.editorial-text p {
  font-size: var(--body);
  font-weight: 300;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 46ch;
}

/* ══ FULL TEXT BLOCK ══════════════════════════════════════════════ */
.founder-text-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--gutter);
  padding: var(--xl) var(--gutter);
  background: var(--ivory);
  border-top: var(--line-ivory);
}
.founder-sticky {
  position: sticky;
  top: 100px;
  height: fit-content;
}
.founder-sticky h2 {
  font-family: var(--serif);
  font-size: var(--h3);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: 12px;
}
.founder-copy p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.15;
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 64ch;
}

/* ══ LARGE QUOTE ══════════════════════════════════════════════════ */
.large-quote {
  background: var(--black-rich);
  padding: var(--xl) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.large-quote::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(200px, 30vw, 380px);
  font-weight: 300;
  color: var(--gold);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
}
.large-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.42;
  color: var(--on-dark);
  max-width: 880px;
  margin: 0 auto 44px;
  position: relative;
}
.large-quote blockquote em { color: var(--gold); font-style: italic; }
.large-quote cite {
  font-family: var(--sans);
  font-size: var(--label);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  font-style: normal;
}

/* ══ FEATURE GRID ══════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--line-ivory);
  background: var(--ivory);
}
.feature-item {
  padding: var(--md) var(--gutter);
  border-right: var(--line-ivory);
}
.feature-item:last-child { border-right: none; }
.feature-item-icon { height: 32px; width: auto; margin-bottom: 28px; opacity: .7; }
.feature-item h3 {
  font-family: var(--serif);
  font-size: var(--h4);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 20px;
}
.feature-item p {
  font-size: var(--body);
  font-weight: 300;
  line-height: 2.05;
  color: var(--ink-soft);
}

/* ══ CTA BAND ══════════════════════════════════════════════════════ */
.cta-band {
  padding: var(--xl) var(--gutter);
  background: var(--ivory-warm);
  border-top: var(--line-ivory);
}
.cta-band.centered { text-align: center; }
.cta-band h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.cta-band p {
  font-size: var(--body);
  font-weight: 300;
  line-height: 2.1;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto 48px;
}
.warm-section { background: var(--ivory-warm); }

/* ══ OFFER ROW ════════════════════════════════════════════════════ */
.offer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black-rich);
  border-top: var(--line-dark);
}
.offer {
  padding: 60px 36px 48px;
  border-right: var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background var(--dur-fast) var(--ease);
}
.offer:last-child { border-right: none; }
.offer:hover { background: var(--black-warm); }
.offer-icon { height: 28px; width: auto; margin-bottom: 32px; opacity: .5; filter: brightness(2) sepia(1) saturate(.5); }
.offer-kicker {
  font-family: var(--sans);
  font-size: var(--label);
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.offer-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  line-height: 1.32;
  color: var(--on-dark);
  margin-bottom: 24px;
}
.offer-rule {
  display: block;
  width: 28px; height: .5px;
  background: var(--gold);
  opacity: .4;
  margin-bottom: 16px;
}
.offer-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.0;
  color: var(--on-dark-soft);
  flex: 1;
  margin-bottom: 24px;
}
.offer-link {
  font-family: var(--sans);
  font-size: var(--label);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--dur) var(--ease-out);
}
.offer-link:hover { gap: 18px; }
.offer-link .arrow-sm {
  display: inline-block;
  width: 20px; height: .5px;
  background: var(--gold);
}

/* ══ PILLARS ══════════════════════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: var(--lg) var(--gutter);
  border-right: var(--line-ivory);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background var(--dur) var(--ease);
}
.pillar:last-child { border-right: none; }
.pillar-ivory { background: var(--ivory); }
.pillar-dark { background: var(--black-rich); }
.pillar-dark .pillar-title { color: var(--on-dark); }
.pillar-dark .pillar-body { color: var(--on-dark-mid); }
.pillar-icon { height: 36px; width: auto; opacity: .45; }
.pillar-dark .pillar-icon { filter: brightness(2) sepia(1) saturate(.4); opacity: .5; }
.pillar-title {
  font-family: var(--serif);
  font-size: var(--h4);
  font-weight: 300;
  letter-spacing: -.01em;
  color: var(--ink);
}
.pillar-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
}
.pillar-arrow {
  margin-top: auto;
  display: block;
  width: 20px; height: .5px;
  background: var(--gold);
  opacity: .5;
}

/* ══ RETREAT FEATURE ═════════════════════════════════════════════ */
.retreat-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}
.retreat-copy {
  padding: var(--lg) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black-rich);
}
.retreat-copy .eyebrow { margin-bottom: 32px; }
.retreat-title {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--on-dark);
  margin-bottom: 8px;
}
.retreat-sub {
  font-family: var(--serif);
  font-size: var(--h4);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 32px;
}
.retreat-body {
  font-size: var(--body);
  font-weight: 300;
  line-height: 2;
  color: var(--on-dark-mid);
  max-width: 44ch;
  margin-bottom: 40px;
}
.retreat-photo {
  background-size: cover;
  background-position: center;
  filter: saturate(.8);
  transition: filter var(--dur-slow) var(--ease);
}
.retreat-photo:hover { filter: saturate(.95); }

/* ══ AGENDA + CTA ═════════════════════════════════════════════════ */
.agenda-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ivory);
}
.agenda-panel { padding: var(--lg) var(--gutter); }
.agenda-panel .eyebrow { margin-bottom: 36px; }
.agenda-table { width: 100%; border-collapse: collapse; }
.agenda-table tr { border-bottom: var(--line-ivory); }
.agenda-table td { padding: 20px 0; vertical-align: middle; }
.agenda-date {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-soft);
  width: 42%;
  letter-spacing: .03em;
}
.agenda-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
}
.agenda-where { text-align: right; }
.agenda-chip {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: .5px solid rgba(13,11,8,.15);
  padding: 5px 10px;
}
.agenda-chip.online { color: var(--gold); border-color: rgba(176,141,87,.3); }
.closing-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--lg) var(--gutter);
}
.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,8,6,.82) 0%, rgba(9,8,6,.2) 60%);
}
.closing-cta > * { position: relative; z-index: 1; }
.closing-cta .eyebrow { margin-bottom: 16px; }
.closing-title {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.025em;
  color: var(--on-dark);
  margin-bottom: 12px;
}
.closing-body {
  font-size: var(--body);
  font-weight: 300;
  line-height: 1.9;
  color: var(--on-dark-mid);
  margin-bottom: 36px;
  max-width: 36ch;
}

/* ══ FOOTER ═══════════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  padding: 0;
  border-top: none;
  background: #1A1714;
}
.site-footer::before { content: none; }

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 60px;
  flex-wrap: wrap;
  position: relative;
}
.brand-lock.small img { height: 28px; filter: brightness(0); }
.site-footer .brand-name { color: #1a0e00; }
.site-footer .brand-tag  { color: rgba(26,14,0,.65); font-style: italic; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-nav a {
  font-family: var(--sans);
  font-size: var(--label);
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(26,14,0,.72);
  transition: color var(--dur-fast);
}
.footer-nav a:hover { color: #1a0e00; }
.footer-social { display: flex; gap: 20px; position: relative; }
.footer-social a {
  color: rgba(26,14,0,.65);
  transition: color var(--dur-fast);
}
.footer-social a:hover { color: #1a0e00; }

/* Divider rule: dark on gold */
.rule-gold-soft-dark {
  border: none;
  border-top: .5px solid rgba(26,14,0,.22);
  margin: 0;
  position: relative;
}

/* IVORY STRIP — bottom copyright bar */
.footer-fine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px var(--gutter) 32px;
  flex-wrap: wrap;
  position: relative;
  background: var(--ivory);
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
}
.footer-fine span {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .06em;
  color: rgba(13,11,8,.5);
  opacity: 1;
}

/* ── SLOTQUOTE ──────────────────────────────────────────── */
.footer-quote {
  background: var(--ivory);
  padding: clamp(64px,8vw,120px) clamp(24px,5vw,80px);
  text-align: center;
}
.fq-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: clamp(10px,1vw,12px);
  font-weight: 400;
  letter-spacing: .28em;
  color: var(--gold);
  margin-bottom: 12px;
}
.fq-diamond {
  display: block;
  color: var(--gold);
  font-size: 10px;
  margin-bottom: clamp(24px,3vw,40px);
}
.fq-text {
  font-family: var(--serif);
  font-size: clamp(22px,3.5vw,44px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto clamp(24px,3vw,40px);
}
.fq-text em { font-style: italic; color: var(--gold); }
.fq-rule {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto clamp(16px,2vw,24px);
}
.fq-squares {
  display: grid;
  grid-template-columns: repeat(2,12px);
  gap: 6px;
  justify-content: center;
  margin-bottom: clamp(16px,2vw,24px);
}
.fq-squares span {
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold);
  display: block;
}
.fq-name {
  font-family: var(--serif);
  font-size: clamp(16px,1.6vw,22px);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: clamp(16px,2vw,28px);
}
.fq-lotus {
  height: 36px;
  width: auto;
  opacity: .6;
}

/* ── NEW FOOTER ────────────────────────────────────────── */
.new-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 0;
  padding: clamp(48px,6vw,80px) clamp(24px,5vw,80px);
  max-width: 1300px;
  margin: 0 auto;
}
.new-footer-grid > * {
  padding: 0 clamp(16px,2vw,32px);
  border-left: .5px solid rgba(198,164,106,.2);
}
.new-footer-grid > *:first-child { border-left: none; padding-left: 0; }
.nf-brand { text-align: center; }
.nf-logo { height: 48px; width: auto; margin-bottom: 12px; opacity: .7; }
.nf-brand-name {
  display: block;
  font-family: var(--sans);
  font-size: clamp(14px,1.4vw,18px);
  font-weight: 400;
  letter-spacing: .22em;
  color: rgba(247,244,239,.88);
  margin-bottom: 4px;
}
.nf-brand-tag {
  display: block;
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}
.nf-brand-desc {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247,244,239,.45);
}
.nf-col-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(247,244,239,.88);
  margin-bottom: 20px;
}
.nf-item {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,244,239,.5);
  line-height: 1.6;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nf-item a {
  color: rgba(247,244,239,.5);
  text-decoration: none;
  transition: color .2s;
}
.nf-item a:hover { color: var(--gold); }
.nf-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nf-form input {
  font-family: var(--sans);
  font-size: 13px;
  padding: 10px 14px;
  border: .5px solid rgba(198,164,106,.25);
  border-radius: 4px;
  background: rgba(247,244,239,.07);
  color: rgba(247,244,239,.85);
}
.nf-form input::placeholder { color: rgba(247,244,239,.25); }
.nf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0D0B08;
  background: var(--gold);
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s ease;
}
.nf-btn:hover { background: var(--gold-light); }
.nf-divider {
  display: block;
  width: calc(100% - 2 * clamp(24px,5vw,80px));
  max-width: 1200px;
  height: .5px;
  background: var(--gold);
  margin: 0 auto;
}
.nf-item svg {
  flex-shrink: 0;
  color: var(--gold);
}
.nf-item a:hover svg,
.nf-col a:hover { color: var(--gold); }
.nf-bottom {
  text-align: center;
  padding: 20px clamp(24px,5vw,80px);
  border-top: .5px solid rgba(198,164,106,.15);
}
.nf-bottom a {
  color: rgba(247,244,239,.28);
  text-decoration: none;
  transition: color .2s;
}
.nf-bottom a:hover { color: var(--gold); }
.nf-bottom span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(247,244,239,.28);
}
@media (max-width: 960px) {
  html, body { overflow-x: hidden; }
  .new-footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: clamp(32px,5vw,48px) 24px;
  }
  .new-footer-grid > * {
    border-left: none;
    padding: 20px 0;
    text-align: left;
    border-bottom: .5px solid rgba(198,164,106,.15);
  }
  .new-footer-grid > *:last-child { border-bottom: none; }
  .nf-brand { text-align: center; padding-bottom: 24px; }
  .nf-col-title { cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
  .nf-col-title::after { content: '›'; font-size: 16px; color: var(--gold); transition: transform .2s; }
  .nf-item { justify-content: flex-start; }
  .nf-form { align-items: stretch; }
  .nf-form input { width: 100%; max-width: none; }
  .fq-lotus { height: 28px; }
  .footer-quote { padding: clamp(48px,8vw,80px) 24px; }
  .fq-text { font-size: clamp(20px,5vw,32px); }
  .fq-diamond { margin-bottom: clamp(16px,3vw,24px); }
  .fq-diamond::before, .fq-diamond::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: .5px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 12px;
  }
}

/* ══ HERO (homepage) ═════════════════════════════════════════════ */
.hero-dark {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
  background: var(--black-rich);
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--lg) var(--gutter) var(--lg) var(--gutter);
  position: relative;
}
.hero-text .eyebrow { margin-bottom: 36px; }
.hero-text h1 {
  font-family: var(--serif);
  font-size: var(--h1);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -.028em;
  color: var(--on-dark);
  margin-bottom: 36px;
}
.hero-text h1 em { font-style: italic; color: var(--gold); }
.hero-body {
  font-size: var(--body);
  font-weight: 300;
  line-height: 2;
  color: var(--on-dark-soft);
  max-width: 42ch;
  margin-bottom: 48px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.75) brightness(.85);
  transition: filter var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
.hero-image:hover .hero-photo {
  filter: saturate(.9) brightness(.9);
  transform: scale(1.02);
}
.hero-lotus {
  position: absolute;
  bottom: 36px; right: 36px;
  height: 80px; width: auto;
  opacity: .18;
}

/* ══ LUXURY SECTION HEADERS ══════════════════════════════════════ */
.section-header {
  padding: var(--xl) var(--gutter) var(--md);
  border-bottom: var(--line-ivory);
}
.section-header.dark { border-bottom: var(--line-dark); }
.section-nr {
  font-family: var(--sans);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 300;
  color: var(--ink);
  opacity: .04;
  line-height: 1;
  letter-spacing: -.04em;
  display: block;
  margin-bottom: -20px;
}
.section-nr.on-dark { color: var(--on-dark); opacity: .05; }

/* ══ GOLD RULE ════════════════════════════════════════════════════ */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
  margin: 0;
  border: none;
}
.gold-rule-left {
  height: .5px;
  background: linear-gradient(90deg, var(--gold) 60%, transparent);
  opacity: .4;
  width: 120px;
  margin-bottom: 28px;
}

/* ══ TESTIMONIAL ════════════════════════════════════════════════= */
.testimonial-section {
  background: var(--black-rich);
  padding: var(--xl) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '\201C';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 320px;
  color: var(--gold);
  opacity: .04;
  pointer-events: none;
  line-height: 1;
}
.testimonial-section blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--on-dark);
  max-width: 760px;
  margin: 0 auto 28px;
  position: relative;
}
.testimonial-section cite {
  font-family: var(--sans);
  font-size: var(--label);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .6;
  font-style: normal;
}

/* ══ DRAMA TEST BANNER ═══════════════════════════════════════════ */
.drama-banner {
  background: var(--black-warm);
  padding: var(--xl) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  align-items: center;
  border-top: var(--line-gold);
}
.drama-copy h2 {
  font-family: var(--serif);
  font-size: var(--h2);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--on-dark);
  margin-bottom: 12px;
}
.drama-copy h2 em { font-style: italic; color: var(--gold); }
.drama-copy p {
  font-size: var(--body);
  font-weight: 300;
  line-height: 2;
  color: var(--on-dark-mid);
  max-width: 48ch;
}
.drama-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

/* ══ LOCATIONS ════════════════════════════════════════════════════ */
.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black-rich);
}
.location-panel {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px var(--gutter);
  overflow: hidden;
}
.location-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) brightness(.8);
  transition: transform var(--dur-slow) var(--ease);
}
.location-panel:hover .location-photo { transform: scale(1.04); }
.location-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,8,6,.78) 0%, rgba(9,8,6,.08) 55%);
}
.location-content { position: relative; z-index: 1; }
.location-content .eyebrow { margin-bottom: 12px; }
.location-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--on-dark);
  margin-bottom: 10px;
  line-height: 1.1;
}
.location-desc {
  font-size: var(--body);
  font-weight: 300;
  line-height: 1.8;
  color: var(--on-dark-mid);
  max-width: 36ch;
}

/* ══ MOBILE ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .offer-row { grid-template-columns: 1fr 1fr; }
  .offer:nth-child(2) { border-right: none; }
  .offer:nth-child(1), .offer:nth-child(2) { border-bottom: var(--line-dark); }
}

/* Mobile — hamburger + CTA zichtbaar, rest verborgen */
@media (max-width: 900px) {
  .site-header { padding: 0 20px; }
  .site-header .primary-nav { display: none; }
  .nav-hamburger, button.hamburger { display: flex; }
  .nav-cta-mobile {
    display: flex !important;
    align-items: center;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--black) !important;
    background: var(--gold);
    border: 1px solid var(--gold) !important;
    padding: 8px 16px;
    text-decoration: none;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .site-header { padding: 0 24px; }

  .hero-dark { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { min-height: 55vw; }
  .hero-text { padding: 56px 24px 48px; }

  .editorial-split { grid-template-columns: 1fr; }
  .editorial-text { padding: 52px 24px; }
  .editorial-photo { min-height: 300px; }

  .founder-text-block { grid-template-columns: 1fr; }
  .founder-sticky { position: static; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: var(--line-ivory); }
  .feature-item:last-child { border-bottom: none; }

  .offer-row { grid-template-columns: 1fr; }
  .offer { border-right: none; border-bottom: var(--line-dark); }
  .offer:last-child { border-bottom: none; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: var(--line-ivory); }

  .retreat-feature { grid-template-columns: 1fr; }
  .retreat-copy { min-height: auto; }
  .retreat-photo { min-height: 56vw; order: -1; }

  .agenda-cta { grid-template-columns: 1fr; }
  .closing-cta { min-height: 60vw; }

  .locations { grid-template-columns: 1fr; }

  .drama-banner { grid-template-columns: 1fr; }
  .drama-cta { align-items: flex-start; }

  .large-quote { padding: 72px 24px; }
  .testimonial-section { padding: 72px 24px; }

  .footer-row { flex-direction: column; gap: 36px; }
  .footer-fine { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
