/* ==========================================================================
   MA BEAUTÉ — Maison Ma Beauté design system (pure CSS)
   Kleuren: ivoor #EAE5DE · greige #DCD8D3 · mokka #a08974 · espresso #2b2620
   Typografie: Montserrat Light + ExtraBold, Cormorant Garamond (display),
   Pinyon Script (sierlijke behandel-titels)
   ========================================================================== */

:root {
  --ivory: #eae5de;
  --greige: #dcd8d3;
  --mocha: #a08974;
  --espresso: #2b2620;
  --gold: #c9ae8c;
  --gold-soft: #e8d9c3;
  --ink: #2b2620;
  --ink-soft: #5c5248;
  --light: #f5f1ea;
  --nude: #bf9f8c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--mocha); }

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong, b { font-weight: 700; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---------- Typografie ---------- */
.serif-display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  line-height: 1.25;
}
.script-title {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--mocha);
}
.chrome-text {
  background: linear-gradient(105deg, #8f8578 0%, #e9e2d6 22%, #b3a89a 40%, #f7f2e9 55%, #9c9184 72%, #ded5c6 88%, #8f8578 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-line { display: inline-block; width: 48px; height: 1px; background: var(--gold); vertical-align: middle; }

/* ---------- Signature knop (outline + pijlvakje) ---------- */
.btn-sig {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
}
.btn-sig:active { transform: scale(0.97); }
.btn-sig .lbl { padding: 0.9rem 1.5rem; display: inline-flex; align-items: center; }
.btn-sig .arr { padding: 0.9rem 1rem; display: inline-flex; align-items: center; border-left: 1px solid; transition: inherit; }
.btn-sig-dark { border-color: rgba(43, 38, 32, 0.55); color: var(--ink); }
.btn-sig-dark .arr { border-color: rgba(43, 38, 32, 0.55); }
.btn-sig-dark:hover { background: var(--espresso); color: var(--ivory); }
.btn-sig-light { border-color: rgba(245, 241, 234, 0.55); color: var(--light); }
.btn-sig-light .arr { border-color: rgba(245, 241, 234, 0.55); }
.btn-sig-light:hover { background: var(--light); color: var(--espresso); }
.btn-sig-gold { border-color: var(--gold); background: linear-gradient(120deg, #c9ae8c, #b89a74); color: #241f1a; }
.btn-sig-gold .arr { border-color: rgba(36, 31, 26, 0.3); }
.btn-sig-gold:hover { filter: brightness(1.06); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  background: rgba(234, 229, 222, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 38, 32, 0.1);
}
.topbar-script {
  display: none;
  text-align: center;
  padding-top: 0.4rem;
  margin-bottom: -0.2rem;
  color: var(--mocha);
  font-family: "Pinyon Script", cursive;
  font-size: 1.1rem;
}
@media (min-width: 768px) { .topbar-script { display: block; } }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 72px; }
.brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.brand img { height: 48px; width: 48px; object-fit: contain; padding: 4px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(201, 174, 140, 0.7); }
.brand .brand-logo-wrap { border-radius: 50%; padding: 2px; background: var(--espresso); position: relative; overflow: hidden; }
.brand .brand-logo-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine { 0%, 60% { transform: translateX(-100%); } 85%, 100% { transform: translateX(100%); } }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name .nm { font-family: "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: 0.3em; font-size: 15px; white-space: nowrap; }
.brand-name .sub { margin-top: 6px; font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5em; color: var(--mocha); white-space: nowrap; }

.main-nav { display: none; align-items: center; gap: 1.6rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.nav-link {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
  transition: border-color 0.25s, opacity 0.25s;
  white-space: nowrap;
}
.nav-link:hover { opacity: 0.65; }
.nav-link.active { border-bottom-color: currentColor; }

.header-actions { display: none; align-items: center; gap: 1.1rem; flex-shrink: 0; }
@media (min-width: 1024px) { .header-actions { display: flex; } }

.lang-switch { display: inline-flex; align-items: center; border: 1px solid rgba(43, 38, 32, 0.2); font-size: 11px; font-weight: 600; overflow: hidden; flex-shrink: 0; }
.lang-switch button { font-family: inherit; font-size: inherit; font-weight: inherit; border: 0; background: transparent; color: var(--ink); padding: 0.45rem 0.7rem; cursor: pointer; flex-shrink: 0; transition: background 0.2s, color 0.2s; }
.lang-switch button.active { background: var(--espresso); color: var(--ivory); }

.mobile-actions { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .mobile-actions { display: none; } }
.icon-btn { background: none; border: 0; color: inherit; padding: 0.4rem; cursor: pointer; display: inline-flex; }

.mobile-menu { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s; background: rgba(234, 229, 222, 0.98); border-top: 1px solid rgba(43, 38, 32, 0.1); }
.mobile-menu.open { max-height: 560px; opacity: 1; }
.mobile-menu nav { padding: 1.5rem 1.25rem; display: flex; flex-direction: column; gap: 1.1rem; }

/* Transparant over hero (home) */
.header-transparent { background: transparent; backdrop-filter: none; border-bottom-color: transparent; color: var(--light); }
.header-transparent .topbar-script { color: rgba(232, 217, 195, 0.9); }
.header-transparent .brand-name .sub { color: var(--gold-soft); }
.header-transparent .brand .brand-logo-wrap { background: transparent; }
.header-transparent .lang-switch { border-color: rgba(245, 241, 234, 0.4); }
.header-transparent .lang-switch button { color: var(--light); }
.header-transparent .lang-switch button.active { background: var(--light); color: var(--espresso); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--light); overflow: hidden;
}
.hero .bg { position: absolute; inset: 0; }
.hero .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20, 16, 12, 0.45), rgba(20, 16, 12, 0.25) 45%, rgba(20, 16, 12, 0.55)); }
.hero-content { position: relative; z-index: 2; padding: 0 1.25rem; }
.hero-wordmark { font-family: "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: 0.28em; font-size: clamp(3rem, 10vw, 7.5rem); line-height: 1.1; margin: 1rem 0 0.5rem; }
.hero-script { font-family: "Pinyon Script", cursive; font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--gold-soft); }

/* ---------- Secties ---------- */
section { position: relative; }
.sec { padding: 5.5rem 0; }
@media (min-width: 768px) { .sec { padding: 7.5rem 0; } }
.sec-ivory { background: var(--ivory); }
.sec.pb-tight { padding-bottom: 2.25rem; }
.sec.pt-tight { padding-top: 2.75rem; }
@media (min-width: 768px) { .sec.pb-tight { padding-bottom: 2.75rem; } .sec.pt-tight { padding-top: 3.25rem; } }
.sec-greige { background: var(--greige); }
.sec-mocha { background: var(--mocha); color: var(--light); }
.sec-espresso { background: var(--espresso); color: var(--ivory); }
.sec-mocha .eyebrow, .sec-espresso .eyebrow { color: var(--gold-soft); }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.sec-head h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-top: 0.8rem; }
.sec-head .script-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--mocha); display: block; margin-bottom: 0.2rem; }
.sec-mocha .sec-head .script-title, .sec-espresso .sec-head .script-title { color: var(--gold-soft); }
.sec-head p { color: var(--ink-soft); margin-top: 1.2rem; }
.sec-mocha .sec-head p, .sec-espresso .sec-head p { color: rgba(245, 241, 234, 0.85); }

/* ---------- Cirkelbehandelingen ---------- */
.circle-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem 1.5rem; max-width: 1080px; margin: 0 auto; }
@media (min-width: 768px) { .circle-grid { gap: 3.8rem 3.2rem; } }
.circle-item { text-align: center; flex: 0 1 calc(50% - 0.75rem); }
@media (min-width: 768px) { .circle-item { flex: 0 1 auto; width: 216px; } }
.circle-item .ph {
  width: min(100%, 216px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin: 0 auto;
  outline: 1px solid rgba(160, 137, 116, 0.5); outline-offset: 8px;
  box-shadow: 0 22px 44px rgba(43, 38, 32, 0.16);
  transition: outline-color 0.35s, box-shadow 0.35s;
}
.circle-item .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); }
.circle-item:hover .ph { outline-color: var(--gold); box-shadow: 0 26px 52px rgba(43, 38, 32, 0.22); }
.circle-item:hover .ph img { transform: scale(1.07); }
.circle-item .script-title { display: block; font-size: 1.9rem; margin-top: 1.3rem; color: inherit; }
.circle-item .lbl { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.32em; color: var(--mocha); }
.sec-treatments .sec-head { margin-bottom: 4rem; }
.sec-treatments .circle-item .script-title { color: var(--espresso); }

/* ---------- Intro statement ---------- */
.intro-statement { text-align: center; max-width: 680px; margin: 0 auto; }
.intro-statement .script-title { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--mocha); display: block; margin-bottom: 0.3rem; }
.intro-statement h2 { font-size: clamp(1.5rem, 3.6vw, 2.3rem); }
.intro-statement p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.9; }
.intro-rule { display: block; width: 56px; height: 1px; background: var(--gold); margin: 1.6rem auto; }
.intro-rule.left { margin: 1.4rem 0; }
.intro-mark { display: block; width: 52px; height: 52px; margin: 0 auto 1.2rem; opacity: 0.9; }

/* ---------- Salon split ---------- */
.salon-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .salon-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; } }
.salon-text { text-align: center; }
@media (min-width: 960px) { .salon-text { text-align: left; } .salon-text .intro-rule.left { margin: 1.4rem 0; }
.intro-mark { display: block; width: 52px; height: 52px; margin: 0 auto 1.2rem; opacity: 0.9; } }
@media (max-width: 959px) { .salon-text .intro-rule.left { margin: 1.4rem auto; } }
.salon-text .script-title { font-size: clamp(1.9rem, 4vw, 2.5rem); color: var(--mocha); display: block; }
.salon-text h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin-top: 0.3rem; }
.salon-text p { color: var(--ink-soft); font-size: 15px; line-height: 1.85; }
.salon-btn { margin-top: 1.8rem; }
.video-wrap.framed { border: 1px solid rgba(160, 137, 116, 0.45); padding: 0.6rem; background: var(--light); box-shadow: 0 26px 54px rgba(43, 38, 32, 0.16); max-width: 100%; }

/* ---------- Campagnebreak / edge-to-edge ---------- */
.campaign { position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--light); overflow: hidden; }
.campaign img.bgimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.campaign::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20, 16, 12, 0.5), rgba(20, 16, 12, 0.38)); }
.campaign-light { color: var(--espresso); background: var(--ivory); }
.campaign-light img.bgimg { object-position: center 45%; }
.campaign-light::after { background:
  linear-gradient(to bottom, var(--ivory) 0%, rgba(234, 229, 222, 0) 14%),
  linear-gradient(to top, var(--ivory) 0%, rgba(234, 229, 222, 0) 12%),
  rgba(245, 241, 234, 0.3); }
.campaign-light .inner { padding: 5rem 1.5rem; }
.campaign-light .inner .script-title { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--espresso); display: block; opacity: 0.85; }
.campaign-light .inner .serif-display { font-size: clamp(1.8rem, 5vw, 3rem); margin-top: 0.4rem; color: var(--espresso); }
.campaign .inner { position: relative; z-index: 2; padding: 4rem 1.25rem; }

/* ---------- Video ---------- */
.video-wrap { max-width: 900px; margin: 0 auto; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35); }
.video-wrap video { width: 100%; display: block; }

/* ---------- Salonized inline boekingswidget ---------- */
.salonized-wrap { max-width: 880px; margin: 0 auto 3rem; background: #fff; border: 1px solid rgba(43, 38, 32, 0.12); box-shadow: 0 24px 50px rgba(20, 16, 12, 0.1); padding: 0.75rem; min-height: 400px; }
.salonized-wrap .salonized-booking { width: 100%; }
.salonized-wrap iframe { width: 100% !important; border: 0; }

/* ---------- MABÉ statement ---------- */
.statement { text-align: center; max-width: 760px; margin: 0 auto; }
.statement .chrome-text { font-family: "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: 0.3em; font-size: clamp(2rem, 6vw, 3.6rem); }
.statement p { color: rgba(234, 229, 222, 0.85); margin-top: 1.5rem; }

/* ---------- Stappen ---------- */
.steps { display: grid; gap: 2.5rem; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { border-top: 1px solid rgba(43, 38, 32, 0.25); padding-top: 1.4rem; }
.sec-mocha .step, .sec-espresso .step { border-top-color: rgba(245, 241, 234, 0.3); }
.step .no { font-family: "Cormorant Garamond", serif; font-size: 2rem; color: var(--gold); }
.step h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; margin: 0.6rem 0; }
.step p { font-size: 14px; opacity: 0.85; }

/* ---------- Behandeling detail ---------- */
.treat-hero { padding: 9rem 0 4.5rem; background: var(--mocha); color: var(--light); text-align: center; }
.treat-hero .script-title { font-size: clamp(2.6rem, 7vw, 4.5rem); color: var(--gold-soft); display: block; }
.treat-hero p { max-width: 640px; margin: 1.2rem auto 0; color: rgba(245, 241, 234, 0.88); }
.treat-hero .script-title.xl { font-size: clamp(3rem, 8vw, 5.2rem); line-height: 1.15; }
.treat-hero h1.serif-display.dup { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.treat-hero.light { background: var(--light); color: var(--ink); }
.treat-hero.light .script-title { color: var(--mocha); }
.treat-hero.light h1.serif-display { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-top: 0.5rem; }
.treat-no { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.6rem; }
.treat-no .no { font-family: "Pinyon Script", cursive; font-size: 2.4rem; color: var(--mocha); line-height: 1; }
.treat-no .ln { flex: 1; max-width: 90px; height: 1px; background: var(--gold); }
.treat-body > .script-title { font-size: 2.1rem; color: var(--ink); display: block; margin-bottom: 0.7rem; }
.treat-body .desc { color: var(--ink-soft); }
.info-block h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--mocha); margin-bottom: 0.5rem; }
.info-block p { font-size: 14px; color: var(--ink-soft); }
.info-block { margin-bottom: 0.4rem; }

.treat-card { max-width: 900px; margin: 0 auto 3.5rem; padding-left: 1.4rem; border-left: 1px solid var(--gold); }
.treat-card .no { font-family: "Pinyon Script", cursive; font-size: 2.6rem; color: var(--mocha); line-height: 1; }
.treat-card h3 { font-family: "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: 0.18em; font-size: 1.5rem; font-weight: 600; margin: 0.4rem 0 0.8rem; }
.treat-card .desc { color: var(--ink-soft); }
.treat-meta { display: grid; gap: 1.6rem; margin-top: 1.6rem; }
@media (min-width: 768px) { .treat-meta { grid-template-columns: 1fr 1fr; } }
.treat-meta h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--mocha); margin-bottom: 0.5rem; }
.treat-meta p, .treat-meta li { font-size: 14px; color: var(--ink-soft); }
.treat-meta ul li { padding-left: 1rem; position: relative; }
.treat-meta ul li::before { content: "·"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Accordion (nazorg/voorzorg) */
.acc { border-top: 1px solid rgba(43, 38, 32, 0.15); margin-top: 1.4rem; }
.acc-item { border-bottom: 1px solid rgba(43, 38, 32, 0.15); }
.acc-btn { width: 100%; background: none; border: 0; display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; font-family: inherit; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: var(--ink); cursor: pointer; }
.acc-btn .chev { transition: transform 0.25s; font-size: 14px; }
.acc-item.open .acc-btn .chev { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
.acc-item.open .acc-panel { max-height: 600px; }
.acc-panel .inner { padding: 0 0 1.2rem; font-size: 14px; color: var(--ink-soft); }

/* ---------- Prijzen ---------- */
.price-grid { display: grid; gap: 3.5rem 3rem; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .price-grid { grid-template-columns: 1fr 1fr; } }
.price-group .script-title { font-size: 2.1rem; color: var(--mocha); }
.price-group h3 { font-family: "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: 0.25em; font-size: 1.15rem; font-weight: 600; margin: 0.2rem 0 0.6rem; }
.price-group .rule { width: 40px; height: 2px; background: var(--gold); margin-bottom: 1.2rem; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(43, 38, 32, 0.12); }
.price-row .nm { font-size: 14px; }
.price-row .nt { display: block; font-size: 11.5px; color: var(--mocha); margin-top: 2px; }
.price-row .pr { font-family: "Cormorant Garamond", serif; font-size: 1.05rem; letter-spacing: 0.12em; white-space: nowrap; }
.price-note { font-size: 12.5px; font-style: italic; color: var(--ink-soft); margin-top: 0.9rem; }

.pack-banner { max-width: 900px; margin: 0 auto; text-align: center; border: 1px solid var(--gold); padding: 3rem 1.5rem; background: rgba(201, 174, 140, 0.08); }
.pack-banner .old { text-decoration: line-through; opacity: 0.6; margin-right: 0.8rem; }
.pack-banner .new { font-family: "Cormorant Garamond", serif; font-size: 2.2rem; color: var(--gold); letter-spacing: 0.1em; }

.training-grid { display: grid; gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .training-grid { grid-template-columns: repeat(3, 1fr); } }
.training-card { border: 1px solid rgba(245, 241, 234, 0.25); padding: 2rem 1.6rem; }
.training-card h3 { font-family: "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: 0.15em; font-size: 1.2rem; font-weight: 600; }
.training-card .pr { font-family: "Cormorant Garamond", serif; font-size: 1.9rem; color: var(--gold-soft); margin: 0.6rem 0; }
.training-card li { font-size: 13px; padding: 0.25rem 0 0.25rem 1.1rem; position: relative; color: rgba(245, 241, 234, 0.85); }
.training-card li::before { content: "·"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.training-card .kit { font-size: 12px; font-style: italic; color: var(--gold-soft); margin-top: 0.8rem; }

/* ---------- Over mij ---------- */
.about-hero { background: var(--mocha); color: var(--light); }
.cert-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; max-width: 900px; margin: 0 auto; justify-content: center; }
.cert-chip { border: 1px solid rgba(43, 38, 32, 0.25); padding: 0.5rem 1.1rem; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; }

/* ---------- Formulier ---------- */
.form-grid { display: grid; gap: 1.4rem; max-width: 760px; margin: 0 auto; }
@media (min-width: 640px) { .form-grid .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; } }
.field label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: var(--mocha); margin-bottom: 0.45rem; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(43, 38, 32, 0.35);
  padding: 0.7rem 0.1rem; font-family: inherit; font-size: 15px; font-weight: 300; color: var(--ink);
  border-radius: 0; transition: border-color 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form-note { font-size: 12.5px; color: var(--ink-soft); font-style: italic; }

/* ---------- Voorwaarden ---------- */
/* ---------- Categorierijen (behandelingen-overzicht) ---------- */
.cat-rows { display: block; }
.cat-row { display: grid; text-decoration: none; color: inherit; background: var(--ivory); }
.cat-row:nth-child(even) { background: var(--greige); }
@media (min-width: 900px) { .cat-row { grid-template-columns: 1fr 1fr; } .cat-row.rev .ph { order: 2; } }
.cat-row .ph { overflow: hidden; }
.cat-row .ph img { width: 100%; height: 100%; min-height: 300px; max-height: 460px; object-fit: cover; transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1); }
.cat-row:hover .ph img { transform: scale(1.04); }
.cat-row .txt { padding: 3rem 1.5rem; max-width: 560px; margin: auto; }
@media (min-width: 900px) { .cat-row .txt { padding: 4rem 3.5rem; } }
.cat-row .no { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4em; color: var(--gold); display: block; margin-bottom: 0.7rem; }
.cat-row .script-title { display: block; }
.cat-row .txt p { margin-top: 0.8rem; color: var(--ink-soft); font-size: 14.5px; }
.cat-row .more { display: inline-block; margin-top: 1.3rem; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; border-bottom: 1px solid var(--gold); padding-bottom: 0.35rem; transition: color 0.25s; }
.cat-row:hover .more { color: var(--mocha); }

/* ---------- Quote-break (espresso) ---------- */
.quote-break { background: var(--espresso); color: var(--ivory); text-align: center; padding: 4.5rem 1.5rem; }
.quote-break .script-title { font-size: clamp(1.9rem, 5vw, 2.8rem); color: var(--gold-soft); display: block; }
.quote-break h2 { font-family: "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: 0.3em; font-size: clamp(1.7rem, 4.5vw, 2.6rem); margin-top: 0.5rem; }
.quote-break p { max-width: 560px; margin: 1.2rem auto 0; font-size: 14px; color: rgba(245, 241, 234, 0.85); }

/* ---------- Terug-link ---------- */
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(245, 241, 234, 0.8); margin-bottom: 1.4rem; transition: color 0.25s; }
.back-link:hover { color: var(--gold-soft); }

.terms-item { max-width: 800px; margin: 0 auto 2.2rem; display: flex; gap: 1.4rem; }
.terms-item .no { font-family: "Cormorant Garamond", serif; font-size: 1.7rem; color: var(--gold); line-height: 1.2; min-width: 2.4rem; }
.terms-item h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.28em; margin-bottom: 0.5rem; }
.terms-item p, .terms-item li { font-size: 14px; color: var(--ink-soft); }
.terms-item ul li { padding-left: 1rem; position: relative; }
.terms-item ul li::before { content: "·"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- Contactgrid ---------- */
.contact-grid { display: grid; gap: 0; max-width: 1000px; margin: 0 auto; border: 1px solid rgba(43, 38, 32, 0.15); }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-cell { padding: 2.2rem 1.8rem; border-bottom: 1px solid rgba(43, 38, 32, 0.15); text-align: center; }
@media (min-width: 768px) { .contact-cell { border-bottom: 0; border-right: 1px solid rgba(43, 38, 32, 0.15); } .contact-cell:last-child { border-right: 0; } }
.contact-cell h3 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--mocha); margin-bottom: 0.6rem; }
.contact-cell a:hover { color: var(--mocha); }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: var(--ivory); padding: 4.5rem 0 2.5rem; }
.footer-wordmark { text-align: center; font-family: "Cormorant Garamond", serif; text-transform: uppercase; letter-spacing: 0.25em; font-size: clamp(2.4rem, 8vw, 5.5rem); line-height: 1.1; }
.footer-sub { text-align: center; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5em; color: var(--gold-soft); margin-top: 0.6rem; }
.footer-cols { display: grid; gap: 2.5rem; margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(245, 241, 234, 0.15); }
@media (min-width: 768px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-cols h4 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--gold-soft); margin-bottom: 1rem; }
.footer-cols li { margin-bottom: 0.55rem; font-size: 13.5px; }
.footer-cols a { opacity: 0.85; transition: opacity 0.2s; }
.footer-cols a:hover { opacity: 1; color: var(--gold-soft); }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(245, 241, 234, 0.12); display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; font-size: 11.5px; opacity: 0.7; }
.socials { display: flex; gap: 1rem; justify-content: center; margin-top: 1.6rem; }
.socials a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(245, 241, 234, 0.3); border-radius: 50%; transition: border-color 0.25s, color 0.25s; }
.socials a:hover { border-color: var(--gold); color: var(--gold-soft); }

/* ---------- Gezamenlijke Boek nu knop (FAB) ---------- */
.fab { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 80; display: flex; flex-direction: column; align-items: flex-end; gap: 0.85rem; }
.fab-toggle {
  display: inline-flex; align-items: center; gap: 0.6rem; border: 0; cursor: pointer;
  padding: 1rem 1.6rem; border-radius: 999px;
  background: linear-gradient(120deg, #c9ae8c, #b89a74); color: #241f1a;
  font-family: "Montserrat", sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.28em;
  box-shadow: 0 16px 34px rgba(20, 16, 12, 0.32);
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), filter 0.25s;
}
.fab-toggle:hover { transform: translateY(-2px); filter: brightness(1.05); }
.fab-toggle:active { transform: scale(0.96); }
.fab-toggle .ic-x { display: none; }
.fab.open .fab-toggle .ic-x { display: inline-flex; }
.fab.open .fab-toggle .ic-spark { display: none; }
.fab-menu { display: flex; flex-direction: column; align-items: flex-end; gap: 0.7rem; }
.fab-menu .fab-item {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--light); color: var(--espresso);
  border: 1px solid rgba(160, 137, 116, 0.4); border-radius: 999px;
  padding: 0.4rem 0.45rem 0.4rem 1.2rem;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  box-shadow: 0 12px 26px rgba(20, 16, 12, 0.22);
  opacity: 0; transform: translateY(12px); pointer-events: none; visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.3s;
}
.fab.open .fab-menu .fab-item { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.fab.open .fab-menu .fab-item:nth-child(1) { transition-delay: 0.1s; }
.fab.open .fab-menu .fab-item:nth-child(2) { transition-delay: 0.05s; }
.fab.open .fab-menu .fab-item:nth-child(3) { transition-delay: 0s; }
.fab-item .ic { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.fab-item.fab-book .ic { background: linear-gradient(120deg, #c9ae8c, #b89a74); color: #241f1a; }
.fab-item.fab-wa .ic { background: #25d366; }
.fab-item.fab-tel .ic { background: var(--espresso); }
.fab-item:hover { border-color: var(--gold); }
@media (prefers-reduced-motion: reduce) { .fab-menu .fab-item { transition: none; } }

/* De losse Salonized floating knop wordt via main.js verborgen (formaat-detectie op het iframe);
   de geopende boekingswidget blijft gewoon zichtbaar. */
.sz-frame-hidden { visibility: hidden !important; pointer-events: none !important; }

/* ---------- Video lightbox ---------- */
.video-wrap { position: relative; }
.video-play {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.video-play-circle {
  width: 76px; height: 76px; border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.85);
  background: rgba(20, 16, 12, 0.45); color: var(--light);
  display: flex; align-items: center; justify-content: center; padding-left: 5px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s;
}
@media (hover: hover) {
  .video-play:hover .video-play-circle { transform: scale(1.08); background: rgba(20, 16, 12, 0.6); }
}
.video-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.video-modal[hidden] { display: none; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(20, 16, 12, 0.88); backdrop-filter: blur(6px); }
.video-modal-inner { position: relative; z-index: 2; width: min(960px, 100%); box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5); animation: modal-in 0.35s cubic-bezier(0.23, 1, 0.32, 1); }
@keyframes modal-in { from { opacity: 0; transform: translateY(22px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .video-modal-inner { animation: none; } }
.video-modal-inner video { width: 100%; display: block; background: #000; }
.video-modal-close {
  position: absolute; top: -3rem; right: 0; background: none; border: 0; cursor: pointer;
  color: var(--light); display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(245, 241, 234, 0.4);
  transition: border-color 0.25s, transform 0.25s;
}
.video-modal-close:hover { border-color: var(--gold); transform: rotate(90deg); }

/* ---------- Reveal animaties ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Hulpklassen ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.2rem; }

/* ---------- Aanvullingen gegenereerde pagina's ---------- */
.lead { font-size: 15.5px; line-height: 1.8; }
.treat-hero h1.serif-display { font-size: clamp(1.7rem, 4.5vw, 2.8rem); margin-top: 0.4rem; }
.treat-hero .lead { max-width: 640px; margin: 1.2rem auto 0; color: rgba(245, 241, 234, 0.88); }
.treat-hero.light { background: var(--ivory); color: var(--ink); }
.treat-hero.light .script-title { color: var(--mocha); }
.treat-hero.light .lead { color: var(--ink-soft); }
.statement-text { font-size: clamp(1.05rem, 2.2vw, 1.3rem); line-height: 1.9; font-weight: 300; margin-top: 1.4rem; }
.sec-ivory .statement p, .sec-greige .statement p { color: var(--ink-soft); }
.sec-ivory .statement .script-title, .sec-greige .statement .script-title { color: var(--mocha); font-size: 2rem; }
.sec-espresso .statement .script-title { color: var(--gold-soft); font-size: 2rem; }
.sec-espresso .statement h2 { margin-top: 0.5rem; font-size: clamp(1.5rem, 4vw, 2.3rem); }

.script-title.sm { font-size: 1.8rem; color: var(--mocha); }
.serif-display.sm { font-size: 1.15rem; font-weight: 600; letter-spacing: 0.25em; margin: 0.2rem 0 0.6rem; }

.price-name { font-size: 14px; }
.price-val { font-family: "Cormorant Garamond", serif; font-size: 1.05rem; letter-spacing: 0.12em; white-space: nowrap; }
.price-row { flex-wrap: wrap; }
.price-row .price-note { flex-basis: 100%; order: 4; font-size: 11.5px; font-style: italic; color: var(--mocha); margin: 0; }
.dots { flex: 1; border-bottom: 1px dotted rgba(43, 38, 32, 0.35); transform: translateY(-4px); min-width: 2rem; }
.sec-espresso .price-row, .sec-mocha .price-row { border-bottom-color: rgba(245, 241, 234, 0.2); }
.sec-espresso .dots, .sec-mocha .dots { border-bottom-color: rgba(245, 241, 234, 0.35); }
.group-note { font-size: 12.5px; font-style: italic; color: var(--ink-soft); margin: 0.4rem 0 1rem; border-left: 2px solid var(--gold); padding-left: 0.9rem; }
.pack-price { margin: 1.8rem 0 0.6rem; }
.pack-price .old { text-decoration: line-through; opacity: 0.6; margin-right: 0.8rem; font-size: 1.1rem; }
.pack-price .new { font-family: "Cormorant Garamond", serif; font-size: 2.4rem; color: var(--gold); letter-spacing: 0.1em; }
.pack-banner .script-title { font-size: 2rem; color: var(--gold-soft); display: block; }
.pack-banner h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-top: 0.4rem; }
.pack-banner .lead { max-width: 680px; margin: 1.2rem auto 0; color: rgba(234, 229, 222, 0.88); }

.training-price { font-family: "Cormorant Garamond", serif; font-size: 1.9rem; color: var(--gold-soft); margin: 0.6rem 0 0.2rem; }
.training-kit { font-size: 12px; font-style: italic; color: var(--gold-soft); }
.training-hours { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; margin: 0.7rem 0; color: rgba(245, 241, 234, 0.7); }
.training-desc { font-size: 13.5px; line-height: 1.75; color: rgba(245, 241, 234, 0.85); }
.usp-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.8rem; margin: 2.6rem auto 0; max-width: 940px; }
.usp-list li { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(245, 241, 234, 0.9); position: relative; padding-left: 1.1rem; }
.usp-list li::before { content: "·"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.about-hero { padding: 9rem 0 5rem; }
.about-hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .about-hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }
.about-hero-text .script-title { font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--gold-soft); display: block; }
.about-hero-text h1 { font-size: clamp(1.7rem, 4.5vw, 2.7rem); margin-top: 0.4rem; }
.about-hero-text .lead { margin-top: 1.3rem; color: rgba(245, 241, 234, 0.88); }
.about-hero-img img { width: 100%; max-width: 440px; margin: 0 auto; border: 1px solid rgba(232, 217, 195, 0.55); padding: 0.6rem; }
.about-hero-img { display: flex; justify-content: center; }
.about-hero-img img { display: block; }
.sbb-badge { margin-top: 1.8rem; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold-soft); }

.form-wrap { max-width: 860px; margin: 0 auto; }
.field.full { grid-column: 1 / -1; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.terms-list { max-width: 800px; margin: 0 auto; }
.cell-label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--mocha); margin-bottom: 0.6rem; }
.contact-cell a, .contact-cell span:not(.cell-label) { font-family: "Cormorant Garamond", serif; font-size: 1.15rem; letter-spacing: 0.06em; }
.socials-line { text-align: center; margin-top: 2.2rem; font-size: 13px; letter-spacing: 0.08em; }
.socials-line a { border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color 0.25s; }
.socials-line a:hover { color: var(--mocha); }
.contact-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.treat-hero.light .contact-grid { margin-top: 2.6rem; background: rgba(245, 241, 234, 0.5); }

.steps-grid { display: grid; gap: 2.5rem; max-width: 1000px; margin: 0 auto; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.steps-grid .step { border-top: 1px solid rgba(43, 38, 32, 0.25); padding-top: 1.4rem; }
.sec-mocha .steps-grid .step, .sec-espresso .steps-grid .step { border-top-color: rgba(245, 241, 234, 0.3); }
.steps-grid .step .no { font-family: "Cormorant Garamond", serif; font-size: 2rem; color: var(--gold); display: block; }
.steps-grid .step h3 { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; margin: 0.6rem 0; }
.steps-grid .step p { font-size: 14px; opacity: 0.88; }
.sec-mocha .field label { color: var(--gold-soft); }
