/* Kaya Care WA — shared stylesheet
   Tokens sourced from ../design-system/kaya-care-design-system.html:
   mulberry (primary brand), stone (neutral), mint (accent), Arimo display font. */

:root {
  --mulberry-50:  #FCEEF5;
  --mulberry-100: #F6DAE8;
  --mulberry-200: #EBB7D1;
  --mulberry-300: #D982AD;
  --mulberry-400: #C43B80;
  --mulberry-500: #7F2552;
  --mulberry-600: #691C42;
  --mulberry-700: #521433;
  --mulberry-800: #3E0F26;
  --mulberry-900: #2A091A;

  --stone-50:  #F7F5F2;
  --stone-100: #EFEBE5;
  --stone-200: #DFD8CF;
  --stone-300: #C7BEB2;
  --stone-400: #A79C8D;
  --stone-500: #8B8071;
  --stone-600: #6D655C;
  --stone-700: #524B44;
  --stone-800: #38332E;
  --stone-900: #221F1D;

  --mint-50:  #F1FDFA;
  --mint-100: #CDFEEE;
  --mint-200: #9DF3DC;
  --mint-300: #6BE2C5;
  --mint-400: #3FC7AA;
  --mint-500: #22A98D;
  --mint-600: #178873;
  --mint-700: #106759;
  --mint-800: #0B4A40;
  --mint-900: #073229;

  --success: #178873;
  --warning: #C97A2B;
  --error:   #B23A34;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;

  --font-display: 'Arimo', Arial, Helvetica, sans-serif;

  /* Semantic aliases used throughout this stylesheet */
  --text: var(--stone-900);
  --text-muted: var(--stone-600);
  --bg: #FFFFFF;
  --bg-alt: var(--stone-50);
  --border: #E4DED5;
  --max-width: 1120px;
  --radius: var(--radius-md);
  --shadow: 0 1px 2px rgba(34,26,20,0.06), 0 8px 24px rgba(34,26,20,0.05);

  /* Contrast-checked semantic colours. Heading/accent/link flip in dark mode
     so mulberry/mint text keeps a WCAG AA ratio (>=4.5:1) on dark surfaces. */
  --surface: #FFFFFF;   /* card / form / input background */
  --heading: var(--mulberry-600);  /* 11.4:1 on white, 6.2:1 on dark surface */
  --accent:  var(--mint-700);      /* eyebrows — 6.8:1 on white */
  --link:    var(--mulberry-500);  /* 9.2:1 on white */
  --focus:   var(--mint-500);      /* 3:1+ focus ring on light & dark */
  /* Soft-mint tint for the hero + CTA band (replaces the old maroon gradient). */
  --section-tint: linear-gradient(160deg, var(--mint-50) 0%, var(--stone-50) 100%);
}

/* Dark theme tokens. Applied when the OS prefers dark AND the user hasn't forced
   light, OR when the user explicitly toggles dark via [data-theme="dark"]. The two
   selectors carry identical declarations — keep them in sync when editing. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --text: #F3F0EE;
    --text-muted: #B7AEB2;
    --bg: #18151B;
    --bg-alt: #221E27;
    --surface: #2A2530;
    --border: #3A3440;
    --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.35);
    --heading: var(--mulberry-300); /* 6.2:1 on dark surface */
    --accent:  var(--mint-300);     /* high contrast on dark surface */
    --link:    var(--mulberry-300);
    --section-tint: linear-gradient(160deg, var(--mint-900) 0%, var(--stone-900) 100%);
  }
}
:root[data-theme="dark"] {
  --text: #F3F0EE;
  --text-muted: #B7AEB2;
  --bg: #18151B;
  --bg-alt: #221E27;
  --surface: #2A2530;
  --border: #3A3440;
  --shadow: 0 1px 2px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.35);
  --heading: var(--mulberry-300);
  --accent:  var(--mint-300);
  --link:    var(--mulberry-300);
  --section-tint: linear-gradient(160deg, var(--mint-900) 0%, var(--stone-900) 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Respect users who ask for reduced motion (vestibular / cognitive needs). */
@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;
    scroll-behavior: auto !important;
  }
}

/* Visible keyboard focus on every interactive element (WCAG 2.4.7). */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 3px;
}

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

a {
  color: var(--link);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 32px;
}

.main-nav {
  margin-left: auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo svg {
  height: 36px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--mulberry-500);
  margin: 5px 0;
}

.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--link);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Light/dark theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--heading);
  color: var(--heading);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Icon reflects the theme you'd switch TO: moon in light, sun in dark. */
.theme-toggle .icon-sun {
  display: none;
}
:root[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}
:root[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;
  }
}

/* ---------- Translate control (Google Translate widget) ---------- */

.translate-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}

.translate-control .translate-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

#google_translate_element {
  display: inline-flex;
  align-items: center;
}

/* Google renders a bare <select class="goog-te-combo"> — restyle it to match. */
.goog-te-combo {
  font-family: var(--font-display) !important;
  font-size: 0.9rem !important;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 7px 10px;
  margin: 0 !important;
  max-width: 150px;
  cursor: pointer;
}

/* Hide the parts of the widget we don't want (top banner, tooltip, "Powered by
   Google Translate" branding, highlight boxes) and stop it pushing the page down. */
.goog-te-banner-frame,
iframe.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0 !important;
  position: static !important;
}

/* Collapse the gadget to just the <select> on a single line. */
.goog-te-gadget {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  display: inline-flex !important;
  align-items: center;
}

.goog-te-gadget > span,
.goog-te-gadget img,
.goog-logo-link {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

@media (max-width: 480px) {
  .goog-te-combo {
    max-width: 116px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
    margin-left: 0;
  }

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

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

  .main-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .site-header .container {
    flex-wrap: wrap;
  }

  .nav-right {
    order: 4;
    width: 100%;
    justify-content: flex-end;
    margin-left: 0;
    margin-top: 8px;
  }
}

/* ---------- Hero ---------- */

.hero {
  background: var(--section-tint);
  color: var(--text);
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--heading);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 46ch;
}

.hero .eyebrow {
  color: var(--accent);
}

/* Secondary hero button now sits on a light background — give it a mulberry
   outline instead of the white one used on the old dark hero. */
.hero .btn-outline {
  color: var(--heading);
  border-color: currentColor;
}

.hero .btn-outline:hover {
  background: var(--surface);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-image svg,
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Transparent kaya mark sitting directly above the hero heading. */
.hero-mark {
  margin: 0 0 20px;
}

.hero-mark svg {
  display: block;
}

@media (max-width: 860px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 48px 0;
  }
}

.hero.hero-simple .container {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero.hero-simple p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Page illustration banner (About / Services / Referral / Contact / Feedback / Find an Advocate) ---------- */
/* Same treatment as .hero-image (bordered, rounded, shadowed card), used directly under a
   hero-simple section rather than inside the hero grid. Illustrations keep their natural
   aspect ratio (no forced crop) since unDraw source images vary from portrait to wide landscape. */

.page-photo {
  margin: -24px auto 0;
  max-width: 480px;
  padding: 0 24px 56px;
}

.page-photo-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
  padding: 32px;
}

.page-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Stats bar ---------- */

.stats-bar {
  background: var(--stone-900);
  color: #fff;
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stats-grid .stat b {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--mint-300);
}

.stats-grid .stat span {
  font-size: 0.85rem;
  color: #D8D2CC;
}

@media (max-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.btn-primary {
  background: var(--mulberry-500);
  color: #fff;
}

.btn-primary:hover {
  background: var(--mulberry-600);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-dark-outline {
  background: transparent;
  color: var(--mulberry-500);
  border-color: var(--mulberry-500);
}

.btn-dark-outline:hover {
  background: var(--mulberry-50);
}

/* Dark mode: mulberry-500 is near-invisible on a dark page, so lift the outline
   button to mulberry-300 (>=3:1 border, readable label). Mirrors the token rules:
   OS-dark (unless forced light) plus explicit [data-theme="dark"]. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn-dark-outline {
    color: var(--mulberry-300);
    border-color: var(--mulberry-300);
  }
  :root:not([data-theme="light"]) .btn-dark-outline:hover {
    background: var(--mulberry-300);
    color: var(--stone-900);
  }
}
:root[data-theme="dark"] .btn-dark-outline {
  color: var(--mulberry-300);
  border-color: var(--mulberry-300);
}
:root[data-theme="dark"] .btn-dark-outline:hover {
  background: var(--mulberry-300);
  color: var(--stone-900);
}

/* ---------- Sections ---------- */

section {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--heading);
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ---------- Cards / Grids ---------- */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 860px) {
  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 860px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 14px 0 10px;
  color: var(--heading);
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--mint-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* ---------- Pills ---------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.pill-mint { background: var(--mint-100); color: var(--mint-800); }
.pill-stone { background: var(--stone-100); color: var(--stone-700); }

/* ---------- Service blocks ---------- */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block h2 {
  color: var(--heading);
  margin-top: 0;
  font-weight: 700;
}

.service-block ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-block li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-muted);
}

.service-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-500);
}

@media (max-width: 860px) {
  .service-block {
    grid-template-columns: 1fr;
  }
}

/* ---------- Process steps ---------- */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.step {
  position: relative;
  padding-top: 8px;
}

.step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mulberry-500);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- Testimonials ---------- */

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial p {
  font-style: italic;
  color: var(--text);
  margin: 0 0 16px;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--heading);
  font-size: 0.9rem;
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.field {
  margin-bottom: 20px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--stone-300);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--mulberry-500);
}

/* Placeholders as legible hints (not faded), with real labels doing the naming. */
::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: auto;
  margin-top: 4px;
}

.checkbox-field label {
  font-weight: 400;
  margin: 0;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Third-party form embeds (OnSquare). The form itself always renders on a white
   background regardless of site theme — can't restyle cross-origin iframe content —
   so the card border/shadow gives it a clean edge against a dark page. Heights are
   fixed (not fluid) because postMessage auto-resize isn't available cross-origin;
   sized generously against each form's measured content height, with a mobile bump
   for label wrapping on narrow screens. */
.form-card--embed {
  padding: 0;
  overflow: hidden;
}

.form-embed {
  display: block;
  width: 100%;
  border: 0;
}

.form-embed--enquiry {
  height: 700px;
}

.form-embed--feedback {
  height: 2090px;
}

@media (max-width: 480px) {
  .form-embed--enquiry {
    height: 860px;
  }
  .form-embed--feedback {
    height: 2450px;
  }
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  background: var(--mint-50);
  color: var(--mint-800);
}

.form-status.error {
  display: block;
  background: #FBEBE9;
  color: var(--error);
}

/* ---------- Contact info blocks ---------- */

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--heading);
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--text-muted);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--link);
}

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

.cta-band {
  background: var(--section-tint);
  color: var(--text);
  text-align: center;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--heading);
}

.cta-band p {
  color: var(--text-muted);
  margin: 0 0 28px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--stone-900);
  color: #D8D2CC;
  padding: 48px 0 24px;
  font-size: 0.9rem;
}

.site-footer .logo svg {
  height: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

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

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

.site-footer h4 {
  color: #fff;
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: #D8D2CC;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--mint-300);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  text-align: center;
  color: #9A9088;
  font-size: 0.82rem;
}

/* ---------- Utility ---------- */

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

.mt-0 {
  margin-top: 0;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--mulberry-600);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}
