/* ============================================
   MANIPURAH — LUXURY EDITORIAL DESIGN SYSTEM
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  /* Color Palette */
  --ivory:        #F8F5F0;
  --cream:        #EFE7DC;
  --greige:       #CFC6BB;
  --mushroom:     #8D857C;
  --charcoal:     #3B3531;
  --soft-black:   #1F1D1B;
  --near-black:   #141210;
  --gold:         #A7895E;
  --gold-light:   #C4A97A;
  --gold-dark:    #8C6A43;
  --white:        #FFFFFF;

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

  /* Spacing */
  --section-pad:  120px;
  --section-pad-m: 72px;
  --container:    1280px;
  --gutter:       8%;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur:          0.55s;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* --- Typography Scale --- */
.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.t-headline {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

.t-subline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
}

.t-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.t-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-pad) 0;
}

.section--sm {
  padding: 80px 0;
}

.section--lg {
  padding: 160px 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
  padding: 0;
}

.nav.scrolled {
  background: rgba(20, 18, 16, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.nav__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--gold-light);
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light) !important;
  border: 1px solid rgba(167,137,94,0.5);
  padding: 10px 20px;
  transition: all 0.3s !important;
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--near-black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav__mobile a:hover {
  color: var(--gold-light);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(167,137,94,0.35);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--soft-black);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}

/* --- Gold Divider --- */
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.gold-line--center {
  margin: 24px auto;
}

/* --- SVG Symbol watermark --- */
.symbol-watermark {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

/* --- Grain texture overlay --- */
.grain-overlay {
  position: relative;
}

.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--near-black);
}

.hero__image {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center 20%;
  opacity: 0.55;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20,18,16,0.2) 0%,
    rgba(20,18,16,0.0) 30%,
    rgba(20,18,16,0.4) 60%,
    rgba(20,18,16,0.88) 100%
  );
}

.hero__gradient--side {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20,18,16,0.7) 0%,
    rgba(20,18,16,0.0) 60%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  padding-bottom: 100px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
  letter-spacing: 0.03em;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.9s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}

.hero__scroll span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-lr;
  rotate: 180deg;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* --- Gold geometric logo overlay --- */
.hero__symbol {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-60%);
  width: clamp(200px, 25vw, 380px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   RECOGNITION SECTION
   ============================================ */

.recognition {
  background: var(--ivory);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.recognition__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.recognition__label {
  padding-top: 8px;
}

.recognition__text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--charcoal);
  max-width: 680px;
}

.recognition__text em {
  font-style: italic;
  color: var(--gold-dark);
}

.recognition__body {
  margin-top: 36px;
  font-size: 15px;
  font-weight: 300;
  color: var(--mushroom);
  line-height: 1.9;
  max-width: 540px;
}

.recognition__items {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.recognition__item {
  padding-top: 20px;
  border-top: 1px solid var(--greige);
}

.recognition__item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.recognition__item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mushroom);
  line-height: 1.7;
}

/* ============================================
   RETREAT FEATURE
   ============================================ */

.retreat-feature {
  background: var(--soft-black);
  position: relative;
  overflow: hidden;
}

.retreat-feature__top {
  padding: 120px var(--gutter) 80px;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.retreat-feature__label {
  color: var(--gold);
}

.retreat-feature__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 78px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
}

.retreat-feature__right {
  padding-top: 16px;
}

.retreat-feature__intro {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 28px;
}

.retreat-feature__body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  margin-bottom: 36px;
}

.retreat-feature__mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 480px 320px;
  gap: 2px;
  margin: 0;
}

.retreat-feature__img {
  overflow: hidden;
  background: var(--charcoal);
  position: relative;
}

.retreat-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.retreat-feature__img:hover img {
  transform: scale(1.04);
}

.retreat-feature__img--main {
  grid-row: 1 / 3;
}

.retreat-feature__img--overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.5), transparent 60%);
}

.retreat-feature__caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.retreat-feature__cta {
  padding: 80px var(--gutter) 120px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 32px;
}

.retreat-feature__cta-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 300;
  color: var(--white);
}

.retreat-feature__locations {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.retreat-feature__location {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.retreat-feature__location::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */

.programs {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.programs__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
  gap: 32px;
  flex-wrap: wrap;
}

.programs__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 300;
  color: var(--charcoal);
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.program-card {
  background: var(--soft-black);
  padding: 52px 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.program-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.program-card:hover {
  background: var(--charcoal);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card__number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
}

.program-card__label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.program-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.program-card__sub {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.program-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  flex: 1;
}

.program-card__arrow {
  margin-top: 32px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(167,137,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}

.program-card:hover .program-card__arrow {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ============================================
   DEPTH SECTION (Wat je kunt tegenkomen)
   ============================================ */

.depth {
  background: var(--ivory);
  padding: var(--section-pad) 0;
}

.depth__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.depth__content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 28px;
  line-height: 1.15;
}

.depth__intro {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--mushroom);
  margin-bottom: 32px;
  line-height: 1.6;
}

.depth__body {
  font-size: 15px;
  font-weight: 300;
  color: var(--mushroom);
  line-height: 1.9;
}

.depth__topics {
  display: grid;
  gap: 20px;
}

.depth__topic {
  padding: 28px 32px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  position: relative;
  transition: all 0.3s;
}

.depth__topic:hover {
  background: var(--greige);
  transform: translateX(4px);
}

.depth__topic h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.depth__topic p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mushroom);
  line-height: 1.7;
}

/* Gold geometric SVG decorations */
.gold-symbol {
  display: block;
  margin: 0 auto;
}

/* ============================================
   QUOTE / PULL SECTION
   ============================================ */

.pull-quote {
  background: var(--charcoal);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pull-quote__text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.pull-quote__text::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 160px;
  color: rgba(167,137,94,0.12);
  position: absolute;
  top: -40px;
  left: -40px;
  line-height: 1;
  pointer-events: none;
}

.pull-quote__attr {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--near-black);
  padding: 80px 0 40px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.footer__brand-logo {
  margin-bottom: 20px;
}

.footer__brand-logo img {
  width: auto;
  height: 80px;
  filter: none;
  opacity: 1;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  margin-bottom: 28px;
}

.footer__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 280px;
}

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.footer__col ul a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}

.footer__legal a:hover {
  color: var(--gold-light);
}

/* ============================================
   PAGE HEROES (interior pages)
   ============================================ */

.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background: var(--soft-black);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.page-hero--light {
  background: var(--cream);
  color: var(--charcoal);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(20,18,16,0.9));
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.page-hero__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.06;
  max-width: 760px;
}

.page-hero--light .page-hero__title {
  color: var(--charcoal);
}

.page-hero__sub {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}

/* ============================================
   OVER MIJ
   ============================================ */

.about-story {
  background: var(--ivory);
  padding: var(--section-pad) 0;
}

.about-story__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}

.about-story__image-wrap {
  position: sticky;
  top: 120px;
}

.about-story__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.about-story__frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--greige);
  overflow: hidden;
  position: relative;
}

.about-story__frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 40%;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
}

.about-story__content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-story__lead {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1.6;
  margin-bottom: 32px;
}

.about-story__text {
  font-size: 15px;
  font-weight: 300;
  color: var(--mushroom);
  line-height: 1.95;
}

.about-story__text p + p {
  margin-top: 20px;
}

.about-credentials {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.credential-card {
  background: var(--white);
  padding: 44px 36px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.credential-card:hover {
  border-bottom-color: var(--gold);
}

.credential-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: var(--gold);
}

.credential-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.credential-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mushroom);
  line-height: 1.8;
}

/* ============================================
   CONTENT SECTIONS (Programs)
   ============================================ */

.content-section {
  padding: var(--section-pad) 0;
}

.content-section--dark {
  background: var(--soft-black);
  color: var(--white);
}

.content-section--cream {
  background: var(--cream);
}

.content-section--ivory {
  background: var(--ivory);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-grid--reverse .content-grid__image {
  order: 2;
}

.content-grid--reverse .content-grid__text {
  order: 1;
}

.content-grid__image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--greige);
}

.content-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.content-grid__image:hover img {
  transform: scale(1.04);
}

.content-grid__text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 20px;
}

.content-grid__text .lead {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
  color: var(--mushroom);
  line-height: 1.6;
}

.content-section--dark .content-grid__text .lead {
  color: rgba(255,255,255,0.55);
}

.content-grid__text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mushroom);
  line-height: 1.9;
}

.content-section--dark .content-grid__text p {
  color: rgba(255,255,255,0.5);
}

/* Module List */
.module-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.module-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(167,137,94,0.2);
  display: flex;
  gap: 20px;
}

.module-item__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  min-width: 28px;
}

.module-item__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.content-section--dark .module-item__title {
  color: var(--white);
}

.module-item__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--mushroom);
  line-height: 1.7;
}

.content-section--dark .module-item__desc {
  color: rgba(255,255,255,0.45);
}

/* ============================================
   INVESTERING
   ============================================ */

.pricing {
  background: var(--ivory);
  padding: var(--section-pad) 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.pricing-card {
  background: var(--cream);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.pricing-card--dark {
  background: var(--soft-black);
}

.pricing-card__label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pricing-card--dark .pricing-card__title {
  color: var(--white);
}

.pricing-card__sub {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: var(--mushroom);
  margin-bottom: 32px;
}

.pricing-card--dark .pricing-card__sub {
  color: rgba(255,255,255,0.45);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card__price-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--mushroom);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.pricing-card--dark .pricing-card__price-note {
  color: rgba(255,255,255,0.35);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 300;
  color: var(--mushroom);
  line-height: 1.6;
}

.pricing-card--dark .pricing-features li {
  color: rgba(255,255,255,0.5);
}

.pricing-features li::before {
  content: '';
  display: block;
  min-width: 16px;
  height: 1px;
  background: var(--gold);
  margin-top: 10px;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mushroom);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--greige);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  transition: border-color 0.3s;
  outline: none;
  resize: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
}

.contact-info {
  padding-top: 16px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.contact-detail {
  padding: 20px 0;
  border-bottom: 1px solid var(--greige);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail__value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: var(--charcoal);
}

/* ============================================
   AGENDA
   ============================================ */

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 56px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 40px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
}

.agenda-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.agenda-item:hover {
  background: var(--greige);
}

.agenda-item:hover::before {
  width: 3px;
}

.agenda-item__date {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--mushroom);
}

.agenda-item__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--charcoal);
}

.agenda-item__meta {
  font-size: 12px;
  font-weight: 300;
  color: var(--mushroom);
  margin-top: 4px;
}

.agenda-item__tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(167,137,94,0.3);
  padding: 6px 14px;
  white-space: nowrap;
}

/* ============================================
   MANIPURAH BRAND PAGE
   ============================================ */

.brand-manifesto {
  background: var(--near-black);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.brand-manifesto__highlight {
  color: var(--gold-light);
  font-style: italic;
}

.brand-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
}

.brand-pillar {
  padding: 52px 40px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(167,137,94,0.15);
  transition: background 0.3s;
}

.brand-pillar:hover {
  background: rgba(255,255,255,0.06);
}

.brand-pillar__num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 300;
  color: rgba(167,137,94,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.brand-pillar h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

.brand-pillar p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.3); opacity: 0.3; }
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  :root {
    --gutter: 6%;
    --section-pad: 96px;
  }

  .nav__links {
    gap: 20px;
  }

  .nav__links a {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  :root {
    --section-pad: 72px;
    --gutter: 5%;
  }

  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .recognition__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .retreat-feature__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .retreat-feature__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 320px 240px 240px;
  }

  .retreat-feature__img--main {
    grid-row: 1;
  }

  .depth__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-story__inner {
    grid-template-columns: 1fr;
  }

  .about-story__image-wrap {
    position: static;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-grid--reverse .content-grid__image {
    order: 0;
  }

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

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

  .brand-pillars {
    grid-template-columns: 1fr;
  }

  .agenda-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .agenda-item__tag {
    align-self: flex-start;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 6%;
    --section-pad: 64px;
  }

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

  .program-card {
    min-height: 280px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .retreat-feature__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero__actions .btn {
    text-align: center;
  }

  .pricing-card {
    padding: 40px 28px;
  }
}

/* ============================================
   RESPONSIVE FIXES — WERK / TOPICS
   ============================================ */

@media (max-width: 860px) {
  .topics-grid {
    grid-template-columns: 1fr !important;
  }

  .topics-grid > [style*="grid-column:span 2"] {
    grid-column: span 1 !important;
  }

  .topics-inner-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   NAV — EXTRA BREAKPOINT 1240px
   ============================================ */

@media (max-width: 1240px) {
  .nav__links {
    gap: 20px;
  }
}

@media (max-width: 1180px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
}



@media (max-width: 860px) {
  .jaargrid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    padding: 48px 32px !important;
  }
}
