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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--lmd-text-body);
  background: var(--lmd-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--lmd-text-primary);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); font-weight: 400; }

p { margin: 0; }

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; }

.section { padding: var(--section-pad); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lmd-gold);
  margin-bottom: 18px;
}
.section-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--lmd-gold);
  margin-top: 12px;
}

.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header .section-label::after { margin-left: auto; margin-right: auto; }
.section-header p { color: var(--lmd-text-muted); margin-top: 18px; font-size: 1.05rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
