/* ==========================================================================
   Ducats and Dragons — landing site
   Design tokens komen 1-op-1 uit de app: lib/app/theme.dart (AppColors).
   Wijzigt de app-huisstijl, pas dan :root hieronder aan en de rest volgt.
   ========================================================================== */

@import url("fonts.css");

:root {
  /* Kleuren — identiek aan AppColors in de Flutter-app. */
  --background: #16100a;
  --surface: #221a11;
  --surface-alt: #2b2115;
  --gold: #e3a81c;
  --gold-deep: #b27f0e;
  --on-gold: #1f1607;
  --parchment: #f0e6d2;
  --text-muted: #a5947a;
  --danger: #d96c4a;
  --success: #8aa86b;
  --hairline: rgba(227, 168, 28, 0.2);
  --hairline-strong: rgba(227, 168, 28, 0.42);

  /* Muntkleuren. */
  --coin-pp: #c7ccd6;
  --coin-gp: #e3a81c;
  --coin-ep: #cec08f;
  --coin-sp: #a9b0ba;
  --coin-cp: #b0713f;

  /* Typografie. */
  --font-display: "Cinzel", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Ritme. */
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --shell: 1120px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(4rem, 10vw, 7.5rem);
}

/* --------------------------------------------------------------------------
   Reset / basis
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Kaarslicht: twee zachte gouden gloeden achter de pagina, vast op de
   achtergrond zodat er geen extra afbeeldingen bij komen kijken. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      60rem 40rem at 78% -8%,
      rgba(227, 168, 28, 0.13),
      transparent 62%
    ),
    radial-gradient(
      48rem 34rem at 6% 22%,
      rgba(178, 127, 14, 0.09),
      transparent 60%
    );
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration-color: var(--hairline-strong);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: currentColor;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.1rem, 6.4vw, 3.75rem);
}
h2 {
  font-size: clamp(1.65rem, 4.2vw, 2.5rem);
}
h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
}

p {
  margin: 0 0 1.15em;
  text-wrap: pretty;
}

ul,
ol {
  padding-left: 1.25rem;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--on-gold);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

/* --------------------------------------------------------------------------
   Layout-helpers
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}

.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 38rem;
}

/* --------------------------------------------------------------------------
   Knoppen — stadion-vorm en 52px hoog, net als in de app
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease,
    border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--gold);
  color: var(--on-gold);
  box-shadow: 0 10px 30px -14px rgba(227, 168, 28, 0.85);
}

.btn--primary:hover {
  background: #f2b933;
}

.btn--ghost {
  background: transparent;
  color: var(--parchment);
  border-color: var(--hairline-strong);
}

.btn--ghost:hover {
  border-color: var(--gold);
  background: rgba(227, 168, 28, 0.07);
}

/* --------------------------------------------------------------------------
   Store-badges
   -------------------------------------------------------------------------- */

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.35rem 0.7rem 1.1rem;
  min-height: 58px;
  border: 1px solid var(--hairline-strong);
  border-radius: 14px;
  background: var(--surface);
  color: var(--parchment);
  text-decoration: none;
  transition: border-color 0.18s ease, background-color 0.18s ease,
    transform 0.18s ease;
}

.store-badge:hover {
  border-color: var(--gold);
  background: var(--surface-alt);
  transform: translateY(-1px);
}

.store-badge svg {
  width: 26px;
  height: 26px;
  flex: none;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge__small {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.store-badge__big {
  font-size: 1.02rem;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(22, 16, 10, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.site-header[data-scrolled="true"] {
  border-bottom-color: var(--hairline);
  background: rgba(22, 16, 10, 0.94);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--parchment);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.18s ease;
}

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

.header-cta {
  min-height: 44px;
  padding: 0 1.15rem;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  background: transparent;
  color: var(--parchment);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    inset: 100% 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.25rem;
    background: rgba(22, 16, 10, 0.98);
    border-bottom: 1px solid var(--hairline);
    display: none;
  }

  .nav[data-open="true"] {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--hairline);
  }

  .nav .header-cta {
    margin-top: 1rem;
    border-bottom: 0;
    justify-content: center;
    color: var(--on-gold);
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  padding-block: clamp(3rem, 8vw, 6rem) clamp(3.5rem, 9vw, 6.5rem);
}

.hero__grid {
  display: grid;
  gap: clamp(3rem, 7vw, 4.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  /* De telefoon is op 300px gemaximeerd, dus de tekst mag de bredere helft
     hebben: anders staat de kop op vijf regels naast een zee van niets. */
  .hero__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  }
}

.hero h1 {
  margin-bottom: 0.5em;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero__actions {
  margin-top: 2rem;
}

.hero__note {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Telefoon-mockup — volledig in CSS, geen screenshots nodig
   -------------------------------------------------------------------------- */

.phone {
  position: relative;
  width: min(300px, 78vw);
  margin-inline: auto;
  padding: 12px;
  border: 1px solid var(--hairline-strong);
  border-radius: 40px;
  background: linear-gradient(160deg, #2e2416, #150f09);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(0, 0, 0, 0.5) inset;
}

.phone__screen {
  border-radius: 30px;
  background: var(--background);
  padding: 1.4rem 1.05rem 1.05rem;
  overflow: hidden;
}

.phone__notch {
  width: 84px;
  height: 5px;
  border-radius: 999px;
  background: rgba(240, 230, 210, 0.22);
  margin: 0 auto 1.1rem;
}

.phone__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
}

.phone__sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0 0 1.1rem;
}

.mock-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.95rem 1rem;
  margin-bottom: 0.7rem;
}

.mock-card__label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.mock-balance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.coin-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: var(--surface-alt);
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.coin-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset;
}

.coin-dot--pp {
  background: var(--coin-pp);
}
.coin-dot--gp {
  background: var(--coin-gp);
}
.coin-dot--ep {
  background: var(--coin-ep);
}
.coin-dot--sp {
  background: var(--coin-sp);
}
.coin-dot--cp {
  background: var(--coin-cp);
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--hairline);
}

.mock-row:last-child {
  border-bottom: 0;
}

.mock-row__icon {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 9px;
  background: rgba(227, 168, 28, 0.13);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.85rem;
}

/* De mockup gebruikt spans (een div in een span is ongeldige HTML), dus zetten
   we ze hier expliciet op block. Zonder dat pakt text-overflow niet en breken
   de regels over twee lijnen. */
.mock-row__body {
  display: block;
  min-width: 0;
  flex: 1;
}

.mock-row__title,
.mock-row__meta {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-row__title {
  font-size: 0.82rem;
  font-weight: 600;
}

.mock-row__meta {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.mock-row__value {
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.mock-row__value--in {
  color: var(--success);
}
.mock-row__value--out {
  color: var(--danger);
}

.rarity-tag {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--hairline-strong);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Kaarten / features
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}

.card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.6rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease,
    background-color 0.2s ease;
}

.card:hover {
  border-color: var(--hairline-strong);
  background: var(--surface-alt);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 0.45em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(227, 168, 28, 0.12);
  border: 1px solid var(--hairline);
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

/* --------------------------------------------------------------------------
   Stappen
   -------------------------------------------------------------------------- */

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.6rem 1.5rem 1.5rem;
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--on-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.steps h3 {
  margin-bottom: 0.4em;
}

.steps p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Split-secties (tekst naast mockup)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split--reverse .split__media {
    order: -1;
  }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.checklist svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 0.2rem;
  color: var(--gold);
}

.checklist strong {
  color: var(--parchment);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  max-width: 48rem;
  display: grid;
  gap: 0.75rem;
}

.faq details {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq details[open] {
  border-color: var(--hairline-strong);
  background: var(--surface-alt);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 3.25rem 1.15rem 1.4rem;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}

.faq .faq__answer {
  padding: 0 1.4rem 1.35rem;
  color: var(--text-muted);
}

.faq .faq__answer > :last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   CTA-blok
   -------------------------------------------------------------------------- */

.cta-panel {
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--surface-alt), var(--surface) 65%);
  padding: clamp(2.25rem, 6vw, 3.75rem);
  text-align: center;
}

.cta-panel h2 {
  margin-bottom: 0.4em;
}

.cta-panel p {
  color: var(--text-muted);
  max-width: 34rem;
  margin-inline: auto;
}

.cta-panel .store-buttons {
  justify-content: center;
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  background: rgba(0, 0, 0, 0.25);
  padding-block: clamp(3rem, 7vw, 4.5rem) 2rem;
  margin-top: clamp(3rem, 8vw, 5rem);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.footer-grid__brand {
  max-width: 22rem;
}

.footer-grid__brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 1rem 0 0;
}

.footer-col h2 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.94rem;
}

.footer-col a:hover {
  color: var(--parchment);
  text-decoration: underline;
}

.footer-legal {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--hairline);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer-legal p {
  margin: 0 0 0.6rem;
}

.footer-legal p:last-child {
  margin-bottom: 0;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Juridische pagina's (privacy, voorwaarden)
   -------------------------------------------------------------------------- */

.legal {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.legal__inner {
  max-width: 46rem;
}

.legal__meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hairline);
}

.legal h2 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  margin-top: 2.75rem;
  scroll-margin-top: 6rem;
}

.legal h3 {
  font-size: 1.08rem;
  margin-top: 1.85rem;
}

.legal p,
.legal li {
  color: #ddd0b8;
}

.legal li {
  margin-bottom: 0.5rem;
}

.legal ul {
  margin-bottom: 1.25rem;
}

.legal .callout {
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 1.25rem 1.4rem;
  margin: 1.75rem 0;
}

.legal .callout > :last-child {
  margin-bottom: 0;
}

.legal .toc {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.5rem 1.6rem;
  margin-bottom: 2.5rem;
}

.legal .toc h2 {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal .toc ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.94rem;
}

.legal .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.legal th,
.legal td {
  text-align: left;
  vertical-align: top;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--hairline);
}

.legal th {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* Op een telefoon is een tabel van drie kolommen onleesbaar smal. Daar zetten
   we elke rij om in een kaartje en halen we de kolomkoppen uit de <thead> naar
   voren via data-label — dezelfde informatie, alleen onder elkaar. */
@media (max-width: 640px) {
  .legal .table-wrap {
    overflow-x: visible;
  }

  .legal table,
  .legal tbody,
  .legal tr,
  .legal td {
    display: block;
    width: 100%;
  }

  .legal thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .legal tr {
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    background: var(--surface);
    padding: 1.1rem 1.2rem;
    margin-bottom: 0.75rem;
  }

  .legal td {
    border-bottom: 0;
    padding: 0 0 0.85rem;
  }

  .legal tr td:last-child {
    padding-bottom: 0;
  }

  .legal td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.2rem;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
  }
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */

.error-page {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(3rem, 10vw, 6rem);
}

.error-page img {
  width: 120px;
  border-radius: 24px;
  margin: 0 auto 2rem;
}

/* --------------------------------------------------------------------------
   Toegankelijkheid
   -------------------------------------------------------------------------- */

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

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

@media print {
  body::before,
  .site-header,
  .site-footer,
  .store-buttons {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .legal p,
  .legal li {
    color: #000;
  }
}
