/* ============================================================
   EGGEO v2 — design system
   Premium, warm editorial: krem, karmazyn żółtka, głęboki brąz.
   ============================================================ */

:root {
  --cream: #faf6ef;
  --cream-2: #f3ecdf;
  --paper: #fffdf9;
  --ink: #2b2118;
  --ink-soft: #5c4f42;
  --ink-mute: #8a7c6c;
  --yolk: #f5a623;
  --yolk-deep: #e08e0b;
  --amber-soft: #fdeecd;
  --shell: #e8dcc8;
  --green: #4f7a5a;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 45px -18px rgba(64, 45, 20, 0.28);
  --shadow-soft: 0 10px 30px -14px rgba(64, 45, 20, 0.18);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtelne ziarno */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--yolk); color: var(--ink); }

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

a { color: var(--yolk-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.wrap { width: min(1120px, 92vw); margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 246, 239, 0.82);
  border-bottom: 1px solid rgba(43, 33, 24, 0.07);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -0.02em;
}
.logo:hover { text-decoration: none; }
.logo svg { width: 30px; height: 30px; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover { background: var(--cream-2); color: var(--ink); }
.main-nav a.active { background: var(--ink); color: var(--cream); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--shell);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 5vw 18px;
    border-bottom: 1px solid var(--shell);
    box-shadow: var(--shadow-soft);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; }
}

/* ---------- Hero z minutnikiem ---------- */
.hero {
  position: relative;
  padding: clamp(30px, 5vw, 64px) 0 clamp(40px, 6vw, 80px);
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(245, 166, 35, 0.16), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(245, 166, 35, 0.10), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero .wrap { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yolk-deep);
  background: var(--amber-soft);
  border: 1px solid rgba(224, 142, 11, 0.25);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  max-width: 15ch;
  margin-bottom: 14px;
}
.hero h1 em { font-style: italic; color: var(--yolk-deep); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 34px;
}

/* ---------- Minutnik ---------- */
.timer-shell {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(43, 33, 24, 0.08);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(22px, 3.5vw, 44px);
  box-shadow: var(--shadow);
  max-width: 860px;
}
@media (max-width: 800px) { .timer-shell { grid-template-columns: 1fr; } }

.timer-face { position: relative; width: 100%; aspect-ratio: 1; max-width: 340px; margin: 0 auto; }
.timer-face svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.timer-ring-bg { fill: none; stroke: var(--cream-2); stroke-width: 11; }
.timer-ring {
  fill: none;
  stroke: url(#ringGradient);
  stroke-width: 11;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.35s linear;
}
.timer-display {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.timer-time {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.2rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}
.timer-shell.done .timer-time { color: var(--yolk-deep); animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.timer-controls h2 { font-size: 1.35rem; margin-bottom: 18px; }
.control-group { margin-bottom: 16px; }
.control-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1.5px solid var(--shell);
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s;
}
.chip:hover { border-color: var(--yolk); color: var(--ink); }
.chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.chip .chip-time { display: block; font-size: 0.75rem; font-weight: 500; opacity: 0.75; }

.timer-actions { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.btn {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--yolk), var(--yolk-deep));
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(224, 142, 11, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(224, 142, 11, 0.65); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink-soft); border: 1.5px solid var(--shell); }
.btn-ghost:hover { border-color: var(--ink-mute); color: var(--ink); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.timer-meta { display: flex; gap: 18px; margin-top: 16px; flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-mute); }
.timer-meta label { display: flex; align-items: center; gap: 6px; cursor: pointer; }

/* ---------- Sekcje ---------- */
.section { padding: clamp(48px, 7vw, 90px) 0; }
.section-alt { background: var(--paper); border-top: 1px solid rgba(43,33,24,0.06); border-bottom: 1px solid rgba(43,33,24,0.06); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head .kicker {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yolk-deep); margin-bottom: 10px; display: block;
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card {
  background: var(--paper);
  border: 1px solid rgba(43, 33, 24, 0.08);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
a.card { color: inherit; text-decoration: none; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--amber-soft);
  display: grid; place-items: center;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.card h3 { font-size: 1.18rem; }
.card p { font-size: 0.94rem; color: var(--ink-soft); flex: 1; }
.card .card-link { font-size: 0.9rem; font-weight: 600; color: var(--yolk-deep); }

/* ---------- Tabela czasów ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(43,33,24,0.09); box-shadow: var(--shadow-soft); background: var(--paper); }
table.times { width: 100%; border-collapse: collapse; min-width: 560px; }
table.times th, table.times td { padding: 15px 20px; text-align: left; }
table.times thead th {
  font-family: var(--font-body);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--cream-2);
  border-bottom: 1px solid rgba(43,33,24,0.08);
}
table.times tbody tr { border-bottom: 1px solid rgba(43,33,24,0.05); }
table.times tbody tr:last-child { border-bottom: none; }
table.times tbody tr:hover { background: var(--cream); }
table.times td strong { font-variant-numeric: tabular-nums; }
.tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  padding: 3px 11px; border-radius: 999px; background: var(--amber-soft); color: var(--yolk-deep);
}

/* ---------- FAQ ---------- */
.faq { max-width: 760px; }
.faq details {
  background: var(--paper);
  border: 1px solid rgba(43,33,24,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--yolk-deep);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Proza / artykuły ---------- */
.prose { max-width: 720px; }
.prose p { margin-bottom: 1.2em; color: var(--ink-soft); }
.prose h2 { font-size: 1.55rem; margin: 1.9em 0 0.7em; }
.prose h3 { font-size: 1.2rem; margin: 1.6em 0 0.5em; }
.prose ul, .prose ol { margin: 0 0 1.3em 1.3em; color: var(--ink-soft); }
.prose li { margin-bottom: 0.5em; }
.prose strong { color: var(--ink); }
.prose .lead { font-size: 1.16rem; color: var(--ink); }
.prose blockquote {
  border-left: 3px solid var(--yolk);
  padding: 6px 0 6px 20px;
  margin: 1.6em 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.callout {
  background: var(--amber-soft);
  border: 1px solid rgba(224,142,11,0.22);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 1.5em 0;
  font-size: 0.97rem;
}
.callout strong { color: var(--yolk-deep); }

/* ---------- Wzór matematyczny ---------- */
.formula {
  background: #241b12;
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  margin: 1.5em 0;
  text-align: center;
  overflow-x: auto;
}
.formula .formula-eq {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.formula .formula-eq sup { font-size: 0.6em; }
.formula .formula-note { margin-top: 12px; font-size: 0.85rem; color: rgba(250,246,239,0.6); }
.formula-legend {
  list-style: none;
  margin: 1.2em 0 !important;
  padding: 0;
  display: grid;
  gap: 10px;
}
.formula-legend li {
  background: var(--paper);
  border: 1px solid rgba(43,33,24,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.formula-legend strong { color: var(--yolk-deep); font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
.cta-band {
  background: linear-gradient(135deg, #2b2118, #463522);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 42px);
  margin: 2.2em 0;
  text-align: center;
}
.cta-band h3 { color: var(--cream); font-size: 1.4rem; margin-bottom: 8px; }
.cta-band p { color: rgba(250,246,239,0.75); margin-bottom: 20px; }

/* ---------- Nagłówek artykułu ---------- */
.article-hero { padding: clamp(40px, 6vw, 72px) 0 8px; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-mute); margin-bottom: 22px; }
.breadcrumb a { color: var(--ink-mute); }
.article-hero h1 { font-size: clamp(1.9rem, 4.4vw, 3rem); max-width: 22ch; margin-bottom: 16px; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.87rem; color: var(--ink-mute); margin-bottom: 30px; }
.article-meta .dot::before { content: "·"; margin-right: 16px; }

/* ---------- Kalkulator ---------- */
.calc-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid rgba(43,33,24,0.08);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(24px, 3.5vw, 44px);
  box-shadow: var(--shadow);
}
@media (max-width: 820px) { .calc-shell { grid-template-columns: 1fr; } }
.range-row { display: flex; align-items: center; gap: 16px; }
.range-row input[type="range"] { flex: 1; accent-color: var(--yolk-deep); height: 32px; }
.range-val {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  min-width: 86px; text-align: right;
  font-variant-numeric: tabular-nums;
}
.calc-result {
  background: linear-gradient(160deg, #2b2118, #453420);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.calc-result .res-label { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,246,239,0.6); font-weight: 600; }
.calc-result .res-time {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 600;
  color: var(--yolk);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.calc-result .res-desc { color: rgba(250,246,239,0.78); font-size: 0.96rem; max-width: 30ch; }
.calc-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; justify-content: center; }
.btn-ghost-light {
  background: transparent;
  color: rgba(250, 246, 239, 0.85);
  border: 1.5px solid rgba(250, 246, 239, 0.35);
}
.btn-ghost-light:hover { border-color: rgba(250, 246, 239, 0.7); color: var(--cream); }
.calc-result.done .res-time { animation: pulse 1s ease-in-out infinite; }

/* ---------- Blog listing ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.post-card .post-tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yolk-deep); }
.post-card h3 { font-size: 1.25rem; }
.post-card time { font-size: 0.82rem; color: var(--ink-mute); }

/* ---------- Stopka ---------- */
.site-footer {
  background: #241b12;
  color: rgba(250, 246, 239, 0.72);
  padding: 56px 0 30px;
  margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .logo { color: var(--cream); margin-bottom: 12px; }
.site-footer h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(250,246,239,0.72); font-size: 0.95rem; }
.site-footer a:hover { color: var(--yolk); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(250,246,239,0.12);
  padding-top: 22px;
  font-size: 0.83rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Przycisk aplikacji (Google Play) ---------- */
.app-fab {
  position: fixed;
  right: 0;
  top: 58%;
  z-index: 950;
  display: flex;
  align-items: stretch;
  background: #241b12;
  color: var(--cream);
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  transform: translateX(calc(100% - 46px));
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.15), box-shadow 0.3s;
  box-shadow: 0 16px 38px -12px rgba(36, 27, 18, 0.55);
  text-decoration: none;
}
.app-fab:hover, .app-fab.peek { transform: translateX(0); text-decoration: none; }
.app-fab-tab {
  width: 46px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.app-fab-body {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 18px 12px 6px;
  white-space: nowrap;
  font-size: 0.85rem;
  line-height: 1.3;
}
.app-fab-body svg { width: 22px; height: 22px; flex-shrink: 0; }
.app-fab-body small { display: block; color: rgba(250, 246, 239, 0.6); font-size: 0.72rem; }
.app-fab-body strong { font-family: var(--font-display); font-size: 0.95rem; }
@media (max-width: 560px) { .app-fab { top: auto; bottom: 90px; } }
@media (prefers-reduced-motion: reduce) { .app-fab { transition: none; } }

/* ---------- Baner cookies ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(140%);
  z-index: 1000;
  width: min(680px, 92vw);
  background: #241b12;
  color: rgba(250, 246, 239, 0.85);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { flex: 1; }
.cookie-banner a { color: var(--yolk); }
.cookie-banner .cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner .btn { padding: 10px 20px; font-size: 0.88rem; }
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner .cookie-btns { justify-content: center; }
}

/* ---------- Przepisy ---------- */
.recipe-card { padding: 0; overflow: hidden; }
.recipe-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.recipe-card .recipe-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.recipe-card .recipe-meta { font-size: 0.8rem; color: var(--ink-mute); display: flex; gap: 14px; }
.recipe-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}
.recipe-info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.recipe-info .info-pill {
  background: var(--paper);
  border: 1px solid rgba(43,33,24,0.08);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}
.recipe-info .info-pill strong { display: block; color: var(--ink); font-size: 1.02rem; }
.prose ol.recipe-steps li { margin-bottom: 1em; }
.ingredients { list-style: none; margin-left: 0 !important; }
.ingredients li { padding-left: 26px; position: relative; }
.ingredients li::before { content: "🥚"; position: absolute; left: 0; font-size: 0.8em; top: 0.25em; }

/* ---------- Animacje wejścia ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
