/*
 * 02-base.css — Reset, base HTML, utilitários globais
 */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-width: 100%;
  max-width: 100vw;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
body.no-scroll { overflow: hidden; }

/* Container */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow--light { color: var(--sky); }
.eyebrow--light::before { background: var(--sky); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

/* Section title */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -.015em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sky-deep);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--sky); }

.section-sub {
  color: var(--ink-60);
  font-size: .96rem;
  margin-top: .7rem;
  line-height: 1.75;
  max-width: 540px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin-inline: auto; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.from-left  { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.visible    { opacity: 1; transform: none; }

.stagger-1 { transition-delay:  60ms; }
.stagger-2 { transition-delay: 120ms; }
.stagger-3 { transition-delay: 180ms; }
.stagger-4 { transition-delay: 240ms; }
.stagger-5 { transition-delay: 300ms; }
.stagger-6 { transition-delay: 360ms; }

/* Icon color helpers */
.icon--sky   { background: var(--sky-10);   color: var(--sky-deep); }
.icon--green { background: var(--green-10); color: var(--green-dark); }
.icon--mist  { background: var(--mist);     color: var(--ink-60); }

@keyframes spin { to { transform: rotate(360deg); } }