@import url('variables.css');
@import url('components.css');
@import url('utilities.css');
@import url('responsive.css');

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  background: var(--bg);
  color: var(--neutral);
  overflow-x: hidden;
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before { display: none; }
h1, h2, h3, h4, h5, h6, .section-title, .sensei-name, .program-card h3,
.location-card h3, .mv-title, .footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}
img { max-width: 100%; height: auto; display: block; }
a { transition: var(--transition); touch-action: manipulation; }
button { touch-action: manipulation; }
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}