/* ============================================================
   JR Online Media — shared styles
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --bg-tint: #f1f3fb;
  --ink: #0b1020;
  --ink-2: #2a2f45;
  --muted: #5b6178;
  --line: #e6e8f0;
  --line-2: #d9dcec;
  --blue: #2a4cf3;
  --blue-600: #1e3ad9;
  --blue-50: #eef1ff;
  --purple: #7a3cf2;
  --purple-600: #5f24d4;
  --purple-50: #f3edff;
  --grad: linear-gradient(135deg, #2a4cf3 0%, #7a3cf2 100%);
  --grad-soft: linear-gradient(135deg, #eef1ff 0%, #f3edff 100%);
  --shadow-sm: 0 1px 2px rgba(11, 16, 32, 0.04), 0 1px 1px rgba(11, 16, 32, 0.03);
  --shadow-md: 0 8px 24px -8px rgba(42, 76, 243, 0.12), 0 2px 8px -2px rgba(11, 16, 32, 0.06);
  --shadow-lg: 0 24px 60px -20px rgba(42, 76, 243, 0.22), 0 8px 24px -8px rgba(11, 16, 32, 0.08);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 40px);
  --font-sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section { padding: clamp(64px, 9vw, 120px) 0; }
section + section { border-top: 1px solid var(--line); }
.section-tight { padding: clamp(48px, 7vw, 88px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  font-weight: 600;
}
h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  font-weight: 600;
}
h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  font-weight: 600;
}
.serif { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; font-style: italic; }
p { color: var(--ink-2); text-wrap: pretty; }
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  line-height: 1.55;
  max-width: 60ch;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 450;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--ink); font-weight: 500; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--grad);
  position: relative;
  box-shadow: 0 4px 12px -4px rgba(122, 60, 242, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  overflow: hidden;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 55%);
}
.logo-mark svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.logo-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
}
.logo-text small {
  display: block;
  font-size: 10.5px;
  font-weight: 450;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-1px); background: #1a1f3a; }
.btn-grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(122, 60, 242, 0.6);
}
.btn-grad:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(122, 60, 242, 0.7); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn .arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s ease, box-shadow .25s ease, transform .25s ease;
}
.card:hover {
  border-color: var(--line-2);
  box-shadow: var(--shadow-md);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -180px;
  top: -240px;
  background: radial-gradient(circle, rgba(122, 60, 242, 0.13), transparent 60%);
  border-radius: 50%;
}
.hero-bg::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  left: -220px;
  top: 80px;
  background: radial-gradient(circle, rgba(42, 76, 243, 0.10), transparent 60%);
  border-radius: 50%;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11,16,32,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,16,32,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center top, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stat .num {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-family: var(--font-sans);
}
.hero-stat .lbl {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Pill / chip ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue);
  border: 1px solid rgba(42, 76, 243, 0.15);
}
.pill.purple {
  background: var(--purple-50);
  color: var(--purple);
  border-color: rgba(122, 60, 242, 0.15);
}
.pill.neutral {
  background: var(--bg-soft);
  color: var(--ink-2);
  border-color: var(--line);
}
.pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}

/* ---------- Brand site preview (placeholder) ---------- */
.site-preview {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.site-preview .browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-preview .browser-bar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e2e5ee;
}
.site-preview .url {
  margin-left: 10px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--muted);
  background: var(--bg-soft);
  padding: 3px 10px;
  border-radius: 999px;
  flex: 1;
  text-align: center;
}
.site-preview .canvas {
  position: absolute;
  inset: 35px 0 0 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(11,16,32,0.025) 14px 15px),
    var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-preview .canvas-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  background: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* ---------- Image placeholder ---------- */
.imgph {
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(11,16,32,0.03) 14px 15px),
    var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.imgph .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  background: rgba(255,255,255,0.8);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: #0b1020;
  color: #c8cce0;
  padding: 80px 0 32px;
  margin-top: 0;
}
footer.site-footer .container { color: inherit; }
footer.site-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
footer.site-footer a { color: #c8cce0; font-size: 14px; transition: color .15s; }
footer.site-footer a:hover { color: #fff; }
footer.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
}
footer.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer.site-footer .logo-text { color: #fff; }
footer.site-footer .logo-text small { color: #8e93b0; }
footer.site-footer .foot-blurb {
  color: #8e93b0;
  font-size: 14px;
  max-width: 28ch;
  margin-top: 18px;
}
footer.site-footer .foot-bottom {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #8e93b0;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 860px) {
  footer.site-footer .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ---------- Form ---------- */
.form {
  display: grid;
  gap: 16px;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form .row { grid-template-columns: 1fr; } }
label.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
label.field input,
label.field textarea,
label.field select {
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink);
  font-weight: 400;
  transition: border-color .15s, box-shadow .15s;
}
label.field input:focus,
label.field textarea:focus,
label.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 76, 243, 0.12);
}
label.field textarea { resize: vertical; min-height: 120px; }
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.check-pill {
  position: relative;
  cursor: pointer;
}
.check-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-pill span {
  display: inline-flex;
  padding: 9px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--ink-2);
  transition: all .15s;
}
.check-pill input:checked + span {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ---------- Utility ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
.muted { color: var(--muted); }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; } .mt-6 { margin-top: 64px; }

/* ---------- Hero of brand pages (sub-hero) ---------- */
.subhero {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
  background:
    radial-gradient(900px 320px at 90% -10%, rgba(122,60,242,0.10), transparent 60%),
    radial-gradient(700px 280px at -10% 10%, rgba(42,76,243,0.10), transparent 60%),
    #fff;
  border-bottom: 1px solid var(--line);
}
.crumbs {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.crumbs a:hover { color: var(--blue); }
.crumbs .sep { opacity: 0.45; }

/* ---------- Pricing table ---------- */
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .2s ease;
  position: relative;
}
.price-card.popular {
  border-color: transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              var(--grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-md);
}
.price-card .price-tag {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.price-card .price-tag small { font-size: 14px; font-weight: 400; color: var(--muted); }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.price-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-card ul li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--blue-50);
  border-radius: 50%;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a4cf3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--grad);
  color: #fff;
  font-size: 11.5px;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.stats-strip .cell {
  padding: 28px;
  border-right: 1px solid var(--line);
}
.stats-strip .cell:last-child { border-right: 0; }
.stats-strip .num {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.stats-strip .num .unit { color: var(--blue); }
.stats-strip .lbl {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
}
@media (max-width: 860px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .cell:nth-child(2) { border-right: 0; }
  .stats-strip .cell:nth-child(1),
  .stats-strip .cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ---------- FAQ ---------- */
details.faq {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
details.faq:last-child { border-bottom: 1px solid var(--line); }
details.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: all .15s;
}
details.faq[open] summary::after {
  content: "–";
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
details.faq p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 72ch;
}

/* ---------- Domain card ---------- */
.domain-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .2s ease;
}
.domain-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.domain-card .domain-name {
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.domain-card .domain-desc {
  font-size: 13.5px;
  color: var(--muted);
  flex: 1;
}
.domain-card .domain-flag {
  font-size: 11.5px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.domain-card .arrow-ext {
  margin-left: auto;
  color: var(--muted);
  transition: color .2s, transform .2s;
}
.domain-card:hover .arrow-ext { color: var(--blue); transform: translate(3px, -3px); }
.domain-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* ---------- Featured brand card ---------- */
.feat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .2s ease;
}
.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feat-card .feat-visual {
  aspect-ratio: 5 / 4;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.feat-card .feat-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feat-card .feat-body h3 { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.feat-card .feat-cta {
  font-size: 14px;
  color: var(--blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.feat-card .feat-cta .arrow { transition: transform .2s; }
.feat-card:hover .feat-cta .arrow { transform: translateX(4px); }

/* Brand-specific accent stripes for featured cards */
.feat-visual.wonen { background: linear-gradient(135deg, #eef1ff 0%, #dde3ff 100%); }
.feat-visual.reizen { background: linear-gradient(135deg, #fff4ee 0%, #ffdfd1 100%); }
.feat-visual.lifestyle { background: linear-gradient(135deg, #eef9f1 0%, #d3ecda 100%); }
.feat-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(11,16,32,0.10);
  border-radius: 12px;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(11,16,32,0.025) 18px 19px);
}
.feat-visual .feat-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  background: rgba(255,255,255,0.85);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,16,32,0.06);
}

/* ---------- Service cards (Diensten) ---------- */
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .2s ease;
  position: relative;
}
.svc-card:hover { box-shadow: var(--shadow-md); }
.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.svc-card h3 + p { margin-top: -2px; }

/* ---------- Blog teaser card ---------- */
.post-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
}
.post-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.post-card .post-img {
  aspect-ratio: 16/10;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(11,16,32,0.03) 14px 15px),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.post-card .post-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.post-card .post-meta { font-size: 12px; color: var(--muted); display: flex; gap: 10px; }
.post-card h3 { font-size: 18px; }

/* ---------- Two-col layouts (brand page) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- "Logo" stack for partner logos placeholder ---------- */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 56px;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}
.partner-strip .partner-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  letter-spacing: -0.01em;
  opacity: 0.7;
}

/* selection */
::selection { background: rgba(122, 60, 242, 0.18); }

/* ============================================================
   WordPress-specifieke styles
   ============================================================ */
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide  { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull  { max-width: 100%; }
.wp-caption { max-width: 100%; }
.wp-caption img { display: block; }
.wp-caption-text { font-size: 13px; color: var(--muted); margin-top: 8px; text-align: center; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%);
  clip-path: inset(50%); height: 1px; width: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; word-wrap: normal !important;
}
.sticky { position: relative; }
.bypostauthor { display: block; }

/* Mobile nav */
.nav-links.is-open {
  display: flex !important;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}
.nav-links.is-open a {
  padding: 14px var(--pad);
  border-top: 1px solid var(--line);
}
.nav-links.is-open a:first-child { border-top: 0; }

/* Blog content (single post, page) */
.entry-content {
  max-width: 72ch;
  margin: 0 auto;
}
.entry-content > * + * { margin-top: 1.25em; }
.entry-content h2 { margin-top: 1.8em; font-size: clamp(24px, 2.4vw, 32px); }
.entry-content h3 { margin-top: 1.5em; font-size: clamp(19px, 1.6vw, 22px); }
.entry-content p { color: var(--ink-2); font-size: 17px; line-height: 1.65; }
.entry-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--blue-600); }
.entry-content blockquote {
  margin: 1.8em 0;
  padding: 18px 24px;
  border-left: 3px solid var(--blue);
  background: var(--bg-soft);
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  border-radius: 0 12px 12px 0;
}
.entry-content blockquote p { color: var(--ink); font-size: 22px; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; color: var(--ink-2); }
.entry-content li { margin: 0.4em 0; }
.entry-content code {
  font-family: var(--font-mono);
  font-size: 0.92em;
  background: var(--bg-soft);
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid var(--line);
}
.entry-content pre {
  background: var(--ink);
  color: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 14px;
}
.entry-content pre code { background: transparent; border: 0; padding: 0; color: inherit; }
.entry-content img {
  border-radius: 12px;
  border: 1px solid var(--line);
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.entry-content th, .entry-content td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.entry-content th { background: var(--bg-soft); font-weight: 500; }

.entry-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-2);
  background: #fff;
  transition: all .15s;
}
.pagination .page-numbers:hover { border-color: var(--blue); color: var(--blue); }
.pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Comments */
.comments-area { margin-top: 64px; max-width: 72ch; margin-left: auto; margin-right: auto; }
.comments-area h2 { margin-bottom: 24px; font-size: 24px; }
.comment-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.comment-list .comment { padding: 20px 22px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.comment-list .comment .children { list-style: none; padding-left: 24px; margin-top: 18px; border-left: 2px solid var(--line); }
.comment-author { font-weight: 500; color: var(--ink); font-size: 14.5px; }
.comment-metadata { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.comment-body p { font-size: 15px; margin-top: 10px; }
.comment-reply-link { font-size: 13px; color: var(--blue); }
.comment-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .comment-form .form-row { grid-template-columns: 1fr; } }
.comment-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--ink-2); font-weight: 500; margin-bottom: 16px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  font: inherit; font-size: 15px; padding: 13px 14px;
  border-radius: 10px; border: 1px solid var(--line-2); background: #fff;
  color: var(--ink);
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 76, 243, 0.12);
}
.comment-form textarea { resize: vertical; min-height: 120px; }

/* Post pages */
.post-hero {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(32px, 5vw, 56px);
  background:
    radial-gradient(900px 320px at 90% -10%, rgba(122,60,242,0.08), transparent 60%),
    radial-gradient(700px 280px at -10% 10%, rgba(42,76,243,0.08), transparent 60%),
    #fff;
  border-bottom: 1px solid var(--line);
}
.post-hero h1 { font-size: clamp(32px, 4vw, 52px); max-width: 22ch; }
.post-hero .featured-image {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.post-hero .featured-image img { width: 100%; height: auto; }

/* 404 */
.error-404 { padding: 120px 0; text-align: center; }
.error-404 .num { font-family: var(--font-serif); font-size: 180px; font-style: italic; color: var(--blue); line-height: 1; }
.error-404 h1 { margin-top: 16px; }
.error-404 p { max-width: 50ch; margin: 20px auto; color: var(--muted); }

/* Search form */
.search-form { display: flex; gap: 8px; max-width: 480px; }
.search-form input[type="search"] {
  flex: 1; font: inherit; font-size: 15px; padding: 12px 14px;
  border-radius: 10px; border: 1px solid var(--line-2); background: #fff;
}
.search-form input[type="search"]:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 76, 243, 0.12);
}

