/* ==========================================================================
   Pedicure Olga Upperman — huisstijl
   Palet: dennengroen + mosgroen + warm papier. Rustig, verzorgd, zorgprofessioneel.
   ========================================================================== */

:root {
  --pine: #2a5d52;
  --pine-dark: #1e463d;
  --pine-deep: #16332d;
  --moss: #7fb3a4;
  --moss-soft: #cfe4dc;
  --mist: #eef5f2;
  --paper: #fbfcfb;
  --ink: #24312d;
  --ink-soft: #51625c;
  --honey: #c98a2d;
  --honey-soft: #f6ecd9;
  --wa: #1faa53;
  --line: #dde8e3;

  --font: "Albert Sans", "Segoe UI", system-ui, sans-serif;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 10px 30px rgba(30, 70, 61, 0.10);
  --shadow-soft: 0 4px 14px rgba(30, 70, 61, 0.07);
  --wrap: 1100px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

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

a { color: var(--pine); }
a:hover { color: var(--pine-dark); }

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--pine-deep);
  font-weight: 700;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
ul { padding-left: 1.3rem; }
li { margin-bottom: 0.35em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pine-deep);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Knoppen
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn svg { flex: none; }
.btn-primary { background: var(--pine); color: #fff; }
.btn-primary:hover { background: var(--pine-dark); color: #fff; transform: translateY(-1px); }
.btn-outline { border-color: var(--pine); color: var(--pine); background: transparent; }
.btn-outline:hover { background: var(--mist); color: var(--pine-dark); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #178a43; color: #fff; transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--pine-deep); }
.btn-light:hover { background: var(--mist); color: var(--pine-deep); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 251, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--pine-deep);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.15;
}
.brand strong { font-weight: 800; display: block; }
.brand-mark { flex: none; }

.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav a {
  display: block;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
}
.site-nav a:hover { background: var(--mist); color: var(--pine-dark); }
.site-nav a[aria-current="page"] { background: var(--pine); color: #fff; }

.header-call { margin-left: 0.4rem; padding: 0.6rem 1.1rem; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 2px solid var(--pine);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  color: var(--pine);
}

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; }
  .header-call { display: none; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.8rem 1.25rem 1.2rem;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .site-nav a { padding: 0.7rem 0.9rem; font-size: 1.05rem; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(127, 179, 164, 0.28), transparent 65%),
    linear-gradient(160deg, var(--mist) 0%, var(--paper) 78%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  padding-block: 3.6rem 3.2rem;
  position: relative;
}
.hero .kicker {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--pine-dark);
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}
.hero p.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 34rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.5rem; }
.hero-note { margin-top: 0.9rem; font-size: 0.92rem; color: var(--ink-soft); }

.hero-visual { position: relative; }
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 130px;
  height: 130px;
  background: var(--moss-soft);
  border-radius: 46% 54% 55% 45% / 48% 44% 56% 52%;
  z-index: -1;
}

/* voetstappen-motief */
.steps-motif { display: flex; gap: 0.9rem; align-items: flex-end; margin: 0 0 1rem; }
.steps-motif span {
  width: 13px; height: 20px;
  background: var(--moss);
  border-radius: 50% 50% 45% 45%;
  opacity: 0.85;
}
.steps-motif span:nth-child(even) { transform: translateY(-7px) rotate(8deg); opacity: 0.55; }
.steps-motif span:nth-child(odd) { transform: rotate(-6deg); }

.trust-strip { background: var(--pine-deep); color: #e8f2ee; }
.trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 0.9rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
  justify-content: center;
}
.trust-strip li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 500; margin: 0; }
.trust-strip svg { flex: none; color: var(--moss); }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; padding-block: 2.4rem; gap: 1.8rem; }
  .hero-visual { order: -1; }
  .hero-visual img { aspect-ratio: 16 / 9; }
}

/* --------------------------------------------------------------------------
   Secties
   -------------------------------------------------------------------------- */
.section { padding: 3.6rem 0; }
.section.tint { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 620px; margin-bottom: 2rem; }
.section-head .kicker,
.page-hero .kicker {
  display: inline-block;
  color: var(--pine);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.5rem;
}
.section-head p { color: var(--ink-soft); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
@media (max-width: 920px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card .card-link { margin-top: auto; font-weight: 600; text-decoration: none; }
.card .card-link:hover { text-decoration: underline; }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--pine);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}

.photo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.photo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.photo-card img { aspect-ratio: 2 / 1; object-fit: cover; width: 100%; }
.photo-card .pc-body { padding: 1.1rem 1.3rem 1.3rem; }
.photo-card h3 { margin-bottom: 0.3em; font-size: 1.1rem; }
.photo-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.photo-card .pc-more { color: var(--pine); font-weight: 600; font-size: 0.95rem; display: inline-block; margin-top: 0.6rem; }

.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.55em; }
.checklist svg { flex: none; color: var(--pine); margin-top: 0.22em; }

/* --------------------------------------------------------------------------
   Pagina-hero (subpagina's)
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(160deg, var(--mist) 0%, var(--paper) 90%);
  border-bottom: 1px solid var(--line);
  padding: 2.6rem 0 2.2rem;
}
.page-hero p.lead { color: var(--ink-soft); font-size: 1.1rem; max-width: 40rem; margin-bottom: 0; }
.breadcrumbs { font-size: 0.9rem; margin-bottom: 0.9rem; color: var(--ink-soft); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; }
.breadcrumbs li + li::before { content: "\203A"; margin-right: 0.4rem; color: var(--moss); }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--pine); text-decoration: underline; }

.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.6rem; align-items: start; }
@media (max-width: 920px) { .article-layout { grid-template-columns: 1fr; } }
.article-body img.article-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.6rem;
}
.article-body h2 { margin-top: 1.6em; }
.article-body h2:first-child { margin-top: 0; }

.aside-card {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: sticky;
  top: 92px;
}
.aside-card h3 { font-size: 1.05rem; }
.aside-card ul { list-style: none; padding: 0; margin: 0 0 1rem; }
.aside-card li { margin-bottom: 0.4em; }
.aside-card a { text-decoration: none; font-weight: 500; }
.aside-card a:hover { text-decoration: underline; }
.aside-card .btn { width: 100%; justify-content: center; margin-top: 0.4rem; }

/* --------------------------------------------------------------------------
   Tarieven
   -------------------------------------------------------------------------- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); }
.price-table caption { text-align: left; font-weight: 700; font-size: 1.15rem; color: var(--pine-deep); padding: 0 0 0.7rem; caption-side: top; }
.price-table th, .price-table td { padding: 0.72rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table tr:last-child td { border-bottom: none; }
.price-table th { background: var(--pine); color: #fff; font-weight: 600; font-size: 0.92rem; }
.price-table td:last-child { text-align: right; font-weight: 600; color: var(--pine-deep); white-space: nowrap; }
.price-note { font-size: 0.92rem; color: var(--ink-soft); }
.table-wrap { overflow-x: auto; margin-bottom: 2rem; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-soft);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.05rem 1.3rem;
  color: var(--pine-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--pine); flex: none; }
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-a { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq .faq-a p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Praktisch / contact
   -------------------------------------------------------------------------- */
.location-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.location-card h3 { display: flex; align-items: center; gap: 0.5rem; }
.location-card h3 svg { color: var(--pine); }
.location-card address { font-style: normal; color: var(--ink-soft); margin-bottom: 0.6rem; }
.hours { list-style: none; padding: 0; margin: 0; color: var(--ink-soft); }
.hours li { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--line); padding: 0.3rem 0; }
.hours li span:last-child { font-weight: 600; color: var(--ink); }

.map-link { display: block; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); text-decoration: none; margin-top: 1rem; }
.map-link img { width: 100%; object-fit: cover; }
.map-link span {
  position: absolute;
  bottom: 10px; left: 10px;
  background: var(--pine-deep);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.2rem 0; }

.cta-band { background: linear-gradient(140deg, var(--pine-dark), var(--pine)); color: #eaf4f0; }
.cta-band .section-head { max-width: none; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe4dc; }
.cta-band a.plain { color: #fff; font-weight: 700; text-decoration: underline; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--pine-deep); color: #b9d0c8; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; padding: 2.8rem 0 2rem; }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 0.8em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45em; }
.site-footer a { color: #cfe4dc; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer address { font-style: normal; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 1.1rem 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; font-size: 0.88rem; }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; color: #fff; font-weight: 700; margin-bottom: 0.9rem; }

/* 404 */
.error-hero { text-align: center; padding: 5rem 0; }
.error-hero .steps-motif { justify-content: center; }
