/* ============================================================================
   PawDoc Legal Portal — design system
   Teal + cream, soft gradients, botanical motifs, editorial typography.
   Hand-authored; no framework. Light/dark aware, responsive, accessible.
   ========================================================================== */

/* ---------- Design tokens ------------------------------------------------- */
:root {
  /* Brand */
  --teal-900: #0a4d44;
  --teal-700: #0b6357;
  --teal-600: #0e7c6b;
  --teal-500: #129b86;
  --teal-300: #7fd1c0;
  --teal-100: #d7efe9;
  --mint-050: #eef8f5;

  /* Cream / paper */
  --cream-050: #fcfaf4;
  --cream-100: #f7f3e9;
  --cream-200: #efe9da;
  --sand-300: #e4dcc8;

  /* Ink */
  --ink-900: #16241f;
  --ink-700: #2b3a35;
  --ink-500: #4c5a54;
  --ink-400: #6b7873;

  /* Semantic (light) */
  --bg: var(--cream-050);
  --bg-elev: #ffffff;
  --bg-sunk: var(--cream-100);
  --surface: #ffffff;
  --surface-2: var(--mint-050);
  --text: var(--ink-900);
  --text-muted: var(--ink-500);
  --text-soft: var(--ink-400);
  --brand: var(--teal-600);
  --brand-strong: var(--teal-700);
  --brand-ink: var(--teal-900);
  --border: #e7e1d2;
  --border-strong: #d8d0bd;
  --ring: rgba(18, 155, 134, 0.45);
  --shadow-sm: 0 1px 2px rgba(16, 40, 35, 0.05), 0 1px 3px rgba(16, 40, 35, 0.06);
  --shadow-md: 0 6px 18px -6px rgba(12, 60, 52, 0.18), 0 2px 6px rgba(12, 60, 52, 0.08);
  --shadow-lg: 0 24px 60px -24px rgba(10, 77, 68, 0.35);

  --warn-bg: #fff7e8;
  --warn-border: #f0d9a8;
  --warn-ink: #7a5a16;
  --alert-bg: #fdeceb;
  --alert-border: #f3c3bf;
  --alert-ink: #8c2f27;

  /* Type */
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
    Georgia, "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "JetBrains Mono", "Fira Code", Menlo,
    Consolas, monospace;

  --measure: 72ch;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --header-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c1714;
    --bg-elev: #11201c;
    --bg-sunk: #0a1310;
    --surface: #12211d;
    --surface-2: #15302a;
    --text: #eaf3ef;
    --text-muted: #aebeb8;
    --text-soft: #8aa099;
    --brand: var(--teal-300);
    --brand-strong: #9fe0d1;
    --brand-ink: #c7ece3;
    --border: #1f342e;
    --border-strong: #294740;
    --ring: rgba(127, 209, 192, 0.5);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px -10px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
    --warn-bg: #2a230f;
    --warn-border: #4a3c18;
    --warn-ink: #e8cf90;
    --alert-bg: #2c1512;
    --alert-border: #5a2620;
    --alert-ink: #f0b3ac;
  }
}

/* Manual override (theme toggle) */
[data-theme="light"] {
  color-scheme: light;
}
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0c1714;
  --bg-elev: #11201c;
  --bg-sunk: #0a1310;
  --surface: #12211d;
  --surface-2: #15302a;
  --text: #eaf3ef;
  --text-muted: #aebeb8;
  --text-soft: #8aa099;
  --brand: var(--teal-300);
  --brand-strong: #9fe0d1;
  --brand-ink: #c7ece3;
  --border: #1f342e;
  --border-strong: #294740;
  --ring: rgba(127, 209, 192, 0.5);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px -10px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 30px 70px -30px rgba(0, 0, 0, 0.7);
  --warn-bg: #2a230f;
  --warn-border: #4a3c18;
  --warn-ink: #e8cf90;
  --alert-bg: #2c1512;
  --alert-border: #5a2620;
  --alert-ink: #f0b3ac;
}

/* ---------- Reset --------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Botanical wash — layered radial gradients + faint leaf motif */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 680px at 88% -8%, var(--teal-100), transparent 60%),
    radial-gradient(900px 600px at -6% 4%, var(--mint-050), transparent 55%),
    radial-gradient(1200px 900px at 50% 120%, var(--cream-100), transparent 60%);
  opacity: 0.9;
}
@media (prefers-color-scheme: dark) {
  body::before {
    background:
      radial-gradient(1100px 680px at 88% -8%, rgba(18, 100, 88, 0.22), transparent 60%),
      radial-gradient(900px 600px at -6% 4%, rgba(15, 70, 62, 0.25), transparent 55%),
      radial-gradient(1200px 900px at 50% 120%, rgba(10, 30, 26, 0.6), transparent 60%);
  }
}
[data-theme="dark"] body::before {
  background:
    radial-gradient(1100px 680px at 88% -8%, rgba(18, 100, 88, 0.22), transparent 60%),
    radial-gradient(900px 600px at -6% 4%, rgba(15, 70, 62, 0.25), transparent 55%),
    radial-gradient(1200px 900px at 50% 120%, rgba(10, 30, 26, 0.6), transparent 60%);
}

a {
  color: var(--brand-strong);
  text-decoration: none;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
a:hover {
  text-decoration: underline;
}
img,
svg {
  max-width: 100%;
  display: block;
}
:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Header -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  font-size: 1.05rem;
}
.brand:hover {
  text-decoration: none;
}
.brand__mark {
  width: 30px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--teal-500), var(--teal-700));
  box-shadow: var(--shadow-sm);
}
.brand__mark svg {
  width: 19px;
  height: 19px;
}
.brand__word {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__word small {
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.header-spacer {
  flex: 1;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  color: var(--text-muted);
  font-size: 0.93rem;
  font-weight: 550;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
.header-nav a:hover {
  color: var(--text);
  background: var(--surface-2);
  text-decoration: none;
}
.theme-toggle {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.theme-toggle:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}
.theme-toggle .icon-sun {
  display: none;
}
[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}
[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun {
    display: block;
  }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon {
    display: none;
  }
}

/* ---------- Layout -------------------------------------------------------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
main {
  display: block;
}
.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1000px) {
  .page.has-toc {
    grid-template-columns: 1fr 248px;
    align-items: start;
  }
  .page.has-toc .doc {
    grid-row: 1;
    grid-column: 1;
  }
  .page.has-toc .toc {
    grid-row: 1;
    grid-column: 2;
  }
}

/* ---------- Hero ---------------------------------------------------------- */
.hero {
  position: relative;
  margin: 28px auto 36px;
  padding: 44px clamp(24px, 5vw, 56px);
  max-width: 1180px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, var(--surface), var(--surface));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero::after {
  /* botanical sprig, top-right */
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 280px;
  height: 280px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%230e7c6b' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M100 190 C100 120 100 70 100 20'/%3E%3Cpath d='M100 150 C70 140 55 120 52 92 C82 96 98 116 100 150Z' fill='%230e7c6b' fill-opacity='0.5'/%3E%3Cpath d='M100 120 C130 112 146 92 150 64 C120 68 102 88 100 120Z' fill='%230e7c6b' fill-opacity='0.5'/%3E%3Cpath d='M100 88 C74 80 60 62 58 38 C84 44 98 62 100 88Z' fill='%230e7c6b' fill-opacity='0.5'/%3E%3Cpath d='M100 64 C124 58 138 40 142 18 C116 22 102 40 100 64Z' fill='%230e7c6b' fill-opacity='0.5'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.hero__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--brand);
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.hero__icon svg {
  width: 24px;
  height: 24px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--text);
  max-width: 18ch;
}
.hero__sub {
  margin-top: 14px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-muted);
  max-width: 56ch;
}
.hero__meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.hero__meta b {
  color: var(--text-muted);
  font-weight: 600;
}
.hero__meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}

/* ---------- Notice / callout --------------------------------------------- */
.notice {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin: 22px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.notice svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  color: var(--brand);
}
.notice strong {
  color: var(--text);
}
.notice--warn {
  background: var(--warn-bg);
  border-color: var(--warn-border);
  color: var(--warn-ink);
}
.notice--warn svg,
.notice--warn strong {
  color: var(--warn-ink);
}
.notice--alert {
  background: var(--alert-bg);
  border-color: var(--alert-border);
  color: var(--alert-ink);
}
.notice--alert svg,
.notice--alert strong {
  color: var(--alert-ink);
}

/* ---------- Document body (rendered markdown) ----------------------------- */
.doc {
  min-width: 0;
}
.prose {
  max-width: var(--measure);
  font-size: 1.04rem;
}
.prose > * + * {
  margin-top: 1.1em;
}
.prose h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.012em;
  line-height: 1.2;
  margin-top: 2.4em;
  padding-top: 0.4em;
  color: var(--text);
  scroll-margin-top: calc(var(--header-h) + 18px);
}
.prose h2:first-child {
  margin-top: 0.6em;
}
.prose h3 {
  font-weight: 700;
  font-size: 1.16rem;
  margin-top: 1.9em;
  color: var(--text);
  scroll-margin-top: calc(var(--header-h) + 18px);
}
.prose h2 .anchor,
.prose h3 .anchor {
  opacity: 0;
  margin-left: 0.4em;
  color: var(--text-soft);
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.15s;
}
.prose h2:hover .anchor,
.prose h3:hover .anchor {
  opacity: 1;
}
.prose p,
.prose li {
  color: var(--text-muted);
}
.prose strong {
  color: var(--text);
  font-weight: 650;
}
.prose ul,
.prose ol {
  padding-left: 1.3em;
}
.prose li + li {
  margin-top: 0.45em;
}
.prose li::marker {
  color: var(--brand);
}
.prose a {
  color: var(--brand-strong);
  font-weight: 550;
}
.prose code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.1em 0.4em;
  border-radius: 6px;
  color: var(--brand-ink);
}
.prose blockquote {
  border-left: 3px solid var(--brand);
  padding: 4px 0 4px 18px;
  color: var(--text-muted);
  font-style: italic;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.4em 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 0.4em 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.prose thead {
  background: var(--surface-2);
}
.prose th,
.prose td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-muted);
}
.prose th {
  color: var(--text);
  font-weight: 650;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.prose tbody tr:last-child td {
  border-bottom: none;
}
.prose tbody tr:nth-child(even) {
  background: color-mix(in srgb, var(--surface-2) 45%, transparent);
}

/* ---------- TOC sidebar --------------------------------------------------- */
.toc {
  display: none;
}
@media (min-width: 1000px) {
  .toc {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
    font-size: 0.88rem;
  }
}
.toc__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.toc ul {
  list-style: none;
  padding: 0;
  border-left: 1px solid var(--border);
}
.toc li {
  margin: 0;
}
.toc a {
  display: block;
  padding: 6px 0 6px 14px;
  margin-left: -1px;
  color: var(--text-soft);
  border-left: 2px solid transparent;
  line-height: 1.35;
}
.toc a:hover {
  color: var(--text);
  text-decoration: none;
}
.toc a.is-active {
  color: var(--brand-strong);
  border-left-color: var(--brand);
  font-weight: 600;
}

/* ---------- Index (landing) ---------------------------------------------- */
.index-intro {
  max-width: var(--measure);
  margin: 0 auto;
}
.index-intro p {
  color: var(--text-muted);
  font-size: 1.08rem;
}
.cat {
  margin-top: 52px;
}
.cat__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.cat__head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text);
}
.cat__head span {
  color: var(--text-soft);
  font-size: 0.9rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(264px, 1fr));
  gap: 16px;
}
.policy-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.policy-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-300);
}
.policy-card__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--surface-2);
  color: var(--brand);
  border: 1px solid var(--border);
}
.policy-card__icon svg {
  width: 21px;
  height: 21px;
}
.policy-card h3 {
  font-size: 1.06rem;
  font-weight: 650;
  color: var(--text);
}
.policy-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
}
.policy-card__more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-strong);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.policy-card:hover .policy-card__more svg {
  transform: translateX(3px);
}
.policy-card__more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease);
}

/* ---------- Prev/Next + back link ---------------------------------------- */
.doc-foot {
  max-width: var(--measure);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}
.back-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.back-all:hover {
  color: var(--brand);
  text-decoration: none;
}
.back-all svg {
  width: 16px;
  height: 16px;
}

/* ---------- Footer -------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-sunk);
  padding: 56px 0 40px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
.footer-brand p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.9rem;
  max-width: 34ch;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-col a:hover {
  color: var(--brand);
  text-decoration: none;
}
.footer-bottom {
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 22px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  align-items: center;
  color: var(--text-soft);
  font-size: 0.82rem;
}
.footer-disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 18px;
}
.footer-disclaimer p {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 90ch;
}

/* ---------- Motion -------------------------------------------------------- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fade-up 0.6s var(--ease) both;
}
.fade-up-2 {
  animation: fade-up 0.6s var(--ease) 0.06s both;
}
.fade-up-3 {
  animation: fade-up 0.6s var(--ease) 0.12s both;
}

/* ---------- Print --------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .toc,
  .theme-toggle,
  .doc-foot,
  .hero__icon {
    display: none !important;
  }
  body::before {
    display: none;
  }
  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }
  .hero {
    border: none;
    box-shadow: none;
    padding: 0 0 12px;
  }
  .page,
  .prose {
    max-width: none;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
  .prose a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 9pt;
    color: #555;
  }
}

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