:root {
  --ink: #101014;
  --ink-soft: #2c2b31;
  --paper: #f6f1e8;
  --paper-warm: #fff9ef;
  --acid: #c5f33c;
  --coral: #ff6b57;
  --cyan: #69d8ff;
  --violet: #7a5cff;
  --line: rgba(16, 16, 20, 0.14);
  --shadow: 0 22px 60px rgba(16, 16, 20, 0.16);
  --font-body: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Roboto Slab", Georgia, serif;
  --shell: min(80vw, 1400px);
  --step-1: clamp(0.92rem, 0.9rem + 0.1vw, 1rem);
  --step-2: clamp(1.06rem, 1rem + 0.35vw, 1.25rem);
  --step-3: clamp(1.35rem, 1.2rem + 0.9vw, 1.9rem);
  --step-4: clamp(2.2rem, 1.5rem + 4.2vw, 5.8rem);
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

html {
  scroll-behavior: smooth;
}

body.home-page {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

.home-page a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 16px;
  top: 16px;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.home-page :focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.home-shell {
  width: var(--shell);
  margin-inline: auto;
}

body.home-page #header {
  position: relative;
  z-index: 1001;
  height: 72px;
  background: rgba(246, 241, 232, 0.9);
  border-bottom: 1px solid rgba(16, 16, 20, 0.11);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

body.home-page #header .container {
  width: var(--shell);
  max-width: none;
  padding: 0;
}

body.home-page #header .logo h1,
body.home-page #header .logo .site-title {
  padding: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.88rem + 0.4vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0;
}

body.home-page #header .logo h1 a,
body.home-page #header .logo .site-title a {
  color: var(--ink);
}

body.home-page .navbar a {
  padding: 12px 0 12px 28px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 760;
}

body.home-page .navbar a:hover,
body.home-page .navbar .active {
  color: var(--coral);
}

body.home-page .mobile-nav-toggle {
  color: var(--ink);
}

body.home-page .navbar-mobile {
  z-index: 1002;
  background: rgba(16, 16, 20, 0.62);
}

body.home-page .navbar-mobile ul {
  border-radius: 0;
  background: var(--ink);
}

body.home-page .navbar-mobile a,
body.home-page .navbar-mobile .active {
  color: var(--paper-warm);
}

.home-hero {
  position: relative;
  min-height: min(860px, 92vh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper-warm);
  background: var(--ink);
  padding: 128px 0 64px;
}

.home-hero__media,
.home-hero__media::after,
.home-hero__grain {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.1);
  transform: scale(1.02);
}

.home-hero__media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.96), rgba(16, 16, 20, 0.58) 48%, rgba(16, 16, 20, 0.18)),
    linear-gradient(0deg, rgba(16, 16, 20, 0.94), rgba(16, 16, 20, 0.1) 42%);
}

.home-hero__grain {
  z-index: -1;
  opacity: 0.42;
  background-image:
    linear-gradient(115deg, transparent 0 68%, rgba(215, 255, 63, 0.18) 68% 70%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 80px);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.52fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
}

.kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--paper-warm);
  font-size: var(--step-4);
  font-weight: 900;
  line-height: 0.95;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 249, 239, 0.86);
  font-size: var(--step-2);
  line-height: 1.45;
}

.hero-actions,
.request-band__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button--primary {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}

.button--ghost {
  color: var(--paper-warm);
  border-color: rgba(255, 249, 239, 0.48);
  background: rgba(255, 249, 239, 0.06);
}

.button--ghost:hover {
  border-color: var(--paper-warm);
  color: var(--paper-warm);
}

.hero-board {
  background: rgba(16, 16, 20, 0.72);
  border: 1px solid rgba(255, 249, 239, 0.22);
  box-shadow: 22px 22px 0 rgba(215, 255, 63, 0.16);
}

.hero-board__topline,
.hero-board__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 249, 239, 0.16);
}

.hero-board__topline {
  grid-template-columns: 1fr auto;
  color: var(--acid);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-board__topline strong {
  font-size: 2rem;
  line-height: 0.9;
}

.hero-board__item {
  color: var(--paper-warm);
  text-decoration: none;
}

.hero-board__item:last-child {
  border-bottom: 0;
}

.hero-board__item span {
  color: var(--coral);
  font-weight: 900;
}

.hero-board__item strong,
.hero-board__item small {
  grid-column: 2;
}

.hero-board__item strong {
  margin-top: 0px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.hero-board__item small {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 249, 239, 0.68);
  font-size: 0.86rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-board__item:hover {
  background: rgba(255, 249, 239, 0.08);
  color: var(--acid);
}

.hero-scroll {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 28px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 249, 239, 0.44);
  color: var(--paper-warm);
}

.intro-strip {
  padding: 0;
  background: var(--acid);
  color: var(--ink);
}

.intro-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: stretch;
}

.intro-strip p {
  margin: 0;
  padding: 26px 0;
  font-size: var(--step-2);
  font-weight: 820;
  line-height: 1.25;
}

.intro-strip__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(16, 16, 20, 0.2);
}

.intro-strip__stats span {
  display: grid;
  align-content: center;
  min-height: 120px;
  padding: 20px;
  border-right: 1px solid rgba(16, 16, 20, 0.2);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.intro-strip__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.1rem + 1.5vw, 3rem);
  line-height: 0.95;
}

.workshop-discovery {
  padding: clamp(66px, 9vw, 132px) 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.055) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--paper);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 68px);
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 1.6rem + 3.2vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
}

.section-heading p:last-child {
  margin: 0;
  color: rgba(16, 16, 20, 0.72);
  font-size: var(--step-2);
}

.discovery-layout {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 2px;
  max-height: calc(100vh - 2px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--ink);
  color: var(--paper-warm);
  box-shadow: 12px 12px 0 rgba(255, 107, 87, 0.2);
}

.filter-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0px 0px 0px 18px;
  /* border-bottom: 1px solid rgba(255, 249, 239, 0.15);*/
  color: var(--acid);
  font-weight: 900;
  text-transform: uppercase;
}

.filter-reset {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 249, 239, 0.3);
  background: transparent;
  color: var(--paper-warm);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.filter-reset:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.filter-group {
  margin: 0;
  padding: 18px;
  border: 0;
  /* border-bottom: 1px solid rgba(255, 249, 239, 0.15); */
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-group legend {
  float: none;
  width: auto;
  margin: 0px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-choice {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  margin: 0;
  color: rgba(255, 249, 239, 0.78);
  cursor: pointer;
}

.filter-choice input {
  position: absolute;
  opacity: 0;
}

.filter-choice__mark {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 249, 239, 0.55);
  background: transparent;
}

.filter-choice input:checked + .filter-choice__mark {
  border-color: var(--acid);
  background: var(--acid);
  box-shadow: inset 0 0 0 4px var(--ink);
}

.filter-choice:has(input:focus-visible) {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}

.filter-choice__label {
  font-weight: 760;
  line-height: 1.15;
}

.filter-choice__count {
  color: rgba(255, 249, 239, 0.48);
  font-size: 0.78rem;
  font-weight: 900;
}

.catalogue-panel__bar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.catalogue-panel__bar p {
  margin: 0;
}

#nrResults {
  color: var(--ink);
  font-size: var(--step-2);
  font-weight: 900;
}

#nrResults strong {
  font-family: var(--font-display);
  font-size: var(--step-3);
}

.catalogue-hint {
  color: rgba(16, 16, 20, 0.62);
  font-size: 0.94rem;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.workshop-item {
  grid-column: span 4;
  transition: opacity 180ms ease, transform 180ms ease;
}

.workshop-item:nth-child(5n + 1),
.workshop-item:nth-child(5n + 2) {
  grid-column: span 6;
}

.workshop-item.is-hidden {
  display: none;
}

.workshop-card {
  position: relative;
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.workshop-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 16, 20, 0.55);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.workshop-card__number {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  padding: 5px 7px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 950;
}

.workshop-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-soft);
}

.workshop-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.workshop-card:hover .workshop-card__image img {
  transform: scale(1.06);
  filter: saturate(1.14) contrast(1.06);
}

.workshop-card__content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: clamp(16px, 2vw, 24px);
}

.workshop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workshop-card h3 {
  margin: 0;
  min-height: 2.3em;
  color: var(--ink);
  font-size: clamp(1.4rem, 1rem + 1.1vw, 2.3rem);
  font-weight: 900;
  line-height: 1.02;
}

.workshop-card__text {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(16, 16, 20, 0.72);
  font-size: 1rem;
  line-height: 1.45;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.workshop-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 900;
}

.workshop-card__footer i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--ink);
  color: var(--paper-warm);
  transition: background-color 180ms ease, color 180ms ease;
}

.workshop-card:hover .workshop-card__footer i {
  background: var(--coral);
  color: var(--ink);
}

.no-results {
  margin-top: 26px;
  padding: clamp(28px, 6vw, 70px);
  background: var(--ink);
  color: var(--paper-warm);
}

.no-results h3 {
  margin: 0 0 10px;
  color: var(--paper-warm);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 4rem);
}

.no-results p:not(.kicker) {
  max-width: 560px;
  color: rgba(255, 249, 239, 0.78);
}

.request-band {
  padding: clamp(54px, 7vw, 96px) 0;
  background: var(--ink);
  color: var(--paper-warm);
}

.request-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.72fr) auto;
  align-items: center;
  gap: 28px;
}

.request-band h2 {
  margin: 0;
  color: var(--paper-warm);
  font-size: clamp(2rem, 1.5rem + 2.3vw, 4.2rem);
  font-weight: 900;
  line-height: 0.98;
}

.request-band p:not(.kicker) {
  margin: 0;
  color: rgba(255, 249, 239, 0.76);
  font-size: var(--step-2);
}

body.home-page .contact {
  padding: clamp(58px, 8vw, 108px) 0;
  background: var(--paper-warm);
}

body.home-page .contact .container {
  width: var(--shell);
  max-width: none;
  padding: 0;
}

body.home-page .contact-about h3,
body.home-page .portfolio-info h2 {
  color: var(--ink) !important;
  font-family: var(--font-display);
  font-weight: 900;
}

body.home-page .contact .portfolio-info {
  border: 1px solid var(--line);
  background: #fffdf8;
  box-shadow: 12px 12px 0 rgba(105, 216, 255, 0.18);
}

body.home-page .form-control {
  min-height: 48px;
  border: 1px solid rgba(16, 16, 20, 0.2);
  border-radius: 0;
  font-family: var(--font-body);
}

body.home-page textarea.form-control {
  min-height: 132px;
}

body.home-page .versturen {
  background: var(--ink);
  border: 0;
  border-radius: 0 !important;
  color: var(--paper-warm);
  font-family: var(--font-body);
  font-weight: 900;
}

body.home-page .versturen:hover {
  background: var(--coral);
  color: var(--ink);
}

body.home-page #footer {
  background: var(--ink);
  color: rgba(255, 249, 239, 0.72);
}

body.home-page #footer a {
  color: var(--acid);
}

body.home-page .back-to-top {
  border-radius: 0;
  background: var(--ink);
}

@media (max-width: 1100px) {
  .home-hero__grid,
  .intro-strip__grid,
  .section-heading--split,
  .discovery-layout,
  .request-band__grid {
    grid-template-columns: 1fr;
  }

  .hero-board,
  .filter-panel {
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
  }

  .intro-strip__stats {
    border-left: 0;
  }

  .workshop-item,
  .workshop-item:nth-child(5n + 1),
  .workshop-item:nth-child(5n + 2) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100vw - 28px, 680px);
  }

  body.home-page #header {
    height: 64px;
  }

  .home-hero {
    min-height: auto;
    padding: 112px 0 42px;
  }

  .home-hero__media::after {
    background:
      linear-gradient(0deg, rgba(16, 16, 20, 0.96), rgba(16, 16, 20, 0.56) 58%, rgba(16, 16, 20, 0.28)),
      linear-gradient(90deg, rgba(16, 16, 20, 0.86), rgba(16, 16, 20, 0.2));
  }

  .hero-board {
    box-shadow: 8px 8px 0 rgba(215, 255, 63, 0.16);
  }

  .hero-scroll {
    display: none;
  }

  .intro-strip__stats,
  .workshop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-strip__stats span {
    min-height: 98px;
    padding: 16px;
  }

  .workshop-item,
  .workshop-item:nth-child(5n + 1),
  .workshop-item:nth-child(5n + 2) {
    grid-column: 1 / -1;
  }

  .catalogue-panel__bar {
    display: grid;
    align-items: start;
  }

  .filter-groups {
    display: grid;
  }

  .filter-choice {
    min-height: 44px;
  }

  .workshop-card {
    grid-template-columns: 38% 1fr;
    grid-template-rows: auto;
  }

  .workshop-card__image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 230px;
  }

  .workshop-card__content {
    padding: 16px;
  }

  .workshop-card h3 {
    min-height: auto;
    font-size: 1.35rem;
  }

  .workshop-card__text {
    -webkit-line-clamp: 4;
  }
}

@media (max-width: 480px) {
  :root {
    --shell: min(100vw - 22px, 460px);
  }

  .home-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero-actions .button,
  .request-band .button {
    width: 100%;
  }

  .hero-board__topline,
  .hero-board__item {
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }

  .intro-strip__stats {
    grid-template-columns: 1fr;
  }

  .workshop-card {
    grid-template-columns: 1fr;
  }

  .workshop-card__image {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .filter-panel__header,
  .filter-group {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.home-hero__copy,
.hero-board,
.discovery-layout,
.catalogue-panel,
.filter-panel,
.workshop-card,
.request-band__grid > * {
  min-width: 0;
}

@media (max-width: 760px) {
  .hero-board {
    display: none;
  }

  .home-hero {
    min-height: min(720px, 88vh);
    align-items: center;
  }
}

@media (max-width: 480px) {
  body.home-page {
    overflow-x: hidden;
  }
}

body.home-page .contact .row {
  --bs-gutter-x: 0;
  margin-left: 0;
  margin-right: 0;
}

body.home-page .contact [class*="col-"] {
  min-width: 0;
}

/* Refinements requested after first design pass */
.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4,
.home-page h5,
.home-page h6,
.button,
.filter-choice__label,
.hero-board__item strong,
.workshop-card__meta,
.workshop-card__footer,
.catalogue-hint,
#nrResults,
body.home-page #header .logo .site-title,
body.home-page #header .logo h1 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  letter-spacing: 0;
}

.home-hero h1,
.section-heading h2,
.request-band h2 {
  font-weight: 800;
}

.workshop-card h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.workshop-card__content,
.hero-board__item,
.intro-strip__stats span,
.filter-choice,
.catalogue-panel__bar,
.request-band__grid {
  min-width: 0;
}

.workshop-card__footer span,
.button,
.filter-reset {
  white-space: normal;
  text-align: center;
}

.filter-choice__label {
  min-width: 0;
}

@media (min-width: 1200px) {
  .home-shell,
  body.home-page #header .container,
  body.home-page .contact .container {
    width: 80%;
    max-width: 1400px;
  }
}

@media (max-width: 1199px) and (min-width: 761px) {
  :root {
    --shell: min(92vw, 1040px);
  }
}

/* Product detail page */
body.detail-page {
  background: var(--paper);
}

.detail-hero {
  position: relative;
  min-height: min(780px, 88vh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper-warm);
  background: var(--ink);
  padding: 128px 0 64px;
}

.detail-hero__media,
.detail-hero__media::after,
.detail-hero__grain {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.02);
}

.detail-hero__media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.96), rgba(16, 16, 20, 0.62) 48%, rgba(16, 16, 20, 0.22)),
    linear-gradient(0deg, rgba(16, 16, 20, 0.92), rgba(16, 16, 20, 0.18) 50%);
}

.detail-hero__grain {
  z-index: -1;
  opacity: 0.42;
  background-image:
    linear-gradient(115deg, transparent 0 66%, rgba(215, 255, 63, 0.16) 66% 68%, transparent 68%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 80px);
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.48fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: rgba(255, 249, 239, 0.78);
  font-weight: 900;
  text-decoration: none;
}

.detail-back:hover {
  color: var(--acid);
}

.detail-hero h1 {
  max-width: 940px;
  margin: 0;
  color: var(--paper-warm);
  font-size: var(--step-4);
  font-weight: 800;
  line-height: 0.95;
}

.detail-snapshot,
.detail-panel {
  background: rgba(16, 16, 20, 0.78);
  border: 1px solid rgba(255, 249, 239, 0.2);
  color: var(--paper-warm);
  box-shadow: 18px 18px 0 rgba(215, 255, 63, 0.14);
}

.detail-snapshot__badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 249, 239, 0.15);
  color: var(--acid);
  font-weight: 900;
  text-transform: uppercase;
}

.detail-snapshot p {
  margin: 0;
  padding: 20px;
  color: rgba(255, 249, 239, 0.82);
  font-size: var(--step-2);
  line-height: 1.38;
}

.detail-checks {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 249, 239, 0.15);
}

.detail-checks li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 249, 239, 0.12);
  color: rgba(255, 249, 239, 0.82);
  font-weight: 760;
}

.detail-checks li:last-child {
  border-bottom: 0;
}

.detail-checks i {
  color: var(--coral);
}

.detail-content {
  padding: clamp(66px, 9vw, 124px) 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.055) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--paper);
}

.detail-content__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.detail-main,
.detail-sidebar {
  min-width: 0;
}

.detail-gallery {
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-gallery .swiper-slide {
  aspect-ratio: 16 / 10;
  background: var(--ink-soft);
}

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

.detail-gallery .swiper-pagination {
  position: relative;
  margin: 0;
  padding: 14px 0 16px;
  background: var(--ink);
}

.detail-gallery .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  border: 1px solid var(--paper-warm);
  background: transparent;
  opacity: 1;
}

.detail-gallery .swiper-pagination-bullet-active {
  background: var(--acid);
  border-color: var(--acid);
}

.detail-story {
  margin-top: 30px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.detail-story h2,
.detail-panel h2 {
  margin: 0;
  color: var(--ink) !important;
  font-size: clamp(2rem, 1.35rem + 2.4vw, 4.4rem);
  font-weight: 900;
  line-height: 0.98;
}

.detail-story__text {
  margin-top: 22px;
  color: rgba(16, 16, 20, 0.76);
  font-size: var(--step-2);
  line-height: 1.55;
}

.detail-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 22px;
}


.detail-panel {
  padding: clamp(22px, 3vw, 32px);
  background: #fffdf8;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 12px 12px 0 rgba(105, 216, 255, 0.18);
}

.detail-panel p:not(.kicker) {
  margin: 16px 0 0;
  color: rgba(16, 16, 20, 0.7);
  font-size: 1.05rem;
}

.detail-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.detail-form .form-group {
  margin: 0;
}

.detail-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.detail-quote {
  background: var(--ink);
  color: var(--paper-warm);
  box-shadow: 12px 12px 0 rgba(255, 107, 87, 0.18);
}

.detail-quote blockquote {
  position: relative;
  margin: 0;
  color: rgba(255, 249, 239, 0.82);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
}

.detail-quote blockquote::before {
  content: "\201C";
  display: block;
  color: var(--coral);
  font-size: 4rem;
  line-height: 0.8;
}

.detail-related {
  padding: clamp(66px, 9vw, 124px) 0;
  background: var(--paper-warm);
}

.detail-stats {
  margin-top: 0;
}

body.detail-page .workshop-grid .workshop-item,
body.detail-page .workshop-grid .workshop-item:nth-child(5n + 1),
body.detail-page .workshop-grid .workshop-item:nth-child(5n + 2) {
  grid-column: span 3;
}

.detail-page .detail-hero h1,
.detail-page .detail-story h2,
.detail-page .detail-panel h2,
.detail-page .detail-snapshot,
.detail-page .detail-checks li,
.detail-page .detail-back {
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (max-width: 1100px) {
  .detail-hero__grid,
  .detail-content__grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: relative;
    top: auto;
  }

  body.detail-page .workshop-grid .workshop-item,
  body.detail-page .workshop-grid .workshop-item:nth-child(5n + 1),
  body.detail-page .workshop-grid .workshop-item:nth-child(5n + 2) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .detail-hero {
    min-height: auto;
    padding: 108px 0 42px;
  }

  .detail-hero__media::after {
    background:
      linear-gradient(0deg, rgba(16, 16, 20, 0.96), rgba(16, 16, 20, 0.56) 58%, rgba(16, 16, 20, 0.28)),
      linear-gradient(90deg, rgba(16, 16, 20, 0.86), rgba(16, 16, 20, 0.2));
  }

  .detail-snapshot,
  .detail-panel {
    box-shadow: 8px 8px 0 rgba(215, 255, 63, 0.14);
  }

  .detail-gallery .swiper-slide {
    aspect-ratio: 4 / 3;
  }

  body.detail-page .workshop-grid .workshop-item,
  body.detail-page .workshop-grid .workshop-item:nth-child(5n + 1),
  body.detail-page .workshop-grid .workshop-item:nth-child(5n + 2) {
    grid-column: 1 / -1;
  }
}
/* Follow-up refinements for detail hero and footer contact */
.detail-hero__grid {
  position: relative;
}

.detail-hero__cjp {
  position: absolute;
  right: 0;
  top: -54px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  padding: 10px 12px 10px 10px;
  background: rgba(255, 249, 239, 0.94);
  color: var(--ink);
  border: 1px solid rgba(255, 249, 239, 0.72);
  box-shadow: 10px 10px 0 rgba(255, 107, 87, 0.24);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.detail-hero__cjp img {
  width: 70px;
  height: auto;
  flex: 0 0 auto;
}

.detail-hero__copy {
  position: relative;
}

.detail-hero__copy::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 72px;
  bottom: 10px;
  width: 7px;
  background: linear-gradient(var(--acid), var(--coral));
  box-shadow: 12px 0 0 rgba(105, 216, 255, 0.34);
}

.detail-hero h1 {
  display: inline;
  padding: 0 0.06em;
  background:
    linear-gradient(transparent 58%, rgba(197, 243, 60, 0.22) 58% 88%, transparent 88%),
    linear-gradient(90deg, rgba(255, 249, 239, 0.03), rgba(255, 249, 239, 0));
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.detail-hero__lede {
  position: relative;
  max-width: 720px;
  margin-top: 34px;
  padding: 18px 0 0 22px;
  border-top: 1px solid rgba(255, 249, 239, 0.28);
}

.detail-hero__lede::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: calc(100% - 18px);
  background: var(--coral);
}

.detail-hero__lede span {
  display: block;
}

.detail-panel--form h2 {
  font-size: clamp(1.45rem, 1.15rem + 1vw, 2.35rem);
  line-height: 1.05;
}

body.home-page .site-contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.045) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--paper-warm);
}

body.home-page .site-contact .row {
  align-items: stretch;
}

body.home-page .site-contact .contact-about,
body.home-page .site-contact__info,
body.home-page .site-contact__form-card {
  height: 100%;
}

body.home-page .site-contact .contact-about,
body.home-page .site-contact__info {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: #fffdf8;
}

body.home-page .site-contact .contact-about h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 1.25rem + 1vw, 2.4rem);
  line-height: 1;
}

body.home-page .site-contact .contact-about p,
body.home-page .site-contact .info p {
  color: rgba(16, 16, 20, 0.72);
  font-family: var(--font-body) !important;
  font-size: 1rem;
  line-height: 1.45;
}

body.home-page .site-contact .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

body.home-page .site-contact .social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper-warm);
  border-radius: 0;
}

body.home-page .site-contact .social-links a i {
  color: var(--paper-warm) !important;
}

body.home-page .site-contact .social-links a:hover {
  background: var(--coral);
  color: var(--ink);
}

body.home-page .site-contact .social-links a:hover i {
  color: var(--ink) !important;
}

body.home-page .site-contact .info > div {
  align-items: flex-start !important;
  gap: 12px;
  margin-top: 0 !important;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

body.home-page .site-contact .info > div + div {
  margin-top: 18px !important;
}

body.home-page .site-contact .info > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body.home-page .site-contact .info i {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-size: 1.05rem;
}

body.home-page .site-contact__form-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--ink) !important;
  color: var(--paper-warm);
  box-shadow: 14px 14px 0 rgba(105, 216, 255, 0.18) !important;
}

body.home-page .site-contact__form-card h2 {
  margin: 0 0 22px;
  color: var(--paper-warm) !important;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.45rem + 1.9vw, 3.7rem);
  font-weight: 900;
  line-height: 0.98;
}

body.home-page .site-contact__form-card .php-email-form {
  display: grid;
  gap: 14px;
}

body.home-page .site-contact__form-card .form-group {
  margin: 0 !important;
}

body.home-page .site-contact__form-card .form-control {
  min-height: 52px;
  border: 1px solid rgba(255, 249, 239, 0.2);
  background: rgba(255, 249, 239, 0.08);
  color: var(--paper-warm);
}

body.home-page .site-contact__form-card .form-control::placeholder {
  color: rgba(255, 249, 239, 0.58);
}

body.home-page .site-contact__form-card .form-control:focus {
  border-color: var(--acid);
  background: rgba(255, 249, 239, 0.12);
  box-shadow: none;
  color: var(--paper-warm);
}

body.home-page .site-contact__submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

body.home-page .site-contact__submit:hover {
  color: var(--ink);
}

@media (max-width: 1100px) {
  .detail-hero__cjp {
    position: relative;
    top: auto;
    right: auto;
    grid-row: 1;
    justify-self: start;
    margin-bottom: 10px;
  }
}

@media (max-width: 760px) {
  .detail-hero__copy::before {
    left: 0;
    top: 62px;
    bottom: auto;
    width: 82px;
    height: 6px;
    box-shadow: 0 12px 0 rgba(105, 216, 255, 0.34);
  }

  .detail-hero__cjp {
    max-width: 100%;
  }

  body.home-page .site-contact .contact-about,
  body.home-page .site-contact__info,
  body.home-page .site-contact__form-card {
    height: auto;
  }
}
/* Header wordmark and detail snapshot polish */
body.home-page #header .logo h1,
body.home-page #header .logo .site-title {
  line-height: 1;
}

body.home-page #header .brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark__icon {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 6px 6px 0 rgba(255, 107, 87, 0.26);
}

.brand-mark__icon::before {
  content: "";
  position: absolute;
  inset: auto -12px -10px auto;
  width: 32px;
  height: 32px;
  border: 7px solid rgba(16, 16, 20, 0.16);
  transform: rotate(18deg);
}

.brand-mark__text {
  display: grid;
  gap: 1px;
  font-family: var(--font-body);
  line-height: 0.94;
  text-transform: uppercase;
}

.brand-mark__text span,
.brand-mark__text strong {
  display: block;
  letter-spacing: 0;
}

.brand-mark__text span {
  font-size: 0.78rem;
  font-weight: 850;
  color: rgba(16, 16, 20, 0.68);
}

.brand-mark__text strong {
  font-size: clamp(1.08rem, 0.98rem + 0.36vw, 1.34rem);
  font-weight: 950;
  color: var(--ink);
}

body.home-page #header .brand-mark:hover .brand-mark__icon {
  background: var(--coral);
}

.detail-snapshot {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.08), rgba(255, 249, 239, 0) 42%),
    var(--ink);
}

.detail-snapshot::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(var(--acid), var(--coral));
}

.detail-snapshot::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 128px;
  height: 128px;
  border: 18px solid rgba(197, 243, 60, 0.14);
  transform: rotate(12deg);
}

.detail-snapshot__badge,
.detail-snapshot p,
.detail-checks {
  position: relative;
  z-index: 1;
}

.detail-snapshot__badge {
  padding-left: 24px;
  background: rgba(255, 249, 239, 0.04);
}

.detail-snapshot__badge i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
}

.detail-snapshot p {
  padding: 24px 24px 22px;
  font-family: var(--font-display);
  font-weight: 750;
}

.detail-checks li {
  grid-template-columns: 36px 1fr;
  align-items: center;
  min-height: 58px;
  padding: 14px 22px 14px 24px;
}

.detail-checks i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: rgba(197, 243, 60, 0.16);
  color: var(--acid);
  font-size: 1.05rem;
}

.detail-checks li:nth-child(even) i {
  background: rgba(255, 107, 87, 0.16);
  color: var(--coral);
}

.detail-checks li:hover {
  background: rgba(255, 249, 239, 0.06);
}

@media (max-width: 760px) {
  .brand-mark__icon {
    width: 40px;
    height: 40px;
    box-shadow: 5px 5px 0 rgba(255, 107, 87, 0.24);
  }

  .brand-mark__text span {
    font-size: 0.68rem;
  }

  .brand-mark__text strong {
    font-size: 1rem;
  }
}
/* Homepage CJP badge */
.home-hero__grid {
  position: relative;
}

.home-hero__cjp {
  position: absolute;
  right: 0;
  top: -54px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  padding: 10px 12px 10px 10px;
  background: rgba(255, 249, 239, 0.94);
  color: var(--ink);
  border: 1px solid rgba(255, 249, 239, 0.72);
  box-shadow: 10px 10px 0 rgba(255, 107, 87, 0.24);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.home-hero__cjp img {
  width: 70px;
  height: auto;
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .home-hero__cjp {
    position: relative;
    top: auto;
    right: auto;
    grid-row: 1;
    justify-self: start;
    margin-bottom: 10px;
  }
}

@media (max-width: 760px) {
  .home-hero__cjp {
    max-width: 100%;
  }
}
/* Product hero question CTA */
.detail-hero__cta,
.detail-hero__cta:hover,
.detail-hero__cta:focus {
  color: var(--ink);
}

#vragen-workshop {
  scroll-margin-top: 104px;
}
body.detail-page .detail-hero .hero-actions a.detail-hero__cta,
body.detail-page .detail-hero .hero-actions a.detail-hero__cta:visited,
body.detail-page .detail-hero .hero-actions a.detail-hero__cta:hover,
body.detail-page .detail-hero .hero-actions a.detail-hero__cta:focus {
  color: #101014 !important;
}

body.detail-page #vragen-workshop {
  scroll-margin-top: 120px;
}
body.home-page .home-hero .hero-actions a.button--primary,
body.home-page .home-hero .hero-actions a.button--primary:visited,
body.home-page .home-hero .hero-actions a.button--primary:hover,
body.home-page .home-hero .hero-actions a.button--primary:focus {
  color: #101014 !important;
}
/* About page */
.about-page {
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 80px 80px;
}

.about-hero {
  position: relative;
  min-height: min(820px, 91vh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 136px 0 72px;
  color: var(--paper-warm);
  background: var(--ink);
}

.about-hero__media,
.about-hero__media::after,
.about-hero__texture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
}

.about-hero__media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.95), rgba(16, 16, 20, 0.7) 47%, rgba(16, 16, 20, 0.2)),
    linear-gradient(0deg, rgba(16, 16, 20, 0.9), rgba(16, 16, 20, 0.12) 52%);
}

.about-hero__texture {
  z-index: -1;
  opacity: 0.78;
  background:
    linear-gradient(135deg, transparent 0 56%, rgba(197, 243, 60, 0.2) 56% 58%, transparent 58%),
    repeating-linear-gradient(0deg, rgba(255, 249, 239, 0.08) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, rgba(255, 249, 239, 0.06) 0 1px, transparent 1px 72px);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 86px);
  align-items: end;
}

.about-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--paper-warm);
  font-size: var(--step-4);
  font-weight: 900;
  line-height: 0.95;
}

.about-ticket {
  position: relative;
  padding: 28px;
  background: rgba(255, 249, 239, 0.95);
  color: var(--ink);
  box-shadow: 14px 14px 0 rgba(255, 107, 87, 0.28);
}

.about-ticket::before {
  content: "";
  position: absolute;
  inset: -14px auto auto -14px;
  width: 76px;
  height: 76px;
  border: 12px solid rgba(197, 243, 60, 0.82);
}

.about-ticket__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--paper-warm);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.about-ticket strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1;
}

.about-ticket p {
  margin: 18px 0 0;
  color: rgba(16, 16, 20, 0.74);
  font-weight: 650;
}

.about-manifest {
  padding: clamp(54px, 8vw, 112px) 0;
  background: var(--acid);
}

.about-manifest__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.about-manifest h2,
.about-lab__panel h2,
.about-values h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 1.25rem + 3vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
}

.about-manifest p:not(.kicker) {
  margin: 0;
  color: rgba(16, 16, 20, 0.78);
  font-size: var(--step-2);
  font-weight: 700;
}

.about-lab {
  padding: clamp(54px, 8vw, 118px) 0;
}

.about-lab__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-lab__panel {
  min-height: 430px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper-warm);
}

.about-lab__panel--image {
  padding: 0;
  overflow: hidden;
}

.about-lab__panel--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-lab__panel--dark {
  background: var(--ink);
  color: var(--paper-warm);
}

.about-lab__panel span {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  background: var(--coral);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
}

.about-lab__panel--dark span {
  background: var(--acid);
}

.about-lab__panel h2 {
  font-size: clamp(1.65rem, 1.15rem + 1.4vw, 3rem);
}

.about-lab__panel--dark h2 {
  color: var(--paper-warm);
}

.about-lab__panel p {
  margin: 22px 0 0;
  color: rgba(16, 16, 20, 0.72);
  font-size: var(--step-2);
  font-weight: 650;
}

.about-lab__panel--dark p {
  color: rgba(255, 249, 239, 0.78);
}

.about-numbers {
  padding: 0 0 clamp(54px, 8vw, 112px);
}

.about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.about-numbers__grid div {
  min-height: 176px;
  padding: 24px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.about-numbers strong {
  display: block;
  color: var(--coral);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.5rem + 2.6vw, 5rem);
  line-height: 0.95;
}

.about-numbers span {
  display: block;
  max-width: 160px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-values {
  padding: clamp(58px, 8vw, 116px) 0;
  background: var(--paper-warm);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.about-values__grid article {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.about-values__grid i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 24px;
  background: var(--acid);
  color: var(--acid);
  font-size: 1.35rem;
}

.about-values__grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--step-3);
  font-weight: 900;
}

.about-values__grid p {
  margin: 14px 0 0;
  color: rgba(16, 16, 20, 0.72);
  font-size: var(--step-2);
}

.about-cta {
  background: var(--ink);
}

@media (max-width: 1100px) {
  .about-hero__grid,
  .about-manifest__grid {
    grid-template-columns: 1fr;
  }

  .about-ticket {
    max-width: 520px;
  }

  .about-lab__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-numbers__grid,
  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-hero {
    min-height: auto;
    padding: 116px 0 54px;
  }

  .about-lab__grid,
  .about-numbers__grid,
  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-lab__panel {
    min-height: auto;
  }

  .about-lab__panel--image {
    aspect-ratio: 4 / 3;
  }
}
/* FAQ page */
.faq-page {
  background: var(--paper);
}

.faq-hero {
  position: relative;
  min-height: min(720px, 86vh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 128px 0 64px;
  background: var(--ink);
  color: var(--paper-warm);
}

.faq-hero__media,
.faq-hero__media::after {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.faq-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
}

.faq-hero__media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(16, 16, 20, 0.96), rgba(16, 16, 20, 0.66) 52%, rgba(16, 16, 20, 0.28)),
    linear-gradient(0deg, rgba(16, 16, 20, 0.92), rgba(16, 16, 20, 0.2) 58%);
}

.faq-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.faq-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--paper-warm);
  font-size: var(--step-5);
  font-weight: 800;
  line-height: 0.92;
}

.faq-hero__card {
  padding: 24px;
  background: rgba(16, 16, 20, 0.82);
  border: 1px solid rgba(255, 249, 239, 0.22);
  box-shadow: 18px 18px 0 rgba(215, 255, 63, 0.14);
}

.faq-hero__card span {
  display: block;
  margin-bottom: 18px;
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-hero__card strong {
  display: block;
  color: var(--paper-warm);
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.02;
}

.faq-hero__card p {
  margin: 18px 0 0;
  color: rgba(255, 249, 239, 0.78);
  font-size: var(--step-1);
}

.faq-page-section {
  padding: clamp(58px, 8vw, 116px) 0;
  background: var(--paper-warm);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-nav span,
.faq-nav a {
  padding: 15px 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
}

.faq-nav span {
  background: var(--ink);
  color: var(--acid);
  text-transform: uppercase;
}

.faq-nav a:hover {
  background: var(--acid);
  color: var(--ink);
}

.faq-content .section-heading {
  margin-bottom: 34px;
}

.faq-content .section-heading h2 {
  max-width: 760px;
}

.faq-category {
  scroll-margin-top: 104px;
  margin-top: 42px;
}

.faq-category:first-of-type {
  margin-top: 0;
}

.faq-category h3 {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: var(--step-3);
  font-weight: 900;
}

.faq-category details {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq-category details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-category summary {
  display: grid;
  grid-template-columns: 1fr 36px;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 850;
  line-height: 1.12;
  cursor: pointer;
  list-style: none;
}

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

.faq-category summary::after {
  content: "+";
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 900;
}

.faq-category details[open] summary::after {
  content: "-";
  background: var(--coral);
}

.faq-category details > div {
  max-width: 860px;
  padding: 0 24px 24px;
  color: rgba(16, 16, 20, 0.74);
  font-size: var(--step-1);
}

.faq-category p {
  margin: 0;
}

.faq-category p + p {
  margin-top: 12px;
}

.faq-cta {
  background: var(--ink);
}

@media (max-width: 1100px) {
  .faq-hero__grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-hero__card {
    max-width: 560px;
  }

  .faq-nav {
    position: relative;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-nav span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .faq-hero {
    min-height: auto;
    padding: 116px 0 54px;
  }

  .faq-nav {
    grid-template-columns: 1fr;
  }

  .faq-category summary {
    padding: 18px 16px;
    grid-template-columns: 1fr 32px;
  }

  .faq-category summary::after {
    width: 32px;
    height: 32px;
  }

  .faq-category details > div {
    padding: 0 16px 20px;
  }
}

@media (max-width: 991px) {
  body.home-page #header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.home-page .navbar-mobile {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 9998 !important;
  }

  body.home-page .navbar-mobile .mobile-nav-toggle {
    z-index: 9999;
  }

  body.home-page .navbar-mobile ul {
    display: block !important;
    z-index: 9999;
  }
}
