/* ============================================================
   Alliance Revenue Cycle — Design System (arc.css)
   Stack: Vanilla CSS only. No preprocessors. No frameworks.
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --bg: #FAFAF8;
  --primary: #0D1B2A;
  --gold: #A68B3A;
  --text: hsl(212, 53%, 11%);
  --text-muted: hsl(212, 15%, 45%);
  --border: hsl(45, 20%, 85%);
  --muted-bg: hsl(60, 10%, 94%);

  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --section-py: 6rem;      /* 96px */
  --section-py-mobile: 4rem; /* 64px */
  --container-max: 1280px;
  --grid-unit: 8px;
}

/* ---------- BASE ---------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}
@media (min-width: 1280px) {
  .container { padding: 0 64px; }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

h1 { font-size: 2.75rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }

@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.75rem; }
}
@media (min-width: 1280px) {
  h1 { font-size: 4.25rem; }
  h2 { font-size: 3rem; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary);
  height: 56px;
  padding: 0 32px;
}
.btn-primary:hover {
  background: #b89a48;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  height: 56px;
  padding: 0 32px;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
}

.btn-sm {
  height: 44px;
  padding: 0 20px;
  font-size: 0.8125rem;
}

/* Navbar portal button override */
.nav-links .btn-outline-light {
  border-color: var(--gold);
}
.nav-links .btn-outline-light:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

/* ============================================================
   CSS-ONLY LOGO
   ============================================================ */

/* --- Full variant --- */
.logo-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.logo-full .wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: inherit;
}
.logo-full .arc {
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-top: none;
  border-radius: 0 0 50% 50%;
  margin: 4px auto 5px;
}
.logo-full .sub {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.32em;
  line-height: 1;
  color: inherit;
}

/* Sizes */
.logo-sm .wordmark { font-size: 14px; }
.logo-sm .arc { width: 82px; height: 12px; border-width: calc((14 / 38) * 1.8px); }
.logo-sm .sub { font-size: 5.2px; }

.logo-md .wordmark { font-size: 24px; }
.logo-md .arc { width: 140px; height: 18px; border-width: calc((24 / 38) * 1.8px); }
.logo-md .sub { font-size: 8.5px; }

.logo-lg .wordmark { font-size: 38px; }
.logo-lg .arc { width: 220px; height: 28px; border-width: 1.8px; }
.logo-lg .sub { font-size: 13.5px; }

/* Themes */
.logo-light { color: #fff; }
.logo-dark  { color: var(--primary); }

/* --- Compact variant --- */
.logo-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-compact .arc-top {
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-bottom: none;
  border-radius: 50% 50% 0 0;
  display: block;
  margin: 0 auto 6px;
}
.logo-compact .compact-text {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  color: inherit;
}

/* Compact sizes */
.logo-compact.logo-sm .arc-top { width: 48px; height: 10px; border-width: calc((14/38)*1.8px); }
.logo-compact.logo-sm .compact-text { font-size: 14px; }

.logo-compact.logo-md .arc-top { width: 80px; height: 16px; border-width: calc((24/38)*1.8px); }
.logo-compact.logo-md .compact-text { font-size: 24px; }

.logo-compact.logo-lg .arc-top { width: 120px; height: 24px; border-width: 1.8px; }
.logo-compact.logo-lg .compact-text { font-size: 38px; }

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-light {
  color: var(--gold);
}

/* ============================================================
   1. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--gold);
}

.nav-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
}

/* Mobile toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
}
.nav-toggle .close-icon { display: none; }
.nav-open .nav-toggle .hamburger-icon { display: none; }
.nav-open .nav-toggle .close-icon { display: block; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  height: calc(100vh - 80px);
  background: var(--primary);
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 16px 0;
  transition: color 0.2s ease;
}
.mobile-link:hover {
  color: var(--gold);
}

.mobile-portal-btn {
  margin-top: 24px;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-drawer { display: none; }
}

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  background: var(--primary);
  background-image: url('hero-concept-3.jpg');
  background-size: cover;
  background-position: center center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(80px + var(--section-py-mobile)) 0 var(--section-py-mobile);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(166, 139, 58, 0.12) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(8, 18, 32, 0.72) 0%, rgba(8, 18, 32, 0.62) 100%);
  z-index: 0;
}

@media (min-width: 768px) {
  .hero {
    padding-top: calc(80px + var(--section-py));
    padding-bottom: var(--section-py);
  }
}

.hero-content {
  max-width: 896px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(166,139,58,0.4);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(166,139,58,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(166,139,58,0); }
}

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
}

.hero-highlight {
  position: relative;
  display: inline;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(166,139,58,0.3);
  z-index: -1;
}

.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 672px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.25rem; }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Decorative arc at bottom */
.hero-arc-decoration {
  position: absolute;
  bottom: -400px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

/* ============================================================
   3. STATS BAR
   ============================================================ */
.stats-bar {
  background: #0a1424;
  padding: var(--section-py-mobile) 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats-bar { padding: var(--section-py) 0; }
}

.stats-arc-decoration {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 128px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 0;
  position: relative;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
  position: relative;
}

/* Mobile: horizontal dividers between rows */
.stats-grid .stat:nth-child(1),
.stats-grid .stat:nth-child(2) {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 32px;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stats-grid .stat:nth-child(1),
  .stats-grid .stat:nth-child(2) {
    border-bottom: none;
    padding-bottom: 16px;
  }
  /* Vertical dividers on desktop */
  .stat + .stat {
    border-left: 1px solid rgba(166,139,58,0.3);
  }
  .stat-value { font-size: 1.75rem; }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: #0a1424;
  border-top: 1px solid rgba(166,139,58,0.15);
  padding: 20px 0;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}

.trust-badge svg {
  color: var(--gold);
  opacity: 0.5;
}

/* ============================================================
   4. SERVICES
   ============================================================ */
.services {
  background: var(--bg);
  padding: var(--section-py-mobile) 0;
}

@media (min-width: 768px) {
  .services { padding: var(--section-py) 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  color: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(166,139,58,0.35);
}

.card-gold-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(13,27,42,0.12), 0 0 0 1px rgba(166,139,58,0.2);
}
.service-card:hover .card-gold-border {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(13,27,42,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
  color: var(--primary);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--gold);
}
.service-icon svg {
  stroke: currentColor;
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================================
   5. PHILOSOPHY
   ============================================================ */
.philosophy {
  background: var(--primary);
  padding: var(--section-py-mobile) 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .philosophy { padding: var(--section-py) 0; }
}

.philosophy-circle-decoration {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border: 8px solid var(--gold);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.philosophy-text h2 {
  color: #fff;
  margin-bottom: 24px;
}
.philosophy-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.philosophy-pullquote {
  border-left: 3px solid var(--gold);
  margin: 0;
  padding: 16px 24px;
  background: rgba(166,139,58,0.08);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: normal;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .philosophy-pullquote { font-size: 1.375rem; }
}

.philosophy-principles {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 768px) {
  .philosophy-principles { padding: 48px; }
}

.principle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.principle-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.principle p {
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.principle strong {
  color: #fff;
}

/* ============================================================
   6. PROCESS
   ============================================================ */
.process {
  background: var(--muted-bg);
  padding: var(--section-py-mobile) 0;
}

@media (min-width: 768px) {
  .process { padding: var(--section-py) 0; }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

@media (min-width: 1280px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  padding: 32px 0;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: rgba(13,27,42,0.25);
  line-height: 1;
  display: block;
  transition: color 0.3s ease;
}

.step-bar {
  width: 48px;
  height: 4px;
  background: var(--gold);
  margin: 16px 0 24px;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.process-step:hover .step-number {
  color: var(--gold);
}
.process-step:hover .step-bar {
  transform: scaleX(1);
}

.process-step h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.125rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================================
   7. CONTACT
   ============================================================ */
.contact {
  background: var(--primary);
  padding: var(--section-py-mobile) 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 20%, rgba(166,139,58,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 15% 80%, rgba(166,139,58,0.07) 0%, transparent 50%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .contact { padding: var(--section-py) 0; }
}

.contact-inner {
  max-width: 896px;
  text-align: center;
}

.contact .logo-compact {
  margin-bottom: 32px;
}

.contact h2 {
  color: #fff;
  font-size: 2.25rem;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .contact h2 { font-size: 3rem; }
}
@media (min-width: 1280px) {
  .contact h2 { font-size: 3.5rem; }
}

.contact-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .contact-subtitle { font-size: 1.25rem; }
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.cta-separator {
  color: rgba(255,255,255,0.3);
  font-size: 1.25rem;
}

.contact-phone {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s ease;
}
.contact-phone:hover {
  color: var(--gold);
}

.contact-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  flex-shrink: 0;
}

.contact-item span,
.contact-item a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  line-height: 1.6;
  transition: color 0.2s ease;
}
.contact-item a:hover {
  color: var(--gold);
}

/* ============================================================
   8. FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary);
  border-top: 6px solid var(--gold);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
  }
}

.footer-brand .logo-full {
  width: 140px;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-contact h3,
.footer-links h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-contact address p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.8;
}
.footer-contact address a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.footer-contact address a:hover {
  color: #fff;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
}

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-copyright p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  text-align: center;
}

/* ============================================================
   UTILITY
   ============================================================ */

/* Smooth scroll offset for fixed navbar */
:target {
  scroll-margin-top: 96px;
}

/* ---------- FOCUS STYLES (accessibility) ---------- */
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- SKIP LINK (accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
  padding: 10px 16px;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}
