/* 命運手冊 — gedeelde huisstijl (inkt / goud / ivoor) */
:root {
  --ink: #1C2333;
  --ink-deep: #121722;
  --gold: #C9A94E;
  --gold-dark: #A8842C;
  --gold-soft: #E4D3A1;
  --ivory: #FBF8F0;
  --ivory-dim: #F3EDDD;
  --seal: #8E2B25;
  --green: #2E6E4E;
  --wood: #2E6E4E; --fire: #8E2B25; --earth: #A8842C; --metal: #7C8188; --water: #2C4A6E;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Serif TC", "Noto Serif CJK TC", "PMingLiU", serif;
  background: var(--ink);
  color: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* Gouden ornamentlijn */
.orna {
  border: 0; height: 14px; margin: 8px auto; width: 240px; max-width: 70%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="240" height="14" viewBox="0 0 240 14"><line x1="0" y1="7" x2="104" y2="7" stroke="%23C9A94E" stroke-width="1"/><line x1="136" y1="7" x2="240" y2="7" stroke="%23C9A94E" stroke-width="1"/><rect x="114" y="1" width="12" height="12" transform="rotate(45 120 7)" fill="none" stroke="%23C9A94E" stroke-width="1.2"/></svg>') center/contain no-repeat;
}

/* Rood zegel */
.seal {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 8px;
  background: var(--seal); color: var(--ivory);
  font-size: 20px; font-weight: 700; line-height: 1.15;
  box-shadow: 0 2px 14px rgba(142,43,37,.45);
  letter-spacing: 2px; writing-mode: vertical-rl; text-orientation: upright;
}

/* Knoppen */
.btn {
  display: inline-block; cursor: pointer; border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--ink-deep); font-family: inherit; font-weight: 700;
  font-size: 17px; letter-spacing: 3px; padding: 14px 44px; border-radius: 3px;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(201,169,78,.35); }
.btn.ghost { background: transparent; color: var(--gold); }
.btn.ghost:hover { background: rgba(201,169,78,.12); }
.btn:disabled { opacity: .5; cursor: wait; transform: none; }

/* Kaarten op ivoor */
.paper {
  background: var(--ivory); color: var(--ink);
  border-radius: 6px; box-shadow: 0 10px 40px rgba(0,0,0,.35);
}

/* Element-kleuren voor 干支 */
.elem-wood { color: var(--wood); } .elem-fire { color: var(--fire); }
.elem-earth { color: var(--earth); } .elem-metal { color: var(--metal); }
.elem-water { color: var(--water); }

/* Fade-in bij scroll */
.fade { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
.fade.vis { opacity: 1; transform: none; }

/* Formulier */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14.5px; letter-spacing: 2px; color: var(--gold-soft); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: inherit; font-size: 16px;
  background: rgba(251,248,240,.06); border: 1px solid rgba(201,169,78,.4);
  border-radius: 3px; color: var(--ivory); transition: border .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(251,248,240,.1);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(251,248,240,.35); }
.field .hint { font-size: 12.5px; color: rgba(251,248,240,.5); margin-top: 4px; }

.radio-row { display: flex; gap: 12px; }
.radio-row label {
  flex: 1; text-align: center; padding: 11px 0; cursor: pointer;
  border: 1px solid rgba(201,169,78,.4); border-radius: 3px;
  font-size: 16px; color: var(--ivory); letter-spacing: 4px; transition: all .25s;
}
.radio-row input { display: none; }
.radio-row input:checked + span { color: var(--ink-deep); }
.radio-row label:has(input:checked) {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold); color: var(--ink-deep); font-weight: 700;
}

/* Waarschuwingsbox */
.warnbox {
  background: #FDF6E3; border: 1px solid var(--gold-dark); border-left: 4px solid var(--gold-dark);
  border-radius: 4px; padding: 14px 18px; color: #6b5310; font-size: 14.5px; margin: 18px 0;
}
.warnbox p { margin: 4px 0; }

@media (max-width: 640px) {
  .btn { width: 100%; text-align: center; }
}

/* Navigatie (gedeeld via _nav.html) */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 13px 24px; transition: background .4s ease, box-shadow .4s;
}
nav#nav.solid { background: rgba(18,23,34,.94); box-shadow: 0 2px 18px rgba(0,0,0,.4); backdrop-filter: blur(6px); }
nav#nav .brand { display: flex; align-items: center; gap: 11px; color: var(--ivory); flex: none; }
nav#nav .brand .mini-seal {
  width: 33px; height: 33px; border-radius: 5px; background: var(--seal);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory); font-size: 15px; font-weight: 700;
}
nav#nav .brand b { font-size: 18px; letter-spacing: 4px; font-weight: 700; }
nav#nav .navlinks { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
nav#nav .navlinks a {
  padding: 7px 13px; border-radius: 3px; color: rgba(251,248,240,.75);
  font-size: 14px; letter-spacing: 2px; transition: all .25s;
}
nav#nav .navlinks a:hover { color: var(--gold); }
nav#nav .navlinks a.cur { color: var(--gold); border-bottom: 1px solid var(--gold); border-radius: 0; }
nav#nav .navright { display: flex; align-items: center; gap: 14px; flex: none; }
nav#nav .navcta {
  font-size: 13.5px; letter-spacing: 2px; border: 1px solid var(--gold);
  color: var(--gold); padding: 7px 16px; border-radius: 3px; transition: all .3s; white-space: nowrap;
}
nav#nav .navcta:hover { background: var(--gold); color: var(--ink-deep); }
@media (max-width: 760px) {
  nav#nav { flex-wrap: wrap; padding: 10px 14px; }
  nav#nav .navlinks { order: 3; width: 100%; }
  nav#nav .navcta { display: none; }
}

/* Subpagina's (book/faq/method/portal) */
.subpage-head {
  padding: 150px 0 60px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--ink-deep) 0%, var(--ink) 100%);
}
.subpage-head .en { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-size: 15px; color: var(--gold); letter-spacing: 3px; }
.subpage-head h1 { font-size: clamp(30px, 5vw, 44px); letter-spacing: 6px; color: var(--ivory); font-weight: 700; margin-top: 6px; }
.subpage-head .lead { max-width: 640px; margin: 20px auto 0; color: rgba(251,248,240,.78); font-size: 16px; padding: 0 22px; }

/* Boekinhoud-secties */
.bp-sec {
  display: flex; gap: 34px; align-items: flex-start; padding: 40px 0;
  border-bottom: 1px solid rgba(201,169,78,.16); position: relative;
}
.bp-sec:last-of-type { border-bottom: none; }
.bp-sec .bp-num {
  flex: none; width: 58px; height: 58px; border-radius: 50%; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 21px; font-weight: 700;
  background: radial-gradient(circle at 32% 30%, rgba(201,169,78,.18), transparent 70%);
}
.bp-sec .bp-txt { flex: 1; }
.bp-sec h3 { font-size: 21px; letter-spacing: 3px; color: var(--gold-soft); margin-bottom: 10px; }
.bp-sec p { font-size: 15.5px; color: rgba(251,248,240,.82); line-height: 1.95; }
.bp-sec .bp-img { flex: none; width: 190px; }
.bp-sec .bp-img img {
  width: 100%; border-radius: 4px; border: 1px solid rgba(201,169,78,.35);
  box-shadow: 0 10px 28px rgba(0,0,0,.45); transform: rotate(.8deg); transition: transform .3s;
}
.bp-sec .bp-img img:hover { transform: scale(1.04) rotate(0); }
.bp-sec img.bp-brush { position: absolute; right: 0; bottom: 6px; width: 110px; opacity: .28; pointer-events: none; }
@media (max-width: 700px) {
  .bp-sec { flex-wrap: wrap; gap: 16px; }
  .bp-sec .bp-img { width: 150px; margin: 0 auto; }
}

/* FAQ accordeon */
.faq-item { border: 1px solid rgba(201,169,78,.25); border-radius: 6px; margin-bottom: 13px; background: rgba(251,248,240,.035); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 22px; font-size: 16.5px; font-weight: 600;
  color: var(--ivory); letter-spacing: 1px; display: flex; justify-content: space-between; gap: 14px; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "＋"; color: var(--gold); font-size: 19px; flex: none; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--gold-soft); }
.faq-item .faq-a { padding: 0 22px 20px; font-size: 15px; color: rgba(251,248,240,.8); line-height: 1.95; }

/* Methode-pagina */
.mp-sec { margin-bottom: 44px; }
.mp-sec h3 {
  font-size: 20px; letter-spacing: 2px; color: var(--gold-soft); margin-bottom: 14px;
  padding-left: 14px; border-left: 3px solid var(--gold);
}
.mp-sec p { font-size: 15.5px; color: rgba(251,248,240,.84); line-height: 2.0; margin-bottom: 14px; text-align: justify; }
.mp-close { text-align: center; font-size: 18px; letter-spacing: 3px; color: var(--gold); margin-top: 30px; }

/* Klantportaal */
.portal-timeline { display: flex; align-items: center; justify-content: center; gap: 0; margin: 28px 0 8px; }
.pt-step { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 90px; }
.pt-step .dot2 {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(168,132,44,.4);
  display: flex; align-items: center; justify-content: center; font-size: 15px; color: #b0a488; background: #fffdf6;
}
.pt-step.done .dot2 { background: var(--green); border-color: var(--green); color: #fff; }
.pt-step.cur .dot2 { border-color: var(--gold-dark); color: var(--gold-dark); font-weight: 700; box-shadow: 0 0 0 4px rgba(201,169,78,.18); }
.pt-step small { font-size: 12.5px; color: #8a8069; letter-spacing: 1px; text-align: center; }
.pt-step.done small, .pt-step.cur small { color: var(--ink); font-weight: 600; }
.pt-bar { flex: 1; max-width: 70px; height: 2px; background: rgba(168,132,44,.3); margin-bottom: 26px; }
.pt-bar.done { background: var(--green); }

/* Boekfeiten-strip + trust-cards (gedeeld: landing, book, method) */
.bookfacts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 46px;
  margin-top: 54px; padding: 26px 18px;
  border-top: 1px solid rgba(201,169,78,.25); border-bottom: 1px solid rgba(201,169,78,.25);
}
.bookfacts div { text-align: center; }
.bookfacts b { display: block; font-size: 32px; color: var(--gold); font-weight: 700; letter-spacing: 1px; }
.bookfacts span { font-size: 12.5px; letter-spacing: 2px; color: rgba(251,248,240,.65); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(225px, 1fr)); gap: 22px; margin-top: 40px; }
.trust {
  padding: 30px 26px; border-radius: 6px;
  background: rgba(251,248,240,.04); border: 1px solid rgba(201,169,78,.22);
}
.trust .num { font-family: "Cormorant Garamond", Georgia, serif; font-size: 40px; color: var(--gold); line-height: 1; }
.trust h3 { font-size: 18.5px; letter-spacing: 2px; margin: 12px 0 10px; color: var(--ivory); }
.trust p { font-size: 14.5px; color: rgba(251,248,240,.75); }

/* Taalschakelaar */
.lang-switch { display: flex; align-items: center; gap: 2px; font-size: 13px; letter-spacing: 1px; }
.lang-switch a {
  padding: 5px 10px; border-radius: 3px; color: rgba(251,248,240,.55); transition: all .2s;
}
.lang-switch a.active { color: var(--ink-deep); background: var(--gold); font-weight: 700; }
.lang-switch a:not(.active):hover { color: var(--gold); }

/* Prominente hint-callout (i.p.v. grijze placeholder-tekst) */
.hint-callout {
  display: flex; gap: 8px; align-items: flex-start; margin-top: 7px;
  padding: 9px 12px; background: rgba(201,169,78,.14); border-left: 3px solid var(--gold);
  border-radius: 3px; font-size: 13px; color: var(--ivory); line-height: 1.6;
}
.hint-callout b { color: var(--gold-soft); flex: none; }

/* Select-groepen voor datum/tijd (i.p.v. native date/time-input, altijd taal-consistent) */
.select-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.select-row select {
  flex: 1; min-width: 68px; padding: 12px 8px; font-family: inherit; font-size: 15px;
  background: rgba(251,248,240,.06); border: 1px solid rgba(201,169,78,.4);
  border-radius: 3px; color: var(--ivory); appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6"><path d="M0 0l5 6 5-6z" fill="%23C9A94E"/></svg>');
  background-repeat: no-repeat; background-position: right 10px center; padding-right: 24px;
}
.select-row select:focus { outline: none; border-color: var(--gold); }
.select-row .unit { font-size: 13px; color: rgba(251,248,240,.55); flex: none; }

/* Focus-tags (keuzevakjes) */
.tag-row { display: flex; flex-wrap: wrap; gap: 9px; }
.tag-check { position: relative; }
.tag-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.tag-check span {
  display: inline-block; padding: 8px 18px; border-radius: 20px; cursor: pointer;
  border: 1px solid rgba(201,169,78,.4); font-size: 14px; color: var(--ivory); transition: all .2s;
}
.tag-check input:checked + span {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--ink-deep); font-weight: 700; border-color: var(--gold);
}
.tag-check:hover span { border-color: var(--gold); }

/* Prijzenkaart */
.price-card {
  max-width: 620px; margin: 46px auto 0; padding: 34px 36px; position: relative;
  background: rgba(251,248,240,.045); border: 1px solid rgba(201,169,78,.35); border-radius: 8px;
}
.price-card::before { content: ""; position: absolute; inset: 7px; pointer-events: none; border: 1px solid rgba(201,169,78,.18); border-radius: 5px; }
.price-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(201,169,78,.16); }
.price-row:last-of-type { border-bottom: none; }
.price-row .pname { font-size: 15.5px; color: var(--ivory); font-weight: 600; }
.price-row .pdesc { font-size: 12.5px; color: rgba(251,248,240,.55); margin-top: 3px; }
.price-row .pval { font-size: 16px; color: var(--gold-soft); font-weight: 700; white-space: nowrap; }
.price-row.optional { align-items: center; }
.price-toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.price-toggle input { width: 18px; height: 18px; accent-color: var(--gold); }
.price-lang-select select {
  margin-top: 8px; width: 100%; padding: 9px 10px; font-family: inherit; font-size: 14px;
  background: rgba(251,248,240,.06); border: 1px solid rgba(201,169,78,.4); border-radius: 3px; color: var(--ivory);
}
.price-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gold); }
.price-total-row .tl { font-size: 15px; letter-spacing: 2px; color: var(--gold-soft); }
.price-total-row .tv { font-size: 30px; font-weight: 900; color: var(--gold); }
.price-total-row .tv .strike { font-size: 16px; color: rgba(251,248,240,.4); text-decoration: line-through; font-weight: 400; margin-right: 8px; }
.coupon-msg { font-size: 12.5px; margin-top: 6px; }
.coupon-msg.ok { color: #6fbf8f; } .coupon-msg.bad { color: #E0B84E; }
.price-note { font-size: 12px; color: rgba(251,248,240,.5); margin-top: 16px; text-align: center; line-height: 1.7; }

/* Native dropdown-opties: altijd donker op donker paneel (Windows rendert options
   anders wit-op-wit) */
select option {
  background-color: var(--ink-deep);
  color: var(--ivory);
}

/* USP-badges in de hero */
.usp-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px;
  margin-top: 22px;
}
.usp-row .usp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 24px; font-size: 15px; letter-spacing: 1.5px;
  color: var(--gold-soft); border: 1px solid rgba(201,169,78,.55);
  background: rgba(18,23,34,.55); backdrop-filter: blur(3px);
  font-weight: 600;
}
.usp-row .usp::before { content: "✦"; color: var(--gold); font-size: 12px; }

/* Uniek-blok (全世界只有這一本) */
.unique-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 46px 0 36px; }
.unique-quote {
  position: relative; padding: 34px 30px 30px; text-align: center;
  background: rgba(251,248,240,.05); border: 1px solid rgba(201,169,78,.4); border-radius: 6px;
  font-size: clamp(19px, 2.6vw, 24px); letter-spacing: 3px; color: var(--gold-soft);
  font-weight: 700; line-height: 1.9;
}
.unique-quote::before {
  content: "「"; position: absolute; top: 4px; left: 12px;
  font-size: 40px; color: rgba(201,169,78,.4); font-weight: 400;
}
.unique-quote::after {
  content: "」"; position: absolute; bottom: 0px; right: 12px;
  font-size: 40px; color: rgba(201,169,78,.4); font-weight: 400;
}
.unique-body { max-width: 720px; margin: 0 auto; }
.unique-body p { font-size: 15.5px; color: rgba(251,248,240,.85); line-height: 2.05; margin-bottom: 20px; text-align: justify; }
.unique-close { text-align: center; font-size: 16px; letter-spacing: 4px; color: var(--gold); margin-top: 8px; }

/* Stap-kicker boven sectietitels */
.step-kicker {
  display: inline-block; margin-bottom: 10px; padding: 5px 18px; border-radius: 20px;
  border: 1px solid var(--gold); color: var(--gold); font-size: 13px; letter-spacing: 4px; font-weight: 700;
}

/* Coupon toepassen-rij */
.apply-row { display: flex; gap: 10px; }
.apply-row input { flex: 1; }
.apply-row button {
  flex: none; padding: 0 22px; cursor: pointer; font-family: inherit; font-size: 14px;
  letter-spacing: 2px; font-weight: 700; border-radius: 3px;
  border: 1px solid var(--gold); background: transparent; color: var(--gold); transition: all .25s;
}
.apply-row button:hover { background: var(--gold); color: var(--ink-deep); }
.apply-row button:disabled { opacity: .5; cursor: wait; }

/* Extra-taal checkboxes in prijzenkaart */
.lang-checks { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 10px; }

/* Tijd-onbekend blok */
.time-unknown-row { margin-top: 12px; }
.time-unknown-row label.tu { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: 14.5px; color: var(--gold-soft); }
.time-unknown-row input { width: 17px; height: 17px; accent-color: var(--gold); }
.shichen-block { display: none; margin-top: 12px; }
.shichen-block.open { display: block; }
.agree-row { display: flex; align-items: flex-start; gap: 9px; margin-top: 12px; font-size: 13.5px; color: rgba(251,248,240,.8); line-height: 1.6; }
.agree-row input { width: 17px; height: 17px; accent-color: var(--gold); flex: none; margin-top: 2px; }

/* Formule-strip (計算基礎) */
.formula {
  margin-top: 60px; padding: 34px 24px 30px; text-align: center;
  border: 1px solid rgba(201,169,78,.4); border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,169,78,.1), transparent 60%),
    rgba(251,248,240,.03);
  position: relative; overflow: hidden;
}
.formula::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(201,169,78,.09), transparent);
  animation: formulasweep 5.5s ease-in-out infinite;
}
@keyframes formulasweep { 0%, 30% { left: -60%; } 70%, 100% { left: 120%; } }
.formula-kicker { font-size: 13px; letter-spacing: 4px; color: var(--gold); margin-bottom: 18px; }
.formula-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 8px; }
.formula-row .fpart {
  padding: 10px 20px; border: 1px solid rgba(201,169,78,.55); border-radius: 6px;
  font-size: clamp(15px, 2.2vw, 19px); letter-spacing: 2px; font-weight: 700; color: var(--gold-soft);
  background: rgba(18,23,34,.5);
}
.formula-row .fx { color: var(--gold); font-size: 20px; font-weight: 400; }
.formula-plus { margin-top: 16px; font-size: clamp(14px, 2vw, 16.5px); letter-spacing: 2px; color: var(--ivory); font-weight: 600; }
.formula-note { margin-top: 12px; font-size: 13px; color: rgba(251,248,240,.6); letter-spacing: 1px; }

/* Zwevende CTA */
#float-cta {
  position: fixed; right: 22px; bottom: 24px; z-index: 60;
  display: flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 30px; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--ink-deep); font-weight: 700; font-size: 15px; letter-spacing: 2px;
  box-shadow: 0 6px 24px rgba(201,169,78,.4);
  opacity: 0; transform: translateY(70px); transition: opacity .45s ease, transform .45s ease;
  animation: ctapulse 2.8s ease-in-out infinite;
}
#float-cta.show { opacity: 1; transform: none; }
#float-cta::before { content: "命"; display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; background: var(--seal); color: var(--ivory); font-size: 14px; }
@keyframes ctapulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(201,169,78,.4); }
  50% { box-shadow: 0 6px 34px rgba(201,169,78,.75); }
}
@media (max-width: 640px) {
  #float-cta { right: 14px; bottom: 16px; font-size: 14px; padding: 11px 19px; }
}

/* Mobiel: nav wrapt naar 2 regels → altijd dichte achtergrond + hero/subpagina's meer ruimte */
@media (max-width: 760px) {
  nav#nav { background: rgba(18,23,34,.93); box-shadow: 0 2px 14px rgba(0,0,0,.35); }
  header.hero .hero-inner { padding-top: 170px; }
  .subpage-head { padding-top: 190px; }
}

/* Parallax sfeerbanner tussen secties */
.mood-band { position: relative; height: 140px; overflow: hidden; }
.mood-band img {
  position: absolute; inset: -20% 0; width: 100%; height: 140%; object-fit: cover;
  filter: saturate(.85) brightness(.8);
}
.mood-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink) 0%, rgba(28,35,51,.25) 50%, var(--ink) 100%); }
@media (max-width: 640px) { .mood-band { height: 90px; } }
