*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface-2);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

.container {
  width: min(var(--container), 100% - 32px);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--brand-light);
  border-radius: 2px;
}

.section {
  padding: clamp(64px, 9vw, 100px) 0;
}

.section--compact {
  padding: clamp(40px, 6vw, 64px) 0;
}

.section--faq {
  background: var(--surface);
}

.section--dark {
  background: linear-gradient(165deg, var(--brand-deep) 0%, #0f3460 50%, var(--brand) 100%);
  color: #fff;
}

.section--dark h2,
.section--dark h3 { color: #fff; }

.section__lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 12px;
}

.section--dark .section__lead { color: rgba(255,255,255,0.75); }

.section--gallery {
  background: var(--surface);
  padding-top: clamp(64px, 9vw, 100px);
}

.section__head {
  margin-bottom: clamp(36px, 5vw, 52px);
}

.sr-only,
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
