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

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

:root {
  --white:  #FFFFFF;
  --tint-1: #F7F6F4;
  --tint-2: #EFEEEB;
  --tint-3: #E6E5E1;
  --dark:   #1A1A1A;
  --mid:    #636363;
  --light:  #9A9A9A;
  --border: rgba(0,0,0,0.07);

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

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 56px rgba(0,0,0,0.12);

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm:   10px;
  --r-md:   20px;
  --r-lg:   32px;
  --r-pill: 100px;
}

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

body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }

/* ═══════════════════════════════════════
   NAV — minimal text links
═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 56px;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 20px 56px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--dark);
}

/* Text-only nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}

.nav-link:hover { color: var(--dark); }
.nav-link.active { color: var(--dark); }

/* CTA as underlined text */
.nav-cta {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 1px;
  transition: opacity 0.2s var(--ease);
  white-space: nowrap;
}

.nav-cta:hover { opacity: 0.4; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--dark);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}

.nav-drawer.open { transform: translateX(0); }

.nav-drawer .nav-link {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 300;
  padding: 8px 24px;
  color: var(--dark);
  letter-spacing: normal;
}

.nav-drawer .nav-link:hover { color: var(--light); }

/* ═══════════════════════════════════════
   HERO — editorial typographic layout
═══════════════════════════════════════ */

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-bottom: 1px solid var(--border);
}

.hero-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 110px 56px 28px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}

.hero-bar-item {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
}

.hero-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 48px;
  text-align: center;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.6rem, 9vw, 10.5rem);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--dark);
}

.hero-title em {
  font-style: italic;
  display: block;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 56px 52px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 20px;
}

.hero-bottom-text {
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  outline: none;
  white-space: nowrap;
}

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

.btn-dark:hover {
  background: #2e2e2e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--tint-1);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   SECTIONS COMMON
═══════════════════════════════════════ */

section { padding: 140px 56px; }

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

.s-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 20px;
}

.s-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.s-title em { font-style: italic; color: var(--dark); }

.s-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  max-width: 520px;
}

/* ═══════════════════════════════════════
   CARDS
═══════════════════════════════════════ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.card {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-top {
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: transform 0.4s var(--ease-spring);
}

.card:hover .card-top { transform: scale(1.06); }

.card-body { padding: 28px 28px 32px; }

.card-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 10px;
}

.card-text {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.78;
}

.card-num {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--light);
  opacity: 0.45;
  letter-spacing: -0.02em;
}

.card-badge {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px 12px;
}

/* ═══════════════════════════════════════
   QUOTE BLOCK
═══════════════════════════════════════ */

.quote-block {
  background: var(--tint-1);
  border-radius: var(--r-lg);
  margin: 0 56px;
  padding: 90px 64px;
  text-align: center;
}

.quote-text {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto 24px;
}

.quote-attr {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--light);
}

/* ═══════════════════════════════════════
   ABOUT VISUAL
═══════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 500px;
}

.av-block {
  position: absolute;
  border-radius: var(--r-md);
}

.av-block-1 {
  inset: 0 48px 48px 0;
  background: var(--tint-1);
}

.av-block-2 {
  bottom: 0; right: 0;
  width: 52%; height: 50%;
  background: var(--tint-2);
}

.av-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--tint-3);
  width: 72px; height: 72px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.av-line {
  position: absolute;
  bottom: 56px; left: 20px;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--light), transparent);
  border-radius: 2px;
  opacity: 0.6;
}

.about-content { display: flex; flex-direction: column; gap: 24px; }

.cred-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.55;
}

.cred-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--light);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; }

.ci-item {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.ci-item:last-of-type { border-bottom: 1px solid var(--border); }

.ci-text h4 {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 5px;
}

.ci-text p, .ci-text a {
  font-size: 0.93rem;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.55;
}

.ci-text a:hover { color: var(--mid); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mid);
}

.form-input, .form-textarea, .form-select {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 17px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--mid);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

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

.form-note {
  font-size: 0.78rem;
  color: var(--light);
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */

footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 72px 56px 44px;
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 300;
  color: white;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.footer-blurb {
  font-size: 0.83rem;
  line-height: 1.75;
  max-width: 240px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.76rem;
  text-align: center;
}

/* ═══════════════════════════════════════
   CENTERED SINGLE-COLUMN SECTION
═══════════════════════════════════════ */

.centered-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 56px;
  text-align: center;
}

.centered-col {
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.centered-col .s-text { max-width: none; }
.centered-col .cred-list { text-align: left; width: 100%; }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.rd-1 { transition-delay: 0.08s; }
.rd-2 { transition-delay: 0.18s; }
.rd-3 { transition-delay: 0.28s; }
.rd-4 { transition-delay: 0.38s; }
.rd-5 { transition-delay: 0.48s; }

/* ═══════════════════════════════════════
   PHOTO BREAK
═══════════════════════════════════════ */

.photo-break {
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom 10% ; 
  display: block;
}

/* ═══════════════════════════════════════
   PROFILE PHOTO
═══════════════════════════════════════ */

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ═══════════════════════════════════════
   KLACHTEN — herken je dit
═══════════════════════════════════════ */

.klachten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  width: 100%;
  text-align: left;
  margin-top: 8px;
}

.klacht-item {
  background: var(--white);
  padding: 18px 22px;
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.45;
  position: relative;
}

.klacht-item::before {
  content: '—';
  display: block;
  font-size: 0.7rem;
  color: var(--light);
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════
   TARIEVEN
═══════════════════════════════════════ */

.tarieven-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.tarief-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  gap: 24px;
}

.tarief-row:last-child { border-bottom: 1px solid var(--border); }

.tarief-info { display: flex; flex-direction: column; gap: 3px; }

.tarief-info h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
}

.tarief-meta {
  font-size: 0.76rem;
  color: var(--light);
  letter-spacing: 0.06em;
}

.tarief-prijs {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   LEEFLIEVER SECTION
═══════════════════════════════════════ */

.leefliever-block {
  background: var(--tint-1);
  border-radius: var(--r-lg);
  margin: 0 56px 0;
  padding: 80px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.leefliever-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
}

.leefliever-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.15;
}

.leefliever-text {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.82;
  max-width: 500px;
}

/* ═══════════════════════════════════════
   PAGE HERO & EXTRAS
═══════════════════════════════════════ */

.page-hero {
  padding: 200px 56px 100px;
  max-width: 860px;
}

.info-band {
  background: var(--tint-1);
  border-radius: var(--r-lg);
  margin: 0 56px 100px;
  padding: 56px 64px;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.info-band-icon { font-size: 2.4rem; flex-shrink: 0; }

.info-band-text h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.info-band-text p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.78;
  max-width: 540px;
}

/* ═══════════════════════════════════════
   OVER MIJ — PROFILE
═══════════════════════════════════════ */

.profile-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 56px;
}

.profile-left { position: sticky; top: 120px; }

.profile-visual {
  background: var(--tint-1);
  border-radius: var(--r-lg);
  height: 480px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  overflow: hidden;
  position: relative;
}


.profile-name-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-radius: var(--r-md);
  padding: 20px 24px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.profile-name-card h2 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.profile-name-card p {
  font-size: 0.8rem;
  color: var(--light);
  letter-spacing: 0.08em;
}

.profile-right { display: flex; flex-direction: column; gap: 40px; }

.profile-section h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--dark);
}

.profile-section p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.85;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.pill {
  font-size: 0.8rem;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  color: var(--mid);
  background: var(--white);
}

.pill.filled {
  background: var(--tint-1);
  border-color: transparent;
  color: var(--dark);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

@media (max-width: 960px) {
  section, .profile-block { padding: 90px 24px; }
  .centered-section { padding: 90px 24px; }
  .page-hero { padding: 160px 24px 70px; }

  .nav { padding: 22px 24px; }
  .nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-bar { padding: 100px 24px 24px; }
  .hero-center { padding: 40px 24px; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 5rem); }
  .hero-bottom { padding: 24px 24px 48px; }

  .photo-break { height: 50vh; }
  .klachten-grid { grid-template-columns: 1fr; }
  .leefliever-block { margin: 0 24px; padding: 56px 32px; }
  .tarief-row { flex-wrap: wrap; gap: 8px; }

  .about-grid,
  .contact-grid,
  .profile-block { grid-template-columns: 1fr; gap: 48px; }

  .about-visual { height: 280px; }
  .profile-left { position: static; }
  .profile-visual { height: 320px; }

  .quote-block { margin: 0 24px; padding: 60px 32px; }
  .info-band { margin: 0 24px 72px; padding: 40px 32px; gap: 24px; }

  .form-row { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }

  footer { padding: 52px 24px 36px; }
  .footer-inner { flex-direction: column; gap: 36px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}
