:root {
  --bg: #f6f3ef;
  --surface: #ffffff;
  --surface-alt: #efe8df;
  --text: #181818;
  --muted: #5c5c5c;
  --line: #ddd2c5;
  --accent: #111111;
  --accent-2: #d8c5ae;
  --radius: 22px;
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 243, 239, 0.86);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover {
  background: var(--surface);
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero {
  padding: 64px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.hero-content,
.hero-card,
.included-card,
.step-card,
.support-card,
.quick-nav-section .container {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-content {
  padding: 42px;
}

.eyebrow {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  margin-bottom: 12px;
}

.hero-text,
.section-heading + p,
.step-copy p,
.support-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
}

.hero-card {
  padding: 28px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.meta-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--surface-alt);
}

.meta-label {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.quick-nav-section,
.included,
.steps,
.support {
  padding-bottom: 60px;
}

.quick-nav-section .container,
.support-card {
  padding: 32px;
}

.section-heading {
  margin-bottom: 24px;
}

.quick-nav-desktop {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-nav-desktop a {
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--surface-alt);
  font-weight: 600;
}

.quick-nav-mobile {
  display: none;
}

.quick-nav-mobile select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  background: #fff;
  font: inherit;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.included-card {
  padding: 28px;
}

.included-card ul {
  margin: 0;
  padding-left: 20px;
}

.included-card li + li {
  margin-top: 10px;
}

.steps .container {
  display: grid;
  gap: 18px;
}

.step-card {
  padding: 22px;
}

.step-body {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
}

.step-number {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
}

.step-copy {
  margin-bottom: 20px;
}

.step-media {
  display: grid;
  gap: 14px;
}

.step-media.single {
  grid-template-columns: minmax(0, 1fr);
}

.step-media.multiple {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.step-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 18px;
  background: #eef1f5;
  display: block;
}

.step-media img.is-zoomable {
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-media img.is-zoomable:hover,
.step-media img.is-zoomable:focus-visible {
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.18);
  outline: 3px solid rgba(191, 31, 43, 0.28);
  outline-offset: 4px;
  transform: translateY(-2px);
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 72px 24px 32px;
  background: rgba(17, 24, 39, 0.84);
}

.image-lightbox.is-open {
  display: grid;
}

.image-lightbox__image {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  object-fit: contain;
}

.image-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  background: var(--accent);
  color: #fff;
  outline: 3px solid rgba(255, 255, 255, 0.48);
  outline-offset: 3px;
}

.included-media {
  margin-top: 18px;
}

.media-placeholder {
  min-height: 190px;
  border-radius: 18px;
  border: 1px dashed #cbbca8;
  background:
    linear-gradient(135deg, rgba(216, 197, 174, 0.18), rgba(216, 197, 174, 0.04));
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

.support-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 960px) {
  .hero-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body.menu-open {
    overflow: hidden;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: 12px;
    background: var(--surface-alt);
  }

  .quick-nav-desktop {
    display: none;
  }

  .quick-nav-mobile {
    display: block;
  }

  .step-body {
    grid-template-columns: 1fr;
  }

  .support-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-content,
  .hero-card,
  .included-card,
  .step-card,
  .quick-nav-section .container,
  .support-card {
    padding: 22px;
  }

  .media-placeholder {
    min-height: 150px;
  }

  .step-media.multiple {
    grid-template-columns: 1fr;
  }

  .image-lightbox {
    padding: 68px 12px 20px;
  }

  .image-lightbox__image {
    max-height: calc(100vh - 96px);
    border-radius: 12px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-image-placeholder {
  width: 100%;
  min-height: 340px;
  border-radius: 20px;
  background: #eef1f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #6b7280;
}

.step-body {
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px; */
  display: inline-block;
  align-items: center;
  padding: 30px;
}

.step-copy,
.step-media {
  width: 100%;
}

.step-media.single .media-placeholder {
  width: 100%;
  min-height: 280px;
}

.step-media.single img {
  min-height: 280px;
}

.media-placeholder {
  border-radius: 18px;
  background: #eef1f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-weight: 600;
}

@media (max-width: 860px) {
  .hero-grid,
  .step-body {
    grid-template-columns: 1fr;
  }
}

.review-cta {
  padding-bottom: 60px;
}

/* Zwart blok */
.review-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: #000;
  color: #fff;
  border-radius: 20px;
  padding: 40px;
}

/* Tekst styling */
.review-content h2 {
  color: #fff;
}

.review-intro,
.review-outro {
  color: #d1d5db;
}

/* Voordelen lijst */
.review-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.review-benefits li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.review-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: bold;
}

/* Button rechts */
.review-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-button {
  padding: 14px 28px;
  font-size: 16px;
  background: #fff;
  color: #000;
}

/* Mobile */
@media (max-width: 860px) {
  .review-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .review-benefits li {
    padding-left: 0;
  }

  .review-benefits li::before {
    display: none;
  }
}

.support-card {
  display: block; /* was grid */
  padding: 40px;
  border-radius: 20px;
  background: #f8fafc;
}

.help__holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

@media (max-width: 860px) {
  .help__holder {
    grid-template-columns: 1fr;
  }
}

.support-details {
  margin-top: 20px;
}

.support-details p {
  margin-bottom: 8px;
}

.support-details a {
  color: inherit;
  text-decoration: underline;
}

.support-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Mobile */
@media (max-width: 860px) {
  .support-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .support-actions {
    align-items: center;
  }
}

.help__holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.card-help {
  display: block;
  padding: 20px;
  border-radius: 14px;
  background: #f3f4f6;
  text-decoration: none;
  color: #111;
  transition: all 0.2s ease;
}

.card-help:hover {
  transform: translateY(-2px);
  background: #e5e7eb;
}

.card-help--green {
  background: #25d366;
  color: #fff;
}

.card-help--green:hover {
  background: #1ebe5d;
}

.card-help__content i {
  font-size: 20px;
  margin-bottom: 10px;
}

.card-help h5 {
  margin: 0 0 6px;
  font-size: 16px;
}

.card-help p {
  margin: 0;
  font-size: 14px;
}

.card-help__text,
.card-help span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.8;
}

/* Mobile */
@media (max-width: 860px) {
  .help__holder {
    grid-template-columns: 1fr;
  }
}

.review-card .eyebrow { color: #ccc; }

.shirtframe-thanks {
  padding: 120px 20px;
  text-align: center;
  color: #111;
}

/* Titel */
.hero-title {
  margin-bottom: 90px;
}

.hero-title span {
  display: inline-block;
  background: #fff;
  padding: 10px 24px;
  margin: 8px 0;
  font-size: 60px;
  line-height: 0.95;
  font-weight: 900;
}

/* Kop */
.shirtframe-thanks h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 40px;
}

/* Tekst */
.shirtframe-thanks p {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

/* Handtekening */
.signature {
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
}
