/* ============================================================
   MKM SPORT HORSES — Design Tokens
   Boutique hunter/jumper breeding farm.
   Palette: warm ivory surfaces, deep hunter-green accent,
   brass highlight (echoes tack hardware + leather in photography).
   Typography: Cormorant (display, editorial serif) + Work Sans (body).
   ============================================================ */

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #faf7f1;
  --color-surface: #ffffff;
  --color-surface-2: #fdfcfa;
  --color-surface-offset: #f1ebdf;
  --color-surface-offset-2: #e8e0d0;
  --color-surface-dynamic: #ded2b9;
  --color-divider: #e2d9c8;
  --color-border: #d3c6ac;

  /* Text */
  --color-text: #201d19;
  --color-text-muted: #6d6255;
  --color-text-faint: #ab9d89;
  --color-text-inverse: #faf7f1;

  /* Primary accent — Hunter Green */
  --color-primary: #234438;
  --color-primary-hover: #163026;
  --color-primary-active: #0e2019;
  --color-primary-highlight: #d7e0d8;

  /* Brass accent — used sparingly for dividers/highlights */
  --color-brass: #a67c33;
  --color-brass-hover: #8a6528;
  --color-brass-active: #6c4f1f;
  --color-brass-highlight: #ecdfc0;

  /* Warning / "coming soon" */
  --color-warning: #93511c;
  --color-warning-hover: #713d15;
  --color-warning-active: #4c2a0f;
  --color-warning-highlight: #e5d3bf;

  /* Error */
  --color-error: #9a2c3f;
  --color-error-hover: #771f30;
  --color-error-active: #521622;
  --color-error-highlight: #e3cdd1;

  /* Success */
  --color-success: #3d6b34;
  --color-success-hover: #2c4f26;
  --color-success-active: #1d3519;
  --color-success-highlight: #d4ddce;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.625rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows — warm tint */
  --shadow-sm: 0 1px 2px oklch(0.25 0.03 80 / 0.08);
  --shadow-md: 0 6px 20px oklch(0.25 0.03 80 / 0.1);
  --shadow-lg: 0 18px 45px oklch(0.22 0.03 80 / 0.16);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1040px;
  --content-wide: 1280px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Cormorant', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-bg: #14120f;
  --color-surface: #1b1815;
  --color-surface-2: #201c18;
  --color-surface-offset: #221e19;
  --color-surface-offset-2: #2a251e;
  --color-surface-dynamic: #332c23;
  --color-divider: #2c2620;
  --color-border: #3c342a;

  --color-text: #ece5d6;
  --color-text-muted: #a89b87;
  --color-text-faint: #6d6255;
  --color-text-inverse: #201d19;

  --color-primary: #6ba58c;
  --color-primary-hover: #85b8a1;
  --color-primary-active: #4d8a71;
  --color-primary-highlight: #253a31;

  --color-brass: #d7ac5e;
  --color-brass-hover: #e3bd76;
  --color-brass-active: #b6913f;
  --color-brass-highlight: #3a301f;

  --color-warning: #d3915b;
  --color-warning-hover: #dea577;
  --color-warning-active: #b9763f;
  --color-warning-highlight: #3d2c1e;

  --color-error: #d17c8c;
  --color-error-hover: #db93a1;
  --color-error-active: #b45c6e;
  --color-error-highlight: #3a2429;

  --color-success: #83b374;
  --color-success-hover: #98c48a;
  --color-success-active: #669657;
  --color-success-highlight: #263524;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 6px 20px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 18px 45px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #14120f;
    --color-surface: #1b1815;
    --color-surface-2: #201c18;
    --color-surface-offset: #221e19;
    --color-surface-offset-2: #2a251e;
    --color-surface-dynamic: #332c23;
    --color-divider: #2c2620;
    --color-border: #3c342a;
    --color-text: #ece5d6;
    --color-text-muted: #a89b87;
    --color-text-faint: #6d6255;
    --color-text-inverse: #201d19;
    --color-primary: #6ba58c;
    --color-primary-hover: #85b8a1;
    --color-primary-active: #4d8a71;
    --color-primary-highlight: #253a31;
    --color-brass: #d7ac5e;
    --color-brass-hover: #e3bd76;
    --color-brass-active: #b6913f;
    --color-brass-highlight: #3a301f;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 6px 20px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 18px 45px oklch(0 0 0 / 0.5);
  }
}

/* ============================================================
   Type Scale
   ============================================================ */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.1rem + 2.75vw, 3.75rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6.5vw, 7rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

/* ============================================================
   Global Element Styles
   ============================================================ */
body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.container--wide {
  max-width: var(--content-wide);
}
.container--narrow {
  max-width: var(--content-narrow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brass);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
h1 em,
h2 em,
h3 em,
h4 em {
  font-style: italic;
  color: var(--color-primary);
}
[data-theme='dark'] h1 em,
[data-theme='dark'] h2 em,
[data-theme='dark'] h3 em,
[data-theme='dark'] h4 em {
  color: var(--color-primary);
}

.page-title {
  font-size: var(--text-2xl);
  line-height: 1.05;
}
.section-title {
  font-size: var(--text-xl);
  line-height: 1.1;
}
.card-title {
  font-size: var(--text-lg);
  font-weight: 600;
}

p {
  max-width: 62ch;
  color: var(--color-text-muted);
}
p.lede {
  font-size: var(--text-lg);
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 400;
  max-width: 46ch;
}

.divider {
  width: 56px;
  height: 2px;
  background: var(--color-brass);
  border: none;
  margin-block: var(--space-6);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  min-height: 44px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border-color: oklch(from var(--color-text) l c h / 0.28);
  color: var(--color-text);
}
.btn-outline:hover {
  border-color: var(--color-text);
  background: oklch(from var(--color-text) l c h / 0.05);
}
.btn-outline.on-dark {
  border-color: oklch(from white l c h / 0.5);
  color: #fff;
}
.btn-outline.on-dark:hover {
  border-color: #fff;
  background: oklch(1 0 0 / 0.1);
}
.btn-ghost {
  padding-inline: 0;
  color: var(--color-primary);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: var(--text-sm);
  min-height: auto;
}
.btn-ghost::after {
  content: '→';
  transition: transform var(--transition-interactive);
  display: inline-block;
}
.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: oklch(from var(--color-bg) l c h / 0.86);
  backdrop-filter: blur(14px);
  transition: background var(--transition-interactive);
}
.site-header--hidden {
  transform: translateY(-100%);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  gap: var(--space-6);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.brand img {
  height: 42px;
  width: auto;
}
[data-theme='dark'] .brand img {
  filter: invert(1) brightness(1.6);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-links {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  padding-block: var(--space-2);
  position: relative;
}
.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--color-text);
}
.nav-links a[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--color-brass);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: var(--space-8) var(--space-6);
    gap: var(--space-2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: var(--text-lg);
    font-family: var(--font-display);
    width: 100%;
    padding-block: var(--space-3);
    border-bottom: 1px solid var(--color-divider);
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}
.section--tight {
  padding-block: clamp(var(--space-10), 5vw, var(--space-16));
}
.section--alt {
  background: var(--color-surface-offset);
}
.section--dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.section--dark p,
.section--dark .eyebrow {
  color: oklch(from var(--color-text-inverse) l c h / 0.75);
}
.section--dark h2,
.section--dark h3 {
  color: var(--color-text-inverse);
}
.section-head {
  max-width: 640px;
  margin-bottom: var(--space-12);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* ============================================================
   Hero (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.15 0.02 140 / 0.35) 0%,
    oklch(0.12 0.02 140 / 0.35) 40%,
    oklch(0.08 0.02 140 / 0.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-16) var(--space-20);
  width: 100%;
}
.hero-eyebrow {
  color: #e9d9b3;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-5);
}
.hero h1 {
  font-size: var(--text-hero);
  color: #fff;
  max-width: 16ch;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  color: #d7c090;
  font-style: italic;
}
.hero p {
  color: oklch(1 0 0 / 0.85);
  font-size: var(--text-lg);
  max-width: 48ch;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================================
   Sub-page hero (interior pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.1 0.02 140 / 0.25) 0%,
    oklch(0.08 0.02 140 / 0.8) 100%
  );
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-block: var(--space-12) var(--space-14);
}
.page-hero h1 {
  color: #fff;
  font-size: var(--text-3xl);
  max-width: 20ch;
}
.page-hero h1 em {
  color: #d7c090;
}
.page-hero p {
  color: oklch(1 0 0 / 0.85);
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  max-width: 48ch;
}

/* ============================================================
   Grid / Cards
   ============================================================ */
.grid {
  display: grid;
  gap: var(--space-8);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
}
.pillar-card .badge {
  align-self: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-warning-highlight);
  color: var(--color-warning);
}

/* ============================================================
   Editorial split / image-text
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.split.reverse .split-media {
  order: 2;
}
.split.reverse .split-text {
  order: 1;
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .split.reverse .split-media,
  .split.reverse .split-text {
    order: initial;
  }
}
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.split-media.landscape img {
  aspect-ratio: 3 / 2;
}

.stat-row {
  display: flex;
  gap: var(--space-10);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.stat strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  font-weight: 600;
}
.stat span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery {
  columns: 3 280px;
  column-gap: var(--space-5);
}
.gallery figure {
  break-inside: avoid;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery img {
  width: 100%;
}

/* ============================================================
   Partner cards
   ============================================================ */
.partner-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.partner-mark {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-mark svg {
  width: 30px;
  height: 30px;
}
.partner-focus {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* ============================================================
   Brand strip (tack shop)
   ============================================================ */
.brand-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 760px) {
  .brand-strip {
    grid-template-columns: 1fr;
  }
}
.brand-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  background: var(--color-surface);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
.brand-card .brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
}

/* ============================================================
   Timeline (process steps)
   ============================================================ */
.timeline {
  display: grid;
  gap: var(--space-6);
}
.timeline-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  padding-block: var(--space-5);
  border-top: 1px solid var(--color-divider);
}
.timeline-step:first-child {
  border-top: none;
}
.timeline-num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-brass);
  font-weight: 600;
}

/* ============================================================
   Form (contact)
   ============================================================ */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: var(--text-base);
  min-height: 44px;
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--color-primary);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--color-primary-active, #0e2019);
  color: oklch(1 0 0 / 0.82);
  padding-block: var(--space-16) var(--space-8);
}
[data-theme='dark'] .site-footer {
  background: #0d0c0a;
}
.site-footer a {
  color: oklch(1 0 0 / 0.82);
}
.site-footer a:hover {
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
  margin-bottom: var(--space-8);
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-grid img {
  height: 44px;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-4);
}
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--text-sm);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.55);
}

/* ============================================================
   Motion — scroll reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Utility
   ============================================================ */
.mt-0 {
  margin-top: 0 !important;
}
.text-center {
  text-align: center;
}
.mx-auto {
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  z-index: 1000;
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
}
