/* ==========================================================================
   Autorijschool Ariana
   Palet: nachtblauw asfalt, signaal-amber, noordelijk teal.
   Signatuur: de talenband (endoniemen in het eigen schrift).
   ========================================================================== */

:root {
  --ink: #0e1b2b;
  --ink-2: #17293f;
  --ink-3: #22385226;
  --body: #38495f;
  --body-soft: #5a6c82;
  --paper: #eef2f6;
  --surface: #ffffff;
  --amber: #ffb022;
  --amber-dark: #e08f0d;
  --teal: #0a7268;
  --teal-deep: #075c54;
  --teal-wash: #e2f0ee;
  --line: #d8e0e8;
  --line-dark: #2b4059;

  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  --font-intl: system-ui, "Noto Sans", "Noto Naskh Arabic", "Segoe UI", Tahoma, sans-serif;

  --wrap: 1120px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(14, 27, 43, .06), 0 8px 24px rgba(14, 27, 43, .07);
  --shadow-lift: 0 2px 4px rgba(14, 27, 43, .08), 0 18px 40px rgba(14, 27, 43, .13);
}

/* --- reset ------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  overflow-wrap: break-word;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.05rem, 1.35rem + 2.8vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .45vw, 1.35rem); letter-spacing: -.015em; }
h4 { font-size: 1.02rem; letter-spacing: -.01em; }

p, ul, ol, dl, table { margin: 0 0 1.1rem; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

a { color: var(--teal); text-underline-offset: .18em; }
a:hover { color: var(--teal-deep); }

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

/* --- layout helpers ----------------------------------------------------- */

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

.section { padding-block: clamp(3.25rem, 6vw, 5.5rem); }
.section--tight { padding-block: clamp(2.5rem, 4.5vw, 3.75rem); }
.section--surface { background: var(--surface); }
.section--ink { background: var(--ink); color: #c6d3e2; }
.section--ink h2, .section--ink h3 { color: #fff; }

.lede {
  font-size: clamp(1.06rem, 1rem + .38vw, 1.22rem);
  color: var(--body);
  max-width: 62ch;
}

.section--ink .lede { color: #b9c8da; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .705rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 .85rem;
  font-weight: 600;
}

.section--ink .eyebrow { color: var(--amber); }

.section-head { max-width: 64ch; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: var(--ink);
  padding: .7rem 1.1rem;
  font-weight: 700;
  z-index: 200;
}
.skip-link:focus { left: .5rem; top: .5rem; }

/* --- buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: .975rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}

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

.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: #ffbe45; color: var(--ink); }

.btn--ghost { border-color: #ffffff59; color: #fff; }
.btn--ghost:hover { border-color: #fff; color: #fff; background: #ffffff14; }

.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}

.btn-note {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  margin-top: .95rem;
  color: var(--body-soft);
}

.section--ink .btn-note { color: #a7bacd; }

/* --- header ------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  color: #fff;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 1.02rem;
  padding-block: .8rem;
}

.brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 9px;
  background: var(--amber);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: .95rem;
  font-weight: 800;
}

.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__sub {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 500;
  color: #8fa3ba;
  margin-top: .18rem;
}

/* Mobiel menu zonder JavaScript: een verborgen maar focusbare checkbox. */
.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

.nav__summary {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .95rem;
  border: 1px solid #ffffff3d;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  user-select: none;
}

.nav-toggle:focus-visible + .nav__summary {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.nav__bars { display: block; width: 17px; height: 2px; background: currentColor; position: relative; }
.nav__bars::before, .nav__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 2px;
  background: currentColor;
}
.nav__bars::before { top: -5px; }
.nav__bars::after { top: 5px; }

.nav__panel {
  display: none;
  width: 100%;
  border-top: 1px solid var(--line-dark);
  padding: .4rem 0 1.4rem;
}

.nav-toggle:checked ~ .nav__panel { display: block; }

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.nav__list a {
  display: block;
  padding: .8rem .2rem;
  color: #dce5ef;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #ffffff14;
}
.nav__list a:hover { color: #fff; }
.nav__list a[aria-current="page"] { color: var(--amber); }

.nav__cta { margin-top: 1.1rem; display: flex; }
.nav__cta .btn { width: 100%; }

/* Merk en menuknop blijven op één regel staan op smalle schermen. */
@media (max-width: 899px) {
  .brand { font-size: .95rem; flex: 0 1 auto; min-width: 0; }
  .brand__sub { font-size: .575rem; letter-spacing: .1em; }
  .nav__summary { flex: none; }
}

/* Op telefoonbreedte past de ondertitel er niet naast: hij staat ook in de
   hero en de footer, dus hier weglaten in plaats van laten omvallen. */
@media (max-width: 479px) {
  .brand__sub { display: none; }
}

@media (min-width: 900px) {
  .nav__summary { display: none; }
  .nav-toggle:checked ~ .nav__panel,
  .nav__panel {
    display: flex;
    align-items: center;
    width: auto;
    border: 0;
    padding: 0;
    margin-left: auto;
  }
  .nav__list { flex-direction: row; align-items: center; gap: .3rem; }
  .nav__list a {
    border: 0;
    padding: .5rem .7rem;
    border-radius: 8px;
    font-size: .93rem;
  }
  .nav__list a:hover { background: #ffffff12; }
  .nav__list a[aria-current="page"] { background: #ffffff12; }
  .nav__cta { margin: 0 0 0 .8rem; }
  .nav__cta .btn { padding: .6rem 1.05rem; font-size: .9rem; width: auto; }
}

/* --- hero --------------------------------------------------------------- */

.hero {
  background: var(--ink);
  color: #c6d3e2;
  position: relative;
  padding-block: clamp(2.75rem, 6vw, 5rem) clamp(3.5rem, 7vw, 5.5rem);
}

.hero::after {
  /* de wegmarkering: het enige decoratieve element op de site */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background:
    repeating-linear-gradient(to right, var(--amber) 0 48px, transparent 48px 132px),
    var(--ink-2);
  opacity: .95;
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}

@media (min-width: 940px) {
  .hero__grid { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr); }
}

.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--amber); }

.hero__lede { color: #b9c8da; font-size: clamp(1.06rem, 1rem + .4vw, 1.24rem); max-width: 54ch; }

.hero__facts {
  list-style: none;
  margin: 1.7rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .55rem;
}

.hero__facts li {
  font-family: var(--font-mono);
  font-size: .73rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #cddcec;
  border: 1px solid #ffffff2e;
  border-radius: 999px;
  padding: .4rem .8rem;
}

/* --- signatuur: de talenband -------------------------------------------- */

.langband {
  background: linear-gradient(160deg, #17293f 0%, #101f31 100%);
  border: 1px solid #2b4059;
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.75rem);
}

.langband__list {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: .1rem;
}

.langband__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .62rem 0;
  border-bottom: 1px dashed #2f4762;
}
.langband__list li:last-child { border-bottom: 0; }

.langband__native {
  font-family: var(--font-intl);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.35;
}

.langband__nl {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #8fa3ba;
  white-space: nowrap;
}

.langband__note { font-size: .93rem; color: #b9c8da; margin: 0; }

/* --- cards -------------------------------------------------------------- */

.grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  box-shadow: var(--shadow);
}

.card h3 { margin-bottom: .45rem; }
.card p { font-size: .975rem; }

.card--link { transition: transform .18s ease, box-shadow .18s ease; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.card__more {
  display: inline-block;
  margin-top: .85rem;
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 1px;
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-wash);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  margin-bottom: .95rem;
}
.card__icon svg { width: 21px; height: 21px; }

.section--ink .card {
  background: var(--ink-2);
  border-color: var(--line-dark);
  box-shadow: none;
  color: #b9c8da;
}
.section--ink .card__icon { background: #ffffff14; color: var(--amber); }

/* --- prijzen ------------------------------------------------------------ */

.price-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pack {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.4vw, 1.75rem);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.pack__name {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 .5rem;
}

.pack__price {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
  margin: 0 0 1.1rem;
}

.pack__list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: .55rem;
  font-size: .96rem;
}

.pack__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: .55rem;
  align-items: start;
}

.pack__list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: .48rem;
  border-radius: 2px;
  background: var(--amber);
}

.pack .btn { margin-top: auto; }

.pack--wide { grid-column: 1 / -1; }

.price-table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.price-table th, .price-table td {
  text-align: left;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.price-table th {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--body-soft);
  font-weight: 600;
}
.price-table td:last-child, .price-table th:last-child { text-align: right; }
.price-table .price-table__amount {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.notice {
  border-left: 3px solid var(--amber);
  background: #fff7e8;
  padding: .95rem 1.15rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .95rem;
  color: var(--ink-2);
}

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

.faq { display: grid; gap: .75rem; max-width: 74ch; }

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 1.15rem;
}

.faq__q {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: 1.05rem 2rem 1.05rem 0;
  position: relative;
}
.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--teal);
  line-height: 1;
}
.faq__item[open] .faq__q::after { content: "\2013"; }

.faq__a { padding-bottom: 1.15rem; font-size: .985rem; }
.faq__a p:first-child { margin-top: 0; }

/* --- contact ------------------------------------------------------------ */

.contact-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.contact-card__label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--body-soft);
  font-weight: 600;
}

.contact-card__value {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.01em;
  overflow-wrap: break-word;
}
a.contact-card__value:hover { color: var(--teal-deep); }

.contact-card__note { font-size: .9rem; color: var(--body-soft); }

.map-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  box-shadow: var(--shadow);
}
.map-link img { width: 100%; }
.map-link__label {
  display: block;
  padding: .85rem 1.15rem;
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
}
.map-link:hover .map-link__label { color: var(--teal-deep); }

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 190px;
  background:
    repeating-linear-gradient(135deg, #e6edf3 0 14px, #eff3f7 14px 28px);
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .06em;
  line-height: 1.9;
  text-align: center;
  padding: 1.5rem 1rem;
}

/* --- CTA band ----------------------------------------------------------- */

.cta-band { background: var(--ink); color: #b9c8da; }
.cta-band h2 { color: #fff; }
.cta-band__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .cta-band__inner { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
  .cta-band .btn-row { margin-top: 0; justify-content: flex-end; }
}

/* --- prose -------------------------------------------------------------- */

.prose { max-width: 68ch; }
.prose h2:not(:first-child) { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.9rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .6rem; }
.prose ol { counter-reset: none; }
.prose ol li::marker { font-family: var(--font-mono); font-weight: 700; color: var(--teal); }
.prose ul li::marker { color: var(--amber); }

/* Links op donkere vlakken houden voldoende contrast. */
.hero a:not(.btn),
.section--ink a:not(.btn),
.cta-band a:not(.btn),
.langband a { color: #ffcd7a; }
.hero a:not(.btn):hover,
.section--ink a:not(.btn):hover,
.cta-band a:not(.btn):hover,
.langband a:hover { color: #ffe1ac; }

/* Talenpagina: het signatuurelement op ware grootte. */
.lang-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.lang-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .45rem;
  min-height: 128px;
  justify-content: center;
}

.lang-card__native {
  font-family: var(--font-intl);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.3;
}

.lang-card__nl {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--body-soft);
  font-weight: 600;
}

.quote {
  border-left: 3px solid var(--amber);
  padding: .35rem 0 .35rem 1.25rem;
  margin: 1.8rem 0;
  font-size: 1.1rem;
  color: var(--ink-2);
}

.split {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); }
}

.aside-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  box-shadow: var(--shadow);
  font-size: .97rem;
}
.aside-card h3 { margin-bottom: .7rem; }
.aside-card dl { margin: 0; display: grid; gap: .75rem; }
.aside-card dt {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--body-soft);
  font-weight: 600;
}
.aside-card dd { margin: .1rem 0 0; font-weight: 600; color: var(--ink); }

/* --- breadcrumbs -------------------------------------------------------- */

.crumbs {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--body-soft);
  padding-top: 1.5rem;
}
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.crumbs li::after { content: "/"; margin-left: .45rem; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--body-soft); }

.page-head { background: var(--surface); border-bottom: 1px solid var(--line); }
.page-head .section { padding-block: clamp(2.25rem, 4.5vw, 3.5rem); }

/* --- footer ------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: #96a9bf;
  font-size: .95rem;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem;
}

.site-footer h2, .site-footer h3 {
  color: #fff;
  font-size: .72rem;
  font-family: var(--font-mono);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .9rem;
}

.site-footer a { color: #dce5ef; text-decoration: none; }
.site-footer a:hover { color: var(--amber); }

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .82rem;
  color: #7d92aa;
}

address { font-style: normal; }

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

.center-page {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.center-page .wrap { max-width: 56ch; }

/* --- motion ------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover, .card--link:hover { transform: none; }
}

@media print {
  .site-header, .cta-band, .btn-row { display: none; }
  body { background: #fff; }
}
