/* ============================================================
   MediPé — one-page site
   Theme: elegant brand identity
   warm cream base · deep navy · champagne gold accent
   ============================================================ */

:root {
  --cream:      #F6F2EA;   /* warm page background           */
  --cream-2:    #EFE9DD;   /* deeper cream (alt sections)    */
  --white:      #FFFFFF;   /* cards / chips                  */
  --bg:         var(--cream);
  --bg-tint:    var(--cream-2);

  --ink:        #2B3742;   /* deep navy-slate (brand lettering) */
  --ink-deep:   #1F2A33;   /* darker navy (gradients/footer) */
  --ink-soft:   #5C6670;   /* muted slate                    */

  --logo-color: #F7EDEB;   /* logo chip background           */

  --gold:       #C7A567;   /* champagne gold accent          */
  --gold-deep:  #A9863F;   /* deeper gold (text on light)    */
  --gold-soft:  #EFE6D2;   /* soft gold (chips/tints)        */

  --wa:         #25D366;
  --wa-deep:    #1da851;

  --line:       rgba(43, 55, 66, 0.12);
  --shadow:     0 22px 55px -24px rgba(43, 55, 66, 0.30);
  --shadow-sm:  0 14px 34px -22px rgba(43, 55, 66, 0.22);
  --radius:     24px;

  --display: "Poppins", system-ui, sans-serif;
  --accent:  "Fraunces", Georgia, serif;
  --sans:    "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1140px, 92%); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.14; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h1 em { font-family: var(--accent); font-style: italic; font-weight: 500; color: var(--gold-deep); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  background: var(--gold-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 1.1rem;
}

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.alt-bg { background: var(--bg-tint); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-intro { color: var(--ink-soft); margin-top: 0.9rem; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 0.85rem 1.6rem; border-radius: 999px;
  cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-whatsapp { background: var(--wa); color: #fff; box-shadow: 0 14px 28px -12px rgba(37, 211, 102, .7); }
.btn-whatsapp:hover { background: var(--wa-deep); }
.btn-ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--gold); }
.btn-ghost:hover { background: var(--gold-soft); color: var(--gold-deep); }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.92rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.12rem; }
.wa-icon { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  /* backdrop-filter: blur(12px); */
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: 0.7rem 0; }
.brand-logo {
  height: 3rem;
  width: auto;
  padding: 0.25rem;
  background: var(--logo-color);
  border-radius: 0.25rem;
}
.nav { display: flex; gap: 1.6rem; margin-left: auto; }
.nav a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: 0.2rem 0; }
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); border-radius: 2px; transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(760px 460px at 92% -8%, var(--gold-soft), transparent 62%),
    radial-gradient(680px 460px at -6% 112%, var(--cream-2), transparent 60%),
    var(--cream);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-text .lead { font-size: 1.12rem; color: var(--ink-soft); margin: 1.4rem 0 2rem; max-width: 36ch; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-media { position: relative; }
.hero-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 7px solid var(--white);
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-media::before {
  content: ""; position: absolute; right: -26px; top: -26px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--gold-soft); z-index: 0; opacity: .9;
}
.hero-badge {
  position: absolute; left: -18px; bottom: 28px;
  background: var(--gold); color: var(--ink);
  padding: 0.85rem 1.3rem; border-radius: 16px;
  box-shadow: 0 18px 40px -18px rgba(169, 134, 63, .6); text-align: left; line-height: 1.2;
}
.hero-badge-top { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(43, 55, 66, 0.7); }
.hero-badge-main { display: block; font-family: var(--display); font-weight: 600; font-size: 1.25rem; color: var(--ink); }

/* ---------- USPs ---------- */
.usps { background: linear-gradient(120deg, var(--ink) 0%, var(--ink-deep) 100%); color: #fff; }
.usps-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: clamp(2.4rem, 5vw, 3.4rem) 0; }
.usp-icon {
  font-size: 1.5rem; display: inline-grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(199, 165, 103, 0.22); border: 1px solid rgba(199, 165, 103, 0.5);
  margin-bottom: 0.8rem;
}
.usp h3 { color: #fff; font-size: 1.18rem; margin-bottom: 0.35rem; }
.usp p { color: rgba(255, 255, 255, 0.82); font-size: 0.97rem; }

/* ---------- Two-column layouts ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

/* ---------- Over mij ---------- */
.over-photo { position: relative; }
.over-photo::after {
  content: ""; position: absolute; left: -22px; bottom: -22px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--gold-soft); z-index: 0;
}
.over-photo > img:first-child {
  position: relative; z-index: 1;
  border-radius: 26px; box-shadow: var(--shadow);
  border: 7px solid var(--white); width: 100%; max-width: 380px;
  aspect-ratio: 3 / 4; object-fit: cover; object-position: center 25%;
}
.provoet-badge {
  position: absolute; right: 0; bottom: -20px; z-index: 2;
  width: 130px; background: var(--white); padding: 10px 14px; border-radius: 14px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.over-text p { margin-bottom: 1rem; color: var(--ink-soft); }
.over-text blockquote {
  font-family: var(--accent); font-size: 1.4rem; font-style: italic;
  color: var(--ink); border-left: 3px solid var(--gold);
  padding-left: 1.1rem; margin-top: 1.6rem; line-height: 1.4;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white); border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

/* ---------- Behandelingen ---------- */
.treat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.card-sub { color: var(--ink-soft); margin: 0.3rem 0 1.4rem; font-size: 0.98rem; }
.steps { list-style: none; counter-reset: step; display: grid; gap: 0.7rem; }
.steps li { counter-increment: step; position: relative; padding-left: 2.6rem; color: var(--ink-soft); }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: -1px;
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-deep);
  font-family: var(--display); font-weight: 600; font-size: 0.85rem;
  display: grid; place-items: center;
}
.ticks { list-style: none; display: grid; gap: 0.65rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-deep); font-weight: 700; }
.spec-title { margin-top: 1.8rem; margin-bottom: 0.8rem; font-family: var(--sans); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }
.spec-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.spec-tags span {
  background: var(--gold-soft); color: var(--gold-deep);
  padding: 0.4rem 0.95rem; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.ga-item { border-radius: 20px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.ga-item img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.ga-item figcaption { padding: 0.8rem 1rem; font-size: 0.9rem; color: var(--ink-soft); }
.tag-before, .tag-after {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.12rem 0.55rem; border-radius: 7px; margin-right: 0.45rem; text-transform: uppercase;
}
.tag-before { background: var(--gold-soft); color: var(--gold-deep); }
.tag-after { background: rgba(43, 55, 66, 0.10); color: var(--ink); }

/* ---------- Products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; }
.product { background: var(--white); border-radius: 18px; padding: 1rem; text-align: center; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease; }
.product:hover { transform: translateY(-5px); box-shadow: 0 22px 40px -24px rgba(43, 55, 66, .4); }
.product img { height: 120px; object-fit: contain; margin: 0 auto 0.7rem; }
.product figcaption { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }
.product-note { text-align: center; color: var(--ink-soft); margin-top: 1.8rem; font-style: italic; }

/* ---------- Praktisch ---------- */
.hours-card { background: linear-gradient(160deg, #fff 0%, var(--gold-soft) 220%); }
.hours-card h3 { margin-bottom: 1.1rem; }
.hours { list-style: none; display: grid; gap: 0.55rem; }
.hours li { display: flex; justify-content: space-between; padding-bottom: 0.55rem; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.hours li:last-child { border-bottom: none; }
.hours li span:last-child { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.praktisch-text p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.check-list { list-style: none; display: grid; gap: 0.6rem; margin-bottom: 1.8rem; }
.check-list li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }

/* ---------- Contact CTA ---------- */
.contact {
  position: relative; overflow: hidden;
  background: linear-gradient(125deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: #fff; text-align: center;
}
.contact::before, .contact::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(199, 165, 103, 0.16);
}
.contact::before { width: 240px; height: 240px; top: -90px; left: -60px; }
.contact::after  { width: 300px; height: 300px; bottom: -130px; right: -70px; }
.contact h2 { color: #fff; }
.contact-inner { position: relative; z-index: 1; max-width: 620px; margin-inline: auto; }
.contact p { color: rgba(255, 255, 255, 0.88); margin: 1rem 0 2rem; font-size: 1.08rem; }
.contact .btn-whatsapp { background: #fff; color: var(--wa-deep); box-shadow: 0 16px 34px -14px rgba(0, 0, 0, .35); }
.contact .btn-whatsapp:hover { background: #f3fff8; }
.contact-details { display: flex; gap: 2rem; justify-content: center; margin-top: 1.8rem; flex-wrap: wrap; }
.contact-details a { color: #fff; font-weight: 600; }
.contact-details a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); color: rgba(255, 255, 255, 0.7); padding: 3rem 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-logo { height: auto; width: 130px; background: var(--logo-color); padding: 12px 16px; border-radius: 14px; margin-bottom: 1rem; }
.footer-brand p { max-width: 30ch; font-size: 0.95rem; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a, .footer-col span { display: block; margin-bottom: 0.55rem; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.4rem; font-size: 0.85rem; flex-wrap: wrap; gap: 0.5rem; }

/* ---------- Floating WhatsApp (mobile) ---------- */
.fab-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff; display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .9);
}
.fab-whatsapp .wa-icon { width: 28px; height: 28px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .site-header.open .nav {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 1rem 6%; gap: 0.4rem; border-bottom: 1px solid var(--line);
  }
  .hero-inner, .two-col { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin-inline: auto; }
  .usps-inner { grid-template-columns: 1fr; gap: 1.4rem; }
  .treat-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .over-photo { max-width: 360px; margin-inline: auto; }
  .fab-whatsapp { display: flex; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badge { left: 50%; transform: translateX(-50%); }
}
