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

:root {
  --blue:  #1B3A6B;
  --aqua:  #2BA8B0;
  --muted: #6b7c9a;
  --line:  rgba(11,37,69,0.1);
  --bg:    #f8f6f2;
  --pad-h: clamp(1.25rem, 5vw, 4rem);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--blue);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HEADER ── */
header {
  padding: 1.5rem var(--pad-h);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.logo img {
  display: block;
  height: clamp(52px, 9vw, 80px);
  width: auto;
}

/* ── MAIN ── */
main {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 4.5rem) var(--pad-h) clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.name-block { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.name-block h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: var(--blue);
}

.name-block .sub {
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ── DATA TABLE ── */
.data-table { display: flex; flex-direction: column; }

.data-row {
  display: grid;
  grid-template-columns: clamp(120px, 28vw, 180px) 1fr;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  gap: 0.5rem;
}
.data-row:first-child { border-top: 1px solid var(--line); }

.data-key {
  font-size: clamp(0.6rem, 1.6vw, 0.68rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
  padding-top: 0.1rem;
}

.data-val {
  font-size: clamp(0.82rem, 2.2vw, 0.9rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--blue);
}

.data-val a {
  color: inherit;
  text-decoration: none;
}

/* ── PHOTO ── */
/* Mobiele foto standaard verborgen */
.mobile-photo { display: none; }

.photo-wrap {
  width: clamp(100px, 18vw, 180px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid rgba(43,168,176,0.25);
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── BEHANDELINGEN ── */
.treatments {
  background: var(--blue);
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--pad-h);
}

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(43,168,176,0.15);
}

.treatment-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid rgba(43,168,176,0.1);
}
.treatment-card:last-child { border-right: none; }

.treatment-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: rgba(43,168,176,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.treatment-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.6rem;
}

.treatment-desc {
  font-size: clamp(0.75rem, 1.8vw, 0.82rem);
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  padding: 1.25rem var(--pad-h);
  border-top: 1px solid var(--line);
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

footer p {
  font-size: clamp(0.62rem, 1.6vw, 0.7rem);
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ── TABLET (≤768px) ── */
@media (max-width: 768px) {
  .photo-wrap { width: clamp(80px, 20vw, 130px); }
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .treatment-card:nth-child(2) { border-right: none; }
  .treatment-card:nth-child(3) {
    border-right: none;
    border-top: 1px solid rgba(43,168,176,0.1);
    grid-column: 1 / -1;
  }
}

/* ── MOBIEL (≤520px) ── */
@media (max-width: 520px) {
  main { grid-template-columns: 1fr; }
  .photo-col { display: none; }

  .name-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .name-block-inner { flex: 1; min-width: 0; }
  .mobile-photo {
    display: block;
    width: 72px;
    min-width: 72px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(43,168,176,0.3);
    flex-shrink: 0;
  }
  .mobile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .data-row {
    grid-template-columns: 1fr;
    gap: 0.1rem;
    padding: 0.75rem 0;
  }
  .treatments-grid { grid-template-columns: 1fr; }
  .treatment-card {
    border-right: none;
    border-top: 1px solid rgba(43,168,176,0.1);
  }
  .treatment-card:first-child { border-top: none; }
  footer { flex-direction: column; text-align: center; }
}
