/* ── Fennema Medical · Gedeelde stijlen ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy: #0D2B3E;
  --navy-mid: #152f42;
  --teal: #1D7A6A;
  --teal-dark: #0F5548;
  --teal-light: #E8F5F2;
  --teal-mid: #9FE1CB;
  --warm: #F7F4EF;
  --warm-dark: #EDE9E1;
  --accent: #C8A96E;
  --accent-light: #F5EDD8;
  --accent-dark: #9a7a3e;
  --text: #1a1a1a;
  --text-mid: #444;
  --text-muted: #888;
  --border: rgba(0,0,0,0.08);
  --border-mid: rgba(0,0,0,0.14);
  --white: #fff;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* NAV */
.topbar { background: var(--accent); padding: 0.45rem 2.5rem; display: flex; justify-content: flex-end; gap: 2rem; }
.topbar a { font-size: 12px; color: var(--navy); text-decoration: none; font-weight: 500; display: flex; align-items: center; gap: 5px; opacity: 0.85; transition: opacity 0.2s; }
.topbar a:hover { opacity: 1; }
nav { position: sticky; top: 0; z-index: 100; background: var(--navy); padding: 0 2.5rem; display: flex; align-items: center; justify-content: space-between; height: 60px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-brand { display: flex; flex-direction: column; text-decoration: none; }
.nav-brand-name { font-family: 'Fraunces', serif; color: var(--accent); font-size: 1.1rem; font-weight: 400; letter-spacing: 0.02em; line-height: 1; }
.nav-brand-sub { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; padding: 6px 12px; border-radius: 6px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.07); }
.nav-cta { background: var(--teal) !important; color: #fff !important; font-weight: 500 !important; margin-left: 0.75rem; }
.nav-cta:hover { background: var(--teal-dark) !important; }

/* PAGE HEADER */
.page-header { background: var(--navy); padding: 4rem 2.5rem 3rem; position: relative; overflow: hidden; }
.page-header-ring { position: absolute; border: 1px solid rgba(200,169,110,0.08); border-radius: 50%; pointer-events: none; }
.ph-ring1 { width: 500px; height: 500px; top: -180px; right: -100px; }
.ph-ring2 { width: 300px; height: 300px; top: -60px; right: 60px; }
.page-header-content { position: relative; z-index: 2; max-width: 680px; }
.page-eyebrow { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.page-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--accent); }
.page-title { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.page-title em { font-style: italic; color: var(--accent); }
.page-desc { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 560px; }

/* BREADCRUMB */
.breadcrumb { background: var(--navy-mid); padding: 0.75rem 2.5rem; display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.35); border-bottom: 0.5px solid rgba(255,255,255,0.05); }
.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.breadcrumb i { font-size: 10px; }

/* SECTION BASE */
.section { padding: 4.5rem 2.5rem; }
.section-white { background: var(--white); }
.section-warm { background: var(--warm); }
.section-warm-dark { background: var(--warm-dark); }
.section-navy { background: var(--navy); }
.section-teal { background: var(--teal); }
.section-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); font-weight: 500; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 8px; }
.section-label::before { content: ''; display: block; width: 16px; height: 1px; background: var(--teal); }
.section-label.light { color: var(--accent); }
.section-label.light::before { background: var(--accent); }
.section-title { font-family: 'Fraunces', serif; font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 300; color: var(--navy); line-height: 1.15; margin-bottom: 0.6rem; }
.section-title em { font-style: italic; color: var(--teal); }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--accent); }
.section-sub { color: var(--text-muted); font-size: 15px; max-width: 540px; line-height: 1.75; margin-bottom: 2.5rem; }
.section-sub.light { color: rgba(255,255,255,0.5); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.875rem 1.75rem; font-size: 14px; font-weight: 500; font-family: 'DM Sans', sans-serif; border-radius: 10px; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { background: rgba(255,255,255,0.07); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-mid); }

/* CARDS */
.card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; transition: all 0.22s; }
.card:hover { box-shadow: 0 8px 24px rgba(13,43,62,0.09); border-color: var(--teal-mid); }
.card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card-icon i { font-size: 20px; color: var(--teal); }
.card-title { font-weight: 500; font-size: 16px; color: var(--navy); margin-bottom: 0.5rem; }
.card-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* FOOTER */
footer { background: var(--navy); padding: 3rem 2.5rem 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 0.5px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-brand { font-family: 'Fraunces', serif; color: var(--accent); font-size: 1.1rem; display: block; margin-bottom: 0.6rem; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.28); font-weight: 500; margin-bottom: 1rem; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-list a { font-size: 13px; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.footer-list a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }

/* CONTACT FORM */
.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-title { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 300; color: var(--navy); margin-bottom: 0.4rem; }
.form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
label { font-size: 12px; font-weight: 500; color: var(--text-mid); }
input, select, textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border-mid); border-radius: 8px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--warm); transition: border-color 0.2s, background 0.2s; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); background: var(--white); }
textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; background: var(--teal); color: #fff; border: none; border-radius: 10px; padding: 0.9rem; font-size: 14px; font-weight: 500; font-family: 'DM Sans', sans-serif; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; margin-top: 1.25rem; }
.form-submit:hover { background: var(--teal-dark); }
.form-note { font-size: 11px; color: var(--text-muted); margin-top: 0.75rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; } .reveal-d2 { transition-delay: 0.2s; } .reveal-d3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .topbar, nav { padding: 0.5rem 1.25rem; }
  .nav-links { display: none; }
  .page-header { padding: 3rem 1.25rem 2.5rem; }
  .breadcrumb { padding: 0.75rem 1.25rem; }
  .section { padding: 3rem 1.25rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
