/* ============================================
   VERTICAL MOTION COMPANY
   Clean Apple-Inspired System v4.0
   ============================================ */

/* --- Brand System --- */
:root {
  --brand-blue: #000053;
  --brand-blue-deep: #000033;
  --brand-gold: #EAAA00;
  --brand-dark: #000053;
  --brand-white: #ffffff;

  --text-primary: #1d1d1f;
  --text-body: #6e6e73;
  --text-muted: #86868b;
  --surface: #ffffff;
  --surface-alt: #f5f5f7;
  --border: #d2d2d7;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
  --text-hero: clamp(2.1rem, 4.9vw, 3.85rem);

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

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

  --max-w: 980px;
  --max-w-wide: 1200px;
  --header-h: 48px;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration-fast: 400ms;
  --duration-base: 700ms;
  --duration-slow: 1000ms;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--surface);
  line-height: 1.5;
}

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

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

ul { list-style: none; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(0, 0, 83, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.header__logo img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header__wordmark {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.header__link {
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--duration-fast) var(--ease);
}

.header__link:hover,
.header__link.active {
  color: var(--brand-gold);
}

.header__cta {
  display: flex;
  align-items: center;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease);
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease);
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-blue);
  color: white;
}

.btn--primary:hover {
  background: var(--brand-gold);
  color: var(--brand-dark);
}

.btn--gold {
  background: var(--brand-gold);
  color: var(--brand-dark);
}

.btn--gold:hover {
  background: var(--brand-blue);
  color: white;
}

.header__cta .btn--gold {
  color: var(--brand-blue);
}

.header__cta .btn--gold:hover {
  background: white;
  color: var(--brand-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--brand-blue);
  border: 1px solid var(--brand-blue);
}

.btn--ghost:hover {
  background: var(--brand-blue);
  color: white;
}

.btn--sm { padding: 8px 16px; font-size: var(--text-xs); }
.btn--lg { padding: 14px 28px; font-size: var(--text-base); }
.btn--full { width: 100%; }

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container--wide {
  max-width: var(--max-w-wide);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + var(--sp-16)) var(--sp-6) var(--sp-16);
  overflow: hidden;
  background: var(--brand-dark);
  color: white;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg video,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 83, 0.55);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.hero__eyebrow-line {
  width: 24px;
  height: 1px;
  background: var(--brand-gold);
}

.hero__eyebrow-text {
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(40px);
  animation: heroTitleIn 1s ease-out 0.5s forwards;
}

@keyframes heroTitleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title em {
  font-style: italic;
  color: var(--brand-gold);
}

.hero__desc {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto var(--sp-8);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Compact hero for inner pages */
.hero--compact {
  min-height: 60vh;
  padding-bottom: var(--sp-12);
}

/* --- Section Shared --- */
.section {
  padding: var(--sp-32) 0;
}

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

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sp-16);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.section__label-line {
  width: 24px;
  height: 1px;
  background: var(--brand-gold);
}

.section__label-text {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-blue);
}

.section__title {
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}

.section__desc {
  font-size: var(--text-lg);
  color: var(--text-body);
  line-height: 1.6;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.service-card {
  padding: var(--sp-10);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  transition: all var(--duration-base) var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card:hover {
  background: var(--brand-blue);
  color: white;
}

.service-card:hover .service-card__icon svg {
  color: var(--brand-gold);
}

.service-card:hover .service-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.service-card__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin-bottom: var(--sp-5);
}

.service-card:hover .service-card__eyebrow {
  color: var(--brand-gold);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--sp-6);
}

.service-card__icon svg {
  width: 44px;
  height: 44px;
  color: var(--brand-blue);
  transition: color var(--duration-fast) var(--ease);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.7;
}

/* --- Before After --- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.before-after__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.before-after__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.before-after__image:hover img {
  transform: scale(1.03);
}

.before-after__labels {
  display: flex;
  justify-content: space-between;
  margin-top: var(--sp-3);
}

.before-after__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.before-after__content {
  padding: var(--sp-8) 0;
}

.before-after__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.before-after__desc {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

/* --- Feature Split --- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.feature-split--reverse {
  direction: rtl;
}

.feature-split--reverse > * {
  direction: ltr;
}

.feature-split__content {
  max-width: 480px;
}

.feature-split__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.feature-split__desc {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: var(--text-sm);
}

.feature-list__marker {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--brand-blue);
  min-width: 20px;
}

.feature-split__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-split__visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Full-width image with text overlay */
.full-image-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.full-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-image-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.8) 0%, rgba(10, 22, 40, 0.3) 100%);
  display: flex;
  align-items: center;
  padding: 0 var(--sp-16);
}

.full-image-section__content {
  max-width: 480px;
  color: white;
}

.full-image-section__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.full-image-section__desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.value-card {
  padding: var(--sp-10);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
}

.value-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--sp-5);
}

.value-card__icon svg {
  width: 44px;
  height: 44px;
  color: var(--brand-blue);
}

.value-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.value-card__desc {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.7;
}

/* --- CTA Band --- */
.cta-band {
  padding: var(--sp-20) 0;
  text-align: center;
}

.cta-band__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-band__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

.cta-band__desc {
  font-size: var(--text-base);
  color: var(--text-body);
  margin-bottom: var(--sp-6);
}

/* --- Contact Layout --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-12);
  align-items: start;
}

.contact-layout__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.contact-layout__subtitle {
  color: var(--text-body);
  margin-bottom: var(--sp-8);
}

.contact-layout__info {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-8));
}

.contact-info-card {
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}

.contact-info-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-6);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__icon svg {
  width: 18px;
  height: 18px;
  color: white;
}

.contact-info-item strong {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 2px;
}

.contact-info-item span {
  font-size: var(--text-sm);
  color: var(--text-body);
  line-height: 1.5;
}

/* --- Form --- */
.form {
  margin-top: var(--sp-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  margin-bottom: var(--sp-4);
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: var(--text-sm);
  margin-bottom: var(--sp-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--text-primary);
  background: var(--surface);
  transition: border-color var(--duration-fast) var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%230b1d33'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

/* --- Map Section --- */
.map-section {
  padding: var(--sp-16) 0;
  background: var(--surface-alt);
}

.map-section__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-8);
  align-items: stretch;
}

.map-section__info {
  padding: var(--sp-8);
  background: var(--brand-dark);
  color: white;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-section__info h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.map-section__info p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.map-section__embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}

.map-section__embed iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

@media (max-width: 768px) {
  .map-section__inner {
    grid-template-columns: 1fr;
  }
  
  .map-section__info {
    order: -1;
  }
}

/* --- Footer --- */
.footer {
  background: var(--brand-dark);
  color: white;
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  margin-top: var(--sp-4);
  max-width: 280px;
  line-height: 1.7;
}

.footer h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--sp-5);
}

.footer__links li {
  margin-bottom: var(--sp-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--duration-fast) var(--ease);
}

.footer__links a:hover {
  color: var(--brand-gold);
}

.footer__contact-line {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.footer__contact-line svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .feature-split {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .feature-split--reverse {
    direction: ltr;
  }

  .feature-split--reverse .feature-split__visual {
    order: -1;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .full-image-section {
    height: 500px;
  }

  .full-image-section__overlay {
    padding: 0 var(--sp-8);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 44px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--brand-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: calc(var(--header-h) + var(--sp-6)) var(--sp-6) var(--sp-6);
    gap: 0;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
    transition: right var(--duration-base) var(--ease);
    z-index: 999;
  }

  .header__nav.open {
    right: 0;
  }

  .header__link {
    font-size: var(--text-base);
    padding: var(--sp-4) 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
  }

  .header__cta {
    margin-left: 0;
    margin-top: var(--sp-5);
    width: 100%;
  }

  .header__cta .btn {
    width: 100%;
  }

  .header__toggle {
    display: flex;
  }

  .hero {
    min-height: 90vh;
  }

  .hero__title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .full-image-section {
    height: 400px;
  }

  .full-image-section__overlay {
    padding: 0 var(--sp-6);
  }

  .full-image-section__title {
    font-size: var(--text-xl);
  }
}

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--sp-3);
    text-align: center;
  }

  .hero {
    min-height: 85vh;
    padding: calc(var(--header-h) + var(--sp-10)) var(--sp-5) var(--sp-10);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
