/* SEO reisgids pages — design aligned with reisgids/nieuws/ */

:root {
  --ink:       #111111;
  --ink-2:     #1a1a1a;
  --paper:     #F4F4F2;
  --paper-2:   #EAEAE6;
  --line:      #D8D8D2;
  --muted:     #6b6b66;
  --muted-2:   #9a9a93;
  --accent:    #E30613;
  --accent-dk: #B8050F;
  --whatsapp:  #25D366;
  --serif:     'Space Grotesk', sans-serif;
  --sans:      'Manrope', sans-serif;
  --container: 1400px;
  --gutter:    2rem;
  --radius:    .5rem;
  --radius-lg: 1rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Material Symbols helper */
.mi {
  font-family: 'Material Symbols Rounded';
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  display: inline-block;
  vertical-align: -2px;
}

/* ── Skip link ───────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: .5rem 1rem;
  background: var(--accent);
  color: #fff;
}

/* ── Nav ──────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,244,242,.9);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-mark .mi { font-size: 20px; vertical-align: 0; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  font-size: 1.05rem;
}
.brand-text small {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-family: var(--serif);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
}
.nav-links a.is-active { color: var(--accent); }
.nav-links a:hover    { color: var(--accent); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--ink);
  color: var(--paper);
  padding: .7rem 1.25rem;
  border-radius: 9999px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: .85rem;
  transition: background .2s;
}
.nav-cta:hover { background: var(--accent); }

/* ── Page hero ────────────────────────────────── */
.page-hero {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}
.shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Breadcrumb ───────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-family: var(--serif);
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--line); }

/* ── Eyebrow label ────────────────────────────── */
.eyebrow {
  font-family: var(--serif);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Display heading ──────────────────────────── */
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
}
.lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 65ch;
  margin-top: 1.25rem;
}

/* ── Main content ─────────────────────────────── */
.seo-page {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 3rem 0; }
.section + .section { border-top: 1px solid var(--line); }

.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 1.25rem 0 .6rem;
}
.section p {
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: .75rem;
  max-width: 75ch;
}
.section p:last-child { margin-bottom: 0; }
.section a { color: var(--accent); text-decoration: underline; text-decoration-color: transparent; }
.section a:hover { text-decoration-color: currentColor; }

/* Info table */
.info-table {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: .4rem 1.5rem;
  font-size: .95rem;
  margin-top: .5rem;
}
.info-table dt { font-weight: 600; color: var(--muted); font-family: var(--serif); }
.info-table dd { color: var(--ink); margin: 0; }

/* Highlights list */
.section ul.highlights {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .5rem;
}
.section ul.highlights li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--ink-2);
  line-height: 1.6;
}
.section ul.highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Activity grid */
.activity-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .75rem;
  margin-top: .75rem;
}
.activity-grid li a {
  display: block;
  padding: .6rem .9rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: .9rem;
  font-family: var(--serif);
  font-weight: 500;
  transition: border-color .15s, color .15s;
}
.activity-grid li a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── FAQ ──────────────────────────────────────── */
.faq-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: .5rem;
  overflow: hidden;
}
summary {
  padding: .9rem 1.1rem;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  background: var(--paper-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary:hover { color: var(--accent); }
summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--muted);
  flex-shrink: 0;
}
details[open] summary::after { content: "−"; }
details p {
  padding: .85rem 1.1rem 1.1rem;
  color: var(--ink-2);
  line-height: 1.7;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ── CTA block ────────────────────────────────── */
.cta-block {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 3rem 0;
}
.cta-block h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: .75rem;
}
.cta-block p {
  color: rgba(244,244,242,.75);
  line-height: 1.65;
  max-width: 55ch;
  margin: 0 auto 1.5rem;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--whatsapp);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 9999px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  transition: background .15s, transform .1s;
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  color: #fff;
}

/* ── Footer ───────────────────────────────────── */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-size: .8rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-inner a:hover { color: var(--ink); }

/* ── Scroll behaviour for nav ─────────────────── */
.nav-scroll-sentinel { height: 1px; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .activity-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
@media (max-width: 600px) {
  :root { --gutter: 1rem; }
  .page-hero { padding: 2.5rem 0 1.5rem; }
  .cta-block { padding: 2rem 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
