/* ============================================================
   WonderCraft — Variant A "Verhalenboek"  (gedeeld stylesheet)
   Cormorant Garamond (display) + Manrope (UI/body)
   ============================================================ */
:root {
  --gold: #b79669;
  --gold-light: #d6b17c;
  --gold-deep: #9a7b4a;
  --cream: #faf7f1;
  --cream-2: #f1ebdf;
  --ink: #2a2218;
  --ink-soft: #5b4f3e;
  --espresso: #14110c;
  --espresso-2: #1d1810;
  --line: rgba(42, 34, 24, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center {
  justify-content: center;
}
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0;
  line-height: 1.04;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--espresso);
  box-shadow: 0 8px 24px rgba(183, 150, 105, 0.32);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(183, 150, 105, 0.45);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.32);
}
.btn-discord svg {
  display: none;
}
.btn-discord:hover {
  background: #4f5bda;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(88, 101, 242, 0.5);
}
.btn-ink {
  background: var(--ink);
  color: var(--cream);
}
.btn-ink:hover {
  transform: translateY(-2px);
  background: #382c1d;
}
.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline-ink:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

/* Copy confirmation — consistent green state on every copy button */
[data-copy].copied {
  background: #4f9655 !important;
  border-color: #4f9655 !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: none;
}
[data-copy].copied svg {
  fill: #fff !important;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.site-header.scrolled {
  background: rgba(20, 17, 12, 0.85);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  padding: 13px 40px;
  border-bottom-color: rgba(183, 150, 105, 0.18);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.28);
}
/* solid header variant for light/sub pages (no hero behind) */
.site-header.solid {
  position: sticky;
  background: rgba(20, 17, 12, 0.96);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: rgba(183, 150, 105, 0.2);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}
.brand img:hover {
  transform: scale(1.06);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav > a,
.nav-trigger {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.86);
  position: relative;
  padding: 24px 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.nav > a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav > a:hover::after,
.nav-item:hover .nav-trigger::after {
  transform: scaleX(1);
}
.nav > a:hover,
.nav-item:hover .nav-trigger {
  color: var(--gold-light);
}
.caret {
  font-size: 9px;
  opacity: 0.7;
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.nav-item:hover .caret {
  transform: rotate(180deg);
}

/* dropdown */
.nav-item {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 232px;
  background: rgba(22, 18, 12, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(183, 150, 105, 0.2);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  padding: 11px 16px;
  border-radius: 3px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.dropdown a:hover {
  background: rgba(183, 150, 105, 0.16);
  color: var(--gold-light);
  padding-left: 20px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.mobile-nav.is-open {
  pointer-events: auto;
}
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 12, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.is-open .mobile-nav-overlay {
  opacity: 1;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--espresso);
  border-left: 1px solid rgba(183, 150, 105, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 40px;
}
.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-nav-logo img {
  height: 36px;
}
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #fff;
  line-height: 0;
}
.mobile-nav-close svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-nav-links > a {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: block;
  letter-spacing: 0.02em;
}
.mobile-nav-links > a:hover {
  color: var(--gold-light);
}
.mobile-nav-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-nav-group-trigger {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  letter-spacing: 0.02em;
  user-select: none;
}
.mobile-nav-group-trigger .caret {
  font-size: 11px;
  transition: transform 0.25s ease;
  color: var(--gold);
}
.mobile-nav-group.is-open .caret {
  transform: rotate(180deg);
}
.mobile-nav-sub {
  display: none;
  flex-direction: column;
  padding: 4px 0 12px 14px;
  border-left: 2px solid rgba(183, 150, 105, 0.3);
  margin-left: 4px;
  margin-bottom: 4px;
}
.mobile-nav-group.is-open .mobile-nav-sub {
  display: flex;
}
.mobile-nav-sub a {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  padding: 9px 0;
  display: block;
}
.mobile-nav-sub a:hover {
  color: var(--gold-light);
}
.mobile-nav-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-footer .btn {
  justify-content: center;
  text-align: center;
  width: 100%;
}

/* ===== HERO (homepage, full-bleed) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  animation: slowZoom 24s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.12);
  }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 17, 12, 0.55) 0%,
    rgba(20, 17, 12, 0.05) 32%,
    rgba(20, 17, 12, 0.55) 72%,
    rgba(20, 17, 12, 0.96) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px 86px;
}
.hero-eyebrow {
  color: var(--gold-light);
}
.hero-eyebrow::before {
  background: var(--gold-light);
}
.hero h1 {
  color: #fff;
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 20px 0 0;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}
.hero-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 30px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 18px 0 0;
  line-height: 1.32;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.ip-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  padding: 9px 9px 9px 18px;
}
.ip-chip .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.ip-chip .ip {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.ip-chip button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(214, 177, 124, 0.55);
  padding: 9px 15px;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.ip-chip button svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.ip-chip button:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}
.ip-chip button.copied {
  background: #6b8f5a;
  color: #fff;
  border-color: #6b8f5a;
}
.hero-meta {
  position: absolute;
  right: 40px;
  bottom: 90px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.7);
}
.hero-meta .pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7bd17b;
  box-shadow: 0 0 0 0 rgba(123, 209, 123, 0.6);
  animation: live 2s infinite;
}
@keyframes live {
  0% {
    box-shadow: 0 0 0 0 rgba(123, 209, 123, 0.5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(123, 209, 123, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(123, 209, 123, 0);
  }
}

/* ===== PAGE BANNER (subpagina hero) ===== */
.page-banner {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-banner .pb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  animation: slowZoom 26s ease-in-out infinite alternate;
}
.page-banner .pb-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 17, 12, 0.72) 0%,
    rgba(20, 17, 12, 0.2) 38%,
    rgba(20, 17, 12, 0.55) 72%,
    rgba(20, 17, 12, 0.97) 100%
  );
}
.page-banner .pb-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px 74px;
}
.page-banner h1 {
  color: #fff;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 600;
  margin: 18px 0 0;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.page-banner h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}
.page-banner .pb-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 2.3vw, 28px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 16px 0 0;
  line-height: 1.34;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--gold-light);
}
.breadcrumb .sep {
  opacity: 0.5;
}
.breadcrumb .cur {
  color: var(--gold-light);
}

/* ===== INTRO ===== */
.intro {
  padding: 130px 0 110px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro h2 {
  font-size: clamp(38px, 4.4vw, 60px);
  margin-top: 18px;
  color: var(--ink);
}
.intro h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.intro p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 22px 0 0;
  max-width: 480px;
}
.intro .actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.intro-figure {
  position: relative;
}
.intro-figure img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 30px 70px rgba(42, 34, 24, 0.28);
}
.intro-figure .tag {
  position: absolute;
  left: -22px;
  bottom: 36px;
  background: var(--cream);
  padding: 16px 22px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 18px 44px rgba(42, 34, 24, 0.18);
}
.intro-figure .tag .k {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.intro-figure .tag .v {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 5px;
}

/* ===== STATS BAND ===== */
.stats {
  background: var(--espresso);
  color: #fff;
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:last-child {
  border-right: none;
}
.stat .n {
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat .l {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
}

/* ===== SECTION HEAD ===== */
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.sec-head.left {
  text-align: left;
  margin-left: 0;
}
.sec-head h2 {
  font-size: clamp(36px, 4.4vw, 58px);
  margin-top: 16px;
  color: var(--ink);
}
.sec-head h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.sec-head p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 16px 0 0;
}

/* ===== FEATURED CARDS ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 16px 44px rgba(42, 34, 24, 0.16);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.5s ease;
  display: block;
}
.feat-card.tall {
  height: 562px;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(42, 34, 24, 0.3);
}
.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.feat-card:hover img {
  transform: scale(1.06);
}
.feat-card .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 17, 12, 0.05) 30%,
    rgba(20, 17, 12, 0.86) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.feat-card .realm {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.feat-card h3 {
  font-size: 34px;
  color: #fff;
}
.feat-card .type {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-weight: 500;
}
.feat-card .go {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.feat-card:hover .go {
  opacity: 1;
  transform: translateY(0);
}
.span-2 {
  grid-column: span 2;
}
.featured {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.featured .more {
  text-align: center;
  margin-top: 50px;
}

/* ===== REALMS LIST (homepage) ===== */
.realms {
  padding: 120px 0;
}
.realm-list {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.realm-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.3s ease,
    background 0.3s ease;
}
.realm-row:hover {
  background: rgba(183, 150, 105, 0.06);
  padding-left: 22px;
}
.realm-row .num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  font-weight: 600;
}
.realm-row .name {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--ink);
  font-weight: 600;
}
.realm-row .desc {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 440px;
  line-height: 1.5;
  justify-self: end;
  text-align: right;
}

/* ===== NEWS ===== */
.news {
  padding: 120px 0;
  background: var(--espresso);
  color: #fff;
}
.news .sec-head h2 {
  color: #fff;
}
.news .sec-head h2 em {
  color: var(--gold-light);
}
.news .sec-head p {
  color: rgba(255, 255, 255, 0.62);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.news-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
  display: block;
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 150, 105, 0.5);
}
.news-card .ph {
  height: 200px;
  overflow: hidden;
}
.news-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .ph img {
  transform: scale(1.05);
}
.news-card .body {
  padding: 26px 26px 30px;
}
.news-card .date {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.news-card h3 {
  font-size: 25px;
  color: #fff;
  margin: 12px 0 0;
  line-height: 1.18;
}
.news-card p {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin: 12px 0 0;
}

/* ===== JOIN CTA ===== */
.join {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background: var(--espresso-2);
}
.join-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.join-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 17, 12, 0.7),
    rgba(20, 17, 12, 0.92)
  );
}
.join-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.join h2 {
  font-size: clamp(42px, 5.5vw, 76px);
  color: #fff;
}
.join h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.join p {
  font-family: var(--serif);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.82);
  margin: 18px auto 0;
  max-width: 520px;
}
.join-ip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 14px 14px 28px;
  border-radius: 3px;
  backdrop-filter: blur(8px);
}
.join-ip .ip {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.join-ip button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--espresso);
  border: none;
  padding: 13px 22px;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(183, 150, 105, 0.34);
  transition:
    transform 0.2s,
    box-shadow 0.25s;
}
.join-ip button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.join-ip button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(183, 150, 105, 0.5);
}
.join-ip button.copied {
  background: #6b8f5a;
  color: #fff;
  box-shadow: none;
}
.join .alt {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}
.join .alt a {
  color: var(--gold-light);
  font-weight: 700;
}

/* ===== LEGAL (privacybeleid / voorwaarden) ===== */
.legal {
  padding: 88px 0 110px;
}
.legal-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 104px;
}
.legal-toc .toc-lbl {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
}
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
  border-left: 1px solid var(--line);
}
.legal-toc a {
  display: block;
  counter-increment: toc;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-soft);
  padding: 9px 0 9px 18px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.legal-toc a::before {
  content: counter(toc) ". ";
  color: var(--gold);
  font-weight: 700;
}
.legal-toc a:hover {
  color: var(--ink);
}
.legal-toc a.active {
  color: var(--gold-deep);
  border-left-color: var(--gold);
  font-weight: 700;
}

.legal-body {
  max-width: 760px;
}
.legal-meta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  background: rgba(183, 150, 105, 0.1);
  border: 1px solid rgba(183, 150, 105, 0.3);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 36px;
}
.legal-lead {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 12px;
}
.legal-body section {
  scroll-margin-top: 96px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.legal-body section.lead-block {
  border-top: none;
  padding-top: 0;
}
.legal-body h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
}
.legal-body h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 26px 0 10px;
}
.legal-body p {
  font-family: var(--serif);
  font-size: 18.5px;
  line-height: 1.68;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.legal-body p:last-child {
  margin-bottom: 0;
}
.legal-body strong {
  color: var(--ink);
  font-weight: 700;
}
.legal-body a {
  color: var(--gold-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(154, 123, 74, 0.4);
  transition: border-color 0.2s ease;
}
.legal-body a:hover {
  border-bottom-color: var(--gold-deep);
}
.legal-body ul {
  list-style: none;
  margin: 6px 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.legal-body li {
  position: relative;
  padding-left: 26px;
  font-family: var(--serif);
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.legal-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: var(--gold);
}

@media (max-width: 900px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .legal-toc {
    position: static;
  }
  .legal-toc ol {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    border-left: none;
  }
  .legal-toc a {
    border-left: none;
    padding: 4px 0;
  }
  .legal-toc a.active {
    border-left: none;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #0f0c08;
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-tag {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
}
.socials a:hover {
  background: rgba(183, 150, 105, 0.25);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.socials svg {
  width: 17px;
  height: 17px;
  fill: rgba(255, 255, 255, 0.8);
}
.foot-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 4px 0 18px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.foot-col a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom em {
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .wrap,
  .hero-inner,
  .page-banner .pb-inner {
    padding-left: 26px;
    padding-right: 26px;
  }
  .site-header {
    padding: 14px 26px;
  }
  .nav,
  .header-cta .btn-ghost {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-figure {
    order: -1;
  }
  .intro-figure img {
    height: 380px;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feat-card.tall,
  .span-2 {
    grid-column: span 2;
    height: 360px;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 60px 0 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    padding-bottom: 40px;
  }
  .footer-tag {
    max-width: none;
  }
  .hero-meta {
    display: none;
  }
  .realm-row .desc {
    display: none;
  }
  .join {
    padding: 80px 0;
  }
  .join h2 {
    font-size: clamp(32px, 8vw, 52px);
  }
  .join p {
    font-size: 17px;
  }
  .join-ip {
    display: flex;
    width: 100%;
    max-width: 420px;
    padding: 12px 12px 12px 20px;
    gap: 12px;
  }
  .join-ip .ip {
    font-size: 16px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .join-ip button {
    flex-shrink: 0;
  }
}
@media (max-width: 560px) {
  .join-ip {
    max-width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .feat-card.tall,
  .span-2 {
    grid-column: span 1;
  }
  .footer {
    padding: 48px 0 0;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding-bottom: 32px;
  }
  .foot-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 0;
  }
}
