/* ==========================================================================
   Drs Rego — styles.css
   Editorial-minimal design system. One file, no build step.
   Contents:
     1. Design tokens (colours, type, spacing)
     2. Reset & base
     3. Typography
     4. Layout primitives (container, section, grid, hairlines)
     5. Buttons & links
     6. Header & navigation
     7. Image cards (notch treatment)
     8. Homepage components (hero, funnel, services, steps, proof, bands)
     9. Inner-page components (service sections, FAQ, founder block)
    10. Forms (contact page)
    11. Footer
    12. Scroll reveal & motion
    13. Utilities & print
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colours — never more than these five */
  --paper: #FFFFFF;
  --ink: #141B2E;
  --accent: #2B4EFF;
  --slate: #5A6376;
  --mist: #ECEEF3;

  /* Type */
  --font-display: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --text-body: 1.0625rem;        /* 17px */
  --leading-body: 1.65;
  --measure: 68ch;

  /* Spacing — 8px scale */
  --s-1: 0.5rem;   /*  8px */
  --s-2: 1rem;     /* 16px */
  --s-3: 1.5rem;   /* 24px */
  --s-4: 2rem;     /* 32px */
  --s-5: 3rem;     /* 48px */
  --s-6: 4rem;     /* 64px */
  --s-7: 6rem;     /* 96px */
  --s-8: 8.5rem;   /* 136px — section rhythm, desktop */

  --container: 75rem;            /* 1200px */
  --radius: 2px;
  --header-h: 5.25rem;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

/* Consistent slight warm grade so mixed photography sits together */
.photo { filter: saturate(0.94) contrast(0.99) sepia(0.05); }

/* Visible focus for keyboard users on every interactive element */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection { background: var(--accent); color: var(--paper); }

/* Skip link — first focusable element on every page */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s-2);
  z-index: 200;
  padding: var(--s-1) var(--s-2);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.875rem;
  text-decoration: none;
}
.skip-link:focus { top: var(--s-1); }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 var(--s-3);
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 1.2rem + 3.7vw, 4.25rem); }     /* 36 → 68px */
h2 { font-size: clamp(1.75rem, 1.2rem + 1.9vw, 2.75rem); }     /* 28 → 44px */
h3 { font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem); line-height: 1.25; letter-spacing: -0.015em; }

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

p {
  margin: 0 0 var(--s-3);
  max-width: var(--measure);
  color: var(--ink);
}

.lede {
  font-size: 1.1875rem;
  color: var(--slate);
}

.muted { color: var(--slate); }

/* Eyebrow — letterspaced caps label above headings */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--s-2);
}

.small { font-size: 0.875rem; }

/* --------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-3);
}

.section { padding-block: var(--s-7); }

/* Hairline rule between sections instead of background changes */
.section + .section,
.hairline-top { border-top: 1px solid var(--mist); }

.section-head { margin-bottom: var(--s-6); }

.grid {
  display: grid;
  gap: var(--s-4);
}

@media (min-width: 48em) {
  .section { padding-block: var(--s-8); }
  .container { padding-inline: var(--s-4); }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------------------------------------------------------------
   5. BUTTONS & LINKS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.9em 1.6em;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { background: var(--ink); border-color: var(--ink); }

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Buttons on navy bands */
.btn-inverse {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}
.btn-inverse:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

/* Arrow glyph nudges 4px right on hover */
.btn .arrow,
.link-arrow .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arrow,
.link-arrow:hover .arrow { transform: translateX(4px); }

/* Text links: 1px accent underline slides in on hover */
.link-arrow,
.prose a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.25s ease;
}
.link-arrow:hover,
.prose a:hover { background-size: 100% 1px; }

/* --------------------------------------------------------------------------
   6. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--mist); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: var(--header-h);
  padding-block: var(--s-2);
}

.brand {
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  display: block;
  height: 42px;
  width: auto;
}
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.1;
}
.brand-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav { display: flex; align-items: center; gap: var(--s-4); }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: var(--ink);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.25s ease, color 0.2s ease;
  padding-block: 0.25em;
}
.nav-list a:hover { background-size: 100% 1px; color: var(--accent); }
.nav-list a[aria-current="page"] {
  color: var(--accent);
  background-size: 100% 1px;
}

/* Keep the long tagline from crowding the nav at mid widths */
@media (max-width: 78em) {
  .site-header .brand-tag { max-width: 30ch; }
}

/* Mobile navigation panel */
@media (max-width: 64em) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--mist);
    padding: var(--s-2) var(--s-3) var(--s-4);
  }
  .site-nav.is-open { display: flex; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-list a {
    display: block;
    padding: var(--s-2) 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--mist);
  }
  .site-nav .btn { margin-top: var(--s-3); justify-content: center; }
}

/* --------------------------------------------------------------------------
   7. IMAGE CARDS — photo with accent square notch on the top-right corner
   -------------------------------------------------------------------------- */
.img-card {
  position: relative;
  margin: 0;
}
.img-card::after {                 /* the notch */
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 44px;
  height: 44px;
  background: var(--accent);
}
.img-card img { width: 100%; }
.img-card .img-label {
  position: absolute;
  left: var(--s-3);
  bottom: var(--s-3);
  z-index: 1;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(20, 27, 46, 0.55);
}

/* --------------------------------------------------------------------------
   8. HOMEPAGE COMPONENTS
   -------------------------------------------------------------------------- */

/* Hero */
.hero { padding-block: var(--s-6) var(--s-7); }
.hero-grid {
  display: grid;
  gap: var(--s-5);
  align-items: center;
}
.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}
.hero .footnote {
  margin-top: var(--s-2);
  font-size: 0.8125rem;
  color: var(--slate);
}
@media (min-width: 60em) {
  .hero { padding-block: var(--s-7) var(--s-8); }
  .hero-grid { grid-template-columns: 7fr 5fr; gap: var(--s-6); }
}

/* Split-funnel cards */
.funnel-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.funnel-card .img-card img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.funnel-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--slate);
}
.funnel-card li {
  padding: var(--s-1) 0 var(--s-1) 1.4em;
  position: relative;
}
.funnel-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 0.55em;
  height: 1px;
  background: var(--accent);
}

/* Services strip — numbered grid */
.services-grid {
  display: grid;
  gap: 1px;                        /* hairline gaps via background */
  background: var(--mist);
  border: 1px solid var(--mist);
}
.service-item {
  background: var(--paper);
  padding: var(--s-4);
}
.service-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.service-item p { margin: 0; color: var(--slate); font-size: 0.9375rem; }
@media (min-width: 40em) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 60em) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* How it works — oversized numerals behind steps */
.steps {
  display: grid;
  gap: var(--s-5);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: var(--s-5);
}
.step .big-num {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 6rem;                 /* 96px */
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  user-select: none;
}
.step h3 { position: relative; }
.step p { color: var(--slate); font-size: 0.9375rem; margin: 0; }
@media (min-width: 48em) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 60em) { .steps { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); } }

/* Why Drs Rego — proof points */
.proof-grid { display: grid; gap: var(--s-4); }
.proof-item {
  border-top: 2px solid var(--ink);
  padding-top: var(--s-3);
}
.proof-item h3 { margin-bottom: var(--s-2); }
.proof-item p { color: var(--slate); margin: 0; }
@media (min-width: 48em) { .proof-grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); } }

/* Scope note band — mist background */
.scope-band {
  background: var(--mist);
  padding-block: var(--s-5);
}
.scope-band p { margin: 0 auto; text-align: center; max-width: 56ch; }
.scope-band .scope-heading {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  margin-bottom: var(--s-2);
}

/* Closing CTA band — navy */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--s-7);
  text-align: center;
}
.cta-band h2 { color: var(--paper); }
.cta-band p {
  color: var(--mist);
  margin-inline: auto;
  margin-bottom: var(--s-4);
}

/* Full-bleed image band */
.bleed-band { position: relative; }
.bleed-band img {
  width: 100%;
  height: min(60vh, 34rem);
  object-fit: cover;
}
.bleed-band .img-label {
  position: absolute;
  left: var(--s-3);
  bottom: var(--s-3);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(20, 27, 46, 0.55);
}

/* --------------------------------------------------------------------------
   9. INNER-PAGE COMPONENTS
   -------------------------------------------------------------------------- */

/* Page hero (inner pages) */
.page-hero { padding-block: var(--s-6) var(--s-7); }
.page-hero .lede { max-width: 62ch; }
@media (min-width: 60em) { .page-hero { padding-block: var(--s-7); } }

/* Service detail sections — numbered, hairline-divided */
.service-block {
  display: grid;
  gap: var(--s-3);
  padding-block: var(--s-5);
  border-top: 1px solid var(--mist);
}
.service-block .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
}
.service-block h3 { margin-bottom: var(--s-1); }
.service-block p { color: var(--slate); margin-bottom: var(--s-2); }
@media (min-width: 48em) {
  .service-block { grid-template-columns: 8rem 1fr; align-items: start; }
}

/* FAQ — native disclosure elements */
.faq details {
  border-top: 1px solid var(--mist);
  padding-block: var(--s-2);
}
.faq details:last-child { border-bottom: 1px solid var(--mist); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: var(--s-1) 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-2);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { color: var(--slate); margin: var(--s-1) 0 var(--s-2); }

/* Founder / about blocks */
.about-grid {
  display: grid;
  gap: var(--s-5);
  align-items: start;
}
@media (min-width: 48em) { .about-grid { grid-template-columns: 5fr 7fr; } }

/* Where clinics get stuck — numbered failure points */
.stuck-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: stuck;
}
.stuck-list li {
  counter-increment: stuck;
  position: relative;
  padding: var(--s-3) 0 var(--s-3) 4.5rem;
  border-top: 1px solid var(--mist);
  max-width: var(--measure);
}
.stuck-list li::before {
  content: "0" counter(stuck);
  position: absolute;
  left: 0;
  top: var(--s-3);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--accent);
  opacity: 0.35;
}
.stuck-list .stuck-heading {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0;
  margin: 0 0 0.25rem;
}
.stuck-list p { color: var(--slate); margin: 0; font-size: 0.9375rem; }

/* Legal pages (privacy, terms) — quieter heading scale, notice box */
.legal h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  margin: var(--s-5) 0 var(--s-2);
}
.legal ul { max-width: var(--measure); color: var(--ink); padding-left: 1.2em; }
.legal li { margin-bottom: var(--s-1); }
.legal-notice {
  border: 1px solid var(--accent);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: var(--s-2) var(--s-3);
  max-width: var(--measure);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   10. FORMS
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  gap: var(--s-3);
  max-width: 40rem;
}
.field label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: var(--s-1);
}
.field .hint { font-weight: 400; color: var(--slate); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid var(--slate);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.field textarea { min-height: 9rem; resize: vertical; }

.field-checkbox {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  font-size: 0.9375rem;
}
.field-checkbox input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}

/* Validation states */
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #B3261E; }
.error-message {
  display: none;
  margin-top: var(--s-1);
  font-size: 0.875rem;
  font-weight: 500;
  color: #B3261E;
}
.field.has-error .error-message { display: block; }

.form-status {
  margin-top: var(--s-3);
  font-weight: 500;
}
.form-status a { color: var(--accent); }

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--mist);
  padding-block: var(--s-6) var(--s-4);
  border-top: 1px solid rgba(236, 238, 243, 0.18);
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  gap: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(236, 238, 243, 0.18);
}
@media (min-width: 48em) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .brand-logo { height: 38px; margin-bottom: var(--s-1); }
.footer-brand .brand-name { color: var(--paper); font-size: 1.25rem; }
.footer-brand .brand-tag { display: block; color: var(--mist); opacity: 0.75; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }

/* Social media links */
.social-links {
  display: flex;
  gap: var(--s-2);
  list-style: none;
  margin: var(--s-3) 0 0;
  padding: 0;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(236, 238, 243, 0.3);
  border-radius: var(--radius);
  color: var(--mist);
  background-image: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.social-links a:hover {
  color: var(--paper);
  border-color: var(--accent);
  background-color: var(--accent);
}
.social-links svg { width: 20px; height: 20px; }
.footer-brand p {
  color: var(--mist);
  opacity: 0.8;
  font-size: 0.875rem;
  margin-top: var(--s-2);
}

.site-footer h2 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: var(--s-2);
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li { margin-bottom: var(--s-1); }
.site-footer a {
  color: var(--mist);
  text-decoration: none;
  background-image: linear-gradient(var(--paper), var(--paper));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.25s ease, color 0.2s ease;
}
.site-footer a:hover { color: var(--paper); background-size: 100% 1px; }

.footer-bottom {
  padding-top: var(--s-3);
  font-size: 0.8125rem;
  color: var(--mist);
  opacity: 0.75;
}
.footer-bottom p { color: inherit; max-width: none; margin-bottom: var(--s-1); }
.footer-legal-links { white-space: nowrap; }

/* --------------------------------------------------------------------------
   12. SCROLL REVEAL & MOTION
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* If JS never runs, content must still be visible */
.no-js .reveal { opacity: 1; transform: none; }

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

/* --------------------------------------------------------------------------
   13. UTILITIES
   -------------------------------------------------------------------------- */
.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;
}

.text-center { text-align: center; }
.faq-crosslink { margin-top: var(--s-3); }
.mt-0 { margin-top: 0; }
.mb-large { margin-bottom: var(--s-5); }
