@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --kinesio-bg: #F9F7F3;
  --kinesio-surface: #FFFFFF;
  --kinesio-tone: #2B5E5E;
  --kinesio-tone-hover: #1A3E3E;
  --kinesio-ink: #1A1A2A;
  --kinesio-outline: #E2DCD0;
  --kinesio-gradient: linear-gradient(135deg, #2B5E5E 0%, #468B8B 100%);
  --kinesio-faded: rgba(26, 26, 42, 0.05);
  
  --font-display: 'Lora', serif;
  --font-body: 'Work Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--kinesio-bg);
  color: var(--kinesio-ink);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .editorial-heading {
  font-family: var(--font-display);
}

/* Base styles / Layout overrides */
html {
  scroll-behavior: smooth;
}

/* Typographic Pull-Quote */
.mobility-pull-quote {
  border-left-width: 4px;
  border-left-style: solid;
  padding-left: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Feature Cards Preset E */
.articular-info-slab {
  border-top-width: 4px;
  border-top-style: solid;
  transition: transform 0.3s ease;
  border-radius: 12px;
}
.articular-info-slab:hover {
  transform: translateY(-8px);
}

/* How It Works Numbers */
.step-number-backdrop {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  z-index: 0;
  font-family: var(--font-display);
}
.step-content-layer {
  position: relative;
  z-index: 1;
}

/* Buttons */
.motion-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border-radius: 12px;
}

/* Mobile Menu CSS-Only */
.nav-menu-wrapper {
  display: none;
}
#spine-nav-toggle:checked ~ .nav-menu-wrapper {
  display: flex;
}

@media (min-width: 1024px) {
  .nav-menu-wrapper {
    display: flex !important;
  }
}

/* Form inputs styling */
.biomechanic-input {
  width: 100%;
  padding: 1rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 12px;
  font-family: var(--font-body);
  transition: all 0.2s ease;
}
.biomechanic-input:focus {
  outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Parallax Hero Preset E */
.editorial-parallax-bg {
  background-attachment: fixed;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}

/* FAQ Accordion pure CSS */
.faq-inquiry {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.faq-trigger {
  cursor: pointer;
}