/* ============================================================
   PULSE — shared styles (design tokens, reset, reusable primitives)
   ============================================================ */

:root {
  --paper: #1C1815;
  --paper-2: #241F1B;
  --paper-3: #15110E;
  --paper-4: #2A241E;
  --ink: #F1EADC;
  --ink-soft: #B3A695;
  --line: #3A322B;
  --bronze: #C79A63;

  --accent: #8C4A68;
  --accent-deep: #4A1E38;
  --accent-soft: #2E1A26;

  --haar: #8C4A68;
  --haar-deep: #4A1E38;
  --hem: #7E9685;
  --hem-deep: #3F4E43;

  /* Sporty signal accent — badges, stats, highlights. Independent of gender theme. */
  --signal: #E2703A;
  --signal-soft: #3A2A1C;
  --signal-ink: #2C1810;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-serif: 'Cormorant', serif;
  --font-sans: 'Hanken Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: #E9E4D8;
  font-family: var(--font-sans);
}

/* ---------------------------------------------------------- */
/* Page transition — native cross-document view transition.    */
/* The browser blends actual snapshots of the old and new page, */
/* so there's no blank gap between them like a JS opacity swap  */
/* produces. Unsupported browsers (Safari, Firefox) just get a  */
/* normal instant navigation — this rule is silently ignored.   */
/* ---------------------------------------------------------- */

@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(.4, 0, .2, 1);
}

::view-transition-old(root) {
  animation-name: pulse-page-out;
}

::view-transition-new(root) {
  animation-name: pulse-page-in;
}

@keyframes pulse-page-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-18px) scale(.985); }
}

@keyframes pulse-page-in {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Carve the persistent chrome out of the root transition so it stays put —
   naming it removes it from ::view-transition-old/new(root) entirely, and
   disabling its own animation means the swap between pages is instant and
   invisible instead of cross-fading. */
.site-header {
  view-transition-name: site-header;
}

.gender-switch {
  view-transition-name: gender-switch;
}

::view-transition-group(site-header),
::view-transition-group(gender-switch),
::view-transition-old(site-header),
::view-transition-new(site-header),
::view-transition-old(gender-switch),
::view-transition-new(gender-switch) {
  animation: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Gender theme — flips accent colors across the whole page */
body[data-gender="man"] {
  --accent: var(--hem);
  --accent-deep: var(--hem-deep);
  --accent-soft: #E2E8E1;
}

body[data-gender="vrouw"] {
  --accent: var(--haar);
  --accent-deep: var(--haar-deep);
  --accent-soft: #2E1A26;
}

/* Screen switcher (entry chooser vs. home) */
body[data-screen="entry"] .home-section {
  display: none;
}

body[data-screen="home"] .entry-section {
  display: none;
}

/* Text link */
.lnk {
  font: 500 14px/1 var(--font-sans);
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s;
}

.lnk:hover {
  color: var(--ink);
}

/* Nav link */
.nav {
  position: relative;
  font: 600 11px/1 var(--font-sans);
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s;
}

.nav:hover {
  color: var(--ink);
}

/* Gender switch — floats independently at the right edge of the page,
   detached from the .site-header pill on the left. Only shown once
   there's room for both without crowding (see responsive section). */
.gender-switch {
  position: fixed;
  top: 18px;
  right: clamp(24px, 4vw, 52px);
  z-index: 60;
}

/* Gender toggle pill */
.gtoggle {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  background: rgba(28, 22, 18, .62);
  backdrop-filter: blur(14px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 18px 50px -18px rgba(0, 0, 0, .7);
}

.gtoggle button {
  padding: 9px 16px;
  font: 600 11px/1 var(--font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  background: transparent;
  color: var(--ink-soft);
  transition: all .2s;
  white-space: nowrap;
}

body[data-gender="vrouw"] .gtoggle .g-haar,
body[data-gender="man"] .gtoggle .g-hem {
  background: var(--accent-deep);
  color: #FBF8F2;
}

/* ============================================================
   Site chrome — header, footer, and the recurring content blocks
   (steps, benefits, CTA) every page shares with the homepage.
   ============================================================ */

.section-eyebrow {
  font: 600 12px/1 var(--font-sans);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 24px;
}

/* Header / nav */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  z-index: 60;
  width: min(1180px, 92%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px clamp(24px, 4vw, 52px);
  background: rgba(28, 22, 18, .62);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: none;
  border-radius: 0 100px 100px 0;
  box-shadow: 0 18px 50px -18px rgba(0, 0, 0, .7);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
  text-decoration: none;
}

.site-logo__mark {
  height: 86px;
  width: auto;
  margin: -30px 0 -26px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .5));
}

.site-logo__text {
  line-height: 1;
}

.site-logo__wordmark {
  font: 600 26px/1 var(--font-serif);
  letter-spacing: .30em;
  color: var(--ink);
  padding-left: .30em;
}

.site-logo__tagline {
  font: 600 9px/1 var(--font-sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 5px;
  padding-left: .30em;
}

.site-nav {
  display: flex;
  gap: 22px;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header-cta {
  display: inline-flex;
  padding: 11px 18px;
  background: var(--accent-deep);
  color: #FBF8F2;
  font: 600 10.5px/1 var(--font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px -10px var(--accent-deep);
}

/* Steps / process cards (home "Hoe het werkt" + reused on hoe-het-werkt.html) */
.steps-section {
  padding: 104px 6vw;
  background: var(--paper-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 72px;
}

.steps-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.steps-header {
  text-align: center;
  margin-bottom: 60px;
}

.steps-header .section-eyebrow {
  margin-bottom: 22px;
}

.steps-title {
  font: 600 clamp(34px, 4vw, 54px)/1.08 var(--font-display);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 auto 16px;
  max-width: 20ch;
}

.steps-lead {
  font: italic 400 22px/1.5 var(--font-serif);
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 42ch;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.step-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.step-card__media {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--paper-4);
}

.step-card__body {
  padding: 30px;
}

.step-number {
  font: 600 20px/1 var(--font-display);
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}

.step-title {
  font: 500 21px/1.3 var(--font-sans);
  color: var(--ink);
  margin: 0 0 10px;
}

.step-desc {
  font: 400 15px/1.65 var(--font-sans);
  color: var(--ink-soft);
  margin: 0;
}

/* Numbered benefits list (home "Onderscheid" + reused on onderscheid.html) */
.distinct-section {
  padding: 104px 6vw;
  background: var(--paper-4);
  scroll-margin-top: 72px;
}

.distinct-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.distinct-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.distinct-title {
  font: 600 clamp(32px, 3.6vw, 50px)/1.1 var(--font-display);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 14ch;
}

.distinct-lead {
  font: italic 400 20px/1.5 var(--font-serif);
  color: var(--ink-soft);
  margin: 0;
  max-width: 30ch;
}

.distinct-list {
  border-top: 1px solid var(--line);
}

.distinct-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.distinct-num {
  font: 600 26px/1 var(--font-display);
  text-transform: uppercase;
  color: var(--bronze);
}

.distinct-item__title {
  font: 500 20px/1.3 var(--font-sans);
  color: var(--ink);
  margin: 0 0 6px;
}

.distinct-item__desc {
  font: italic 400 16px/1.5 var(--font-serif);
  color: var(--ink-soft);
  margin: 0;
}

/* CTA panel — used at the foot of nearly every page */
.cta-section {
  position: relative;
  text-align: center;
  padding: 120px 6vw;
  background: var(--accent-deep);
  overflow: hidden;
  scroll-margin-top: 72px;
}

.cta-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 520px;
  width: auto;
  opacity: .08;
  pointer-events: none;
}

.cta-inner {
  position: relative;
}

.cta-eyebrow {
  font: 600 12px/1 var(--font-sans);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 24px;
}

.cta-title {
  font: 600 clamp(44px, 5vw, 66px)/1.05 var(--font-display);
  text-transform: uppercase;
  color: #FBF8F2;
  margin: 0 0 18px;
}

.cta-lead {
  font: italic 400 22px/1.5 var(--font-serif);
  color: rgba(255, 255, 255, .85);
  margin: 0 auto 40px;
  max-width: 40ch;
}

.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cta-form__input {
  flex: 1;
  min-width: 210px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 100px;
  background: rgba(255, 255, 255, .12);
  font: 400 15px/1 var(--font-sans);
  color: #FBF8F2;
  outline: none;
}

.cta-form__input::placeholder {
  color: rgba(255, 255, 255, .6);
}

.btn-cta-submit {
  display: inline-flex;
  align-items: center;
  padding: 16px 30px;
  background: #FBF8F2;
  color: var(--accent-deep);
  font: 600 12px/1 var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 0;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s;
}

.btn-cta-submit:hover {
  transform: translateY(-2px);
}

.cta-note {
  font: 400 13px/1.5 var(--font-sans);
  color: rgba(255, 255, 255, .65);
  margin: 18px 0 0;
}

/* Footer */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 56px 6vw 40px;
  gap: 48px;
  flex-wrap: wrap;
  background: var(--paper);
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.footer-brand__mark {
  height: 56px;
  width: auto;
  opacity: .9;
}

.footer-brand__wordmark {
  font: 500 18px/1 var(--font-serif);
  letter-spacing: .32em;
  color: var(--ink);
}

.footer-brand__tagline {
  font: italic 400 15px/1.4 var(--font-serif);
  color: var(--ink-soft);
  margin-top: 8px;
  max-width: 30ch;
}

.footer-nav-groups {
  display: flex;
  gap: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col__title {
  font: 600 11px/1 var(--font-sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
}

.footer-bottom {
  padding: 18px 6vw;
  border-top: 1px solid var(--line);
  font: 400 12px/1 var(--font-sans);
  color: var(--ink-soft);
  background: var(--paper);
}

/* ============================================================
   Shared component library — used across every inner page.
   These are the "block types" a future CMS will compose pages from.
   ============================================================ */

/* ---------------------------------------------------------- */
/* Nav: active state, language toggle, mobile burger + panel   */
/* ---------------------------------------------------------- */

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}

.nav.is-active {
  color: var(--ink);
}

.nav.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--bronze);
  border-radius: 2px;
}

.lang-toggle {
  font: 600 11px/1 var(--font-sans);
  letter-spacing: .12em;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  padding: 7px 12px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.lang-toggle:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, .4);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.site-header[data-menu="open"] .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header[data-menu="open"] .nav-burger span:nth-child(2) {
  opacity: 0;
}

.site-header[data-menu="open"] .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------------------------------------------------------- */
/* Page hero — shorter title hero for every inner page          */
/* ---------------------------------------------------------- */

.page-hero {
  position: relative;
  height: 56vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(160deg, var(--paper-4) 0%, var(--paper-3) 100%);
}

.page-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 17, 14, .35) 0%, rgba(21, 17, 14, .55) 55%, var(--paper) 100%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  padding: 0 6vw 64px;
}

.page-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 600 11px/1 var(--font-sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.page-hero__crumb a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}

.page-hero__crumb a:hover {
  color: var(--ink);
}

.page-hero__title {
  font: 600 clamp(40px, 5.4vw, 72px)/1.02 var(--font-display);
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #FBF8F2;
  margin: 0 0 20px;
  max-width: 18ch;
}

.page-hero__lead {
  font: italic 400 clamp(18px, 1.9vw, 23px)/1.5 var(--font-serif);
  color: rgba(255, 255, 255, .88);
  margin: 0;
  max-width: 46ch;
}

/* ---------------------------------------------------------- */
/* Stat callout row                                             */
/* ---------------------------------------------------------- */

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 36px 28px;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat__num {
  font: 600 clamp(34px, 3.4vw, 50px)/1 var(--font-display);
  color: var(--signal);
  letter-spacing: -.01em;
  margin-bottom: 10px;
}

.stat__label {
  font: 500 13px/1.4 var(--font-sans);
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .06em;
  max-width: 18ch;
}

/* ---------------------------------------------------------- */
/* Service / pricing cards                                      */
/* ---------------------------------------------------------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
}

.service-card--featured {
  border-color: var(--bronze);
  background: var(--paper-4);
  position: relative;
}

.service-card__badge {
  align-self: flex-start;
  margin-bottom: 14px;
}

.service-card__title {
  font: 500 22px/1.3 var(--font-sans);
  color: var(--ink);
  margin: 0 0 6px;
}

.service-card__price {
  font: 600 32px/1 var(--font-display);
  color: var(--signal);
  margin: 4px 0 18px;
}

.service-card__price span {
  font: 400 13px/1 var(--font-sans);
  color: var(--ink-soft);
  margin-left: 4px;
}

.service-card__desc {
  font: 400 14px/1.6 var(--font-sans);
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.service-card__list li {
  font: 400 14px/1.4 var(--font-sans);
  color: var(--ink);
  padding-left: 24px;
  position: relative;
}

.service-card__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--signal);
  font-weight: 600;
}

.service-card__cta {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 100px;
  font: 600 12px/1 var(--font-sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .3);
  color: var(--ink);
  transition: border-color .2s, background .2s;
}

.service-card__cta:hover {
  border-color: var(--bronze);
  background: rgba(255, 255, 255, .05);
}

.service-card--featured .service-card__cta {
  background: var(--accent-deep);
  color: #FBF8F2;
  border-color: var(--accent-deep);
}

/* ---------------------------------------------------------- */
/* Badge / chip                                                 */
/* ---------------------------------------------------------- */

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--signal-soft);
  color: var(--signal);
  font: 600 10.5px/1 var(--font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.chip--outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* ---------------------------------------------------------- */
/* Avatars (photo or initials)                                  */
/* ---------------------------------------------------------- */

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar--initials {
  width: 48px;
  height: 48px;
  background: var(--accent-deep);
  color: #FBF8F2;
  font: 600 15px/1 var(--font-sans);
  letter-spacing: .02em;
}

.avatar--sm {
  width: 48px;
  height: 48px;
}

.avatar--lg {
  width: 96px;
  height: 96px;
  font-size: 26px;
  margin-bottom: 20px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------------------------------------------- */
/* Testimonial card                                             */
/* ---------------------------------------------------------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card__quote {
  font: italic 400 19px/1.55 var(--font-serif);
  color: var(--ink);
  margin: 0;
}

.testimonial-card__quote::before {
  content: '\201C';
  color: var(--bronze);
}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__name {
  font: 600 14px/1.3 var(--font-sans);
  color: var(--ink);
}

.testimonial-card__role {
  font: 400 13px/1.3 var(--font-sans);
  color: var(--ink-soft);
  margin-top: 3px;
}

/* ---------------------------------------------------------- */
/* FAQ accordion                                                */
/* ---------------------------------------------------------- */

.faq-list {
  border-top: 1px solid var(--line);
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font: 500 18px/1.4 var(--font-sans);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--bronze);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transition: transform .25s ease;
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.faq-item__a {
  padding: 0 4px 26px;
  max-width: 68ch;
}

.faq-item__a p {
  font: 400 15px/1.7 var(--font-sans);
  color: var(--ink-soft);
  margin: 0;
}

/* ---------------------------------------------------------- */
/* Gallery grid + lightbox                                      */
/* ---------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid > :first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-4);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 6vw;
  background: rgba(12, 9, 7, .92);
  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .7);
}

.lightbox__close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  color: #FBF8F2;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

/* ---------------------------------------------------------- */
/* Partner / logo marquee                                       */
/* ---------------------------------------------------------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  display: flex;
  align-items: center;
  padding: 30px 56px;
  font: 600 20px/1 var(--font-display);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-soft);
  opacity: .7;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------- */
/* Blog / news card                                             */
/* ---------------------------------------------------------- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
}

.blog-card__media {
  height: 190px;
  background: linear-gradient(135deg, var(--paper-4), var(--paper-3));
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-card__date {
  font: 500 12px/1 var(--font-sans);
  color: var(--ink-soft);
  letter-spacing: .04em;
}

.blog-card__title {
  font: 500 20px/1.3 var(--font-sans);
  color: var(--ink);
  margin: 0;
}

.blog-card__excerpt {
  font: 400 14px/1.6 var(--font-sans);
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.blog-card__link {
  font: 600 12px/1 var(--font-sans);
  letter-spacing: .06em;
  color: var(--bronze);
  text-decoration: none;
  margin-top: 4px;
}

/* ---------------------------------------------------------- */
/* Event card                                                   */
/* ---------------------------------------------------------- */

.event-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.event-card {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.event-card__day {
  font: 600 28px/1 var(--font-display);
  color: var(--signal);
}

.event-card__month {
  font: 600 11px/1 var(--font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

.event-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-card__title {
  font: 500 21px/1.3 var(--font-sans);
  color: var(--ink);
  margin: 0;
}

.event-card__meta {
  font: 400 14px/1.5 var(--font-sans);
  color: var(--ink-soft);
  margin: 0;
}

.event-card__cta {
  font: 600 12px/1 var(--font-sans);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 100px;
  padding: 12px 20px;
  white-space: nowrap;
  transition: border-color .2s, background .2s;
}

.event-card__cta:hover {
  border-color: var(--bronze);
  background: rgba(255, 255, 255, .05);
}

/* ---------------------------------------------------------- */
/* Team / about card                                            */
/* ---------------------------------------------------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.team-card__name {
  font: 500 18px/1.3 var(--font-sans);
  color: var(--ink);
  margin: 0 0 4px;
}

.team-card__role {
  font: 400 13px/1.4 var(--font-sans);
  color: var(--bronze);
  margin: 0;
}

/* ---------------------------------------------------------- */
/* Newsletter block                                             */
/* ---------------------------------------------------------- */

.newsletter-section {
  padding: 96px 6vw;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-title {
  font: 600 clamp(30px, 3.2vw, 44px)/1.1 var(--font-display);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
}

.newsletter-lead {
  font: 400 16px/1.6 var(--font-sans);
  color: var(--ink-soft);
  margin: 0 0 32px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form__input {
  flex: 1;
  min-width: 220px;
  padding: 15px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--paper-3);
  font: 400 15px/1 var(--font-sans);
  color: var(--ink);
  outline: none;
}

.newsletter-form__input::placeholder {
  color: var(--ink-soft);
}

.btn-newsletter-submit {
  display: inline-flex;
  align-items: center;
  padding: 15px 26px;
  background: var(--accent-deep);
  color: #FBF8F2;
  font: 600 12px/1 var(--font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  transition: transform .25s;
}

.btn-newsletter-submit:hover {
  transform: translateY(-2px);
}

.newsletter-note {
  font: 400 13px/1.5 var(--font-sans);
  color: var(--ink-soft);
  margin: 16px 0 0;
}

/* ---------------------------------------------------------- */
/* Pulse / EKG divider motif                                    */
/* ---------------------------------------------------------- */

.pulse-divider {
  display: block;
  width: 100%;
  height: 32px;
  color: var(--line);
}

.pulse-divider path {
  stroke: currentColor;
}

/* ---------------------------------------------------------- */
/* Text + image split — image left/right, any page               */
/* ---------------------------------------------------------- */

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  scroll-margin-top: 72px;
  background: var(--paper-2);
}

.story-media {
  position: relative;
  overflow: hidden;
  order: 1;
}

.story-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 50% 30%;
}

.story-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 17, 14, 0) 78%, var(--paper-2) 100%);
  pointer-events: none;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, .06);
}

.story-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px clamp(40px, 5vw, 88px);
  background: var(--paper-2);
  order: 2;
}

.story-title {
  font: 600 clamp(34px, 4vw, 54px)/1.1 var(--font-display);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 26px;
  max-width: 18ch;
}

.story-lead {
  font: italic 400 22px/1.5 var(--font-serif);
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 40ch;
}

.story-body {
  font: 400 16px/1.75 var(--font-sans);
  color: var(--ink-soft);
  margin: 0;
  max-width: 46ch;
}

/* Modifier: put the image on the right instead of the left.
   Markup order stays media-then-text — only the visual order flips,
   so existing (left) usages need no markup changes. */
.story-section--right .story-media {
  order: 2;
}

.story-section--right .story-text {
  order: 1;
}

.story-section--right .story-media::after {
  background: linear-gradient(270deg, rgba(21, 17, 14, 0) 78%, var(--paper-2) 100%);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, .06);
}

/* ---------------------------------------------------------- */
/* USP / icon blocks, 2/3/4 columns                             */
/* ---------------------------------------------------------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.usp-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.usp-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.usp-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.usp-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 100%;
  border: 1px solid var(--line);
  background: var(--paper-4);
  color: var(--bronze);
  margin-bottom: 22px;
}

.usp-item__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.usp-item__title {
  font: 500 19px/1.3 var(--font-sans);
  color: var(--ink);
  margin: 0 0 8px;
}

.usp-item__desc {
  font: 400 15px/1.65 var(--font-sans);
  color: var(--ink-soft);
  margin: 0;
}

/* ---------------------------------------------------------- */
/* Generic cards, 2/3/4 columns                                 */
/* ---------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.card__media {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--paper-4), var(--paper-3));
}

.card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card__title {
  font: 500 20px/1.3 var(--font-sans);
  color: var(--ink);
  margin: 0;
}

.card__desc {
  font: 400 14px/1.6 var(--font-sans);
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.card__link {
  font: 600 12px/1 var(--font-sans);
  letter-spacing: .06em;
  color: var(--bronze);
  text-decoration: none;
  margin-top: 4px;
}

/* ---------------------------------------------------------- */
/* Tekstblok — plain text section, any page                     */
/* ---------------------------------------------------------- */

.text-block {
  max-width: 720px;
}

.text-block--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.text-block p {
  font: 400 16px/1.8 var(--font-sans);
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.text-block p:last-child {
  margin-bottom: 0;
}

/* ---------------------------------------------------------- */
/* Generic section utilities                                    */
/* ---------------------------------------------------------- */

.section-pad {
  padding: 104px 6vw;
}

.section-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.section-header {
  max-width: 640px;
  margin: 0 0 56px;
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font: 600 clamp(32px, 3.6vw, 50px)/1.1 var(--font-display);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
}

.section-lead {
  font: italic 400 20px/1.5 var(--font-serif);
  color: var(--ink-soft);
  margin: 0;
}

body.inner-page {
  background: var(--paper);
  color: var(--ink);
}

.bg-paper { background: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }
.bg-paper-3 { background: var(--paper-3); }
.bg-paper-4 { background: var(--paper-4); }

.border-y {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------------------------------------------------------- */
/* Responsive                                                    */
/* ---------------------------------------------------------- */

/* Below this, the header pill (up to 1180px wide) can reach far
   enough right to crowd the floating gender switch — hide it rather
   than let them collide. */
@media (max-width: 1399px) {
  .gender-switch {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-burger {
    display: flex;
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 22px;
    padding: 10px clamp(16px, 4vw, 24px);
  }

  .site-header__menu {
    order: 3;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }

  .site-header[data-menu="open"] .site-header__menu {
    max-height: 480px;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 4px 8px;
  }

  .nav {
    padding: 8px 0;
  }

  .site-actions {
    flex-wrap: wrap;
    padding: 8px 4px 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .site-logo__mark {
    height: 64px;
    margin: -18px 0 -16px;
  }
}

@media (max-width: 760px) {
  .story-section,
  .distinct-grid,
  .steps-grid,
  .stat-row,
  .testimonial-grid,
  .blog-grid,
  .team-grid,
  .service-grid,
  .gallery-grid,
  .usp-grid,
  .card-grid {
    grid-template-columns: 1fr !important;
  }

  .story-media,
  .story-text {
    order: initial !important;
  }

  .gallery-grid > :first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat:first-child {
    border-top: 0;
  }

  .event-card {
    grid-template-columns: 72px 1fr;
  }

  .event-card__cta {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-nav-groups {
    gap: 32px;
    flex-wrap: wrap;
  }
}
