/* ==========================================================================
   Psychotherapie Fauland — design system
   --------------------------------------------------------------------------
   One file, cached across all pages. Replaces the ~100 KB of inline CSS the
   Divi page builder shipped with every single request.

   Sections:  1 Tokens · 2 Reset · 3 Typography · 4 Layout · 5 Header
              6 Hero · 7 Cards · 8 Components · 9 Footer · 10 Utilities
   ========================================================================== */

@import url("fonts.css");

/* ==========================================================================
   1 — Tokens
   ========================================================================== */

:root {
  /* --- Colours -----------------------------------------------------------
     Derived from the hero photo: the dusk sky above the lake gives the rose,
     the water below gives the blue. Rose is a SURFACE colour — as type on
     white, #f8c4cb only reaches 1.4:1. Use --rose-ink for text (5.3:1). */
  --rose:       #f8c4cb;   /* brand colour: surfaces, panels, navigation    */
  --rose-tint:  #fdf2f4;   /* very light wash for quiet blocks              */
  --rose-mid:   #f0aab5;   /* rules, icon discs                             */
  --rose-ink:   #a4525d;   /* rose as TYPE — passes AA on white             */

  --dusk:       #2a3757;   /* dusk blue: body copy, headings                */
  --dusk-soft:  #5c6884;   /* secondary text, captions                      */
  --dusk-line:  #dfe3ec;   /* hairlines                                     */

  --paper:      #ffffff;   /* card surfaces                                 */
  --haze:       #f7f5f6;   /* page ground                                   */

  --focus:      #1b4ed8;   /* focus ring — deliberately outside the palette
                              so it can never blend into the design         */

  /* --- Spacing scale -----------------------------------------------------
     Replaces the page builder's mixed 20/40/60/90px values. Every spacing
     value in the project comes from this scale — no loose pixel numbers. */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* --- Typography --------------------------------------------------------
     Fluid via clamp(): one value instead of three media query steps. */
  --text-xs:   clamp(0.8125rem, 0.79rem + 0.11vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.85rem + 0.12vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.19vw, 1.0625rem);
  --text-lg:   clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --text-xl:   clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --text-2xl:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl:  clamp(1.875rem, 1.5rem + 1.8vw, 2.75rem);
  --text-4xl:  clamp(2.25rem, 1.6rem + 3.2vw, 4rem);

  --font-display: "Taviraj", "Iowan Old Style", Georgia, serif;
  --font-body:    "Hind", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Form --------------------------------------------------------------
     ONE shadow definition in three steps. The original mixed five slightly
     different box-shadow values. */
  --shadow-sm:    0 2px 8px -2px rgb(42 55 87 / 0.12);
  --shadow-card:  0 24px 60px -24px rgb(42 55 87 / 0.28);
  --shadow-float: 0 40px 90px -32px rgb(42 55 87 / 0.38);

  --radius:    4px;

  --measure: 68ch;         /* comfortable line length                       */
  --wrap:    1180px;       /* content width                                 */
  --gutter:  clamp(var(--space-4), 4vw, var(--space-16));

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ==========================================================================
   2 — Reset
   ========================================================================== */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-block-start: var(--space-24);
}

body {
  background: var(--haze);
  color: var(--dusk);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

ul, ol { padding: 0; list-style: none; }

a { color: var(--rose-ink); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--dusk); }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   3 — Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dusk);
  text-wrap: balance;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); font-weight: 600; line-height: 1.3; }
h4 { font-size: var(--text-lg); font-weight: 600; line-height: 1.3; }

p { text-wrap: pretty; max-width: var(--measure); }

strong { font-weight: 600; color: var(--dusk); }

/* Prose rhythm: spacing always comes from the following element, never the
   preceding one. Avoids margin-collapsing surprises at container edges. */
.prose > * + * { margin-block-start: var(--space-5); }
.prose > * + :is(h2, h3) { margin-block-start: var(--space-10); }
.prose :is(h2, h3) + * { margin-block-start: var(--space-4); }
.prose li { max-width: var(--measure); }

.lead {
  font-size: var(--text-lg);
  color: var(--dusk-soft);
}

/* ==========================================================================
   4 — Layout
   ========================================================================== */

.wrap {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow { --wrap: 860px; }

/* Skip link: only visible once it receives keyboard focus */
.skip {
  position: absolute;
  inset-inline-start: var(--space-4);
  inset-block-start: -100%;
  z-index: 100;
  padding: var(--space-3) var(--space-5);
  background: var(--paper);
  color: var(--dusk);
  font-weight: 600;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
}
.skip:focus { inset-block-start: var(--space-4); }

/* ==========================================================================
   5 — Header
   ========================================================================== */

.header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  background: var(--rose);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 3.75rem;
}

.header__brand {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dusk);
  text-decoration: none;
  white-space: nowrap;
}
.header__brand:hover { color: var(--dusk); opacity: 0.75; }

.nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-5);
  justify-content: flex-end;
}

.nav__link {
  display: block;
  padding-block: var(--space-2);
  /* Dusk blue on rose = 7.9:1. The original used light grey on rose
     (~1.5:1), which was effectively unreadable. */
  color: var(--dusk);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0.25rem;
  height: 2px;
  background: var(--dusk);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav__link:hover::after,
.nav__link:focus-visible::after { transform: scaleX(1); }

.nav__link[aria-current="page"] { font-weight: 700; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* Mobile: navigation as a disclosure list. No JavaScript needed — <details>
   handles state, keyboard operation and screen reader semantics natively. */
.nav__toggle { display: none; }

@media (width < 62rem) {
  .header__inner { min-height: 3.25rem; }
  .nav__toggle { display: block; }

  .nav__toggle > summary {
    list-style: none;
    cursor: pointer;
    padding: var(--space-2) var(--space-3);
    color: var(--dusk);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-2);
  }
  .nav__toggle > summary::-webkit-details-marker { display: none; }
  .nav__toggle > summary::after {
    content: "";
    width: 0.55rem; height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.25s var(--ease);
  }
  .nav__toggle[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }

  .nav--desktop { display: none; }

  .nav__toggle .nav__list {
    position: absolute;
    inset-inline: 0;
    background: var(--rose);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: var(--space-2) var(--gutter) var(--space-5);
    box-shadow: var(--shadow-card);
  }
  .nav__toggle .nav__link {
    padding-block: var(--space-3);
    border-block-end: 1px solid rgb(42 55 87 / 0.12);
  }
  .nav__toggle .nav__link::after { display: none; }
}

/* ==========================================================================
   6 — Hero
   ========================================================================== */

.hero {
  position: relative;
  display: grid;
  isolation: isolate;
}

.hero__media {
  grid-area: 1 / 1;
  position: relative;
  overflow: hidden;
}

/* Absolutely positioned so the image FILLS the area instead of defining it.
   In normal flow, height:100% resolves against nothing — a percentage height
   needs a parent with a definite height, and min-height is not one. The image
   would fall back to its intrinsic height and the hero would end up a
   different size at every viewport width. */
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.hero__body {
  grid-area: 1 / 1;
  display: grid;
  align-content: center;
  z-index: 1;
  padding-block: var(--space-16);
}

/* The rose panel — semi-transparent over the photo, as in the original.
   backdrop-filter lifts the type off the busy image behind it. */
.hero__panel {
  max-width: 34rem;
  padding: var(--space-10) var(--space-10) var(--space-12);
  /* 0.9 rather than 0.82: the photo still reads through, but the type sits
     on a dependable surface. Any more transparency and the crop of the image
     decides whether the text is legible. */
  background: rgb(248 196 203 / 0.9);
  backdrop-filter: blur(6px) saturate(1.1);
  box-shadow: var(--shadow-float);
}

.hero__panel h1 { margin-block-end: var(--space-3); }

/* No opacity on the text — it lowers contrast exactly where the background
   is at its most restless. */
.hero__panel .lead {
  color: var(--dusk);
  margin-block-end: var(--space-8);
}

@supports not (backdrop-filter: blur(6px)) {
  .hero__panel { background: rgb(248 196 203 / 0.96); }
}

/* Home page: tall photo */
.hero--home .hero__media { min-height: clamp(26rem, 62vh, 40rem); }

/* Sub pages: shallower photo, same parts. The header should introduce the
   page, not occupy half the first screen. */
.hero--page .hero__media { min-height: clamp(12rem, 26vh, 17rem); }
.hero--page .hero__body { padding-block: var(--space-10); }
.hero--page .hero__panel { padding: var(--space-8) var(--space-10); }
.hero--page .hero__panel h1 { margin-block-end: 0; }
.hero--page .hero__panel .lead { margin-block-end: 0; margin-block-start: var(--space-2); }

/* ==========================================================================
   7 — Cards
   ========================================================================== */

/* The floating white card is the signature element of the site. It pulls up
   over the hero — here via a grid offset rather than the original's -385px
   margin, so it no longer breaks at arbitrary viewport widths. */
.card {
  background: var(--paper);
  box-shadow: var(--shadow-card);
  padding: clamp(var(--space-8), 5vw, var(--space-16));
}

.card--lift {
  position: relative;
  z-index: 2;
  margin-block-start: clamp(calc(var(--space-16) * -1), -6vw, calc(var(--space-8) * -1));
}

.card + .card { margin-block-start: var(--space-12); }

/* --- Welcome block: copy and portrait side by side ---------------------- */

.welcome {
  display: grid;
  grid-template-columns: 1fr minmax(15rem, 19rem);
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}

/* The portrait breaks past the top edge of the card — the original's spatial
   trick, reproduced without a hard negative pixel margin. */
.welcome__portrait {
  margin-block-start: clamp(calc(var(--space-24) * -1), -9vw, calc(var(--space-10) * -1));
}

.welcome__portrait img {
  width: 100%;
  box-shadow: var(--shadow-float);
}

.welcome__caption {
  margin-block-start: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--dusk-soft);
  text-align: center;
  /* The name must not break mid-title. The original tore "BA BA / MA" apart
     with a justification gap. */
  text-wrap: balance;
}
.welcome__caption strong { display: block; color: var(--dusk); }
.welcome__caption em { font-style: italic; }

@media (width < 56rem) {
  .welcome { grid-template-columns: 1fr; }
  .welcome__portrait {
    margin-block-start: 0;
    max-width: 17rem;
    margin-inline: auto;
    order: -1;
  }
}

/* --- Quote + image ------------------------------------------------------ */

.quote-row {
  display: grid;
  grid-template-columns: 1fr minmax(14rem, 20rem);
  gap: clamp(var(--space-8), 5vw, var(--space-12));
  align-items: center;
}

.quote {
  padding: var(--space-10);
  background: var(--rose-tint);
  border-inline-start: 3px solid var(--rose-mid);
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.5;
  color: var(--dusk);
  max-width: 34ch;
}

.quote figcaption {
  margin-block-start: var(--space-4);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-ink);
}

.quote-row__img img { width: 100%; box-shadow: var(--shadow-card); }

@media (width < 52rem) {
  .quote-row { grid-template-columns: 1fr; }
  .quote-row__img { max-width: 20rem; }
}

/* ==========================================================================
   8 — Components
   ========================================================================== */

/* --- Button ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.btn::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}
.btn:hover::after { transform: translateX(3px); }

/* Primary: white surface, dark type — 11.9:1.
   The original put rose type on white here (1.4:1). */
.btn--primary {
  background: var(--paper);
  color: var(--dusk);
  box-shadow: var(--shadow-card);
}
.btn--primary:hover { background: var(--dusk); color: var(--paper); }

/* Secondary: rose outline with legible rose type (5.3:1) */
.btn--ghost {
  background: transparent;
  color: var(--rose-ink);
  border-color: var(--rose-mid);
}
.btn--ghost:hover { background: var(--rose-ink); color: var(--paper); border-color: var(--rose-ink); }

/* --- Tile grid ---------------------------------------------------------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-6);
}

.tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-8);
  background: var(--rose-tint);
  border-block-start: 3px solid var(--rose);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

/* flex-grow on the copy keeps every button on the same baseline, however
   many lines the description above it runs to. */
.tile p { flex-grow: 1; font-size: var(--text-sm); color: var(--dusk-soft); }
.tile .btn { align-self: flex-start; margin-block-start: var(--space-2); }

/* --- Icon blocks (Angebot, Schwerpunkte) -------------------------------- */

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5) var(--space-8);
  align-items: start;
}

.feature + .feature {
  margin-block-start: var(--space-12);
  padding-block-start: var(--space-12);
  border-block-start: 1px solid var(--dusk-line);
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  aspect-ratio: 1;
  background: var(--rose-tint);
  border-radius: 50%;
}
.feature__icon img { width: 2.25rem; }

.feature__body > * + * { margin-block-start: var(--space-4); }
.feature__body h2 { font-size: var(--text-2xl); }

@media (width < 40rem) {
  .feature { grid-template-columns: 1fr; gap: var(--space-4); }
  .feature__icon { width: 3.5rem; }
  .feature__icon img { width: 1.75rem; }
}

/* --- Lists -------------------------------------------------------------- */

/* Bulleted list with a rose marker instead of the default disc */
.list-marked li {
  position: relative;
  padding-inline-start: var(--space-6);
  max-width: var(--measure);
}
.list-marked li + li { margin-block-start: var(--space-3); }
.list-marked li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.7em;
  width: 0.5rem; height: 0.5rem;
  background: var(--rose-mid);
  border-radius: 50%;
}

/* Multi-column instead of one 13-line centred column. The original stacked
   the methods list vertically and spent almost a full screen height on it. */
.list-columns {
  columns: 2;
  column-gap: var(--space-10);
}
.list-columns li {
  break-inside: avoid;
  padding-block: var(--space-1);
  padding-inline-start: var(--space-5);
  position: relative;
}
.list-columns li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0.85em;
  width: 0.375rem; height: 0.375rem;
  background: var(--rose-mid);
  border-radius: 50%;
}
@media (width < 34rem) { .list-columns { columns: 1; } }

/* Focus areas as chips — 15 short terms that would waste a lot of vertical
   space as a stacked list. */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.chip {
  padding: var(--space-2) var(--space-5);
  background: var(--rose-tint);
  border: 1px solid var(--rose);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--dusk);
}

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

/* Deliberately capped at two columns rather than auto-fit: with four items,
   auto-fit fills three columns on wide screens and strands the fourth alone
   on the second row — squeezing the appointment paragraph into six lines.
   A 2x2 grid stays balanced and gives the copy room. */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-12) var(--space-16);
}

@media (width < 48rem) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-10); }
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
}

.contact-item__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  background: var(--rose);
  border-radius: 50%;
  color: var(--dusk);
}
.contact-item__icon svg { width: 1.375rem; height: 1.375rem; }

.contact-item h2 { font-size: var(--text-lg); font-weight: 600; margin-block-end: var(--space-2); }
.contact-item p, .contact-item address { font-size: var(--text-sm); font-style: normal; }
.contact-item a { font-weight: 600; }

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

.faq { border-block-start: 1px solid var(--dusk-line); }

.faq__item { border-block-end: 1px solid var(--dusk-line); }

.faq__item > summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-5);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.35;
  color: var(--dusk);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary:hover { color: var(--rose-ink); }

.faq__item > summary::after {
  content: "";
  flex: none;
  width: 0.7rem; height: 0.7rem;
  margin-block-start: 0.45em;
  border-right: 2px solid var(--rose-mid);
  border-bottom: 2px solid var(--rose-mid);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.faq__item[open] > summary::after { transform: rotate(-135deg); }

.faq__answer { padding-block-end: var(--space-6); }
.faq__answer > * + * { margin-block-start: var(--space-4); }

/* --- Data list (Impressum) ---------------------------------------------- */

.datalist { display: grid; gap: var(--space-5); }

.datalist__row {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) 1fr;
  gap: var(--space-2) var(--space-8);
  padding-block-end: var(--space-5);
  border-block-end: 1px solid var(--dusk-line);
}
.datalist__row:last-child { border-block-end: 0; padding-block-end: 0; }

.datalist dt { font-weight: 600; color: var(--dusk); }
.datalist dd { margin: 0; color: var(--dusk-soft); }

@media (width < 40rem) {
  .datalist__row { grid-template-columns: 1fr; }
}

/* --- Callout ------------------------------------------------------------ */

.note {
  padding: var(--space-6) var(--space-8);
  background: var(--rose-tint);
  border-inline-start: 3px solid var(--rose-mid);
}
.note > * + * { margin-block-start: var(--space-3); }

/* --- Location map ------------------------------------------------------- */

.map { margin-block-start: var(--space-8); }
.map img { width: 100%; box-shadow: var(--shadow-sm); }
.map figcaption {
  margin-block-start: var(--space-3);
  font-size: var(--text-xs);
  color: var(--dusk-soft);
}

/* ==========================================================================
   9 — Footer
   ========================================================================== */

.footer {
  margin-block-start: var(--space-24);
  padding-block: var(--space-12);
  background: var(--dusk);
  color: rgb(255 255 255 / 0.82);
}

.footer a { color: var(--paper); text-decoration-color: rgb(255 255 255 / 0.4); }
.footer a:hover { color: var(--rose); }

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8) var(--space-16);
  justify-content: space-between;
}

.footer__block h2 {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-block-end: var(--space-4);
}

.footer__block :is(p, address, li) { font-size: var(--text-sm); font-style: normal; }
.footer__block li + li { margin-block-start: var(--space-2); }

.footer__bottom {
  margin-block-start: var(--space-10);
  padding-block-start: var(--space-6);
  border-block-start: 1px solid rgb(255 255 255 / 0.16);
  font-size: var(--text-xs);
  color: rgb(255 255 255 / 0.6);
}

/* ==========================================================================
   10 — Utilities
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.stack-4  > * + * { margin-block-start: var(--space-4); }
.stack-6  > * + * { margin-block-start: var(--space-6); }
.stack-8  > * + * { margin-block-start: var(--space-8); }
.stack-12 > * + * { margin-block-start: var(--space-12); }

.text-center { text-align: center; }

/* ==========================================================================
   Print
   ========================================================================== */

@media print {
  .header, .footer, .hero__media, .skip, .btn { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .card { box-shadow: none; padding: 0; margin-block-start: 0; }
  /* Force collapsed FAQ answers open so nothing is lost on paper */
  .faq__answer { display: block !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
