/* =========================================================================
   p-delicious — pedicuresalon Boxtel
   Statische huisstijl-stylesheet. Palet: warm roze / pruim (wellness/spa).
   Pas de primaire kleur aan via --primary (zie README).
   ========================================================================= */

:root {
  /* Accentkleuren — warm roze, premium spa */
  --primary:        #C0698A;
  --primary-hover:  #AC5879;
  --primary-deep:   #8E4564;
  --primary-tint:   #FBEEF3;
  --primary-tint-2: #F3D7E2;

  --ink:        #3A2230;   /* deep plum voor koppen */
  --text:       #4C3A43;
  --text-soft:  #6E5A63;
  --text-muted: #9A8890;

  --white:      #FFFFFF;
  --bg:         #FFFFFF;
  --bg-alt:     #FBF5F3;   /* warm crème sectie-achtergrond */
  --bg-dark:    #492C3B;
  --bg-darker:  #311D28;

  --gold:       #C9A24B;   /* sterren / subtiele luxe accent */
  --line:       #ECE0E4;
  --line-soft:  #F5ECEF;

  --radius:     18px;
  --radius-sm:  12px;
  --radius-lg:  28px;
  --shadow-sm:  0 4px 18px rgba(58,34,48,.06);
  --shadow:     0 14px 44px rgba(58,34,48,.10);
  --shadow-lg:  0 28px 70px rgba(58,34,48,.16);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--ff-display); color: var(--ink); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.section--tint { background: var(--primary-tint); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body); font-weight: 700; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--primary-deep);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--primary); border-radius: 2px; }
.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head .eyebrow::before { display: none; }
.section-head .eyebrow { gap: 0; }
h2.section-title { font-size: clamp(30px, 4.6vw, 50px); }
.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--text-soft); line-height: 1.6; }
em { color: var(--primary); font-style: normal; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px; font-weight: 700; font-size: 16px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 26px rgba(192,105,138,.36); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(192,105,138,.44); }
.btn-outline { border: 2px solid currentColor; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost-light { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.nav__logo { display: flex; align-items: center; transition: opacity .35s var(--ease); }
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; padding: 10px 16px; font-weight: 600; font-size: 15.5px;
  color: var(--ink); border-radius: 100px; transition: color .25s, background .25s;
}
.nav__link:hover { color: var(--primary-deep); background: var(--primary-tint); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: 15px; transition: color .35s; }
.nav__phone svg { width: 17px; height: 17px; color: var(--primary); transition: color .35s; }
.nav__cta { padding: 12px 22px; font-size: 15px; }

/* scrolled state */
.nav.is-scrolled { background: var(--ink); border-color: rgba(255,255,255,.08); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.nav.is-scrolled .nav__logo { opacity: 0; pointer-events: none; }
.nav.is-scrolled .nav__link { color: rgba(255,255,255,.88); }
.nav.is-scrolled .nav__link:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav.is-scrolled .nav__phone { color: #fff; }
.nav.is-scrolled .nav__phone svg { color: var(--primary-tint-2); }

.nav__burger { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: background .35s; }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: transform .3s, background .35s; }
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
.nav.is-scrolled .nav__burger span,
.nav.is-scrolled .nav__burger span::before,
.nav.is-scrolled .nav__burger span::after { background: #fff; }

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 110; visibility: hidden; pointer-events: none; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(49,29,40,.5); backdrop-filter: blur(6px); opacity: 0; transition: opacity .35s; }
.mobile-menu__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 380px);
  background: #fff; padding: 26px 24px; transform: translateX(100%);
  transition: transform .4s var(--ease); overflow-y: auto; box-shadow: -20px 0 60px rgba(0,0,0,.2);
}
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }
.mobile-menu__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.mobile-menu__head img { height: 40px; }
.mobile-menu__close { font-size: 30px; line-height: 1; color: var(--ink); width: 40px; height: 40px; }
.mobile-menu a.m-link { display: block; padding: 14px 6px; font-weight: 700; font-size: 18px; color: var(--ink); border-bottom: 1px solid var(--line-soft); font-family: var(--ff-display); }
.mobile-menu a.m-sub { padding-left: 22px; font-size: 16px; font-weight: 600; color: var(--text-soft); font-family: var(--ff-body); }
.mobile-menu .btn { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: var(--primary-deep); opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero__slide.is-active { opacity: 1; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(49,29,40,.86) 0%, rgba(58,34,48,.66) 42%, rgba(192,105,138,.42) 100%); }
.hero__inner { position: relative; z-index: 2; padding: 130px 0 60px; max-width: 760px; }
.hero h1 { font-size: clamp(40px, 7vw, 76px); color: #fff; line-height: 1.04; margin-bottom: 22px; font-weight: 600; }
.hero h1 em { color: var(--primary-tint-2); font-style: italic; }
.hero__desc { font-size: clamp(17px, 2.2vw, 20px); color: rgba(255,255,255,.92); max-width: 540px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 54px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.22); }
.hero__stat .num { font-family: var(--ff-display); font-size: clamp(28px, 4vw, 40px); font-weight: 600; line-height: 1; }
.hero__stat .lbl { font-size: 14px; color: rgba(255,255,255,.78); margin-top: 6px; font-weight: 600; letter-spacing: .02em; }

/* ---------- About 2-col ---------- */
.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-photo { position: relative; }
.about-photo .frame { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background: var(--primary-tint); box-shadow: var(--shadow); }
.about-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .badge {
  position: absolute; right: -16px; bottom: 30px; background: #fff; border-radius: 18px;
  padding: 18px 22px; box-shadow: var(--shadow); display: flex; gap: 14px; align-items: center;
}
.about-photo .badge .b-num { font-family: var(--ff-display); font-size: 32px; color: var(--primary); font-weight: 600; line-height: 1; }
.about-photo .badge .b-txt { font-size: 13.5px; font-weight: 600; color: var(--text-soft); line-height: 1.3; }
.about-text h2 { font-size: clamp(28px, 4.4vw, 46px); margin-bottom: 18px; }
.about-text .sign { margin-top: 22px; font-family: var(--ff-display); font-style: italic; font-size: 22px; color: var(--primary-deep); }

/* ---------- Unique cards (reveal-flip) ---------- */
.uniek-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.uniek-card { background: #fff; border-radius: var(--radius); padding: 38px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.uniek-card .circle {
  width: 52px; height: 52px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--ff-display);
  font-size: 22px; font-weight: 600; margin-bottom: 22px;
}
.uniek-card h3 { font-size: 22px; margin-bottom: 12px; }
.uniek-card p { color: var(--text-soft); font-size: 15.5px; margin: 0; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; text-align: center; }
.stat-big .num { font-family: var(--ff-display); font-size: clamp(40px, 6vw, 64px); color: var(--primary); font-weight: 600; line-height: 1; }
.stat-big .lbl { color: var(--text-soft); font-weight: 600; margin-top: 8px; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card__img { position: relative; aspect-ratio: 16/11; background: var(--primary-tint); background-size: cover; background-position: center; }
.svc-card__badge { position: absolute; top: 14px; left: 14px; background: var(--primary); color: #fff; font-size: 12.5px; font-weight: 700; padding: 7px 14px; border-radius: 100px; letter-spacing: .02em; }
.svc-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.svc-card__price { font-family: var(--ff-display); color: var(--primary-deep); font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.svc-card h3 { font-size: 23px; margin-bottom: 14px; }
.svc-card ul { margin-bottom: 22px; display: grid; gap: 9px; }
.svc-card ul li { position: relative; padding-left: 28px; font-size: 15px; color: var(--text-soft); }
.svc-card ul li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--primary-tint); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C0698A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 11px; background-repeat: no-repeat; background-position: center; }
.svc-card .btn { margin-top: auto; }

/* ---------- Process steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step-card { background: #fff; border-radius: var(--radius); padding: 30px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); position: relative; }
.step-card .circle { width: 46px; height: 46px; border-radius: 50%; background: var(--primary-tint); color: var(--primary-deep); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 600; font-size: 20px; margin-bottom: 18px; }
.step-card h3 { font-size: 19px; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--text-soft); margin: 0; }

/* ---------- Portfolio bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.bento__tile { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--primary-tint); background-size: cover; background-position: center; }
.bento__tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(49,29,40,.78) 0%, rgba(49,29,40,.05) 55%); }
.bento__tile .cap { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: #fff; }
.bento__tile .cap .t { font-family: var(--ff-display); font-size: 21px; font-weight: 600; }
.bento__tile .cap .s { font-size: 13.5px; opacity: .86; margin-top: 2px; }
.bento__tile.lg { grid-column: span 2; grid-row: span 2; }
.bento__tile.wide { grid-column: span 2; }
.bento__tile img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Tips marquee + modal ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: 22px; width: max-content; animation: scroll-x 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.tip-card { width: 340px; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); cursor: pointer; flex-shrink: 0; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.tip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tip-card__img { aspect-ratio: 16/10; background: var(--primary-tint); background-size: cover; background-position: center; }
.tip-card__body { padding: 22px 22px 24px; }
.pill { display: inline-block; background: var(--primary-tint); color: var(--primary-deep); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px; letter-spacing: .03em; text-transform: uppercase; }
.tip-card h3 { font-size: 19px; margin: 14px 0 8px; }
.tip-card p { font-size: 14.5px; color: var(--text-soft); margin: 0 0 14px; }
.tip-card .meta { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.tip-card .more { color: var(--primary-deep); font-weight: 700; font-size: 14px; }

.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(49,29,40,.55); backdrop-filter: blur(4px); }
.modal__panel { position: relative; z-index: 2; background: #fff; border-radius: var(--radius-lg); max-width: 700px; width: 100%; max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: modal-in .4s var(--ease); }
@keyframes modal-in { from { opacity: 0; transform: scale(.94) translateY(12px); } to { opacity: 1; transform: none; } }
.modal__img { aspect-ratio: 21/9; background: var(--primary-tint); background-size: cover; background-position: center; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--ink); font-size: 24px; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; }
.modal__content { padding: 30px clamp(24px, 4vw, 42px) 38px; }
.modal__content h3 { font-size: clamp(24px, 3.4vw, 32px); margin: 14px 0 8px; }
.modal__meta { font-size: 13.5px; color: var(--text-muted); font-weight: 600; margin-bottom: 18px; }

/* ---------- Reviews marquee ---------- */
.rev-head { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 44px; }
.rev-head .g { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); }
.rev-head .stars { color: var(--gold); letter-spacing: 2px; font-size: 20px; }
.rev-card { width: 360px; background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); flex-shrink: 0; }
.rev-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rev-avatar { width: 46px; height: 46px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex-shrink: 0; }
.rev-card__name { font-weight: 800; color: var(--ink); font-size: 15.5px; }
.rev-card__time { font-size: 13px; color: var(--text-muted); }
.rev-stars { color: var(--gold); letter-spacing: 1px; margin-bottom: 10px; }
.rev-text { font-size: 15px; color: var(--text-soft); line-height: 1.55; margin: 0 0 14px; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.rev-badge { display: inline-block; background: var(--primary-tint); color: var(--primary-deep); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px; }

/* ---------- Calculator ---------- */
.calc-section { background: var(--ink); color: #fff; }
.calc-section .section-head h2 { color: #fff; }
.calc-section .section-head .lead { color: rgba(255,255,255,.78); }
.calc-section .eyebrow { color: var(--primary-tint-2); }
.calc-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 980px; margin: 0 auto; }
.calc-tabs { display: flex; border-bottom: 1px solid var(--line); }
.calc-tab { flex: 1; padding: 18px 14px; font-weight: 700; color: var(--text-muted); font-size: 15px; transition: color .25s, background .25s; border-bottom: 3px solid transparent; }
.calc-tab.is-active { color: var(--primary-deep); border-bottom-color: var(--primary); background: var(--primary-tint); }
.calc-body { display: grid; grid-template-columns: 1.15fr .85fr; }
.calc-inputs { padding: clamp(26px, 3.4vw, 40px); }
.calc-pane { display: none; }
.calc-pane.is-active { display: block; }
.calc-field { margin-bottom: 26px; }
.calc-field > label.lbl { display: block; font-weight: 700; color: var(--ink); margin-bottom: 12px; font-size: 15px; }
.calc-range { width: 100%; -webkit-appearance: none; height: 6px; border-radius: 6px; background: var(--primary-tint-2); outline: none; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--primary); cursor: pointer; box-shadow: 0 2px 8px rgba(192,105,138,.5); }
.calc-range::-moz-range-thumb { width: 24px; height: 24px; border: none; border-radius: 50%; background: var(--primary); cursor: pointer; }
.calc-range-val { font-family: var(--ff-display); font-weight: 600; color: var(--primary-deep); margin-top: 8px; }
.opt-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.opt {
  border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 14px; font-weight: 600;
  color: var(--text); transition: border-color .2s, background .2s, color .2s; display: block;
  font-size: 14.5px; text-align: left;
}
.opt small { display: block; color: var(--text-muted); font-weight: 600; font-size: 12.5px; margin-top: 2px; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt.is-checked { border-color: var(--primary); background: var(--primary-tint); color: var(--primary-deep); }
.opt.is-checked small { color: var(--primary-deep); }
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; }
.toggle-row .tt { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.toggle-row .tt small { display: block; color: var(--text-muted); font-weight: 600; font-size: 12.5px; }
.switch { position: relative; width: 50px; height: 28px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--line); border-radius: 100px; transition: background .25s; }
.switch .slider::before { content: ""; position: absolute; width: 22px; height: 22px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .25s; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
.switch input:checked + .slider { background: var(--primary); }
.switch input:checked + .slider::before { transform: translateX(22px); }

.calc-result { background: linear-gradient(160deg, var(--bg-darker) 0%, var(--primary-deep) 130%); color: #fff; padding: clamp(28px, 3.4vw, 40px); display: flex; flex-direction: column; }
.calc-result .r-label { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 700; }
.calc-result .r-price { font-family: var(--ff-display); font-size: clamp(44px, 7vw, 64px); font-weight: 600; line-height: 1; margin: 8px 0 6px; }
.calc-result .r-dur { font-size: 14.5px; color: var(--primary-tint-2); font-weight: 700; }
.calc-result .r-disc { font-size: 12.5px; color: rgba(255,255,255,.62); margin: 14px 0 18px; line-height: 1.45; }
.calc-result .r-sum { list-style: none; padding: 0; margin: 0 0 22px; border-top: 1px solid rgba(255,255,255,.18); }
.calc-result .r-sum li { display: flex; justify-content: space-between; gap: 10px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14.5px; }
.calc-result .r-sum li span:first-child { color: rgba(255,255,255,.72); }
.calc-result .r-sum li span:last-child { font-weight: 700; }
.calc-result .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line-soft); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; text-align: left; font-family: var(--ff-display); font-weight: 600; font-size: 18px; color: var(--ink); }
.faq-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--primary-tint); color: var(--primary-deep); display: flex; align-items: center; justify-content: center; font-size: 22px; transition: transform .3s var(--ease); }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 24px 22px; margin: 0; color: var(--text-soft); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(130deg, var(--bg-darker), var(--primary-deep)); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.84); max-width: 560px; margin: 0 auto 28px; }
.cta-band .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-darker); color: rgba(255,255,255,.72); padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer h4 { color: #fff; font-family: var(--ff-body); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer__logo-pill { display: inline-block; background: #fff; border-radius: 14px; padding: 12px 18px; margin-bottom: 18px; }
.footer__logo-pill img { height: 40px; }
.footer a:hover { color: #fff; }
.footer li { margin-bottom: 11px; font-size: 15px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--primary-tint-2); flex-shrink: 0; margin-top: 4px; }
.footer__usps { display: grid; gap: 9px; margin: 16px 0 18px; }
.footer__usps li { display: flex; gap: 9px; align-items: center; font-size: 14px; }
.footer__usps svg { width: 16px; height: 16px; color: var(--primary-tint-2); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; transition: background .25s; }
.footer__social a:hover { background: var(--primary); }
.footer__social svg { width: 18px; height: 18px; color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; }

/* ---------- WhatsApp bubble + sticky CTA ---------- */
.wa-bubble { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .25s; }
.wa-bubble:hover { transform: scale(1.08); }
.wa-bubble svg { width: 32px; height: 32px; color: #fff; }
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; gap: 8px; padding: 10px; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line); }
.sticky-cta a { flex: 1; padding: 13px 8px; border-radius: 12px; font-weight: 700; font-size: 14px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
.sticky-cta svg { width: 16px; height: 16px; }
.sticky-cta .s-call { background: var(--primary-tint); color: var(--primary-deep); }
.sticky-cta .s-wa { background: #25D366; color: #fff; }
.sticky-cta .s-book { background: var(--primary); color: #fff; }

/* ---------- Inner page: subhero, breadcrumb ---------- */
.subhero { position: relative; padding: 150px 0 70px; color: #fff; background: var(--primary-deep); background-size: cover; background-position: center; }
.subhero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(49,29,40,.88), rgba(58,34,48,.62)); }
.subhero__inner { position: relative; z-index: 2; max-width: 760px; }
.subhero h1 { color: #fff; font-size: clamp(34px, 5.6vw, 58px); margin: 14px 0 14px; }
.subhero p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 560px; margin: 0; }
.breadcrumb { font-size: 13.5px; color: rgba(255,255,255,.8); font-weight: 600; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* two-col content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split__photo { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: var(--primary-tint); box-shadow: var(--shadow); }
.split__photo img { width: 100%; height: 100%; object-fit: cover; }
.prose h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.prose h4 { font-family: var(--ff-display); font-size: 21px; margin: 26px 0 10px; color: var(--ink); }
.prose p { color: var(--text-soft); }
.prose.narrow { max-width: 780px; margin: 0 auto; }

/* benefit cards */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit { background: #fff; border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.benefit .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--primary-tint); color: var(--primary-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit .ic svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 19px; margin-bottom: 8px; }
.benefit p { font-size: 14.5px; color: var(--text-soft); margin: 0; }

/* meta cards */
.meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.meta-card { background: var(--primary-tint); border-radius: var(--radius); padding: 24px; }
.meta-card .k { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--primary-deep); font-weight: 700; }
.meta-card .v { font-family: var(--ff-display); font-size: 21px; color: var(--ink); font-weight: 600; margin-top: 6px; }

/* price list table */
.pricelist { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.price-row { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 20px 24px; box-shadow: var(--shadow-sm); }
.price-row .pl { font-family: var(--ff-display); font-size: 19px; color: var(--ink); font-weight: 600; }
.price-row .pl small { display: block; font-family: var(--ff-body); font-size: 13.5px; color: var(--text-muted); font-weight: 600; margin-top: 3px; }
.price-row .pp { font-family: var(--ff-display); font-size: 24px; color: var(--primary-deep); font-weight: 600; white-space: nowrap; }
.price-row .pp small { font-family: var(--ff-body); font-size: 12.5px; color: var(--text-muted); display: block; font-weight: 600; }

/* contact / form */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 3.6vw, 42px); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 7px; font-size: 14.5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: 15.5px; color: var(--text); background: #fff; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); outline: none; }
.field textarea { min-height: 120px; resize: vertical; }
.field input[readonly] { background: var(--primary-tint); font-weight: 700; color: var(--primary-deep); }
.req { color: var(--primary); }
.info-aside { background: var(--ink); color: rgba(255,255,255,.82); border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 38px); position: sticky; top: 100px; }
.info-aside h3 { color: #fff; font-size: 24px; margin-bottom: 18px; }
.info-aside ul li { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; font-size: 15px; }
.info-aside svg { width: 18px; height: 18px; color: var(--primary-tint-2); flex-shrink: 0; margin-top: 3px; }
.info-aside a:hover { color: #fff; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hours-row .d { color: rgba(255,255,255,.7); }
.note { background: var(--primary-tint); border-radius: var(--radius); padding: 26px 28px; border-left: 4px solid var(--primary); }

/* ---------- Reveal animations ---------- */
.reveal-up    { opacity: 0; transform: translateY(60px); }
.reveal-x     { opacity: 0; transform: translateX(-100px); }
.reveal-x-r   { opacity: 0; transform: translateX(100px); }
.reveal-zoom  { opacity: 0; transform: scale(0.85); }
.reveal-x-zoom   { opacity: 0; transform: translateX(-80px) scale(0.92); }
.reveal-x-r-zoom { opacity: 0; transform: translateX(80px) scale(0.92); }
.reveal-flip  { opacity: 0; transform: perspective(900px) rotateX(35deg) translateY(50px); transform-origin: center bottom; }
.reveal-up, .reveal-x, .reveal-x-r, .reveal-zoom, .reveal-x-zoom, .reveal-x-r-zoom, .reveal-flip {
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.is-visible { opacity: 1 !important; transform: none !important; }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .10s; }
.stagger > *:nth-child(3) { transition-delay: .20s; }
.stagger > *:nth-child(4) { transition-delay: .30s; }
.stagger > *:nth-child(5) { transition-delay: .40s; }
.stagger > *:nth-child(6) { transition-delay: .50s; }
.stagger > *:nth-child(7) { transition-delay: .60s; }
.stagger > *:nth-child(8) { transition-delay: .70s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-x, .reveal-x-r, .reveal-zoom, .reveal-x-zoom, .reveal-x-r-zoom, .reveal-flip {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .about-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .uniek-grid, .svc-grid, .benefit-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .meta-grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-auto-rows: 170px; }
  .calc-body { grid-template-columns: 1fr; }
  .info-aside { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-photo .badge { right: 16px; }
}
@media (max-width: 639px) {
  body { font-size: 16px; }
  .uniek-grid, .svc-grid, .benefit-grid, .steps-grid, .meta-grid, .stats-row { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .bento__tile.lg { grid-column: span 2; grid-row: span 2; }
  .bento__tile.wide { grid-column: span 2; }
  .hero__stats { gap: 24px; }
  .sticky-cta { display: flex; }
  .wa-bubble { bottom: 78px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .calc-tab { font-size: 13px; padding: 14px 8px; }
  .footer__bottom { flex-direction: column; }
  body { padding-bottom: 0; }
}
