/* ============================================================
   Reset, typography, global styles.
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg-1);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

body.is-loaded {
  opacity: 1;
}

a { color: var(--color-accent); text-decoration: none; transition: color var(--dur-fast) ease; }
a:hover { color: var(--color-accent-bright); }
img, video { display: block; max-width: 100%; }

/* Accent text (replaces serif italic — now uses display font) */
.serif {
  font-family: var(--font-display);
  font-style: normal;
  color: #fff;
  font-weight: 600;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* Section spacing */
.section { padding: var(--sp-24) var(--sp-6); }

.section--alt {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Section header with left accent line */
.section-header {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.section-header__line {
  width: 3px;
  min-height: 80px;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: var(--sp-1);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--sp-3);
}

.section-label [data-practice-label] {
  color: #fff;
  font-weight: 800;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-2);
  max-width: none;
  line-height: 1.7;
  font-weight: 300;
  white-space: nowrap;
}
