/* =========================================
   Autorijschool Kamphuis — Editorial System
   ========================================= */

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }

/* ============ ROOT & TYPOGRAPHY ============ */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body, system-ui, sans-serif);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.75vw, 3rem);
  font-weight: 400;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin-block-end: 1rem;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--color-muted);
  max-width: 58ch;
  margin-block-end: 2.5rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Editorial primitives */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 500;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: .625rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.rule {
  border: 0;
  border-block-start: 1px solid var(--color-rule);
  margin-block: 2rem;
}

/* ============ CONTAINER & LAYOUT ============ */
.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

main {
  flex: 1 0 auto;
}

section {
  padding-block: clamp(4rem, 8vw, 7rem);
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-block-end: 3.5rem;
  max-width: 1240px;
  margin-inline: auto;
}
.section-head .eyebrow {
  margin-block-end: .5rem;
}
.section-head h2 {
  max-width: 18ch;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  border-block-end: 1px solid var(--color-rule);
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  max-width: 1240px;
  margin-inline: auto;
}

/* Site logo — text-based, gold serif */
.site-logo {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.site-logo:hover {
  color: var(--color-accent);
}

/* Hamburger toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  width: 36px;
  height: 36px;
  position: relative;
  justify-self: end;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  position: absolute;
  left: 7px;
  transition: transform .3s ease, opacity .2s ease;
}
.menu-toggle span:nth-child(1) { top: 9px; }
.menu-toggle span:nth-child(2) { top: 17px; }
.menu-toggle span:nth-child(3) { top: 25px; }

/* X animation when open */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============ NAVIGATION ============ */
.main-nav ul {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--color-text);
  position: relative;
  padding-block: .5rem;
  transition: color .2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.main-nav a:hover {
  color: var(--color-primary);
}

/* Navigation Dropdowns */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--color-text);
  padding-block: .5rem;
  cursor: pointer;
  transition: color .2s;
}
.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s;
  margin-top: -2px;
}
.dropdown-toggle:hover {
  color: var(--color-primary);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--color-paper);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
  z-index: 60;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}
.dropdown li {
  border: none;
}
.dropdown a {
  display: block;
  padding: .625rem 1.25rem;
  font-size: .85rem;
  color: var(--color-text);
  transition: background .15s, color .15s;
}
.dropdown a:hover {
  background: rgba(201, 164, 107, .1);
  color: var(--color-primary);
}
.dropdown a::after {
  display: none;
}

/* Show dropdown on hover/focus */
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
}
.has-dropdown:hover .dropdown-toggle::after {
  transform: rotate(-135deg);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.lang-switcher a {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  padding: .375rem .625rem;
  color: var(--color-muted);
  letter-spacing: .05em;
  border-radius: var(--radius);
  transition: all .15s;
}
.lang-switcher a.active {
  background: var(--color-primary);
  color: var(--color-bg);
}
.lang-switcher a:hover:not(.active) {
  color: var(--color-text);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: 1rem 1.625rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .01em;
  border-radius: var(--radius);
  transition: all .2s cubic-bezier(.2, .8, .2, 1);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn::after {
  content: "\2192";
  display: inline-block;
  transition: transform .2s;
  font-weight: 400;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: var(--color-accent);
}
.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-ghost:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}
.btn-ghost:hover::after {
  transform: translateX(4px);
}

.btn-text {
  padding: 0;
  background: none;
  color: var(--color-primary);
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-block-end: .25rem;
}
.btn-text::after {
  content: " \2192";
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-block: clamp(4rem, 10vw, 8rem) clamp(5rem, 12vw, 10rem);
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  background: var(--color-bg);
  text-align: center;
  overflow: hidden;
}
.hero-inner {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
}
.hero h1 {
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin-block-end: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-primary);
}
.hero-intro {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--color-muted);
  max-width: 54ch;
  margin-inline: auto;
  margin-block-end: 2.5rem;
  line-height: 1.6;
}

/* Hero compact — subpages */
.hero-compact {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
  text-align: left;
}
.hero-compact .hero-inner {
  max-width: 1240px;
}
.hero-compact h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 20ch;
}

/* ============ ZIGZAG CONTENT BLOCKS ============ */
.zigzag-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 5rem);
}

/* Even blocks: image left, text right */
.zigzag-block:nth-child(even) {
  direction: rtl;
}
.zigzag-block:nth-child(even) > * {
  direction: ltr;
}

.zigzag-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-primary);
  margin-block-end: 1rem;
  max-width: 22ch;
  font-weight: 400;
}
.zigzag-text p {
  font-size: clamp(.92rem, 1vw, 1.02rem);
  color: var(--color-text);
  line-height: 1.75;
  margin-block-end: 1rem;
}
.zigzag-text p:last-child {
  margin-block-end: 0;
}
.zigzag-text .btn {
  margin-block-start: 1rem;
}

.zigzag-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.zigzag-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

/* ============ INFO GRID ============ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  max-width: 1240px;
  margin-inline: auto;
}

.info-grid-item {
  background: var(--color-paper);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.info-grid-item .label {
  font-family: var(--font-mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-muted);
  font-weight: 500;
}

.info-grid-item .value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.25;
}

/* ============ NUMBERS TABLE ============ */
.numbers-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 1240px;
  margin-inline: auto;
}
.numbers-table tr {
  border-block-end: 1px solid var(--color-rule);
}
.numbers-table tr:last-child {
  border-block-end: none;
}
.numbers-table td {
  padding: .875rem 1rem;
  vertical-align: top;
}
.numbers-table td:first-child {
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--color-muted);
  width: 55%;
}
.numbers-table td:last-child {
  font-family: var(--font-mono);
  font-size: .95rem;
  color: var(--color-primary);
  font-weight: 500;
  text-align: right;
}

/* ============ FAQ SECTION ============ */
.faq-section {
  max-width: 820px;
  margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.faq-section h2 {
  margin-block-end: 2rem;
}

.faq-list {
  border-block-start: 1px solid var(--color-rule);
}
.faq-list dt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  padding-block: 1.25rem .5rem;
  color: var(--color-text);
  letter-spacing: -0.005em;
}
.faq-list dd {
  padding-block-end: 1.5rem;
  border-block-end: 1px solid var(--color-rule);
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* ============ RELATED SECTION ============ */
.related-section {
  max-width: 1240px;
  margin-inline: auto;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.related-section h2 {
  margin-block-end: 1.5rem;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-block-start: 1px solid var(--color-rule);
}
.related-list li {
  border-block-end: 1px solid var(--color-rule);
}
.related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text);
  transition: color .2s, padding-inline-start .2s;
}
.related-list a::after {
  content: "\2192";
  color: var(--color-primary);
  transition: transform .2s;
}
.related-list a:hover {
  color: var(--color-primary);
  padding-inline-start: .5rem;
}
.related-list a:hover::after {
  transform: translateX(4px);
}

/* ============ BACKLINK SECTION ============ */
.backlink-section {
  max-width: 820px;
  margin-inline: auto;
  padding: 2rem 2.5rem;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  background: var(--color-paper);
  text-align: center;
}
.backlink-section p {
  color: var(--color-muted);
  font-size: .95rem;
  margin-block-end: 1rem;
}
.backlink-section p:last-child {
  margin-block-end: 0;
}
.backlink-section a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color .2s;
}
.backlink-section a:hover {
  color: var(--color-accent);
}

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-block-end: 1.5rem;
}
.breadcrumbs a {
  color: var(--color-primary);
  transition: color .15s;
}
.breadcrumbs a:hover {
  color: var(--color-accent);
}
.breadcrumbs .sep {
  display: inline-block;
  margin-inline: .25rem;
  opacity: .5;
  color: var(--color-muted);
}
.breadcrumbs [aria-current] {
  color: var(--color-text);
}

/* ============ SIDE NAVIGATION ============ */
.side-nav {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-inline-start: 1rem;
  border-inline-start: 1px solid var(--color-rule);
}
.side-nav a {
  display: block;
  padding: .625rem 1rem;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--color-muted);
  border-inline-start: 2px solid transparent;
  margin-inline-start: -1rem;
  padding-inline-start: calc(1rem - 2px);
  transition: color .2s, border-color .2s;
}
.side-nav a:hover {
  color: var(--color-text);
}
.side-nav a.active,
.side-nav a[aria-current="true"] {
  color: var(--color-primary);
  border-inline-start-color: var(--color-primary);
  font-weight: 500;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--color-paper);
  border-block-start: 1px solid var(--color-rule);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) 2rem;
  margin-block-start: 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1240px;
  margin-inline: auto;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  flex: 1 1 280px;
}
.footer-brand strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  display: block;
  margin-block-end: .75rem;
  color: var(--color-primary);
}
.footer-brand p {
  color: var(--color-muted);
  font-size: .9rem;
  max-width: 32ch;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-links a {
  font-size: .9rem;
  color: var(--color-muted);
  transition: color .2s;
}
.footer-links a:hover {
  color: var(--color-primary);
}

.footer-lang {
  display: flex;
  gap: .5rem;
}
.footer-lang a {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  padding: .375rem .625rem;
  color: var(--color-muted);
  letter-spacing: .05em;
  border-radius: var(--radius);
  transition: all .15s;
}
.footer-lang a.active {
  background: var(--color-primary);
  color: var(--color-bg);
}
.footer-lang a:hover:not(.active) {
  color: var(--color-text);
}

.footer-copy {
  width: 100%;
  padding-block-start: 2rem;
  border-block-start: 1px solid var(--color-rule);
  margin-block-start: 1rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-muted);
}

/* ============ CONTENT PAGES ============ */
.content-page {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.content-page h1 {
  margin-block-end: 1.5rem;
}
.content-page article {
  margin-block-end: 2.5rem;
}
.content-page article h2 {
  margin-block-end: .75rem;
  font-size: 1.5rem;
  font-weight: 400;
}
.content-page article p {
  color: var(--color-muted);
}

/* Inline links in body text */
.content-page p a,
.zigzag-text p a,
.faq-list dd a {
  color: var(--color-primary);
  text-decoration: none;
  background-image: linear-gradient(var(--color-primary), var(--color-primary));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 95%;
  transition: background-size .2s, color .2s;
  padding-bottom: 1px;
}
.content-page p a:hover,
.zigzag-text p a:hover,
.faq-list dd a:hover {
  color: var(--color-accent);
  background-size: 100% 2px;
}

/* Detail list (arrow-prefixed items) */
.detail-list {
  margin-block: 1.5rem 0;
  padding: 0;
  border-block-start: 1px solid var(--color-rule);
}
.detail-list li {
  padding: .875rem 0 .875rem 1.5rem;
  border-block-end: 1px solid var(--color-rule);
  position: relative;
  font-size: .95rem;
  color: var(--color-text);
}
.detail-list li::before {
  content: "\2192";
  position: absolute;
  inset-inline-start: 0;
  color: var(--color-primary);
  font-weight: 500;
}

/* ============ MOBILE MENU ============ */
@media (max-width: 900px) {
  .header-grid {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 2;
  }

  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 100;
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-block-end: 1px solid var(--color-rule);
  }

  .main-nav a {
    display: block;
    padding: 1.125rem 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
  }
  .main-nav a::after {
    display: none;
  }

  /* Mobile close button */
  .menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--color-text);
    line-height: 1;
    padding: .5rem;
  }

  /* Dropdowns on mobile */
  .has-dropdown .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: none;
    min-width: 0;
  }

  .has-dropdown.dropdown-open .dropdown {
    display: block;
  }

  .dropdown a {
    padding: .75rem 0 .75rem 1.25rem;
    font-size: 1.1rem;
    font-family: var(--font-display);
  }

  .dropdown-toggle::after {
    transition: transform .2s;
  }
  .has-dropdown.dropdown-open .dropdown-toggle::after {
    transform: rotate(-135deg);
  }

  .lang-switcher {
    z-index: 101;
  }
}

/* ============ RESPONSIVE — TABLET ============ */
@media (max-width: 900px) {
  .zigzag-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .zigzag-block:nth-child(even) {
    direction: ltr;
  }
  .zigzag-image {
    order: -1;
  }
  .zigzag-image img {
    height: 280px;
  }

  .side-nav {
    position: static;
    border-inline-start: none;
    padding-inline-start: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .5rem;
    margin-block-end: 2rem;
  }
  .side-nav a {
    border-inline-start: none;
    margin-inline-start: 0;
    padding: .5rem .75rem;
    border: 1px solid var(--color-rule);
    border-radius: var(--radius);
  }
  .side-nav a.active,
  .side-nav a[aria-current="true"] {
    border-color: var(--color-primary);
  }
}

/* ============ RESPONSIVE — MOBILE ============ */
@media (max-width: 600px) {
  h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }
  h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 9vw, 3rem);
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .numbers-table td {
    padding: .625rem .5rem;
    font-size: .85rem;
  }

  .backlink-section {
    padding: 1.5rem;
  }

  .footer-grid {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 420px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ UTILITY ============ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============ CTA INLINE (cross-links) ============ */
.cta-inline { margin-top: 1rem; }
.inline-link {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 600;
}
.inline-link:hover { color: var(--color-accent); }

.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.text-primary { color: var(--color-primary); }
.mt-0 { margin-block-start: 0; }
.mb-0 { margin-block-end: 0; }
