/* ==========================================================================
   Pedicurepraktijk Margriet
   Palette and shapes derived from the practice's own logo: teal type on a
   soft blush blob. Type is set large and open for older visitors.
   ========================================================================== */

@font-face {
  font-family: 'Newsreader';
  src: url('/assets/fonts/Newsreader-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('/assets/fonts/SourceSans3-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand */
  --ink:        #10333A;
  --ink-soft:   #3C5C63;
  --teal-800:   #135560;
  --teal-700:   #1B6E7C;
  --teal-600:   #23879A;
  --teal-200:   #B9DDE3;
  --teal-100:   #DFF0F3;
  --teal-50:    #F1F9FA;
  --blush-100:  #F8EEF6;
  --blush-200:  #EFDCEA;
  --blush-300:  #E0BDD6;
  --rose-700:   #9B3F6C;
  --paper:      #FFFFFF;
  --mist:       #F6FAFA;
  --line:       #DCE9EB;

  /* Type */
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Rhythm */
  --wrap: 1140px;
  --wrap-narrow: 760px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 18px;
  --radius-lg: 32px;
  --shadow: 0 2px 4px rgba(16, 51, 58, .04), 0 12px 32px rgba(16, 51, 58, .07);
  --shadow-sm: 0 1px 2px rgba(16, 51, 58, .05), 0 6px 18px rgba(16, 51, 58, .05);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--sans);
  font-size: 1.125rem;          /* 18px base, deliberately large */
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-700); text-underline-offset: .18em; text-decoration-thickness: .07em; }
a:hover { color: var(--teal-800); }
:focus-visible { outline: 3px solid var(--rose-700); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(2.15rem, 5.4vw, 3.5rem); letter-spacing: -.015em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.175rem; font-family: var(--sans); font-weight: 700; }
p, li { text-wrap: pretty; }

/* --- Layout --------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--mist { background: var(--mist); }
.section--teal { background: var(--teal-50); }
.section--blush { background: var(--blush-100); }
.stack > * + * { margin-top: 1.05rem; }
.stack-lg > * + * { margin-top: 2rem; }
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--teal-800); color: #fff; padding: .8rem 1.2rem;
  border-radius: 0 0 10px 10px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

.section-head { max-width: 42rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.eyebrow {
  font-size: .875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-700); display: block; margin-bottom: .6rem;
}
.lead { font-size: clamp(1.2rem, 2.1vw, 1.375rem); line-height: 1.6; color: var(--ink-soft); }

/* --- Signature blob (from the logo) --------------------------------------- */
.blob {
  border-radius: 62% 38% 46% 54% / 54% 44% 56% 46%;
  overflow: hidden;
}
.blob-behind { position: relative; }
.blob-behind::before {
  content: ""; position: absolute; inset: -6% -5% -8% -7%;
  background: var(--blush-200);
  border-radius: 58% 42% 50% 50% / 48% 56% 44% 52%;
  z-index: 0;
}
.blob-behind > * { position: relative; z-index: 1; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 78px; }
.brand { display: flex; align-items: baseline; gap: .5rem; text-decoration: none; font-family: var(--serif); line-height: 1.05; white-space: nowrap; }
.brand b { font-size: 1.35rem; font-weight: 600; color: var(--teal-700); }
.brand span { font-size: .9rem; color: var(--ink-soft); font-family: var(--sans); }
.header-spacer { margin-left: auto; }

.nav ul { display: flex; gap: .1rem; list-style: none; padding: 0; margin: 0; }
.nav a {
  display: block; padding: .55rem .7rem; border-radius: 10px; white-space: nowrap;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1rem;
}
.nav a:hover { background: var(--teal-100); color: var(--teal-800); }
.nav a[aria-current="page"] { color: var(--teal-800); background: var(--teal-100); }

.nav-toggle {
  display: none; align-items: center; gap: .5rem;
  background: var(--teal-700); color: #fff; border: 0; border-radius: 12px;
  padding: .7rem 1rem; font: inherit; font-weight: 700; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; fill: currentColor; }

.header-call {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal-700); color: #fff; text-decoration: none;
  padding: .7rem 1.15rem; border-radius: 999px; font-weight: 700; white-space: nowrap;
}
.header-call:hover { background: var(--teal-800); color: #fff; }
.header-call svg { width: 19px; height: 19px; fill: currentColor; }

@media (max-width: 1240px) {
  .brand span { display: none; }
}
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: .75rem 1.25rem 1.25rem;
    display: none;
  }
  .nav[data-open="true"] { display: block; }
  .nav ul { flex-direction: column; gap: .15rem; }
  .nav a { padding: .85rem .8rem; font-size: 1.1rem; }
  .header-call span { display: none; }
  .header-call { padding: .7rem .85rem; }
}
@media (max-width: 400px) {
  .brand b { font-size: 1.15rem; white-space: normal; }
  .brand { white-space: normal; }
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 56px; padding: .85rem 1.6rem;
  border-radius: 999px; border: 2px solid transparent;
  font-family: var(--sans); font-size: 1.075rem; font-weight: 700;
  text-decoration: none; cursor: pointer; transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn svg { width: 21px; height: 21px; fill: currentColor; flex: none; }
.btn-primary { background: var(--teal-700); color: #fff; }
.btn-primary:hover { background: var(--teal-800); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: var(--paper); color: var(--teal-800); border-color: var(--teal-200); }
.btn-secondary:hover { background: var(--teal-50); color: var(--teal-800); border-color: var(--teal-600); }
.btn-ghost { background: transparent; color: var(--teal-800); border-color: currentColor; }
.btn-ghost:hover { background: var(--teal-100); color: var(--teal-800); }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--teal-50); }
.hero::after {
  content: ""; position: absolute; right: -12%; top: -30%;
  width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  background: var(--blush-100);
  border-radius: 58% 42% 50% 50% / 48% 56% 44% 52%;
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { margin-bottom: 1.9rem; max-width: 34rem; }
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 46% 54% 52% 48% / 60% 46% 54% 40%;
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute; left: -1rem; bottom: -1.25rem;
  background: var(--paper); border-radius: 16px; padding: .9rem 1.15rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .8rem;
  max-width: 17rem;
}
.hero-badge img { width: 54px; height: auto; border-radius: 6px; }
.hero-badge p { font-size: .95rem; line-height: 1.4; color: var(--ink-soft); }
.hero-badge strong { color: var(--ink); display: block; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 460px; }
  .hero-badge { left: auto; right: -.5rem; }
}

/* --- Trust strip ---------------------------------------------------------- */
.trust-strip { background: var(--teal-800); color: #fff; }
.trust-strip ul {
  list-style: none; margin: 0; padding: 1.25rem 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem 1.5rem;
}
.trust-strip li { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: 1.02rem; }
/* evenodd so the inner shape (the check, the clock hands) cuts a hole
   instead of disappearing into the solid outline. */
.trust-strip svg { width: 22px; height: 22px; fill: var(--teal-200); fill-rule: evenodd; flex: none; }
@media (max-width: 860px) { .trust-strip ul { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .trust-strip ul { grid-template-columns: 1fr; } }

/* --- Cards ---------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; display: flex; flex-direction: column; gap: .7rem;
  box-shadow: var(--shadow-sm); transition: border-color .18s, transform .18s, box-shadow .18s;
}
.card:hover { border-color: var(--teal-200); transform: translateY(-2px); box-shadow: var(--shadow); }
.card h3 a { text-decoration: none; color: inherit; }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card { position: relative; }
.card p { color: var(--ink-soft); }
.card .price { font-weight: 700; color: var(--rose-700); font-size: 1.05rem; }
.card .more { margin-top: auto; padding-top: .5rem; font-weight: 700; color: var(--teal-700); }
.card img { border-radius: 12px; aspect-ratio: 16 / 10; object-fit: cover; margin-bottom: .3rem; }

/* --- Steps ---------------------------------------------------------------- */
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 1.1rem; }
.steps li {
  counter-increment: step; position: relative; padding-left: 3.75rem; min-height: 2.6rem;
  display: flex; flex-direction: column; justify-content: center;
}
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--blush-200); color: var(--rose-700);
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  display: grid; place-items: center;
}
.steps strong { display: block; }

/* --- Check list ----------------------------------------------------------- */
.checks { list-style: none; padding: 0; display: grid; gap: .7rem; }
.checks li { position: relative; padding-left: 2.1rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--teal-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231B6E7C' d='M9.3 16.2 5.1 12l-1.4 1.4 5.6 5.6L20.4 7.9 19 6.5z'/%3E%3C/svg%3E") center / 1rem no-repeat;
}

/* --- Prose (long content pages) ------------------------------------------- */
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.8rem; }
.prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.35rem; display: grid; gap: .5rem; }
.prose li::marker { color: var(--teal-600); }
.prose > h2:first-child, .prose > h3:first-child { margin-top: 0; }

/* --- Price table ---------------------------------------------------------- */
.price-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.price-table caption { text-align: left; color: var(--ink-soft); padding-bottom: .75rem; }
.price-table th, .price-table td { text-align: left; padding: 1rem .5rem; border-bottom: 1px solid var(--line); }
.price-table thead th { font-size: .95rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-soft); padding-top: 0; }
.price-table td:last-child, .price-table th:last-child { text-align: right; white-space: nowrap; font-weight: 700; color: var(--rose-700); }
.price-table tbody th { font-weight: 600; font-size: 1.05rem; }

/* --- Highlight / note ----------------------------------------------------- */
.note {
  background: var(--blush-100); border-left: 5px solid var(--blush-300);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 1.25rem 1.5rem;
}
.note p + p { margin-top: .6rem; }
.panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-sm);
}

/* --- Split (image + text) ------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--narrow-img { grid-template-columns: .8fr 1.2fr; }
.split--top { align-items: start; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 860px) { .split, .split--narrow-img { grid-template-columns: 1fr; } }

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .3rem 1.35rem;
}
.faq details[open] { border-color: var(--teal-200); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2.25rem 1.1rem 0; position: relative;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0; top: 1.45rem;
  width: 1.1rem; height: 1.1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231B6E7C' d='M12 15.4 5.6 9l1.4-1.4 5 5 5-5L18.4 9z'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .faq-body { padding: 0 0 1.2rem; color: var(--ink-soft); }
.faq .faq-body > * + * { margin-top: .7rem; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band { background: var(--teal-800); color: #fff; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; left: -8%; bottom: -60%;
  width: 40vw; height: 40vw; max-width: 460px; max-height: 460px;
  background: rgba(255, 255, 255, .06);
  border-radius: 58% 42% 50% 50% / 48% 56% 44% 52%;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--teal-200); font-size: 1.2rem; }
.cta-band .btn-primary { background: var(--paper); color: var(--teal-800); }
.cta-band .btn-primary:hover { background: var(--teal-100); color: var(--teal-800); }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .5); }
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.cta-inner { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.cta-inner > div { max-width: 34rem; }

/* --- Contact details ------------------------------------------------------ */
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: .95rem; align-items: flex-start; }
.contact-list svg { width: 26px; height: 26px; fill: var(--teal-600); fill-rule: evenodd; flex: none; margin-top: .25rem; }
.contact-list b { display: block; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); font-weight: 700; }
.contact-list a { font-size: 1.2rem; font-weight: 600; }

.map-link { display: block; text-decoration: none; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-link img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.map-link span { display: block; padding: .9rem 1.2rem; font-weight: 700; color: var(--teal-700); background: var(--paper); }
.map-link:hover span { background: var(--teal-50); }

/* --- Breadcrumbs ---------------------------------------------------------- */
.crumbs { padding-block: 1rem .25rem; font-size: .98rem; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; color: var(--ink-soft); }
.crumbs li::after { content: "›"; margin-left: .4rem; color: var(--teal-600); }
.crumbs li:last-child::after { content: none; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* --- Page header ---------------------------------------------------------- */
.page-head { background: var(--teal-50); padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 5vw, 4rem); }
.page-head h1 { margin-bottom: 1rem; }
.page-head .lead { max-width: 44rem; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #C9DCDF; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-brand b { font-family: var(--serif); font-size: 1.5rem; color: #fff; display: block; }
.footer-nap { font-style: normal; }
.footer-nap a { font-weight: 600; }
.footer-legal {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .95rem; color: #9FBAC0;
}
.footer-legal a { color: #C9DCDF; }

/* --- Sticky mobile call bar ----------------------------------------------- */
.callbar { display: none; }
@media (max-width: 700px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .97); border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(16, 51, 58, .1);
  }
  .callbar .btn { min-height: 52px; font-size: 1.02rem; padding-inline: .75rem; }
  body { padding-bottom: 4.75rem; }
}

/* --- Utilities ------------------------------------------------------------ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.center { text-align: center; margin-inline: auto; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
