/* ==========================================================================
   My Whims and More — red & white, rose-themed
   Fonts: Great Vibes (script) · Cinzel (caps) · Cormorant Garamond (body)
   ========================================================================== */

@font-face {
  font-family: 'Great Vibes';
  src: url('fonts/GreatVibes.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cinzel';
  src: url('fonts/Cinzel.woff2') format('woff2');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-MediumItalic.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}

:root {
  --paper: #ffffff;
  --cream: #fbf4f2;      /* rose-tinted section background */
  --blush: #f4dfdc;      /* soft panels & tiles */
  --rose:  #b4233c;      /* rose red — primary */
  --merlot:#7e1a2c;      /* deep wine */
  --ink:   #231a18;      /* warm near-black */
  --muted: #7d6a66;      /* soft text */
  --line:  #e9d4d0;      /* hairlines */
  --script: 'Great Vibes', cursive;
  --caps: 'Cinzel', serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Paginascrollbar in het huispalet, zelfde stijl als die in de popup.
   Let op: zodra scrollbar-color op hetzelfde element staat, negeert Chrome de
   ::-webkit-regels en tekent hij zijn eigen scrollbar mét pijltjes. Daarom
   krijgen Chrome/Safari de getekende variant en Firefox (via @supports) de
   standaardeigenschappen. */
html::-webkit-scrollbar { width: 12px; }
html::-webkit-scrollbar-button { display: none; height: 0; }
html::-webkit-scrollbar-track { background: var(--cream); }
html::-webkit-scrollbar-thumb {
  background: var(--rose); border-radius: 999px;
  border: 3px solid var(--cream); background-clip: content-box;
}
html::-webkit-scrollbar-thumb:hover { background: var(--merlot); background-clip: content-box; }
@supports (scrollbar-color: red blue) and (not selector(::-webkit-scrollbar)) {
  html { scrollbar-width: thin; scrollbar-color: var(--rose) var(--cream); }
}
body {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500; line-height: 1.65;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--merlot); text-decoration: none; }

.container { width: min(1080px, 92%); margin: 0 auto; }

/* ---- type helpers -------------------------------------------------------- */
.eyebrow {
  font-family: var(--caps); font-size: 12px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--rose); display: inline-block;
}
h1, h2, h3 { font-weight: 500; line-height: 1.12; }
h1 { font-size: clamp(42px, 6.5vw, 68px); }
h2 { font-size: clamp(32px, 4.5vw, 44px); }
h3 { font-family: var(--caps); font-size: 17px; letter-spacing: .08em; }
.script-accent { font-family: var(--script); color: var(--rose); font-weight: 400; }
.lead { font-size: 20px; font-style: italic; color: var(--muted); max-width: 54ch; }

/* ---- buttons ------------------------------------------------------------- */
.btn {
  display: inline-block; font-family: var(--caps); font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 999px; transition: all .2s ease;
  border: 1.5px solid transparent; cursor: pointer;
}
.btn-rose { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--merlot); transform: translateY(-1px); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }

/* ---- header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 18px; }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo .logo-script { font-family: var(--script); font-size: 30px; color: var(--ink); }
.logo .logo-caps { font-family: var(--caps); font-size: 9px; letter-spacing: .34em; color: var(--rose); text-transform: uppercase; margin: 3px 0 0 4px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a:not(.btn) {
  font-family: var(--caps); font-size: 12.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink); position: relative;
}
.main-nav a:not(.btn):hover, .main-nav a[aria-current="page"] { color: var(--rose); }
.main-nav .btn { padding: 11px 22px; }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; transition: .2s; }

/* ---- hero ---------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero .container {
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center;
  gap: 30px; padding: 84px 0 96px;
}
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 .script-accent { font-size: 1.35em; display: inline-block; transform: translateY(.06em); }
.hero-copy .lead { margin: 22px 0 34px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art { position: relative; }
.hero-art svg, .hero-art img { width: min(500px, 100%); height: auto; margin: 0 auto; }
.hero-note {
  margin-top: 26px; font-style: italic; color: var(--muted); font-size: 16px;
}

/* ---- rose line-art colours ----------------------------------------------- */
.rose-fill-a { fill: var(--rose); }
.rose-fill-b { fill: var(--merlot); }
.rose-line { fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.rose-dot { fill: var(--rose); }

/* ---- section scaffolding -------------------------------------------------- */
.section { padding: 88px 0; }
.section.tinted { background: var(--cream); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { color: var(--muted); margin-top: 14px; }
.divider { display: flex; justify-content: center; margin: 0 auto 14px; }
.divider svg { width: 74px; }

/* ---- service cards -------------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  display: block; color: inherit;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 26px 30px; text-align: center; transition: .25s ease;
}
.section.tinted .card { border-color: transparent; box-shadow: 0 10px 30px rgba(158,30,40,.06); }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(158,30,40,.12); }
.card .card-icon { height: 68px; width: auto; margin: 0 auto 16px; }
.card h3 { color: var(--ink); margin-bottom: 10px; }
.card p { font-size: 16px; color: var(--muted); }
.card .from { display: block; margin-top: 14px; font-family: var(--caps); font-size: 12px; letter-spacing: .14em; color: var(--rose); text-transform: uppercase; }

/* ---- split (about / hours) ------------------------------------------------ */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split .panel {
  background: var(--blush); border-radius: 24px; padding: 44px 40px; position: relative;
}
.hours-list { list-style: none; margin-top: 18px; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 12px 0; border-bottom: 1px solid rgba(158,30,40,.14); font-size: 17px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-family: var(--caps); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; padding-top: 3px; }
.hours-list .siesta { color: var(--muted); font-style: italic; }

/* ---- gallery placeholder --------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-tile {
  aspect-ratio: 1; border-radius: 16px; background: var(--blush);
  display: grid; place-items: center; color: var(--merlot);
}
.gallery-tile svg { width: 42px; opacity: .55; }

/* ---- price list (services page) ------------------------------------------- */
.price-group { max-width: 720px; margin: 0 auto 54px; }
.price-group > h3 { color: var(--merlot); text-align: center; margin-bottom: 6px; }
.price-group .group-note { text-align: center; font-size: 15px; color: var(--muted); font-style: italic; margin-bottom: 18px; }
.price-list { list-style: none; }
.price-list li { display: flex; align-items: baseline; gap: 12px; padding: 13px 0; }
.price-list .name { white-space: nowrap; }
.price-list .dots { flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-4px); }
.price-list .price { font-family: var(--caps); font-size: 14px; letter-spacing: .06em; color: var(--merlot); white-space: nowrap; }

/* ---- contact -------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 28px; text-align: center;
}
.contact-card h3 { margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: 16px; }
.contact-card a.big { font-size: 19px; }

/* ---- footer ---------------------------------------------------------------- */
.site-footer { background: var(--merlot); color: #f6dfd9; padding: 64px 0 30px; }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.site-footer .logo-script { font-family: var(--script); font-size: 34px; color: #fff; }
.site-footer .logo-caps { font-family: var(--caps); font-size: 9px; letter-spacing: .34em; color: #f0b9ac; text-transform: uppercase; margin-top: 4px; }
.site-footer h4 { font-family: var(--caps); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: #f0b9ac; margin-bottom: 14px; }
.site-footer a { color: #fff; }
.site-footer p, .site-footer li { font-size: 16px; line-height: 2; list-style: none; }
.footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13.5px; color: #f0b9ac;
}
.footer-bottom a { color: #fff; }

/* ---- language switch -------------------------------------------------------- */
.lang-switch { display: flex; gap: 4px; align-items: center; }
.lang-switch button {
  font-family: var(--caps); font-size: 11px; letter-spacing: .1em;
  background: none; border: 1.5px solid transparent; border-radius: 999px;
  padding: 5px 9px; cursor: pointer; color: var(--muted); transition: .15s;
}
.lang-switch button:hover { color: var(--rose); }
.lang-switch button.active { color: var(--rose); border-color: var(--rose); }

/* ---- live price list (services) --------------------------------------------- */
.price-nav {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  max-width: 760px; margin: 0 auto 46px;
}
.price-nav a {
  font-family: var(--caps); font-size: 11.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--merlot);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
  transition: .15s;
}
.price-nav a:hover { border-color: var(--rose); color: var(--rose); }
.price-section { max-width: 720px; margin: 0 auto 54px; scroll-margin-top: 90px; }
.price-section h3 { color: var(--merlot); text-align: center; margin-bottom: 18px; }
.price-list .dur { color: var(--muted); font-size: 14.5px; font-style: italic; white-space: nowrap; }
.price-list .name { white-space: normal; }
.price-loading, .price-error { text-align: center; font-style: italic; color: var(--muted); padding: 30px 0; }
.price-error a { font-style: normal; }

/* ---- info dot + care popup (price list) ------------------------------------- */
.info-dot {
  display: inline-grid; place-items: center; vertical-align: middle;
  width: 18px; height: 18px; margin: 0 2px 0 7px; padding: 0;
  border: 1px solid var(--rose); border-radius: 50%; background: transparent;
  color: var(--rose); cursor: pointer; transition: .15s;
}
/* Getekende i in plaats van de letter: Cinzel heeft geen punt op de kleine i,
   waardoor die als een 1 las. */
.info-dot svg { width: 4px; height: 9.5px; fill: currentColor; display: block; }
.info-dot:hover, .info-dot:focus-visible { background: var(--rose); color: #fff; }

.care-dialog {
  border: 0; padding: 0; border-radius: 24px;
  width: min(580px, 92vw); max-height: 86vh;
  /* De reset bovenaan (* { margin: 0 }) overschrijft ook de margin:auto die de
     browser aan een modal dialog geeft — vandaar dat hij linksboven plakte. */
  inset: 0; margin: auto;
  /* scrollen gebeurt binnenin: met overflow op de <dialog> zelf knipt de
     scrollbar de ronde hoeken eraf zodra de tekst langer wordt.
     Geen position hier — de browser centreert een modal dialog met
     inset:0 + margin:auto, en position:relative brak dat. */
  overflow: hidden;
  background: var(--paper); color: var(--ink);
  box-shadow: 0 24px 60px rgba(35, 26, 24, .28);
}
.care-dialog::backdrop { background: rgba(35, 26, 24, .5); }
.care-dialog .dialog-inner { padding: 40px 38px 34px; max-height: 86vh; overflow-y: auto; }
@supports (scrollbar-color: red blue) and (not selector(::-webkit-scrollbar)) {
  .care-dialog .dialog-inner { scrollbar-width: thin; scrollbar-color: var(--rose) transparent; }
}
/* Eigen scrollbar in het rozerood. De track houdt boven en onder afstand,
   anders loopt hij tot in de ronde hoek en lijkt hij afgeknipt; het thumbje
   staat via een transparante rand iets van de rand af. */
.care-dialog .dialog-inner::-webkit-scrollbar { width: 11px; }
.care-dialog .dialog-inner::-webkit-scrollbar-button { display: none; height: 0; }
.care-dialog .dialog-inner::-webkit-scrollbar-track { background: transparent; margin: 22px 0; }
.care-dialog .dialog-inner::-webkit-scrollbar-thumb {
  background: var(--rose); border-radius: 999px;
  border: 3.5px solid transparent; background-clip: content-box;
}
.care-dialog .dialog-inner::-webkit-scrollbar-thumb:hover {
  background: var(--merlot); background-clip: content-box;
}
.care-dialog h2 { text-align: center; font-size: clamp(24px, 4vw, 30px); margin-bottom: 4px; }
.care-dialog .dialog-eyebrow { display: block; text-align: center; margin-bottom: 22px; }
.care-dialog .care-group:first-of-type { margin-top: 0; }
.care-dialog .care-note { margin-top: 24px; text-align: center; }
.dialog-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 0; border-radius: 50%; background: transparent;
  color: var(--muted); font-size: 22px; line-height: 1; cursor: pointer; transition: .15s;
}
.dialog-close:hover { background: var(--blush); color: var(--merlot); }

/* ---- care instructions ------------------------------------------------------ */
.care-block {
  max-width: 720px; margin: 0 auto; background: var(--paper);
  border: 1px solid var(--line); border-radius: 24px; padding: 42px 44px 38px;
}
.care-block + .care-block { margin-top: 28px; }
.care-block > h2 { text-align: center; font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 8px; }
.care-block > h2 + .care-group { margin-top: 30px; }
.care-block .care-sub { text-align: center; color: var(--muted); font-style: italic; font-size: 16px; margin-bottom: 26px; }
.care-group + .care-group { margin-top: 26px; }
.care-group h3 {
  color: var(--merlot); font-size: 12.5px; letter-spacing: .18em;
  padding-bottom: 8px; border-bottom: 1px solid var(--line); margin-bottom: 14px;
}
.care-list { list-style: none; }
.care-list li { position: relative; padding: 7px 0 7px 26px; font-size: 16.5px; line-height: 1.6; }
.care-list li::before {
  content: ""; position: absolute; left: 4px; top: 15px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--rose);
}
.care-ol { list-style: none; counter-reset: care; margin-top: 22px; }
.care-ol li {
  counter-increment: care; position: relative;
  padding: 11px 0 11px 42px; font-size: 16.5px; line-height: 1.65;
}
.care-ol li + li { border-top: 1px solid var(--line); }
.care-ol li::before {
  content: counter(care); position: absolute; left: 0; top: 12px;
  width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 50%; background: var(--blush); color: var(--merlot);
  font-family: var(--caps); font-size: 12px;
}
.care-ol strong { font-weight: 600; color: var(--merlot); }

.care-note {
  max-width: 720px; margin: 30px auto 0; text-align: center;
  color: var(--muted); font-size: 16px; font-style: italic;
}
.care-cta { display: block; text-align: center; margin-top: 34px; }

/* ---- map embed (contact) ---------------------------------------------------- */
.map-embed { margin-top: 56px; }
.map-embed iframe {
  width: 100%; height: 340px; border: 0; border-radius: 24px; display: block;
  box-shadow: 0 10px 30px rgba(158, 30, 40, .08);
}

/* ---- floating WhatsApp ----------------------------------------------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.22); transition: .2s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---- page hero (subpages) --------------------------------------------------- */
.page-hero { background: var(--cream); text-align: center; padding: 72px 0 60px; }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero p { color: var(--muted); max-width: 56ch; margin: 14px auto 0; }

.note-strip {
  text-align: center; font-style: italic; color: var(--muted); font-size: 16px;
  max-width: 60ch; margin: 0 auto; padding: 26px 0 0;
}

/* ---- responsive ------------------------------------------------------------- */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; padding: 56px 0 64px; text-align: center; }
  .hero .actions { justify-content: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-art { order: -1; }
  .hero-art svg { width: min(300px, 72%); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .section { padding: 64px 0; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 22px 4%; gap: 18px; align-items: flex-start;
  }
  .main-nav.open { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
}
