/* Meetzona — kaart/geolocatie visuele taal. Originele opzet, geen hergebruik van andere domeinen. */

:root {
  --bg: #f7f1e6;
  --bg-card: #fbf6ec;
  --text: #2e2416;
  --muted: #7d6f57;
  --accent: #a8632c;
  --accent-dark: #734423;
  --line: #cbb999;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 8% 12%, rgba(168, 99, 44, 0.06), transparent 40%),
    radial-gradient(circle at 92% 78%, rgba(115, 68, 35, 0.07), transparent 45%);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--accent-dark); }

img, svg { display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- pin marker ---------- */
.pin {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: none;
}
.pin svg { width: 100%; height: 100%; }

/* ---------- header ---------- */
.site-header {
  border-bottom: 1px dashed var(--line);
  background: rgba(247, 241, 230, 0.9);
  position: sticky;
  top: 0;
  backdrop-filter: blur(3px);
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
}
.logo .pin { width: 22px; height: 22px; }
.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff8ef;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--accent-dark);
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}
.btn-ghost:hover { background: rgba(168, 99, 44, 0.08); color: var(--accent-dark); }

/* ---------- hero ---------- */
.hero {
  padding: 64px 0 48px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 18px;
}
.hero .lede {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 28px;
  max-width: 46ch;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.tag-row {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.82rem;
  color: var(--accent-dark);
  border: 1px dashed var(--accent);
  border-radius: 999px;
  padding: 5px 12px;
  background: rgba(168, 99, 44, 0.05);
}

/* decorative route map */
.route-map {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  background-image:
    linear-gradient(0deg, rgba(46,36,22,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,36,22,0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  overflow: hidden;
}
.route-map svg { width: 100%; height: 100%; }
.route-map .city-label {
  position: absolute;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(251, 246, 236, 0.85);
  padding: 1px 6px;
  border-radius: 4px;
}
.city-1 { top: 14%; left: 20%; }
.city-2 { top: 30%; left: 62%; }
.city-3 { top: 60%; left: 30%; }
.city-4 { top: 74%; left: 68%; }

/* ---------- sections ---------- */
section { padding: 48px 0; }
.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.section-heading h2 { margin: 0; font-size: 1.7rem; }
.section-sub { color: var(--muted); margin: 0 0 30px; max-width: 60ch; }

.intro {
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
.intro p { max-width: 68ch; }
.intro p + p { margin-top: 16px; }

/* ---------- article cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  position: relative;
}
.card-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 2px dashed var(--line);
  z-index: 0;
}
.card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  box-shadow: 0 1px 0 rgba(46,36,22,0.04);
}
.card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(168, 99, 44, 0.18);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.card-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.card p { color: var(--muted); margin: 0 0 16px; }
.card a.read-more {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--accent-dark);
}

/* ---------- final cta ---------- */
.cta-final {
  text-align: center;
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  padding: 46px 24px;
  background: var(--bg-card);
  margin: 0 auto 56px;
  max-width: 1080px;
}
.cta-final h2 { margin: 0 0 10px; font-size: 1.7rem; }
.cta-final p { color: var(--muted); margin: 0 0 24px; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px dashed var(--line);
  padding: 28px 0;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}
.site-footer a { color: var(--muted); text-decoration: none; margin-left: 16px; }
.site-footer a:hover { color: var(--accent-dark); }
.foot-links { display: flex; flex-wrap: wrap; }

/* ---------- article page ---------- */
.article-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.article-main .breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.article-main .breadcrumb a { color: var(--muted); }
.article-main h1 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0 0 10px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}
.article-body h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}
.article-body p { margin: 0 0 16px; }
.article-body ul { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-cta {
  margin-top: 38px;
  padding: 24px;
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  background: var(--bg-card);
  text-align: center;
}
.article-cta p { color: var(--muted); margin: 0 0 14px; }

/* ---------- legal pages ---------- */
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.legal-main h1 { font-size: 1.9rem; margin-bottom: 6px; }
.legal-main h2 { font-size: 1.2rem; margin-top: 30px; }
.legal-main p, .legal-main li { color: var(--muted); }
.legal-updated { font-size: 0.85rem; color: var(--muted); margin-bottom: 30px; }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .route-map { max-width: 420px; margin: 0 auto; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid::before { display: none; }
  .hero h1 { font-size: 2.1rem; }
}
