:root {
  --bg: #121212;
  --bg-alt: #1e1e1e;
  --card: #191919;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --ink: #e1e1e1;
  --muted: #a8a8a8;
  --head: #f2f2f2;

  --teal: #288a82;
  --teal-soft: rgba(40, 138, 130, 0.14);
  --teal-line: rgba(40, 138, 130, 0.32);

  --magenta: #a83d6e;
  --magenta-hover: #bf477d;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Proza Libre", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mark: "Montserrat", var(--font-body);

  --max-width: 760px;
  --wide: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  color: var(--head);
}

h1 { font-size: clamp(2.8rem, 9vw, 5.2rem); letter-spacing: 0.04em; }
h2 { font-size: clamp(1.75rem, 4.4vw, 2.5rem); color: var(--teal); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }

p { margin: 0 0 1.1em; }

a { color: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(18, 18, 18, 0.94);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-family: var(--font-mark);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--head);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.8rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85em 2.1em;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn-primary {
  background: var(--magenta);
  color: #fff;
}

.btn-primary:hover { background: var(--magenta-hover); }

.btn-small { font-size: 0.85rem; padding: 0.7em 1.6em; }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--muted);
}

.btn-ghost:hover { color: var(--head); border-color: var(--teal); }

section { padding: 5.5rem 1.5rem; }

.band-alt { background: var(--bg-alt); }

.wrap { max-width: var(--wide); margin: 0 auto; }

.narrow { max-width: var(--max-width); margin: 0 auto; }

.center { text-align: center; }

.eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--magenta);
  margin: 0 0 0.9em;
}

.eyebrow-teal { color: var(--teal); }

.subline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--magenta);
  margin: -0.4em 0 1.4em;
}

.lead {
  font-size: 1.02rem;
  color: var(--muted);
}

.lines p { margin: 0 0 0.55em; }

.statement {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.2;
  color: var(--head);
  margin: 1.4rem 0;
}

.statement-teal { color: var(--teal); }

.quote {
  border-left: 2px solid var(--teal);
  padding-left: 1.4rem;
  margin: 2rem 0;
}

.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  line-height: 1.3;
  color: var(--teal);
  margin: 0 0 0.2em;
}

.hero {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 6rem;
}

.hero-image {
  position: relative;
  background-image:
    radial-gradient(ellipse 55% 60% at 50% 46%, rgba(18, 18, 18, 0.62), rgba(18, 18, 18, 0) 100%),
    linear-gradient(to bottom, rgba(18, 18, 18, 0.7) 0%, rgba(18, 18, 18, 0.58) 45%, rgba(18, 18, 18, 0.92) 82%, #121212 100%),
    url("afbeeldingen/bgheaderagendaboven.jpg");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

.hero h1 {
  margin-bottom: 0.2em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.75);
}

.hero-image .eyebrow {
  color: #d68bab;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.9);
}

.hero-image .hero-sub,
.hero-image .lead {
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.8);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.4vw, 1.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--head);
  margin: 0 0 1.6rem;
}

.hero .lead { max-width: 34em; margin: 0 auto 2.4rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse .split-media { order: 2; }

.split.image-left .split-media { order: -1; }

.frame {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--teal-line);
}

.card {
  background: var(--card);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.4rem 2.2rem;
}

.themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.themes li {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.35em 1.05em;
  font-size: 0.85rem;
  color: var(--muted);
}

.report {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 3rem;
  margin-top: 2.5rem;
}

.report dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
}

.report dd {
  margin: 0.2em 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.journey {
  display: grid;
  gap: 2.6rem;
  margin-top: 3rem;
}

.step {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1.8rem;
  align-items: start;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line);
}

.step:last-child { border-bottom: 0; padding-bottom: 0; }

.step-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--teal-line);
}

.step h3 {
  color: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.15rem;
  margin-bottom: 0.6em;
}

.step .lines p { color: var(--muted); }

.takeaways {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.takeaways li {
  position: relative;
  padding: 0 0 0 1.6rem;
  margin-bottom: 0.7em;
  color: var(--ink);
}

.takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
}

.daybanner {
  position: relative;
  background-color: var(--bg-alt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.daybanner-a {
  background-image:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.8) 42%, rgba(18, 18, 18, 0.98) 90%, #121212 100%),
    url("afbeeldingen/banner-02.jpg");
}

.daybanner-b {
  background-image:
    linear-gradient(to bottom, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0.8) 42%, rgba(18, 18, 18, 0.98) 90%, #121212 100%),
    url("afbeeldingen/banner-01.jpg");
}

.daybanner h2 {
  color: var(--head);
  font-style: italic;
  margin-bottom: 0.3em;
}

.daybanner .lead { margin-bottom: 2.6rem; }

.days {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 11rem;
  padding: 1em 1.6em;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.day span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.day strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.1;
}

.day:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: #fff;
}

.day:hover span { color: rgba(255, 255, 255, 0.8); }

.day-soon {
  color: #6f6f6f;
  cursor: not-allowed;
}

.day-soon span { color: #5c5c5c; }

.day-soon:hover {
  background: transparent;
  border-color: var(--line-strong);
  color: #6f6f6f;
}

.day-soon:hover span { color: #5c5c5c; }

.day-note {
  margin: 2rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.practical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 3rem;
  margin: 2rem 0 0;
  padding: 0;
}

.practical div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.practical dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.35em;
}

.practical dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--head);
}

.practical-wide { grid-column: 1 / -1; }

.practical .practical-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}

.closing {
  text-align: center;
  padding: 7rem 1.5rem;
}

.closing .brandline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4rem);
  letter-spacing: 0.06em;
  color: var(--head);
  margin: 0;
}

.closing .brandsub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.6vw, 1.3rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0.4em 0 2.6rem;
}

.closing .final {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.35;
  color: var(--muted);
  max-width: 26em;
  margin: 0 auto;
}

.pagefooter {
  background: var(--bg-alt);
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--line);
}

.pagefooter p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.6em 0 0;
}

.brand-small { font-size: 0.85rem; }

.space-s { margin-top: 1.6rem; }
.space-m { margin-top: 1.8rem; }
.space-l { margin-top: 2.6rem; }

.reveal {
  animation: rise 0.6s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  section { padding: 3.5rem 1.1rem; }
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .split .split-media,
  .split.reverse .split-media,
  .split.image-left .split-media { order: 2; }
  .report { grid-template-columns: 1fr; gap: 1.5rem; }
  .practical { grid-template-columns: 1fr; }
  .card { padding: 1.9rem 1.4rem 1.6rem; border-radius: var(--radius-md); }
  .frame { border-radius: var(--radius-md); }
  .step { grid-template-columns: 4rem 1fr; gap: 1.1rem; }
  .hero { min-height: 0; padding: 4.5rem 1.1rem 4rem; }
  .day { min-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
