/* ── Reset + base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--lc-surface);
  color: var(--lc-text-base);          /* #333333 — verified */
  font-family: var(--lc-font);         /* Sora */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* Links */
a { color: inherit; }
a:hover { color: var(--lc-brand-primary); }

/* Images */
img, svg { display: block; max-width: 100%; height: auto; }

/* Main landmark */
.lc-main { min-height: 60vh; }

/* Accessibility */
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.lc-skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: var(--lc-z-modal);
  transform: translateY(-200%);
}
.lc-skip-link:focus {
  transform: translateY(0);
  background: var(--lc-surface); padding: 1rem;
  outline: var(--lc-focus); border-radius: 4px;
}
:focus-visible {
  outline: var(--lc-focus);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
