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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.page {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: 1.5rem;
  top: -100%;
  z-index: 10;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
}

.skip-link:focus {
  top: 1rem;
}

/* Cel skip-linka i kotwic nawigacji — nagłówek sekcji nie ma dotykać krawędzi. */
:target {
  scroll-margin-top: 1.5rem;
}

section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

/* Wspólny styl nadkreśleń sekcji; .about-eyebrow dokłada tylko własny odstęp. */
.section-label,
.about-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
}

.section-label {
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  max-width: 18ch;
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}
