/* ===========================================================
   Pedicure praktijk Wijkhuys
   Warm & natuurlijk thema — crème, salie-groen, warm bruin
   Klassieke, rustige uitstraling
   =========================================================== */

:root {
  --cream:      #faf6ec;
  --cream-deep: #f3ecdd;
  --paper:      #fffdf8;
  --sage:       #8b9d7f;
  --sage-dark:  #5e7256;
  --sage-deep:  #45563f;
  --brown:      #5b4a3a;
  --ink:        #40392f;
  --muted:      #685d4d;
  --terra:      #c08457;
  --line:       #cdbb99;
  --shadow:     0 14px 40px rgba(72, 58, 40, 0.10);
  --shadow-sm:  0 6px 18px rgba(72, 58, 40, 0.08);
  --radius:     14px;
  --maxw:       1080px;
  --serif: "Lora", "Georgia", "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

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

a { color: var(--sage-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terra); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.15;
  letter-spacing: .2px;
  margin: 0 0 .4em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.45rem; }

p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Decorative bits ---------- */
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: .9rem;
}
.kicker .sep { margin: 0 .5em; }

.flourish {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 1.6rem;
  color: var(--sage);
}
.flourish::before,
.flourish::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.flourish.left { justify-content: flex-start; }
.flourish.left::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--sage-dark);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--sage-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--sage);
}
.btn-ghost:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
}
.brand:hover { color: var(--brown); }
.brand-mark {
  width: 38px; height: 38px;
  flex: 0 0 auto;
  color: var(--sage-dark);
}
.brand-text { line-height: 1.05; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  display: block;
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-dark);
}
.brand-logo { height: 82px; width: auto; display: block; }
@media (max-width: 520px) { .brand-logo { height: 62px; } }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0; padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--terra);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--brown); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--brown);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(180deg, rgba(250,246,236,.50), rgba(250,246,236,.68)),
    url('hero.jpg');
  background-size: cover;
  background-position: center 62%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero .kicker,
.hero h1,
.hero .lead { text-shadow: 0 1px 6px rgba(255, 252, 245, .7); }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 84px 0 92px;
}
.hero-copy h1 { margin-bottom: .3em; }
.hero-copy .lead {
  font-size: 1.2rem;
  color: var(--brown);
  max-width: 34ch;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6rem; }

.hero-inner.solo {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 92px 24px 96px;
}
.hero-inner.solo .lead { margin-left: auto; margin-right: auto; max-width: 46ch; }
.hero-inner.solo .hero-actions { justify-content: center; }
.hero-inner.solo .kicker { display: block; }

.hero-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.6), transparent 55%),
    linear-gradient(160deg, var(--sage) 0%, var(--sage-deep) 100%);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  overflow: hidden;
}
.hero-figure .placeholder-note {
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  text-align: center;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.hero-figure svg { width: 46%; opacity: .85; }
.hero-figure.brand-card {
  background: var(--paper);
  border: 1px solid var(--line);
}
.hero-figure .hero-logo { width: 82%; height: auto; opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section.tint { background: var(--cream-deep); }
.section.paper { background: var(--paper); }
.section-head { max-width: 60ch; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Value pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pillar .ico {
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  color: var(--sage-dark);
}
.pillar h3 { font-size: 1.25rem; margin-bottom: .2em; }
.pillar p { font-size: 1rem; color: var(--muted); margin: 0; }

/* ---------- Cards (treatments / products) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 22px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico {
  width: 46px; height: 46px;
  color: var(--sage-dark);
  margin-bottom: 16px;
}
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.card .price {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: var(--sage-dark);
  font-size: 1rem;
}

/* Behandeling met tarief-badge */
.treatment-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin-bottom: .35em;
}
.treatment-head h3 { margin: 0; overflow-wrap: anywhere; }
.tarief {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: var(--sage-dark);
  border-radius: 999px;
  padding: 6px 18px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  margin-left: auto;
}

/* ---------- Two column / about ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: center;
}
.portrait {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.5), transparent 55%),
    linear-gradient(155deg, #cdbfa6, #9f8c6e);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: rgba(255,255,255,.92);
}
.portrait svg { width: 42%; opacity: .85; }
.portrait.has-photo { background: none; box-shadow: var(--shadow); }
.portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
/* Foto bovenaan uitlijnen i.p.v. in het midden laten zweven */
.split.split-top { align-items: start; }
@media (min-width: 881px) {
  .split.split-top .portrait { position: sticky; top: 132px; }
}
.portrait .placeholder-note {
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.8);
}

/* ---------- Quote / motto band ---------- */
.motto {
  text-align: center;
  background:
    linear-gradient(180deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: #fff;
  padding: 70px 0;
}
.motto .q {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-style: italic;
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.25;
}
.motto .by { margin-top: 1rem; letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; opacity: .85; }

/* ---------- Info / contact ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.info-card .ico { width: 30px; height: 30px; color: var(--sage-dark); margin-bottom: 12px; }
.info-card h3 { font-size: 1.2rem; margin-bottom: .3em; }
.info-card p, .info-card a { font-size: 1rem; color: var(--ink); margin: 0; overflow-wrap: break-word; }
.email-card { grid-column: span 2; }
.email-card a { font-size: 1.05rem; }
.form-status { margin: 4px 0 0; font-weight: 700; }
.form-status.ok { color: var(--sage-dark); }
.form-status.err { color: #b23b3b; }
.info-card .sub { color: var(--muted); font-size: .92rem; }

.hours-card { grid-column: 1 / -1; }
.hours-card .hours-list { max-width: 480px; }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .98rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .closed { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta {
  background: var(--cream-deep);
  text-align: center;
  padding: 76px 0;
}
.cta h2 { margin-bottom: .3em; }
.cta p { color: var(--brown); max-width: 48ch; margin: 0 auto 1.6rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage-deep);
  color: #e9e2d2;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.site-footer h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 .6em;
}
.site-footer p, .site-footer li { color: #d7cfbd; font-size: .95rem; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--terra); }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 8px; }
.footer-brand .brand-mark { color: #cdbf6a; }
.footer-logo {
  display: block;
  height: 96px;
  width: auto;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
}

/* Twee velden naast elkaar (contactformulier) */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.footer-badges { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.badge {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px; padding: 5px 12px; color: #efe9da;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .85rem; color: #c4bca9;
}

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 360px at 85% -20%, rgba(139,157,127,.22), transparent 60%),
    var(--cream-deep);
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--line);
}
.page-hero .crumb { font-size: .85rem; color: var(--muted); margin-bottom: .6rem; }
.page-hero p { max-width: 56ch; color: var(--brown); margin: 0; }

/* ---------- Misc ---------- */
.note-banner {
  background: #fbf3e6;
  border: 1px dashed var(--terra);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .92rem;
  color: var(--brown);
  margin-bottom: 28px;
}
.note-banner strong { color: var(--terra); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-figure { max-width: 380px; margin: 0 auto; width: 100%; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
  .email-card { grid-column: auto; }
  .portrait { max-width: 360px; margin: 0 auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo { height: 80px; }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 18px;
    box-shadow: var(--shadow-sm);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links li:last-child a { border-bottom: 0; }
  .nav-links a::after { display: none; }
}

@media (max-width: 520px) {
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .brand-sub { display: none; }
  .hero-inner.solo { padding: 60px 26px 64px; }
  .hero h1 { font-size: 2.1rem; }
  .hero .kicker .part { display: block; line-height: 1.5; }
  .hero .kicker .sep { display: none; }
}
