/* ===========================
   MEVROUW MARKETING – STYLE
   Cormorant Garamond + Inter
   Palette: #1C3A30 | #B8973A | #F5F2EC | #1A1A1A
   =========================== */

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

:root {
  --dark:    #1C3A30;
  --gold:    #B8973A;
  --gold-lt: #D4B870;
  --cream:   #F5F2EC;
  --cream-dk:#EDE9E0;
  --ink:     #1A1A1A;
  --ink-mid: #3D3D3D;
  --ink-lt:  #6B6B6B;
  --white:   #FFFFFF;

  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --container: 1140px;
  --gap:        2rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: var(--ff-head);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: 1.35rem; font-weight: 500; }
p  { color: var(--ink-mid); }
em { font-style: italic; }
a  { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.accent { color: var(--gold); }

/* LAYOUT */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* BUTTONS */
.btn-primary, .btn-ghost, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
  border: 1.5px solid var(--dark);
}
.btn-primary:hover {
  background: #142D25;
  border-color: #142D25;
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-ghost:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink-lt);
}
.btn-outline:hover {
  border-color: var(--dark);
  color: var(--dark);
}
.btn-full { width: 100%; justify-content: center; }

/* ===========================  NAV  =========================== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dk);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-brand {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark); }
.nav-cta {
  background: var(--dark);
  color: var(--white) !important;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #142D25 !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.25s;
}

/* ===========================  HERO  =========================== */
.hero {
  background: var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 68px - 80px);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.hero-text { max-width: 560px; }
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-mid);
  margin-bottom: 0.75rem;
}
.hero-ai {
  font-size: 0.95rem;
  color: var(--ink-lt);
  margin-bottom: 2.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 420px;
  height: 480px;
}
.hero-circle {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--dark);
}
.hero-placeholder {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-geo {
  position: absolute;
  border: 1.5px solid var(--gold);
  z-index: 1;
}
.hero-geo-1 {
  width: 120px;
  height: 120px;
  bottom: 40px;
  left: 10px;
  background: var(--gold);
  opacity: 0.7;
}
.hero-geo-2 {
  width: 90px;
  height: 90px;
  bottom: 20px;
  right: 20px;
  background: transparent;
  border-color: var(--gold);
}

/* Hero strip */
.hero-strip {
  background: var(--dark);
  padding: 1.4rem 0;
}
.hero-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 3rem;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.strip-item svg { stroke: var(--gold); flex-shrink: 0; }

/* ===========================  PROBLEM / SOLUTION  =========================== */
.problem { background: var(--white); }
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.problem-text, .solution-text { }
.problem-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ink-mid);
  margin-bottom: 1.25rem;
}
.solution-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}
.problem-text p, .solution-text p { margin-bottom: 1rem; }
.solution-text .btn-primary { margin-top: 1rem; }

/* ===========================  DIENSTEN  =========================== */
.diensten { background: var(--cream); }
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dienst-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.dienst-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.dienst-card--accent {
  background: var(--dark);
  border-color: var(--dark);
}
.dienst-card--accent h3, .dienst-card--accent p {
  color: rgba(255,255,255,0.9);
}
.dienst-card--accent .dienst-icon svg {
  stroke: var(--gold);
}
.dienst-card--accent:hover {
  border-color: var(--gold);
}
.dienst-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.dienst-card--accent .dienst-icon {
  background: rgba(255,255,255,0.08);
}
.dienst-icon svg { stroke: var(--dark); }
.dienst-card h3 { margin-bottom: 0.6rem; }
.dienst-card p { font-size: 0.92rem; line-height: 1.65; }

/* ===========================  VOORDEEL  =========================== */
.voordeel {
  background: var(--dark);
  color: var(--white);
}
.voordeel-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.voordeel-quote blockquote {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.voordeel-quote blockquote::before {
  content: '"';
  color: var(--gold);
}
.voordeel-quote blockquote::after {
  content: '"';
  color: var(--gold);
}
.voordeel-quote p { color: rgba(255,255,255,0.6); }
.voordeel-list .eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.voordeel-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.voordeel-list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  padding-left: 1.2rem;
  position: relative;
}
.voordeel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 1px;
  background: var(--gold);
}
.voordeel-list li span {
  color: var(--white);
  font-weight: 500;
}

/* ===========================  PAKKETTEN  =========================== */
.pakketten { background: var(--cream); }
.pakket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.pakket-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
}
.pakket-card--featured {
  border: 2px solid var(--dark);
}
.pakket-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pakket-header { margin-bottom: 2rem; }
.pakket-naam {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pakket-prijs {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.prijs-bedrag {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--dark);
}
.prijs-per {
  font-size: 0.875rem;
  color: var(--ink-lt);
}
.pakket-tagline {
  font-size: 0.9rem;
  color: var(--ink-lt);
}
.pakket-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.pakket-list li {
  font-size: 0.9rem;
  color: var(--ink-mid);
  padding-left: 1.4rem;
  position: relative;
}
.pakket-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.pakket-card .btn-outline,
.pakket-card .btn-primary { width: 100%; justify-content: center; }
.pakket-footer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--ink-lt);
}
.pakket-footer a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================  OVER  =========================== */
.over { background: var(--white); }
.over-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.over-img-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.over-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-lt);
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.over-geo {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  opacity: 0.25;
  border-radius: var(--radius-sm);
  z-index: 1;
}
.over-text h2 { margin-bottom: 1.25rem; }
.over-text p { margin-bottom: 1rem; }
.over-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 1.75rem 0;
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--ink-lt);
  margin-top: 0.25rem;
}

/* ===========================  CONTACT  =========================== */
.contact { background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-lt); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark);
}
.contact-extra {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.contact-info p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.btn-calendly { gap: 0.5rem; }
.contact-link {
  font-size: 0.9rem;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-locatie {
  font-size: 0.85rem;
  color: var(--ink-lt);
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dk);
}
.contact-locatie p { color: var(--ink-lt); }

/* ===========================  FOOTER  =========================== */
.footer {
  background: var(--dark);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-name {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}
.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-copy a { color: rgba(255,255,255,0.55); text-decoration: underline; }

/* ===========================  RESPONSIVE  =========================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3.5rem;
    padding-bottom: 0;
    gap: 2.5rem;
  }
  .hero-text { max-width: 100%; text-align: center; }
  .hero-ai { text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .problem-inner { grid-template-columns: 1fr; gap: 3rem; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .voordeel-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pakket-grid { grid-template-columns: 1fr; max-width: 480px; }
  .over-inner { grid-template-columns: 1fr; }
  .over-img { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .diensten-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-strip-inner { gap: 0.5rem 1.5rem; }
  .over-stats { flex-wrap: wrap; gap: 1.5rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--cream-dk);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--cream-dk); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 0.85rem 0; }
  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
  .nav-toggle { display: flex; }
  .nav-wrap { position: relative; }
}
.over-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.over-img-kolom {
  width: 100%;
}
.over-foto {
  width: 100%;
  max-width: 380px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}