@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-600-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
    U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Newsreader";
  src: url("fonts/newsreader-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --brand-navy: #0b1f44;
  --brand-amber: #e3a323;
  --brand-paper: #f8f7f3;
  --text-primary: #182033;
  --text-muted: #606a78;
  --border-subtle: #e2e0da;
  /* Dołożone razem z podstroną o prywatności; wartości z docs/brand/tokens.css. */
  --status-warning-bg: #fff2cc;
  --status-warning-text: #765000;
  --radius-card: 0.75rem;
}

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

html {
  min-width: 20rem;
  background: var(--brand-paper);
}

body {
  margin: 0;
  color: var(--text-primary);
  background: var(--brand-paper);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  width: min(100% - 2.5rem, 75rem);
  min-height: 100svh;
  margin-inline: auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  padding-block: clamp(1.5rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--border-subtle);
}

.brand-logo {
  display: block;
  width: clamp(10rem, 24vw, 14.375rem);
  height: auto;
}

.main-content {
  display: grid;
  align-items: center;
  padding-block: clamp(4rem, 11vh, 8rem);
}

.announcement {
  display: grid;
  grid-template-columns: 0.75rem minmax(0, 48rem);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
}

.announcement__marker {
  position: relative;
  background: var(--brand-navy);
}

.announcement__marker span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--brand-amber);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.announcement__content {
  padding-block: clamp(0.5rem, 2vw, 1.25rem);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--brand-navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--brand-navy);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(3.25rem, 9vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}

.lead {
  max-width: 39rem;
  margin: clamp(2rem, 5vw, 3.25rem) 0 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.status {
  width: fit-content;
  margin: 2rem 0 0;
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--brand-navy);
  background: #fff2cc;
  border: 1px solid #efd98a;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status__dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--brand-amber);
  border-radius: 50%;
  animation: quiet-pulse 2.4s ease-in-out infinite;
}

.site-footer {
  padding-block: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

.site-footer p {
  margin: 0;
}

.site-footer__place {
  color: var(--brand-navy);
  font-weight: 700;
}

@keyframes quiet-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 36rem) {
  .page-shell {
    width: min(100% - 2.5rem, 75rem);
  }

  .announcement {
    grid-template-columns: 0.375rem minmax(0, 1fr);
    gap: 1.25rem;
  }

  .announcement__marker span {
    width: 0.625rem;
    height: 0.625rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status__dot {
    animation: none;
  }
}

/* Podstrona o prywatności. Plansza nie potrzebowała tekstu ciągłego, więc
   te reguły dokładają tylko tyle, ile trzeba, żeby dało się to czytać. */
.prose {
  max-width: 44rem;
  padding-block: clamp(2rem, 6vh, 4rem);
}

.prose h1 {
  margin-bottom: 1.5rem;
}

.prose h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.25;
  color: var(--brand-navy);
  margin: 2.5rem 0 0.75rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose a {
  color: var(--brand-navy);
  text-underline-offset: 0.2rem;
}

.prose a:hover {
  text-decoration-color: var(--brand-amber);
}

/* Miejsce do uzupełnienia przed uruchomieniem serwisu — ma się rzucać w oczy
   redakcji, nie udawać zwykłego akapitu. */
.prose .notice {
  background: var(--status-warning-bg);
  color: var(--status-warning-text);
  border-radius: var(--radius-card);
  padding: 0.9rem 1.1rem;
}

.prose .footnote {
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer__place a {
  color: var(--brand-navy);
}
