/* ==========================================================================
   Chris Casselberry, Sr. — chriscasselberry.com
   Design system: Deep Navy authority + Warm Ivory field + Brass accents.
   Serif (Lora) for heritage, Sans (Source Sans 3) for clarity.
   ========================================================================== */

:root {
  --navy: #162437;
  --navy-soft: #223349;
  --ivory: #F7F5EF;
  --ivory-alt: #F1EEE4;
  --white: #FFFFFF;
  --slate: #5D6874;
  --slate-light: #8A93A0;
  --gold: #B4925A;
  --gold-soft: #D9C6A4;
  --line: rgba(22, 36, 55, 0.12);

  /* Restrained Living Unified accent — a thin, quiet gradient, used sparingly */
  --lu-accent: linear-gradient(90deg, #6C8CA6 0%, #8FAE93 45%, #C9A66B 100%);

  --serif: "Lora", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max-content: 1180px;
  --max-read: 760px;

  --radius-sm: 6px;
  --radius-md: 10px;

  --shadow-soft: 0 18px 50px -25px rgba(22, 36, 55, 0.35);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@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;
  }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p { margin: 0 0 1.2em; }
ul { margin: 0; padding: 0; list-style: none; }

/* Focus states — always visible */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--ivory);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  left: 0;
}

/* -------------------------------------------------------------------------
   Layout helpers
   ------------------------------------------------------------------------- */
.wrap {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 24px;
}

.read {
  max-width: var(--max-read);
}

section {
  padding: 100px 0;
}

@media (max-width: 780px) {
  section { padding: 64px 0; }
  .wrap { padding: 0 22px; }
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  max-width: 18ch;
}

.section-head {
  margin-bottom: 48px;
}

.bg-white { background: var(--white); }
.bg-ivory-alt { background: var(--ivory-alt); }
.bg-navy { background: var(--navy); color: var(--ivory); }
.bg-navy h2, .bg-navy h3 { color: var(--ivory); }

/* Reveal-on-scroll (very restrained) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------------------------------------------------------------------------
   Buttons / links
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 240ms var(--ease), background 240ms var(--ease), color 240ms var(--ease), border-color 240ms var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--navy);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--navy-soft); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--navy); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-soft); }

.link-underline {
  position: relative;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gold);
  transition: border-color 240ms var(--ease), opacity 240ms var(--ease);
}
.link-underline:hover { opacity: 0.75; }

/* -------------------------------------------------------------------------
   Header / Navigation
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 245, 239, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-content);
  margin: 0 auto;
}

.nav-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  text-decoration: none;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy);
  color: var(--ivory) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
}
.nav-cta:hover { background: var(--navy-soft); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 320ms var(--ease);
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { color: var(--ivory); font-size: 20px; }
  .nav-links a:not(.btn)::after { background: var(--gold); }
  .nav-cta { background: var(--gold); color: var(--navy) !important; }
  .nav-toggle { display: inline-flex; }
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 36, 55, 0.4);
  z-index: 490;
}
.nav-scrim.is-open { display: block; }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  padding: 84px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 22px; }

.hero-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--slate);
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -0.01em;
  max-width: 15ch;
}

.hero-intro {
  font-size: 19px;
  color: var(--slate);
  max-width: 54ch;
  margin: 22px 0 34px;
}

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

.hero-portrait {
  position: relative;
}

.hero-portrait picture {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-portrait img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.hero-portrait-caption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--slate-light);
  text-align: right;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-portrait { order: 2; margin-top: 8px; }
  .hero-copy { order: 1; }
  .hero-portrait-caption { text-align: left; }
}

/* Credibility bar */
.cred-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}

.cred-bar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 48px;
  justify-content: center;
}

.cred-bar li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

.cred-bar li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   Two-column content sections (About / Entrepreneurship)
   ------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.split-reverse { grid-template-columns: 0.9fr 1.1fr; }
.split-reverse .split-media { order: 2; }
.split-reverse .split-copy { order: 1; }

.split-media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.split-copy p {
  color: var(--navy-soft);
  font-size: 18px;
}

.split-copy p.emphasis {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: var(--navy);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 32px 0;
}

@media (max-width: 860px) {
  .split, .split-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split-reverse .split-media,
  .split-reverse .split-copy,
  .split-media, .split-copy { order: initial; }
}

/* -------------------------------------------------------------------------
   Archival photo (authentic, uncorrected historical image)
   ------------------------------------------------------------------------- */
.archival-figure {
  margin: 0;
}

.archival-figure img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  filter: sepia(8%) contrast(1.02);
}

.archival-caption {
  margin-top: 16px;
}

.archival-caption .label {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.archival-caption p {
  font-size: 14.5px;
  color: var(--slate);
  margin: 0;
  font-style: italic;
}

/* -------------------------------------------------------------------------
   Text-forward layout (used where no authentic photo is available)
   ------------------------------------------------------------------------- */
.copy-block {
  max-width: var(--max-read);
  margin: 0 auto;
}

.copy-block p {
  color: var(--navy-soft);
  font-size: 18px;
}

.copy-block p.emphasis {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  color: var(--navy);
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 32px 0;
}

.stat-callout {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 22px 28px;
  margin: 28px 0;
  background: var(--white);
}

.stat-callout .stat-figure {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--navy);
  font-weight: 600;
}

.stat-callout .stat-desc {
  font-size: 15px;
  color: var(--slate);
  max-width: 46ch;
}

/* -------------------------------------------------------------------------
   Business organization display
   ------------------------------------------------------------------------- */
.org-parent {
  background: var(--navy);
  color: var(--ivory);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-bottom: 4px;
}

.org-parent .org-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
  display: block;
}

.org-parent h3 {
  color: var(--ivory);
  font-size: 26px;
  margin: 0;
}

.org-children {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  margin-bottom: 56px;
}

.org-child {
  background: var(--white);
  padding: 28px 26px;
}

.org-child h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--navy);
}

.org-child p {
  font-size: 15px;
  color: var(--slate);
  margin: 0;
}

.org-secondary h4.group-title {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 18px;
}

.org-secondary ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.org-secondary li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-weight: 600;
  font-size: 15.5px;
  background: var(--ivory);
}

@media (max-width: 780px) {
  .org-children, .org-secondary ul { grid-template-columns: 1fr; }
  .org-parent { padding: 28px 24px; }
}

/* -------------------------------------------------------------------------
   Timeline
   ------------------------------------------------------------------------- */
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  padding: 0 0 48px 28px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--gold);
}

.timeline-date {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.timeline-item h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--slate);
  font-size: 16.5px;
  max-width: 60ch;
  margin: 0;
}

/* -------------------------------------------------------------------------
   Transition moment
   ------------------------------------------------------------------------- */
.transition-moment {
  padding: 140px 0;
  text-align: center;
}

.transition-moment .lead {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--slate);
  margin-bottom: 8px;
}

.transition-moment .big {
  font-family: var(--serif);
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.4;
  max-width: 20ch;
  margin: 24px auto 0;
}

.transition-moment .big strong {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 780px) {
  .transition-moment { padding: 90px 0; }
}

/* -------------------------------------------------------------------------
   Living Unified section
   ------------------------------------------------------------------------- */
.lu-section {
  background: var(--ivory-alt);
  position: relative;
}

.lu-accent-line {
  height: 3px;
  width: 100%;
  background: var(--lu-accent);
  opacity: 0.75;
}

.lu-questions {
  margin: 36px 0 36px;
  display: grid;
  gap: 4px;
}

.lu-questions p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--navy);
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.lu-questions p:last-child { border-bottom: none; }

.lu-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* -------------------------------------------------------------------------
   Living Unified — Rebecca portrait (secondary, subordinate visual)
   ------------------------------------------------------------------------- */
.lu-grid {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 56px;
  align-items: start;
}

.rebecca-figure {
  position: sticky;
  top: 110px;
  margin: 0;
}

.rebecca-figure img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.rebecca-caption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .lu-grid { grid-template-columns: 1fr; gap: 32px; }
  .rebecca-figure { position: static; max-width: 320px; }
}

/* -------------------------------------------------------------------------
   Living Unified — conceptual rendering
   ------------------------------------------------------------------------- */
.lu-vision-section {
  padding-top: 96px;
  padding-bottom: 112px;
}

.lu-vision-head {
  max-width: var(--max-read);
  margin-bottom: 40px;
}

.lu-vision-head h2 {
  max-width: 22ch;
}

.lu-vision-figure {
  margin: 0;
}

.lu-vision-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.lu-vision-caption {
  margin-top: 18px;
  max-width: 70ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--slate);
}

@media (max-width: 780px) {
  .lu-vision-section {
    padding-top: 64px;
    padding-bottom: 72px;
  }
}

/* -------------------------------------------------------------------------
   Editorial callout — a statement of vision, not a verified quotation
   ------------------------------------------------------------------------- */
.callout-section {
  background: var(--navy);
  color: var(--ivory);
  text-align: center;
  padding: 120px 0;
}

.callout-accent {
  width: 64px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.callout-statement {
  font-family: var(--serif);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.45;
  max-width: 18ch;
  margin: 0 auto 28px;
  color: var(--ivory);
}

.callout-label {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0;
}

@media (max-width: 780px) {
  .callout-section { padding: 84px 0; }
}

/* -------------------------------------------------------------------------
   Leadership philosophy
   ------------------------------------------------------------------------- */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.principle {
  padding-top: 24px;
  border-top: 2px solid var(--gold);
}

.principle h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.principle p {
  font-size: 15.5px;
  color: var(--slate);
  margin: 0;
}

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

/* -------------------------------------------------------------------------
   Closing — typography-led (no photography available for this moment)
   ------------------------------------------------------------------------- */
.closing {
  position: relative;
  color: var(--ivory);
  background: var(--navy);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.closing .lu-accent-line {
  width: 64px;
  height: 3px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.closing .eyebrow { color: var(--gold-soft); justify-content: center; }
.closing h2 { color: var(--ivory); max-width: 16ch; margin: 0 auto 22px; }
.closing p { color: rgba(247,245,239,0.82); max-width: 62ch; margin: 0 auto; font-size: 18.5px; }

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 780px) {
  .closing { padding: 84px 0; }
}

/* -------------------------------------------------------------------------
   FAQ — visually quieter than the storytelling sections above it
   ------------------------------------------------------------------------- */
.faq-section h2 {
  font-size: clamp(24px, 2.4vw, 28px);
  color: var(--slate);
}

.faq-section .eyebrow {
  color: var(--slate-light);
}
.faq-section .eyebrow::before {
  background: var(--slate-light);
}

.faq-list {
  max-width: var(--max-read);
}

.faq-item summary {
  font-size: 17px;
}

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

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-item summary .icon::before,
.faq-item summary .icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 240ms var(--ease);
}
.faq-item summary .icon::before {
  width: 100%; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%);
}
.faq-item summary .icon::after {
  width: 1.5px; height: 100%; left: 50%; top: 0; transform: translateX(-50%);
}
.faq-item[open] summary .icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-item p {
  color: var(--slate);
  font-size: 16.5px;
  padding-bottom: 24px;
  max-width: 65ch;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(247,245,239,0.75);
  padding: 56px 0 36px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(247,245,239,0.15);
}

.footer-brand p.tagline {
  color: rgba(247,245,239,0.6);
  font-size: 15px;
  margin: 6px 0 0;
}

.footer-brand .nav-brand { color: var(--ivory); }

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(247,245,239,0.8);
  text-decoration: none;
  font-size: 15px;
}
.footer-links a:hover { color: var(--gold-soft); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  color: rgba(247,245,239,0.55);
}

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