/* =========================================================
   Essence of Beauty — schoonheidssalon Venlo
   Design tokens + shared styles
   ========================================================= */
:root {
  /* palette: botanisch groen (Absolution, natuur) + poederroze (beauty) */
  --ink: #26332c;          /* diep botanisch groen, tekst */
  --ink-soft: #51605a;     /* zachter groen-grijs */
  --paper: #fbf7f3;        /* porselein */
  --blush: #f1ded5;        /* poederroze vlak */
  --blush-soft: #f7ebe4;   /* lichter roze vlak */
  --rose: #b26e63;         /* oudroze accent / CTA */
  --rose-dark: #96574d;    /* hover */
  --sage: #7c9082;         /* gedempt groen */
  --gold: #a98f6a;         /* subtiel luxe detail */
  --line: #e7dbd2;         /* hairlines */
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;

  --wrap: 1120px;
  --radius: 20px;
  --shadow: 0 10px 40px rgba(38, 51, 44, 0.10);
}

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

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

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

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

a { color: var(--rose); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--rose-dark); }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 480; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.25rem; font-weight: 560; }
h1 em, h2 em { font-style: italic; color: var(--rose); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }

/* eyebrow: klein label boven een kop */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-blush { background: var(--blush-soft); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink h2 { color: var(--paper); }
.section-ink .eyebrow { color: var(--blush); }

.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 46em; }
.section-ink .lead { color: #cfd8d2; }

/* ---------- knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn svg { flex: none; }
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-dark); color: var(--white); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.section-ink .btn-ghost { color: var(--paper); box-shadow: inset 0 0 0 1.5px var(--paper); }
.section-ink .btn-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem clamp(1.1rem, 4vw, 2rem); max-width: var(--wrap); margin: 0 auto; }
.brand { font-family: var(--font-display); font-size: 1.35rem; font-weight: 560; color: var(--ink); text-decoration: none; line-height: 1.1; }
.brand em { font-style: italic; font-weight: 400; color: var(--rose); }
.brand small { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

.site-nav ul { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.6rem); list-style: none; }
.site-nav a { font-size: 0.98rem; font-weight: 500; color: var(--ink); text-decoration: none; }
.site-nav a:hover { color: var(--rose); }
.site-nav a[aria-current="page"] { color: var(--rose); font-weight: 600; }
.nav-cta { background: var(--rose); color: var(--white) !important; padding: 0.55rem 1.15rem; border-radius: 999px; font-weight: 600; }
.nav-cta:hover { background: var(--rose-dark); }

.nav-toggle {
  display: none;
  background: none; border: 1.5px solid var(--ink); border-radius: 10px;
  padding: 0.45rem 0.6rem; cursor: pointer; color: var(--ink);
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; font-family: var(--font-body); }
  .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); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 0; }
  .site-nav li { border-top: 1px solid var(--line); }
  .site-nav li:first-child { border-top: none; }
  .site-nav a { display: block; padding: 0.85rem clamp(1.1rem, 4vw, 2rem); }
  .nav-cta { margin: 0.7rem clamp(1.1rem, 4vw, 2rem); display: inline-block; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3.2rem, 8vw, 6rem) 0; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }

/* signatuur: organische serumdruppel-vormen */
.blob {
  position: absolute; z-index: 0; pointer-events: none;
  filter: blur(60px); opacity: 0.55;
}
.blob-rose { width: 480px; height: 420px; background: radial-gradient(circle at 40% 40%, var(--blush), transparent 70%); top: -120px; right: -80px; }
.blob-sage { width: 420px; height: 380px; background: radial-gradient(circle at 60% 50%, #dbe5dd, transparent 70%); bottom: -140px; left: -100px; }
.hero .wrap { position: relative; z-index: 1; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover;
  border-radius: 58% 42% 55% 45% / 52% 46% 54% 48%; /* druppelvorm */
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute; bottom: 6%; left: -4%;
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow);
  padding: 0.7rem 1.1rem; font-size: 0.9rem; font-weight: 600;
}
.hero-badge span { display: block; color: var(--gold); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; list-style: none; }
.trust-chips li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.42rem 0.95rem; font-size: 0.88rem; font-weight: 500; color: var(--ink-soft);
}
.trust-chips svg { color: var(--rose); flex: none; }

/* ---------- kaarten ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 2.4rem; }
@media (max-width: 880px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.card-body p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.card-link { font-weight: 600; text-decoration: none; }
.card-link::after { content: " \2192"; }

/* druppel-opsomming (signatuur als bullet) */
.drop-list { list-style: none; margin-top: 1rem; }
.drop-list li { position: relative; padding-left: 1.7rem; margin-bottom: 0.55rem; }
.drop-list li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 0.72em; height: 0.72em; background: var(--rose);
  border-radius: 60% 40% 55% 45% / 50% 48% 52% 50%;
}

/* ---------- prijslijst ---------- */
.price-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); margin-top: 1.8rem; }
.price-block h3 { font-size: 1.45rem; margin-bottom: 0.3rem; }
.price-block > p.brand-note { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.9rem; }
.price-item { display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 1.4rem; padding: 0.95rem 0; border-top: 1px solid var(--line); }
.price-item:first-of-type { border-top: none; }
.price-item .p-name { font-weight: 600; }
.price-item .p-desc { grid-column: 1; color: var(--ink-soft); font-size: 0.93rem; }
.price-item .p-meta { grid-column: 1; color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; }
.price-item .p-price { grid-row: 1; grid-column: 2; font-family: var(--font-display); font-size: 1.15rem; font-weight: 560; white-space: nowrap; }
.price-note { margin-top: 1rem; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- band / cta-strook ---------- */
.band { position: relative; overflow: hidden; }
.band .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 880px) { .band .wrap { grid-template-columns: 1fr; } }
.band img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- faq ---------- */
.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.05rem 2.2rem 1.05rem 0; position: relative;
  font-weight: 600; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.4rem; color: var(--rose);
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 0 1.2rem; color: var(--ink-soft); max-width: 60em; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); margin-top: 2rem; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); }
.contact-lines { list-style: none; margin-top: 1rem; }
.contact-lines li { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.55rem 0; }
.contact-lines svg { color: var(--rose); flex: none; margin-top: 0.25rem; }
.contact-lines a { font-weight: 600; }
.map-link { display: block; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; }
.map-link img { width: 100%; object-fit: cover; }
.map-link span {
  position: absolute; bottom: 0.9rem; left: 0.9rem;
  background: var(--ink); color: var(--paper);
  padding: 0.45rem 0.95rem; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
}

/* ---------- breadcrumb ---------- */
.breadcrumb { padding: 1.1rem 0 0; font-size: 0.88rem; color: var(--ink-soft); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.35rem; }
.breadcrumb li + li::before { content: "\203A"; margin-right: 0.35rem; color: var(--gold); }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--rose); }

/* ---------- page hero (subpagina's) ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(2.4rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3rem); }
.page-hero .lead { margin-top: 0.9rem; }

/* ---------- merkenstrook ---------- */
.brand-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.4rem, 4vw, 3rem); margin-top: 2rem; }
.brand-strip img { height: 64px; width: auto; mix-blend-mode: multiply; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #cfd8d2; padding: 3.5rem 0 2rem; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.2rem; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: var(--paper); font-size: 1.05rem; margin-bottom: 0.8rem; }
.site-footer .brand { color: var(--paper); font-size: 1.3rem; }
.site-footer .brand small { color: var(--gold); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 0.22rem 0; }
.site-footer a { color: #cfd8d2; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(251, 247, 243, 0.15); margin-top: 2.5rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; font-size: 0.85rem; color: #9fb0a6; }

/* ---------- misc ---------- */
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 2rem; }
.aanbieding-tag { display: inline-block; background: var(--rose); color: var(--white); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 999px; padding: 0.25rem 0.8rem; margin-bottom: 0.7rem; }
.oldprice { text-decoration: line-through; color: var(--ink-soft); font-weight: 400; margin-right: 0.5rem; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper); padding: 0.7rem 1.2rem; z-index: 100; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
