/* =========================================================
   Legal / policy pages (privacy.html, cookies.html, voorwaarden.html)
   Builds on css/style.css tokens: --navy, --navy-deep, --navy-night,
   --gold, --paper, --ink, --sans, --mono, --pad, .wrap, .tag, .btn
   ========================================================= */

body.lg {
  background: var(--paper);
  color: var(--ink);
}
/* style.css hides the native cursor for the custom cursor on the homepage (main.js).
   These pages don't load that script, so restore the normal system cursors here. */
@media (hover: hover) and (pointer: fine) {
  body.lg,
  body.lg * {
    cursor: auto;
  }
  body.lg a,
  body.lg button,
  body.lg .btn,
  body.lg [role="button"] {
    cursor: pointer;
  }
  body.lg input,
  body.lg textarea {
    cursor: text;
  }
}

/* ---------- header ---------- */
.lg-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 19, 31, 0.92);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 213, 0, 0.16);
}
.lg-head-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}
.lg-logo {
  display: block;
  height: 40px;
  transition: opacity 0.3s;
}
.lg-logo:hover {
  opacity: 0.86;
}
.lg-logo .logo-svg {
  height: 100%;
  width: auto;
  display: block;
}
.lg-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c2d0e0;
  transition: color 0.25s;
  white-space: nowrap;
}
.lg-back svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}
.lg-back:hover {
  color: var(--gold);
}
.lg-back:hover svg {
  transform: translateX(-3px);
}

/* ---------- hero ---------- */
.lg-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 120% at 100% 0%, #1b3a61 0%, rgba(27, 58, 97, 0) 55%),
    var(--navy-night);
  color: #fff;
  padding: clamp(56px, 8vw, 110px) 0 clamp(44px, 6vw, 80px);
}
.lg-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 60%);
  opacity: 0.6;
}
.lg-hero h1 {
  margin-top: 18px;
  font-size: clamp(38px, 6vw, 84px);
  color: #fff;
  max-width: 14ch;
}
.lg-meta {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fa3bd;
}

/* ---------- body layout ---------- */
.lg-body {
  padding: clamp(44px, 6vw, 90px) 0 clamp(72px, 8vw, 120px);
}
.lg-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.lg-side {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lg-card {
  background: #fff;
  border: 1px solid rgba(12, 28, 46, 0.08);
  border-radius: 16px;
  padding: 22px 22px 20px;
  box-shadow: 0 10px 30px -22px rgba(12, 28, 46, 0.35);
}
.lg-card-h {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
  color: #8593a2;
  margin: 0 0 12px;
}
.lg-card p {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #3f4b58;
}
.lg-card p:last-child {
  margin-bottom: 0;
}
.lg-card a {
  color: var(--navy);
  font-weight: 700;
  transition: color 0.25s;
}
.lg-card a:hover {
  color: #b58f00;
}
.lg-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(12, 28, 46, 0.08);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
}
.lg-nav a:first-of-type {
  border-top: 0;
}
.lg-nav a::after {
  content: "\2192";
  color: var(--gold);
  transition: transform 0.3s;
}
.lg-nav a:hover::after {
  transform: translateX(3px);
}

/* ---------- article typography ---------- */
.lg-article {
  max-width: 78ch;
  font-size: clamp(15.5px, 1.15vw, 17.5px);
  line-height: 1.7;
  font-weight: 500;
  color: #2b3644;
}
.lg-article p {
  margin: 0 0 1.1em;
}
.lg-article h2 {
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.15;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin: 2.2em 0 0.7em;
  padding-top: 1.1em;
  border-top: 1px solid rgba(12, 28, 46, 0.1);
}
.lg-article h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.lg-article h3 {
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
  font-size: clamp(17px, 1.3vw, 19px);
  font-weight: 800;
  color: var(--navy);
  margin: 1.6em 0 0.5em;
}
.lg-article ul {
  margin: 0 0 1.2em;
  padding-left: 1.3em;
}
.lg-article li {
  margin: 0.35em 0;
  padding-left: 0.2em;
}
.lg-article li::marker {
  color: var(--gold);
}
.lg-article a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(27, 58, 97, 0.35);
  text-underline-offset: 3px;
  transition: color 0.25s, text-decoration-color 0.25s;
}
.lg-article a:hover {
  color: #b58f00;
  text-decoration-color: currentColor;
}
.lg-article a.btn {
  text-decoration: none;
  color: #000;
}
.lg-article strong {
  color: var(--ink);
  font-weight: 800;
}
.lg-address {
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
}
.lg-note {
  font-size: 0.9em;
  font-style: italic;
  color: #6b7a8a;
}
.lg-updated {
  margin-top: 2.5em;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8593a2;
}
.lg-cta {
  margin-top: 3em;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
}
.lg-cta h2 {
  color: #fff;
  border: 0;
  margin: 0 0 0.5em;
  padding: 0;
}
.lg-cta p {
  color: #c2d0e0;
}
.lg-cta .btn {
  margin-top: 6px;
}

/* CookieYes audit table (injected at runtime) */
.cky-audit-table-element {
  margin: 0 0 12px;
  overflow-x: auto;
}
.cky-audit-table-element table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.cky-audit-table-element th,
.cky-audit-table-element td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(12, 28, 46, 0.1);
  vertical-align: top;
}
.cky-audit-table-element th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8593a2;
}

/* ---------- footer ---------- */
.lg-foot {
  background: #0c1420;
  color: #fff;
  padding: 26px 0;
}
.lg-foot-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.lg-cpy,
.lg-pol a,
.lg-dev {
  font-family: var(--mono);
  font-size: 12px;
  color: #5f6772;
}
.lg-dev {
  transition: color 0.25s;
}
.lg-dev:hover {
  color: var(--gold);
}
.lg-pol {
  display: flex;
  gap: 22px;
}
.lg-pol a {
  padding: 6px 0;
  transition: color 0.25s;
}
.lg-pol a:hover,
.lg-pol a[aria-current] {
  color: #fff;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .lg-grid {
    grid-template-columns: 1fr;
  }
  .lg-side {
    position: static;
  }
}
@media (max-width: 560px) {
  .lg-head-in {
    height: 64px;
  }
  .lg-logo {
    height: 34px;
  }
  .lg-back {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .lg-foot-in {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .lg-pol {
    gap: 18px;
  }
  .lg-pol a {
    padding: 8px 0;
  }
}
