/* Casa & Roble — hoofdstijlen */

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

:root {
  --cream: #f0e8d8;
  --cream-light: #efe7d8;
  --cream-warm: #e8d4b8;
  --beige: #d4c4a8;
  --tan: #c9a06f;
  --terracotta: #a87c52;
  --wood: #8b6f4e;
  --wood-dark: #6b4f33;
  --espresso: #5a3a24;
  --ink: #2d2018;
  --ink-soft: #4a3a2c;
  --accent: #a07b4e;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}

em { font-style: italic; color: var(--wood-dark); }

a { color: var(--ink); text-decoration: none; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 0.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn:hover { background: var(--ink); color: var(--cream); }

.btn-primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-primary:hover { background: var(--espresso); border-color: var(--espresso); }

.btn-light { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* === TOPBAR === */
.topbar {
  background: var(--ink);
  color: var(--beige);
  padding: 12px 32px;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* === NAVIGATIE === */
.nav {
  background: var(--cream);
  padding: 22px 32px;
  border-bottom: 0.5px solid rgba(45,32,24,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--ink);
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  font-size: 14px;
}

.nav-menu a:hover { color: var(--wood-dark); }

.nav-right {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 13px;
}

.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 12px;
  color: var(--wood-dark);
}

.lang-switch a { color: var(--wood-dark); }
.lang-switch a.active { color: var(--ink); font-weight: 500; }
.lang-switch span { color: rgba(45,32,24,0.3); }

/* === HERO === */
.hero {
  padding: 90px 32px 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 28px;
  line-height: 1.02;
}

.hero p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: absolute;
  right: 32px;
  top: 70px;
  width: 440px;
  height: 500px;
  background: var(--beige);
  border-radius: 1px;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .hero h1 { font-size: 44px; }
  .hero-image {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 320px;
    margin-top: 40px;
  }
}

/* === SECTIES === */
.section { padding: 80px 32px; }
.section-white { background: white; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }

.section-header { text-align: center; margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 36px; margin-bottom: 14px; }
.section-header p { font-size: 15px; color: var(--wood-dark); line-height: 1.7; }

/* === DUBBELE PROPOSITIE === */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 800px) {
  .dual-grid { grid-template-columns: 1fr; }
}

.path-card {
  padding: 44px 36px;
  border-radius: 1px;
  cursor: pointer;
  transition: transform 0.2s;
}

.path-card:hover { transform: translateY(-2px); }

.path-card-light { background: var(--cream); }
.path-card-dark { background: var(--ink); color: var(--cream); }
.path-card-dark .eyebrow { color: var(--tan); }

.path-card h3 { font-size: 26px; margin-bottom: 14px; line-height: 1.25; }

.path-features {
  list-style: none;
  margin: 24px 0 28px;
}

.path-features li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.path-card-dark .path-features li { color: var(--beige); }

.path-features li::before { content: '—'; color: var(--accent); }
.path-card-dark .path-features li::before { color: var(--tan); }

.path-link {
  font-size: 13px;
  letter-spacing: 1px;
  border-bottom: 0.5px solid currentColor;
  padding-bottom: 3px;
  text-transform: uppercase;
  display: inline-block;
}

/* === PROJECTEN === */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card { cursor: pointer; }

.project-image {
  aspect-ratio: 4/5;
  background: var(--beige);
  border-radius: 1px;
  margin-bottom: 18px;
  overflow: hidden;
}

.project-card h3 { font-size: 18px; margin-bottom: 6px; }

.project-meta {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--accent);
  text-transform: uppercase;
}

/* === FOOTER === */
.footer {
  background: #1a1410;
  color: var(--wood);
  padding: 50px 32px 30px;
  font-size: 13px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

.footer h4 {
  font-size: 13px;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer a { color: var(--wood); }
.footer a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 0.5px solid rgba(139,111,78,0.2);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: var(--ink);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: 1px;
  font-size: 13px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner p { margin-bottom: 14px; line-height: 1.6; }

.cookie-banner-actions { display: flex; gap: 10px; }

.cookie-banner-actions button {
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-transform: uppercase;
}

.btn-cookie-accept { background: var(--cream); color: var(--ink); }
.btn-cookie-decline { background: transparent; color: var(--cream); border: 0.5px solid var(--cream) !important; }

/* === CMS CONTENT (TinyMCE output) === */
.cms-content h1, .cms-content h2, .cms-content h3, .cms-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  margin: 1.5em 0 0.5em;
  line-height: 1.2;
  color: var(--ink);
}
.cms-content h1 { font-size: 2.4em; }
.cms-content h2 { font-size: 1.9em; }
.cms-content h3 { font-size: 1.5em; }
.cms-content em { font-style: italic; color: var(--wood); }
.cms-content p { margin-bottom: 1.2em; line-height: 1.8; }
.cms-content ul, .cms-content ol { margin: 1em 0 1.2em 1.5em; }
.cms-content li { margin-bottom: 0.4em; line-height: 1.7; }
.cms-content a { color: var(--ink); border-bottom: 0.5px solid var(--wood); }
.cms-content a:hover { color: var(--wood); }
.cms-content blockquote {
  border-left: 3px solid var(--tan);
  padding-left: 20px;
  margin: 1.5em 0;
  font-style: italic;
  color: var(--ink-soft);
}
.cms-content img { max-width: 100%; height: auto; margin: 1em 0; }
.cms-content table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.cms-content table th, .cms-content table td { padding: 8px 12px; border: 0.5px solid rgba(45,32,24,0.1); text-align: left; }

/* ============================================
   EDITORIAL HOMEPAGE STIJL
   ============================================ */

.home-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--wood);
  display: flex;
  align-items: center;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(45,32,24,0.7) 0%, rgba(45,32,24,0.3) 60%, transparent 100%);
  z-index: 2;
}

.home-hero-content {
  position: relative;
  z-index: 3;
  padding: 110px 40px 70px;
  max-width: 720px;
  width: 100%;
}

.home-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.0;
  margin: 24px 0 32px;
  letter-spacing: -2px;
  color: var(--cream);
}

.home-hero-title em {
  font-style: italic;
  color: #f5dcb0;
}

.home-hero-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--cream);
  max-width: 520px;
  opacity: 0.92;
  margin-bottom: 0;
}

.home-hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
  border: none;
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-weight: 500;
}

.btn-light:hover { background: white; }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 0.5px solid var(--cream);
  padding: 16px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }

.eyebrow-light {
  color: var(--cream) !important;
}

.eyebrow-tan {
  color: #d4a574 !important;
}

/* Sections */
.home-section {
  padding: 110px 40px;
}

.home-section-cream { background: #faf6ee; }
.home-section-beige { background: var(--beige); }

.home-section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.home-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
  margin: 18px 0 24px;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.home-h2 em {
  font-style: italic;
  color: var(--wood-dark);
}

.home-h2-center { text-align: center; }

.home-h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--ink);
}

.home-h3-large {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--ink);
}

.home-h3-large em {
  font-style: italic;
  color: var(--wood-dark);
}

.home-h3-light { color: var(--cream); }
.home-h3-light em { color: #d4a574; }

/* Split (foto + tekst) */
.home-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.home-split-reverse {
  grid-template-columns: 1fr 1.1fr;
}

.home-split-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--tan);
}

.home-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-prose {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.home-prose p { margin-bottom: 16px; }

/* Steps grid */
.home-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-step-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--tan);
  margin-bottom: 20px;
}

.home-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-step p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  color: var(--wood-dark);
  line-height: 1.7;
  margin: 0;
}

/* Banner (full-width foto) */
.home-banner {
  position: relative;
  aspect-ratio: 21/9;
  min-height: 380px;
  overflow: hidden;
  background: var(--wood);
}

.home-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,32,24,0.5) 0%, rgba(45,32,24,0.7) 100%);
}

.home-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  color: var(--cream);
}

.home-banner-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  margin: 24px 0 20px;
  letter-spacing: -1px;
  color: var(--cream);
}

.home-banner-title em {
  font-style: italic;
  color: #f5dcb0;
}

.home-banner-sub {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  opacity: 0.9;
  max-width: 540px;
  line-height: 1.7;
  margin: 0;
}

/* Quote */
.home-quote-section {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 40px;
  text-align: center;
}

.home-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--cream);
  border: none;
  padding: 0;
}

/* Paths */
.home-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.1);
  max-width: 1100px;
  margin: 0 auto;
}

.home-path {
  padding: 56px 40px;
}

.home-path-light { background: #fdfaf2; }
.home-path-dark { background: var(--ink); color: var(--cream); }

.home-path p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 24px;
  color: var(--wood-dark);
}

.home-path-dark p { color: var(--beige); }

.home-link {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 0.5px solid var(--ink);
  padding-bottom: 3px;
}

.home-link-tan {
  color: #d4a574;
  border-bottom-color: #d4a574;
}

/* Final CTA */
.home-cta-final {
  padding: 90px 40px;
  background: #faf6ee;
  text-align: center;
}

.home-cta-final .btn {
  margin-top: 32px;
}

/* Mobile */
@media (max-width: 900px) {
  .home-hero-title { font-size: 48px; }
  .home-h2 { font-size: 32px; }
  .home-banner-title { font-size: 36px; }
  .home-quote { font-size: 22px; }
  .home-split, .home-split-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-steps { grid-template-columns: 1fr; }
  .home-paths { grid-template-columns: 1fr; }
  .home-section { padding: 70px 24px; }
  .home-hero-content { padding: 70px 24px 50px; }
  .home-banner { aspect-ratio: 4/3; }
}
