/* ============================================
   VARIANT B: "The Credible Calm"
   Greg Nieuwenhuys — From AI Overwhelm to Superpower
   Gedeelde stijlen voor alle 4 pagina's
   ============================================ */

/* --- CSS Custom Properties (kleurenpalet & typografie) --- */
:root {
  --cream: #FAF8F5;
  --charcoal: #1A1A1A;
  --warm-orange: #D4622B;
  --warm-orange-hover: #B8521F;
  --warm-stone: #E8E4DF;
  --deep-navy: #1C2024;
  --muted-text: #5A5A5A;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --max-width: 1140px;
  --section-padding: 100px 5%;
  --section-padding-mobile: 64px 6%;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Typografie --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 600;
}

p {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  max-width: 650px;
  color: var(--muted-text);
  line-height: 1.8;
}

/* Grote quote tekst — verfijnd, niet schreeuwend */
.quote-large {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
  max-width: 750px;
}

/* Label tekst (bijv. "KEYNOTE SPEAKER") */
.label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-orange);
  margin-bottom: 1rem;
  display: block;
}

/* --- Links --- */
a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--warm-orange);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Inline link stijl */
.link-arrow {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--warm-orange);
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.link-arrow:hover {
  opacity: 0.7;
}

/* --- Afbeeldingen --- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   SECTIES — cream, stone en navy thema's
   ============================================ */
.section-cream {
  background-color: var(--cream);
  padding: var(--section-padding);
}

.section-stone {
  background-color: var(--warm-stone);
  padding: var(--section-padding);
}

.section-navy {
  background-color: var(--deep-navy);
  color: var(--cream);
  padding: var(--section-padding);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--cream);
}

.section-navy p {
  color: rgba(250, 248, 245, 0.7);
}

/* Sectie-inhoud centreren */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================
   NAVIGATIE — scrollt mee, niet fixed
   ============================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5%;
  background-color: var(--cream);
}

/* Logo: volle naam in elegant small caps */
.nav-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* Navigatie links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-text);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

/* CTA knop */
.btn-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  background-color: var(--warm-orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  background-color: var(--warm-orange-hover);
}

/* Grote CTA variant */
.btn-cta-large {
  font-size: 1rem;
  padding: 16px 36px;
}

/* --- Hamburger menu (mobiel) --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobiel menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--cream);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--warm-orange);
}

/* ============================================
   HERO — twee kolommen, foto rechts
   ============================================ */
.hero {
  padding: 3rem 5% 5rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text p {
  margin-bottom: 2rem;
}

/* Hero foto met zachte afronding */
.hero-image {
  border-radius: 12px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* Onderschrift onder de hero */
.hero-descriptor {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted-text);
  letter-spacing: 0.5px;
}

/* Hero variant: gecentreerd (voor speaking, my-story, contact) */
.hero-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 5%;
}

.hero-centered h1 {
  margin-bottom: 1rem;
}

.hero-centered p {
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ============================================
   CREDENTIAL BAR — stats + logo's
   ============================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted-text);
  letter-spacing: 0.5px;
}

/* Logo groepen */
.logo-group {
  margin-bottom: 2.5rem;
}

.logo-group:last-child {
  margin-bottom: 0;
}

.logo-row-label {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted-text);
  margin-bottom: 1.25rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.5rem;
}

.logo-img {
  height: 30px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s;
}

.logo-img:hover {
  opacity: 0.7;
}

/* ============================================
   KAARTEN — verfijnd, dunne borders
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  padding: 2.5rem 2rem;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Kaart op stone achtergrond */
.section-stone .card {
  background-color: #fff;
}

/* Kaart op navy achtergrond */
.card-navy {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.card-meta {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted-text);
}

.card-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--warm-orange);
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

/* ============================================
   TESTIMONIALS — 2x2 grid, geen carousel
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.section-stone .testimonial-card {
  background-color: #fff;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--warm-orange);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
  font-style: normal;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted-text);
  margin-top: 0.15rem;
}

/* ============================================
   TWEE KOLOMMEN LAYOUT — herbruikbaar
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-image {
  border-radius: 10px;
  overflow: hidden;
}

.two-col-image img {
  width: 100%;
  object-fit: cover;
}

/* ============================================
   PROSE SECTIE — My Story pagina
   ============================================ */
.prose {
  max-width: 700px;
  margin: 0 auto;
}

.prose h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.prose p {
  margin-bottom: 1.25rem;
  max-width: 100%;
}

.prose .prose-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--charcoal);
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--warm-orange);
}

.prose-image {
  margin: 2.5rem 0;
  border-radius: 10px;
  overflow: hidden;
}

.prose-image img {
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}

/* ============================================
   VIDEO EMBED
   ============================================ */
.video-embed {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--warm-stone);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-embed span {
  font-size: 0.85rem;
  color: var(--muted-text);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   CONTACT FORMULIER
   ============================================ */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background-color: #fff;
  color: var(--charcoal);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--warm-orange);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================
   CONTACT KAARTEN
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-card {
  padding: 2rem;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.contact-card p {
  font-size: 0.85rem;
  margin: 0 auto 1rem;
}

.contact-card a {
  color: var(--warm-orange);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   QUICK INFO BAR
   ============================================ */
.quick-info {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-text);
}

.quick-info-divider {
  opacity: 0.3;
}

/* ============================================
   WAIMAKERS BRIDGE
   ============================================ */
.waimakers-bridge {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.waimakers-bridge p {
  margin: 0 auto 1rem;
}

.waimakers-bridge a {
  color: var(--warm-orange);
  font-weight: 600;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-formats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.pricing-format {
  text-align: center;
}

.pricing-format h4 {
  margin-bottom: 0.25rem;
}

.pricing-format span {
  font-size: 0.8rem;
  color: var(--muted-text);
}

/* ============================================
   CTA SECTIE — warm donker, verfijnd sluitstuk
   Warm charcoal (niet koud navy) voor premiumgevoel
   ============================================ */
.cta-section {
  text-align: center;
  background-color: #2C2826;
  padding: var(--section-padding);
}

.cta-section h2 {
  font-family: var(--font-display);
  color: var(--cream);
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: rgba(250, 248, 245, 0.55);
  margin: 0 auto 2rem;
}

.cta-section a:not(.btn-cta) {
  color: var(--warm-orange);
}

/* ============================================
   FOOTER — warm en verfijnd, past bij cream thema
   ============================================ */
.footer {
  background-color: var(--cream);
  color: var(--charcoal);
  padding: 2.5rem 5%;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--muted-text);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted-text);
  opacity: 0.6;
}

/* ============================================
   EDITORIAL TIMELINE — jaar links, content rechts
   Andere stijl dan Variant A: horizontaal grid i.p.v. centraal
   ============================================ */
.ed-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.ed-timeline-item {
  display: grid;
  grid-template-columns: 120px 1px 1fr;
  gap: 0 2.5rem;
  padding-bottom: 3rem;
  position: relative;
}

.ed-timeline-item:last-child {
  padding-bottom: 0;
}

/* Jaar aan de linkerkant */
.ed-timeline-year {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--warm-orange);
  text-align: right;
  padding-top: 0.15rem;
  line-height: 1.2;
}

/* Verticale lijn in het midden */
.ed-timeline-line {
  position: relative;
  background-color: rgba(0, 0, 0, 0.08);
  width: 1px;
}

/* Bolletje op de lijn */
.ed-timeline-line::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--warm-orange);
}

/* Content rechts */
.ed-timeline-content {
  padding-bottom: 1rem;
}

.ed-timeline-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.ed-timeline-content p {
  margin-bottom: 0.75rem;
  max-width: 100%;
}

/* Quote in de timeline */
.ed-timeline-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--charcoal);
  margin-top: 1rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--warm-orange);
  line-height: 1.5;
}

/* Foto in de timeline */
.ed-timeline-img {
  width: 100%;
  border-radius: 8px;
  margin: 1rem 0;
  object-fit: cover;
  max-height: 260px;
}

/* Responsive: op mobiel wordt het een simpele lijst */
@media (max-width: 600px) {
  .ed-timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }

  .ed-timeline-line {
    display: none;
  }

  .ed-timeline-year {
    text-align: left;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
  }

  .ed-timeline-item::before {
    content: '';
    position: absolute;
    left: -4.5px;
    top: 0.5rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--warm-orange);
  }
}

/* ============================================
   SUBTIELE FADE-IN ANIMATIE
   ============================================ */
.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ============================================
   RESPONSIVE — Tablet (max 900px)
   ============================================ */
@media (max-width: 900px) {
  :root {
    --section-padding: 64px 6%;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  /* Hero en twee-kolom: onder elkaar */
  .hero-inner,
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Foto eerst op mobiel */
  .hero-image {
    order: -1;
  }

  .hero-image img {
    aspect-ratio: 16 / 9;
  }

  /* Stats bar wrappen */
  .stats-bar {
    gap: 2rem;
  }

  /* Kaarten: 1 kolom */
  .cards-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — Mobiel (max 600px)
   ============================================ */
@media (max-width: 600px) {
  :root {
    --section-padding: 48px 5%;
  }

  .nav {
    padding: 1rem 5%;
  }

  .nav-logo {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }

  .stats-bar {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pricing-formats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .quick-info {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .quick-info-divider {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cta-section {
    padding: 48px 5%;
  }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}
