/* =====================================================================
   Pure Genieten, Medisch pedicure Schijndel
   Kleur en vorm komen uit het eigen logo (stoffig roze) met een rustig
   eucalyptusgroen als medische tegenhanger, ontleend aan het ProVoet-merk.
   Basisgrootte 18px: een groot deel van de bezoekers is wat ouder.
   ===================================================================== */

/* --- lettertypes, lokaal gehost (geen externe verzoeken, AVG-vriendelijk) */
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("/assets/fonts/karla-latin-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* --- ontwerptokens ---------------------------------------------------- */
:root {
  --rose: #d19ba8;          /* exact uit het logo bemonsterd */
  --rose-deep: #9d5c6e;     /* leesbaar op licht, knopkleur */
  --rose-wash: #f7ebee;
  --eucalyptus: #2f6b5e;
  --euc-deep: #24544a;
  --euc-wash: #e7efec;

  --ink: #2e2b2c;
  --ink-soft: #5f5859;
  --shell: #faf7f6;
  --mist: #eef2f0;
  --white: #fff;
  --line: #e6dedd;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(46, 43, 44, .04), 0 8px 24px -12px rgba(46, 43, 44, .16);
  --shadow-lift: 0 2px 4px rgba(46, 43, 44, .05), 0 16px 36px -14px rgba(46, 43, 44, .22);

  --wrap: 1120px;
  --gap: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  --sect: clamp(3.25rem, 2.2rem + 4.4vw, 6rem);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Karla", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* --- basis ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--shell);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 46em) {
  body { font-size: 1.125rem; }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 72;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 1.5rem + 2.7vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 1.35rem + 1.5vw, 2.45rem); }
h3 { font-size: clamp(1.2rem, 1.08rem + .5vw, 1.45rem); }
h4 { font-size: 1.0625rem; font-family: var(--font-body); font-weight: 700; }

p, ul, ol, dl, table { margin: 0 0 1.15em; }
p { max-width: 68ch; }
li { margin-bottom: .35em; }

a { color: var(--euc-deep); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--rose-deep); }

:focus-visible {
  outline: 3px solid var(--eucalyptus);
  outline-offset: 3px;
  border-radius: 3px;
}

strong { font-weight: 700; }

.wrap { width: min(100% - 2.25rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.25rem, 46rem); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--euc-deep); color: var(--white);
  padding: .8rem 1.2rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--white); }

.visueel-verborgen {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* --- handtekening: de krul uit het logo ------------------------------- */
.krul { display: block; width: 190px; max-width: 60%; height: auto; margin: 0 0 1.5rem; }
.krul path {
  fill: none; stroke: var(--rose); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.krul--midden { margin-inline: auto; }

.section-head .krul { margin-bottom: 1.1rem; }

@media (prefers-reduced-motion: no-preference) {
  .krul--teken path {
    stroke-dasharray: 460; stroke-dashoffset: 460;
    animation: krul-tekenen 2.2s .25s cubic-bezier(.4, 0, .2, 1) forwards;
  }
  @keyframes krul-tekenen { to { stroke-dashoffset: 0; } }
}

/* --- kop van de site -------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 247, 246, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1rem;
  min-height: 4.5rem;
  padding-block: .6rem;
}

.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { width: 172px; }
.brand:hover { opacity: .82; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  font: inherit; font-weight: 600; font-size: .95rem;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .6rem .85rem; cursor: pointer;
}
.nav-toggle:hover { border-color: var(--rose); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: currentColor; box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor; }

.nav ul {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: .15rem; margin: 0; padding: 0;
}
.nav a {
  display: block; padding: .5rem .7rem;
  color: var(--ink); text-decoration: none;
  font-size: .975rem; font-weight: 500;
  border-radius: var(--radius-sm);
}
.nav a:hover { background: var(--rose-wash); color: var(--rose-deep); }
.nav a[aria-current="page"] {
  color: var(--rose-deep); font-weight: 700;
  box-shadow: inset 0 -2px 0 var(--rose);
}

.header-tel {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--rose-deep); color: var(--white);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  padding: .7rem 1.05rem; border-radius: 999px;
  white-space: nowrap;
}
.header-tel:hover { background: var(--ink); color: var(--white); }

@media (max-width: 63.99em) {
  .brand img { width: 138px; }
  .nav {
    display: none; order: 4; width: 100%;
    border-top: 1px solid var(--line); padding-top: .6rem; margin-top: .3rem;
  }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav a { padding: .8rem .6rem; font-size: 1.05rem; border-radius: 0; }
  .header-tel span { display: none; }
  .header-tel::after { content: "Bellen"; }
}

@media (min-width: 64em) {
  .nav-toggle { display: none; }
}

/* --- secties ---------------------------------------------------------- */
.section { padding-block: var(--sect); }
.section--mist { background: var(--mist); }
.section--wash { background: var(--rose-wash); }

.section-head { max-width: 46rem; margin-bottom: 2.5rem; }
.section-head p { color: var(--ink-soft); font-size: 1.075em; margin-bottom: 0; }
.section-head--midden { margin-inline: auto; text-align: center; }
.section-head--midden p { margin-inline: auto; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: .7rem;
}

/* --- hero ------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem) var(--sect); }

.hero-grid {
  display: grid; gap: var(--gap);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 56em) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); }
}

.hero h1 { margin-bottom: .5em; }
.hero-lead {
  font-size: 1.16em; line-height: 1.62; color: var(--ink-soft);
  margin-bottom: 1.8rem;
}
.hero-lead strong { color: var(--ink); font-weight: 600; }

.hero-portret { position: relative; }
.hero-portret img {
  width: 100%; border-radius: 200px 200px var(--radius) var(--radius);
  box-shadow: var(--shadow-lift);
}
.hero-portret figcaption {
  margin-top: .9rem; font-size: .93rem; color: var(--ink-soft); text-align: center;
}
.hero-portret figcaption b { color: var(--ink); font-weight: 700; }

/* --- knoppen ---------------------------------------------------------- */
.knoppen { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }

.knop {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: 1.02rem; font-weight: 700;
  text-decoration: none; text-align: center;
  padding: .95rem 1.5rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.knop svg { flex: none; width: 1.15em; height: 1.15em; fill: currentColor; }

.knop--bellen { background: var(--rose-deep); color: var(--white); }
.knop--bellen:hover { background: var(--ink); color: var(--white); }

.knop--app { background: var(--euc-deep); color: var(--white); }
.knop--app:hover { background: var(--ink); color: var(--white); }

.knop--rand { background: var(--white); color: var(--ink); border-color: var(--line); }
.knop--rand:hover { border-color: var(--rose); color: var(--rose-deep); background: var(--white); }

.knop--groot { font-size: 1.12rem; padding: 1.1rem 1.9rem; }

/* --- vertrouwensrij --------------------------------------------------- */
.trustrow {
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  list-style: none; margin: 0; padding: 0;
}
.trustrow li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .97rem; font-weight: 500; color: var(--ink-soft);
  margin-bottom: 0;
}
.trustrow svg { flex: none; width: 1.15rem; height: 1.15rem; fill: var(--eucalyptus); }

/* --- klachtenwijzer: het hart van de site ----------------------------- */
.klachten {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  list-style: none; margin: 0; padding: 0;
}
.klacht {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .9rem 1.1rem .9rem .9rem;
  text-decoration: none; color: var(--ink);
  margin-bottom: 0;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.klacht:hover {
  border-color: var(--rose); transform: translateY(-2px);
  box-shadow: var(--shadow); color: var(--ink);
}
.klacht img {
  flex: none; width: 76px; height: 76px; object-fit: cover;
  border-radius: 50%; border: 3px solid var(--rose-wash);
}
.klacht b { display: block; font-size: 1.06rem; font-weight: 700; }
.klacht span { display: block; font-size: .92rem; color: var(--ink-soft); line-height: 1.45; }

/* --- kaarten ---------------------------------------------------------- */
.kaarten {
  display: grid; gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  list-style: none; margin: 0; padding: 0;
}
.kaart {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
  margin-bottom: 0;
}
.kaart h2, .kaart h3 {
  font-size: clamp(1.2rem, 1.08rem + .5vw, 1.45rem);
  margin-bottom: .45em;
}
.kaart p { color: var(--ink-soft); font-size: .985em; margin-bottom: 1.15em; }
.kaart .prijs {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  color: var(--rose-deep); margin-bottom: .35em;
}
.kaart-link {
  margin-top: auto; font-weight: 700; text-decoration: none;
  color: var(--euc-deep); font-size: .99rem;
}
.kaart-link:hover { color: var(--rose-deep); }
.kaart-link::after { content: " \203A"; font-size: 1.15em; }

.kaart--uitgelicht { border-color: var(--rose); box-shadow: var(--shadow); }

/* --- tarieventabel ---------------------------------------------------- */
.tabel-wrap { overflow-x: auto; margin-bottom: 1.6rem; }

.tarieven {
  width: 100%; border-collapse: collapse;
  background: var(--white); font-variant-numeric: tabular-nums;
}
.tarieven caption {
  text-align: left; font-weight: 700; padding-bottom: .6rem; color: var(--ink-soft);
}
.tarieven th, .tarieven td {
  text-align: left; padding: .85rem 1rem;
  border-bottom: 1px solid var(--line); vertical-align: top;
}
.tarieven thead th {
  font-family: var(--font-body); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft);
  background: var(--mist);
}
.tarieven td:last-child, .tarieven th:last-child {
  text-align: right; white-space: nowrap; font-weight: 700;
}
.tarieven tbody tr:last-child td { border-bottom: 0; }
.tarieven .sub { display: block; font-size: .9rem; font-weight: 400; color: var(--ink-soft); }

/* --- inhoudsblok ------------------------------------------------------ */
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul { padding-left: 1.15rem; }
.prose li { max-width: 66ch; }
.prose img { border-radius: var(--radius); margin-block: 1.8rem; }

.uitleg {
  background: var(--white); border: 1px solid var(--line);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.5rem; margin-block: 1.8rem;
}
.uitleg > :last-child { margin-bottom: 0; }
.uitleg h3 { margin-top: 0; }

.tips { list-style: none; padding: 0; }
.tips li {
  position: relative; padding-left: 1.9rem; margin-bottom: .55em; max-width: 64ch;
}
.tips li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .7rem; height: .7rem; border-radius: 50%;
  border: 2px solid var(--rose); background: var(--white);
}

/* --- aandoening met foto --------------------------------------------- */
.aandoening {
  display: grid; gap: 1.5rem; align-items: start;
  padding-block: 2.4rem; border-top: 1px solid var(--line);
}
.aandoening:first-of-type { border-top: 0; padding-top: .5rem; }
@media (min-width: 44em) {
  .aandoening { grid-template-columns: 200px 1fr; gap: 2rem; }
}
.aandoening img {
  border-radius: var(--radius); box-shadow: var(--shadow); width: 100%;
}
.aandoening h2 { margin-top: 0; }
.aandoening > div > :last-child { margin-bottom: 0; }

/* --- galerij ---------------------------------------------------------- */
.galerij {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  list-style: none; margin: 0; padding: 0;
}
.galerij li { margin-bottom: 0; }
.galerij figure { margin: 0; }
.galerij img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
}
.galerij figcaption {
  margin-top: .6rem; font-size: .93rem; color: var(--ink-soft);
}

/* Staand voor-en-na beeld: niet bijsnijden, anders valt "voor" of "na" weg. */
.voor-na {
  display: grid; gap: 1.75rem; align-items: center; margin: 2.5rem 0 0;
}
@media (min-width: 44em) {
  .voor-na { grid-template-columns: minmax(0, 260px) 1fr; gap: 2.5rem; }
}
.voor-na img {
  border-radius: var(--radius); box-shadow: var(--shadow); width: 100%;
}
.voor-na figcaption { color: var(--ink-soft); }
.voor-na figcaption b {
  display: block; font-family: var(--font-display); font-variation-settings: "opsz" 72;
  font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: .4em;
}

/* --- producten -------------------------------------------------------- */
.producten {
  display: grid; gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  list-style: none; margin: 0; padding: 0;
}
.product {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 0;
}
.product img { width: 100%; aspect-ratio: 1; object-fit: contain; background: var(--white); padding: 1rem; }
.product-body { padding: 0 1.25rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.product h3 { font-size: 1.12rem; margin-bottom: .4em; }
.product p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1em; }
.product .prijs {
  margin-top: auto; font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600; color: var(--rose-deep);
}

/* --- veelgestelde vragen ---------------------------------------------- */
.faq { max-width: 48rem; }
.faq details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: .75rem;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.35rem; position: relative;
  font-family: var(--font-display); font-variation-settings: "opsz" 72;
  font-size: 1.1rem; font-weight: 600; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.35rem; top: 1.5rem;
  width: .62rem; height: .62rem;
  border-right: 2px solid var(--rose-deep); border-bottom: 2px solid var(--rose-deep);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.faq summary:hover { color: var(--rose-deep); }
.faq .antwoord { padding: 0 1.35rem 1.35rem; }
.faq .antwoord > :last-child { margin-bottom: 0; }

/* --- afspraakblok ----------------------------------------------------- */
.afspraak {
  background: var(--euc-deep); color: var(--white);
  border-radius: var(--radius); padding: clamp(1.75rem, 1rem + 3vw, 3.25rem);
}
.afspraak h2 { color: var(--white); }
.afspraak p { color: rgba(255, 255, 255, .88); }
.afspraak .knop--rand {
  background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .5);
}
.afspraak .knop--rand:hover { background: var(--white); color: var(--euc-deep); border-color: var(--white); }
.afspraak .knop--bellen { background: var(--white); color: var(--euc-deep); }
.afspraak .knop--bellen:hover { background: var(--rose); color: var(--ink); }
.afspraak .krul path { stroke: var(--rose); }

.afspraak-grid { display: grid; gap: var(--gap); }
@media (min-width: 52em) {
  .afspraak-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
}

/* --- contactgegevens -------------------------------------------------- */
.nap {
  font-style: normal; line-height: 1.85;
}
.nap dt {
  font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft); margin-top: 1.1rem;
}
.nap dd { margin: 0; font-size: 1.06rem; }
.nap dd a { font-weight: 700; }

.kaart-link-maps { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.kaart-link-maps img { width: 100%; }
.kaart-link-maps span {
  display: block; background: var(--white); padding: .85rem 1.1rem;
  font-weight: 700; color: var(--euc-deep); font-size: .98rem;
}
.kaart-link-maps:hover span { color: var(--rose-deep); }

/* --- badges ----------------------------------------------------------- */
.badges { display: flex; flex-wrap: wrap; align-items: center; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.badges li { margin-bottom: 0; }
.badges img { height: 46px; width: auto; }

/* --- kruimelpad ------------------------------------------------------- */
.kruimels { padding-top: 1.5rem; font-size: .92rem; color: var(--ink-soft); }
.kruimels ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.kruimels li { margin-bottom: 0; }
.kruimels li + li::before { content: "\203A"; margin-right: .4rem; color: var(--rose); }

/* --- voettekst -------------------------------------------------------- */
.site-footer {
  background: var(--ink); color: rgba(255, 255, 255, .78);
  padding-block: var(--sect) 2.5rem; margin-top: var(--sect);
  font-size: .99rem;
}
.section + .site-footer, .afspraak-sectie + .site-footer { margin-top: 0; }

.footer-grid {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  margin-bottom: 2.5rem;
}
.site-footer h2 {
  color: var(--white); font-size: 1.1rem; margin-bottom: .8em;
}
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--rose); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .45em; }
.site-footer p { color: rgba(255, 255, 255, .78); }
.footer-logo { width: 158px; margin-bottom: 1.2rem; filter: brightness(0) invert(1) opacity(.85); }

.footer-onder {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: .92rem; color: rgba(255, 255, 255, .6);
}
.footer-onder p { margin: 0; color: rgba(255, 255, 255, .6); }

/* --- 404 -------------------------------------------------------------- */
.leeg { text-align: center; padding-block: clamp(3rem, 8vw, 6rem); }
.leeg .krul { margin-inline: auto; }
.leeg .knoppen { justify-content: center; }

/* --- beweging beperken ------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --- afdrukken -------------------------------------------------------- */
@media print {
  .site-header, .afspraak-sectie, .nav-toggle { display: none; }
  body { background: #fff; font-size: 11pt; }
}
