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

:root {
  --primary: #5C4E44;
  --accent: #A97C50;
  --accent-light: #C9A278;
  --bg: #FDFAF5;
  --bg-alt: #F5F0E6;
  --text: #2C2218;
  --text-light: #7A6248;
  --white: #FFFFFF;
  --border: #E2D9CC;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

/* ── HEADER ── */
header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 18px rgba(44, 34, 24, 0.07);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: relative;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.logo-img {
  height: 74px;
  width: auto;
  display: block;
  filter: saturate(1.4) brightness(0.78);
}

nav {
  display: flex;
  align-items: center;
  gap: 0;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  transition: color 0.2s, opacity 0.2s;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0.85;
}

nav a:hover,
nav a.active {
  color: var(--accent);
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  display: block;
}

/* ── HERO (homepage) ── */
.hero {
  background-color: var(--primary);
  color: var(--white);
  padding: 8rem 2rem 6.5rem;
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(36, 26, 20, 0.90) 0%,
    rgba(36, 26, 20, 0.75) 38%,
    rgba(36, 26, 20, 0.28) 62%,
    rgba(36, 26, 20, 0.05) 100%
  );
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  max-width: 560px;
}

.hero .section-label {
  color: var(--accent-light);
  opacity: 0.75;
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  color: var(--white);
}

.hero .lead {
  font-size: 1.05rem;
  color: var(--accent-light);
  max-width: 620px;
  margin: 0 auto 2.75rem;
  line-height: 1.9;
  font-weight: 300;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.85rem 2rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

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

.btn-primary:hover {
  background: var(--accent-light);
  color: var(--primary);
}

.btn-secondary {
  border: 1px solid rgba(184, 208, 224, 0.55);
  color: var(--white);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(184, 208, 224, 0.9);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(150deg, #3A2E28 0%, var(--primary) 60%, #6E6058 100%);
  padding: 5.5rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 65%, rgba(169, 124, 80, 0.14) 0%, transparent 55%);
}

.page-hero.has-photo {
  background-size: cover;
  background-position: center;
  min-height: 340px;
}

.page-hero.has-photo .section-label {
  color: var(--white);
  opacity: 0.85;
}

.page-hero.has-photo p {
  color: var(--white);
  opacity: 0.9;
}

.page-hero.has-photo::before {
  background: linear-gradient(to bottom,
    rgba(30, 22, 16, 0.30) 0%,
    rgba(30, 22, 16, 0.20) 100%);
}

.page-hero-content {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.page-hero .section-label {
  color: var(--accent-light);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.9rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.page-hero p {
  color: var(--accent-light);
  font-weight: 300;
  font-size: 1rem;
  margin: 0;
  line-height: 1.85;
  opacity: 0.9;
}

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

p {
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.8;
}

p:last-child { margin-bottom: 0; }

.lead-text {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
  line-height: 1.9;
  margin-bottom: 0;
}

.accent-line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

/* ── BACKGROUNDS ── */
.bg-alt { background: var(--bg-alt); }

.bg-primary { background: var(--primary); }

.bg-primary .section-label { color: var(--accent-light); opacity: 0.7; }
.bg-primary h2 { color: var(--white); }
.bg-primary p { color: var(--accent-light); }

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 2rem 2rem 1.75rem;
}

.benefit-card h4 { margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ── MISSION / VISION ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.split-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

/* ── PRINCIPLES ── */
.principles-list { list-style: none; margin-top: 2.5rem; }

.principle-item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.principle-item:last-child { border-bottom: none; }

.principle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  min-width: 2.5rem;
  padding-top: 0.2rem;
}

.principle-body strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.principle-body p { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.75; }

/* ── MUSIC QUOTE ── */
.music-quote {
  background: var(--primary);
  padding: 4rem 2rem;
  text-align: center;
}

.music-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.music-quote .quote-sub {
  color: var(--accent-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  margin-top: 1.25rem;
  opacity: 0.75;
}

/* ── EXPERTISE ── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.expertise-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: box-shadow 0.25s;
}

.expertise-card:hover {
  box-shadow: 0 8px 32px rgba(30, 58, 79, 0.09);
}

.expertise-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

.expertise-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.expertise-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.78; }

/* ── WERKWIJZE ── */
.principle-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text-light);
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.phase { margin-bottom: 3.5rem; }

.phase-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.phase-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  white-space: nowrap;
  font-weight: 500;
}

.phase-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--primary);
  font-weight: 500;
}

.phase-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-card h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step-card p { font-size: 0.875rem; color: var(--text-light); margin: 0; }

/* ── COMPARISON ── */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.comparison-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 2rem;
}

.comparison-card h4 { margin-bottom: 0.75rem; }
.comparison-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ── STEMMEN ── */
.stories-block { margin-bottom: 4rem; }

.category-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.75rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.25rem 1.75rem 1.75rem;
  position: relative;
}

.story-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--bg-alt);
  position: absolute;
  top: -0.25rem;
  left: 1.25rem;
  line-height: 1;
  pointer-events: none;
}

.story-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.6rem;
  padding-top: 1.25rem;
  display: block;
}

.story-card blockquote {
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.78;
  border: none;
  padding: 0;
  margin: 0;
}

.stemmen-intro {
  background: var(--primary);
  padding: 2.5rem 3rem;
  margin-bottom: 3.5rem;
}

.stemmen-intro p {
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.9;
}

/* ── OVER ONS ── */
.about-intro p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.specialty-card {
  background: var(--primary);
  padding: 2.75rem 2rem;
  text-align: center;
}

.specialty-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}

.specialty-card h4 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
}

/* ── TEAM PROFILE ── */
.team-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
  margin: 2.5rem 0 3.5rem;
}

.team-photo-wrap {
  position: relative;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.85);
}

.team-bio h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 1rem;
  margin-top: 0.4rem;
}

.team-bio p {
  color: var(--text-light);
  line-height: 1.8;
}

.integrity-block {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 2.5rem 3rem;
  margin-top: 4rem;
}

.integrity-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  margin: 0;
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  margin-top: 3rem;
}

.form-group { margin-bottom: 1.5rem; }

label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}

input:focus, textarea:focus { border-color: var(--accent); }
textarea { height: 150px; resize: vertical; }

.contact-info h3 { margin-bottom: 1.5rem; }

.info-item { margin-bottom: 1.5rem; }

.info-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.3rem;
  display: block;
}

.info-value {
  color: var(--text);
  font-size: 0.9rem;
}

.contact-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--primary);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-band .section-label { color: var(--accent-light); opacity: 0.7; }
.cta-band h2 { color: var(--white); }
.cta-band p {
  color: var(--accent-light);
  font-weight: 300;
  margin-bottom: 2.25rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
footer {
  background: var(--primary);
  padding: 3.5rem 2rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}

.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
  opacity: 0.88;
  filter: brightness(0) invert(1) sepia(0.15);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 2.5rem;
  padding-top: 0.25rem;
}

.footer-nav a {
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.84rem;
  opacity: 0.65;
  transition: opacity 0.2s;
  padding: 0.2rem 0;
  display: block;
}

.footer-nav a:hover { opacity: 1; color: var(--white); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-contact {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.9rem 3.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent-light);
  text-decoration: none;
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.footer-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a.footer-item:hover {
  opacity: 1;
  color: var(--white);
}

@media (max-width: 600px) {
  .footer-contact {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: left;
  }
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--accent-light);
  opacity: 0.4;
  margin: 0;
}

/* ── STEMMEN ROTATOR ── */
.stemmen-rotator {
  background: var(--primary);
  padding: 5rem 2rem;
  text-align: center;
}

.stemmen-rotator .section-label {
  color: var(--accent-light);
  opacity: 0.65;
  margin-bottom: 2.5rem;
}

.rotator-body {
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotator-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--white);
  max-width: 820px;
  line-height: 1.6;
  transition: opacity 0.6s ease;
  margin: 0;
  border: none;
  padding: 0;
}

.rotator-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

.rotator-num,
.rotator-total {
  font-size: 0.68rem;
  color: var(--accent-light);
  opacity: 0.5;
  letter-spacing: 0.1em;
  font-weight: 500;
  min-width: 1.5rem;
}

.rotator-bar {
  width: 180px;
  height: 1px;
  background: rgba(184, 208, 224, 0.18);
  position: relative;
  overflow: hidden;
}

.rotator-progress {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent-light);
  opacity: 0.6;
}

@media (max-width: 600px) {
  .rotator-text { font-size: 1.35rem; }
  .rotator-body { min-height: 14rem; }
  .rotator-bar  { width: 120px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    z-index: 200;
  }

  nav.open { display: flex; }

  nav a {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.82rem;
  }

  nav.open a {
    color: var(--bg);
    opacity: 0.85;
  }

  nav.open a:hover,
  nav.open a.active {
    color: var(--white);
    opacity: 1;
  }

  .hamburger { display: flex; }

  .hero h1 { font-size: 2.3rem; }
  .hero::before { background: rgba(36, 26, 20, 0.80); }
  h2 { font-size: 2.1rem; }
  .page-hero h1 { font-size: 2.3rem; }
  .music-quote blockquote { font-size: 1.55rem; }

  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  section { padding: 3.5rem 1.25rem; }
  .integrity-block { padding: 2rem 1.75rem; }
  .stemmen-intro { padding: 2rem 1.75rem; }
  .team-profile { grid-template-columns: 1fr; gap: 2rem; }
  .team-photo { aspect-ratio: 4 / 3; object-position: center 20%; }
}

@media (max-width: 600px) {
  .hero { padding: 5.5rem 1.25rem 4.5rem; }
  .hero h1 { font-size: 2rem; }
  .page-hero { padding: 4rem 1.25rem 3.5rem; }
  .page-hero h1 { font-size: 2rem; }
  .stories-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
}
