:root {
  --navy: #1a2744;
  --navy-deep: #0f1828;
  --navy-mid: #243358;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f7f0dc;
  --cream: #faf8f3;
  --white: #ffffff;
  --text: #1a2744;
  --text-mid: #4a5568;
  --text-light: #8a96a8;
  --border: rgba(26,39,68,0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px; font-weight: 600;
  color: var(--gold); letter-spacing: 0.05em;
}
.nav-name {
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  color: var(--white); letter-spacing: 0.03em; line-height: 1.2;
}
.nav-name span { display: block; font-size: 10px; font-family: var(--sans); font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; font-weight: 400; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--navy-deep) !important;
  padding: 8px 20px; font-weight: 500 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 5% 80px;
  position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 16px; margin-bottom: 32px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light);
}
.hero-eyebrow::before { content: ''; display: block; width: 16px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 500; line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 580px; margin-bottom: 48px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy-deep);
  padding: 14px 32px; font-size: 14px; font-weight: 500;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-block; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8);
  padding: 14px 32px; font-size: 14px; font-weight: 400;
  text-decoration: none; display: inline-block; letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-stats {
  display: flex; gap: 48px; margin-top: 72px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--serif); font-size: 40px; font-weight: 500;
  color: var(--gold-light); line-height: 1;
}
.hero-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 4px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-mid); font-weight: 400;
}
.trust-icon { color: var(--gold); font-size: 16px; }
.trust-sep { width: 1px; height: 20px; background: var(--border); }

/* ── SECTION STRUCTURE ── */
section { padding: 100px 5%; }
.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
h2.section-title {
  font-family: var(--serif); font-size: clamp(30px, 4vw, 48px);
  font-weight: 500; line-height: 1.15; color: var(--navy);
  margin-bottom: 20px;
}
h2.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-size: 17px; font-weight: 300; line-height: 1.8;
  color: var(--text-mid); max-width: 640px;
}

/* ── FOUNDER ── */
.founder-section { background: var(--navy); padding: 100px 5%; }
.founder-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.founder-portrait {
  position: relative;
}
.founder-portrait-frame {
  width: 100%; aspect-ratio: 4/5;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 0;
}
/* founder portrait: live photo */
.founder-badge {
  position: absolute; bottom: -1px; right: -1px;
  background: var(--gold); color: var(--navy-deep);
  padding: 16px 20px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  line-height: 1.4;
}
.founder-badge strong { display: block; font-size: 22px; font-family: var(--serif); font-weight: 600; letter-spacing: 0; }
.founder-text .section-eyebrow { /* reuse */ }
.founder-text h2 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 42px);
  font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 24px;
}
.founder-text h2 em { font-style: italic; color: var(--gold-light); }
.founder-quote {
  font-family: var(--serif); font-size: 20px; font-style: italic;
  color: rgba(255,255,255,0.75); line-height: 1.6;
  border-left: 2px solid var(--gold); padding-left: 24px;
  margin-bottom: 28px;
}
.founder-body { font-size: 15px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.58); margin-bottom: 28px; }
.founder-credentials { display: flex; flex-direction: column; gap: 10px; }
.founder-cred {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.6);
}
.cred-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }

/* ── CHALLENGE ── */
.challenge-section { background: var(--cream); }
.challenge-inner { max-width: 1200px; margin: 0 auto; }
.challenge-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 56px; }
.challenge-card {
  background: var(--white); padding: 40px 32px;
  position: relative;
}
.challenge-num {
  font-family: var(--serif); font-size: 56px; font-weight: 400;
  color: var(--gold-pale); line-height: 1; margin-bottom: 20px;
}
.challenge-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 12px; color: var(--navy); }
.challenge-card p { font-size: 14px; line-height: 1.75; color: var(--text-mid); }

/* ── HOW IT WORKS ── */
.process-section { background: var(--white); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps { margin-top: 56px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; left: 28px; top: 40px; bottom: 40px;
  width: 1px; background: var(--border);
}
.process-step {
  display: grid; grid-template-columns: 56px 1fr; gap: 32px;
  align-items: start; margin-bottom: 48px;
}
.step-num {
  width: 56px; height: 56px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--gold); background: var(--white); position: relative; z-index: 1;
  flex-shrink: 0;
}
.step-content { padding-top: 12px; }
.step-content h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 8px; color: var(--navy); }
.step-content p { font-size: 14px; line-height: 1.8; color: var(--text-mid); max-width: 560px; }
.step-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.step-tag { font-size: 12px; color: var(--text-mid); background: var(--cream); border: 1px solid var(--border); padding: 4px 12px; letter-spacing: 0.03em; }

/* ── ACCOMMODATION TIERS ── */
.tiers-section { background: var(--navy-deep); padding: 100px 5%; }
.tiers-inner { max-width: 1200px; margin: 0 auto; }
.tiers-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.tiers-lead { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.55); }
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.tier-card {
  background: var(--navy);
  padding: 40px 32px 36px;
  position: relative; transition: transform 0.2s;
}
.tier-card.featured {
  background: var(--navy-mid);
  border-top: 2px solid var(--gold);
}
.tier-badge {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: block;
}
.tier-name {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--white); margin-bottom: 4px;
}
.tier-price {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--gold-light); line-height: 1; margin: 16px 0;
}
.tier-price span { font-family: var(--sans); font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.4); vertical-align: middle; margin-left: 4px; }
.tier-desc { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.tier-features { list-style: none; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
.tier-features li {
  font-size: 13px; color: rgba(255,255,255,0.55);
  padding: 5px 0; display: flex; align-items: flex-start; gap: 8px;
}
.tier-features li::before { content: '✓'; color: var(--gold); font-size: 11px; margin-top: 3px; flex-shrink: 0; }

/* ── WHO WE SERVE ── */
.serve-section { background: var(--cream); }
.serve-inner { max-width: 1200px; margin: 0 auto; }
.serve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; background: var(--border); margin-top: 56px; }
.serve-card { background: var(--white); padding: 36px 28px; }
.serve-icon { font-size: 24px; margin-bottom: 16px; }
.serve-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.serve-card p { font-size: 13px; line-height: 1.75; color: var(--text-mid); }

/* ── BRUSSELS ── */
.brussels-section { background: var(--white); }
.brussels-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.brussels-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-top: 40px; }
.bstat { background: var(--cream); padding: 28px 24px; }
.bstat-num { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--navy); line-height: 1; }
.bstat-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.brussels-features { margin-top: 40px; }
.bfeature { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.bfeature:last-child { border-bottom: none; }
.bfeature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 9px; }
.bfeature-text h4 { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.bfeature-text p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--navy); padding: 100px 5%; }
.test-inner { max-width: 1100px; margin: 0 auto; }
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.test-card {
  background: var(--navy-mid); padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.test-stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; letter-spacing: 3px; }
.test-text { font-family: var(--serif); font-size: 17px; font-style: italic; line-height: 1.65; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 14px; color: var(--gold-light);
}
.test-name { font-size: 14px; font-weight: 500; color: var(--white); }
.test-origin { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── PARTNERS ── */
.partners-section { background: var(--cream); }
.partners-inner { max-width: 1100px; margin: 0 auto; }
.partner-types { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); margin-top: 56px; }
.partner-type { background: var(--white); padding: 40px 36px; }
.partner-type h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.partner-type p { font-size: 14px; line-height: 1.75; color: var(--text-mid); margin-bottom: 20px; }
.partner-benefits { list-style: none; }
.partner-benefits li { font-size: 13px; color: var(--text-mid); padding: 5px 0; display: flex; gap: 10px; }
.partner-benefits li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-list { margin-top: 56px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--navy);
  cursor: pointer; gap: 20px;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { font-size: 20px; color: var(--gold); flex-shrink: 0; font-weight: 300; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  font-size: 15px; line-height: 1.8; color: var(--text-mid);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding-bottom: 24px; }

/* ── CONTACT / CTA ── */
.cta-section { background: var(--navy-deep); padding: 100px 5%; }
.cta-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cta-text h2 { font-family: var(--serif); font-size: clamp(30px,4vw,50px); font-weight: 500; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.cta-text h2 em { font-style: italic; color: var(--gold-light); }
.cta-text p { font-size: 16px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.cta-contact-details { display: flex; flex-direction: column; gap: 16px; }
.cta-detail { display: flex; gap: 14px; align-items: flex-start; }
.cta-detail-icon { color: var(--gold); font-size: 15px; margin-top: 1px; }
.cta-detail-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.cta-detail-val { font-size: 15px; color: rgba(255,255,255,0.75); }
.cta-detail-val a { color: var(--gold-light); text-decoration: none; }
.cta-form-panel {
  background: var(--navy-mid); padding: 40px;
  border: 1px solid rgba(201,168,76,0.15);
}
.form-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 28px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 12px 14px; font-family: var(--sans); font-size: 14px;
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-row select { color: rgba(255,255,255,0.7); }
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--navy-deep);
  border: none; padding: 15px; font-family: var(--sans); font-size: 14px; font-weight: 500;
  cursor: pointer; letter-spacing: 0.04em; transition: background 0.2s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--gold-light); }
.form-note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 12px; text-align: center; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 5%; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-brand { font-family: var(--serif); font-size: 18px; color: rgba(255,255,255,0.5); }
.footer-brand span { color: var(--gold); }
.footer-meta { font-size: 12px; color: rgba(255,255,255,0.25); text-align: right; line-height: 1.8; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.35s; }
.hero-actions { animation-delay: 0.45s; }
.hero-stats { animation-delay: 0.55s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .founder-inner, .brussels-inner, .tiers-intro, .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .challenge-grid, .tiers-grid, .test-grid, .partner-types { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

/* ── DISCLAIMERS ── */
.tiers-disclaimer {
  max-width: 1200px; margin: 32px auto 0;
  font-size: 11.5px; line-height: 1.75;
  color: rgba(255,255,255,0.28);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  letter-spacing: 0.01em;
}
.footer-disclaimer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 5% 0;
}
.footer-disclaimer-inner {
  max-width: 1200px; margin: 0 auto;
  font-size: 11px; line-height: 1.8;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.01em;
}
.footer-disclaimer-label {
  display: inline-block;
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  margin-right: 10px;
  vertical-align: middle;
  border: 1px solid rgba(201,168,76,0.18);
  padding: 2px 8px;
  position: relative; top: -1px;
}
/* ── PDF DOWNLOAD ── */
.pdf-download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.pdf-download-link::before {
  content: '⬇';
  font-size: 12px;
  opacity: 0.7;
}
.pdf-download-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
