/* ============================================================================
   Świadek Dziejów — strona główna (premium, statyczna)
   Edytowalne źródło. Wdrażane 1:1 do html/. Bez build-stepu.
   ========================================================================== */

:root {
  color-scheme: dark;
  --bg: #08070a;
  --bg-soft: #0e0c11;
  --fg: #f1ece2;
  --muted: rgba(241, 236, 226, 0.68);
  --dim: rgba(241, 236, 226, 0.44);
  --faint: rgba(241, 236, 226, 0.12);
  --accent: #d4a054;
  --accent-bright: #f0c878;
  --tech: #4ecdc4;
  --violet: #a78bfa;
  --line: rgba(241, 236, 226, 0.09);
  --accent-line: rgba(212, 160, 84, 0.22);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: min(1180px, calc(100% - 44px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* film-grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: var(--wrap); margin-inline: auto; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.015em; margin: 0; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--accent); color: #14100a; padding: 10px 16px; border-radius: 8px;
  font-weight: 700; transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-bright); outline-offset: 3px; border-radius: 4px;
}

.gold { color: var(--accent); }
.text-gradient {
  background: linear-gradient(120deg, var(--accent-bright), var(--accent) 55%, #b07b34);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-gradient-tech {
  background: linear-gradient(120deg, #7ee8e0, var(--tech) 60%, var(--violet));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kicker {
  display: inline-block; color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.34em; font-size: 11px; font-weight: 700; margin: 0 0 18px; font-family: var(--sans);
}

/* ---------- reading / scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; }
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--tech));
  box-shadow: 0 0 14px rgba(212, 160, 84, 0.45);
  transition: width 0.1s linear;
}

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 110; width: min(1080px, calc(100% - 24px));
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 9px 9px 9px 16px; border: 1px solid var(--line); border-radius: 14px;
  background: rgba(8, 7, 10, 0.72); backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled { background: rgba(8, 7, 10, 0.9); }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 9px;
  font-family: var(--serif); font-weight: 700; font-size: 13px; color: #14100a;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
}
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 15px; }
.nav-links { display: flex; align-items: center; gap: 2px; font-size: 13px; }
.nav-links a { color: var(--muted); padding: 8px 13px; border-radius: 9px; transition: color 0.2s ease, background 0.2s ease; }
.nav-links a:hover { color: var(--fg); background: rgba(255, 255, 255, 0.05); }
.nav-cta { color: var(--accent-bright) !important; border: 1px solid var(--accent-line); }
.nav-cta:hover { border-color: rgba(240, 200, 120, 0.5); }
.nav-toggle {
  display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px;
  background: rgba(255, 255, 255, 0.04); color: var(--fg); cursor: pointer; padding: 0;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: currentColor; margin: 0 auto; position: relative; transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  text-align: center; padding: 120px 20px 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  filter: brightness(0.26) contrast(1.1) saturate(0.78); transform: scale(1.08);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 10, 0.78), rgba(8, 7, 10, 0.18) 45%, rgba(8, 7, 10, 0.72)),
    linear-gradient(180deg, rgba(8, 7, 10, 0.5), transparent 32%, var(--bg) 96%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(140px); z-index: 0; pointer-events: none; }
.hero-orb-1 { width: 620px; height: 620px; top: -180px; left: -160px; background: radial-gradient(circle, rgba(212, 160, 84, 0.4), transparent 70%); }
.hero-orb-2 { width: 520px; height: 520px; bottom: -120px; right: -120px; background: radial-gradient(circle, rgba(78, 205, 196, 0.18), transparent 70%); }
.hero-inner { position: relative; z-index: 2; max-width: 980px; margin-inline: auto; }
.hero-badge {
  display: inline-block; padding: 9px 18px; margin-bottom: 30px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(8, 7, 10, 0.6); backdrop-filter: blur(6px);
  color: var(--accent-bright); font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(3rem, 11vw, 7.5rem); line-height: 0.96; margin: 0 0 10px;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.7);
}
.hero-tagline {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.1rem, 3.4vw, 1.9rem); color: var(--accent); margin: 0 0 26px; min-height: 1.4em;
}
.hero-tagline .cursor { color: var(--accent-bright); animation: blink 1s steps(2) infinite; }
@keyframes blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }
.hero-sub {
  max-width: 620px; margin: 0 auto 36px; color: rgba(241, 236, 226, 0.84);
  font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.65; font-weight: 300;
}
.hero-sub strong { color: var(--fg); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; min-height: 50px; padding: 0 24px;
  border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.05);
  color: var(--fg); font-family: var(--sans); font-size: 14px; font-weight: 600; cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(240, 200, 120, 0.5); background: rgba(255, 255, 255, 0.09); }
.btn-primary {
  border-color: rgba(240, 200, 120, 0.5); color: #14100a;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  box-shadow: 0 16px 40px rgba(212, 160, 84, 0.28);
}
.btn-primary:hover { box-shadow: 0 20px 50px rgba(212, 160, 84, 0.4); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--dim); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
}
.hero-scroll .line { width: 1px; height: 46px; background: linear-gradient(180deg, var(--accent), transparent); animation: lineGrow 2.4s var(--ease) infinite; }
@keyframes lineGrow { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 50.01% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- marquee ---------- */
.marquee { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(78, 205, 196, 0.05), rgba(212, 160, 84, 0.06), rgba(167, 139, 250, 0.05)); overflow: hidden; }
.marquee-track { display: flex; width: max-content; gap: 0; animation: marquee 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 18px; padding: 0 26px; white-space: nowrap; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); }
.marquee-item::after { content: "◆"; color: var(--accent); opacity: 0.3; font-size: 7px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- section scaffolding ---------- */
.section { position: relative; padding: clamp(70px, 12vw, 150px) 0; }
.section-head { max-width: 760px; margin: 0 0 50px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1.04; text-wrap: balance; }
.section-head p { color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.18rem); margin: 18px 0 0; }
.divider { display: flex; align-items: center; gap: 16px; width: var(--wrap); margin: 0 auto; }
.divider::before, .divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.divider span { width: 6px; height: 6px; border: 1px solid var(--accent); transform: rotate(45deg); opacity: 0.6; }

/* ---------- narrative band ---------- */
.narrative { position: relative; overflow: hidden; }
.narrative-bg { position: absolute; inset: 0; z-index: 0; }
.narrative-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.1) contrast(1.2) saturate(0.35); }
.narrative-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg), rgba(8, 7, 10, 0.4) 50%, var(--bg)); }
.narrative .wrap { position: relative; z-index: 1; max-width: 920px; }
.editorial-quote {
  font-family: var(--serif); font-size: clamp(1.5rem, 4.4vw, 3rem); line-height: 1.35;
  text-align: center; margin: 0 0 46px; text-wrap: balance;
}
.editorial-quote .word { opacity: 0.18; transition: opacity 0.5s var(--ease); }
.editorial-quote.lit .word { opacity: 1; }
.narrative-cols { display: grid; grid-template-columns: 1fr; gap: 26px; }
.narrative-cols p { color: var(--muted); font-size: 1.05rem; line-height: 1.85; margin: 0; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat {
  padding: 28px 20px; border: 1px solid var(--line); border-radius: 16px; text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}
.stat-num { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1; }
.stat-label { color: var(--dim); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 10px; }

/* ---------- showcase (atlas / polska / technologia) ---------- */
.showcase { position: relative; min-height: 86svh; display: flex; align-items: center; overflow: hidden; isolation: isolate; padding-block: clamp(80px, 12vw, 150px); }
.showcase-bg { position: absolute; inset: 0; z-index: 0; }
.showcase-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.3) contrast(1.12) saturate(0.7); transform: scale(1.04); }
.showcase-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 7, 10, 0.92), rgba(8, 7, 10, 0.42) 60%, transparent); }
.showcase.reverse .showcase-bg::after { background: linear-gradient(270deg, rgba(8, 7, 10, 0.92), rgba(8, 7, 10, 0.42) 60%, transparent); }
.showcase-inner { position: relative; z-index: 1; width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: clamp(22px, 6vw, 100px); }
.showcase-card { max-width: 560px; }
.showcase.reverse .showcase-card { margin-left: auto; }
.badge-live { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; margin-bottom: 22px; border: 1px solid var(--accent-line); border-radius: 999px; background: rgba(8, 7, 10, 0.6); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-bright); }
.badge-live.tech { border-color: rgba(78, 205, 196, 0.3); color: #7ee8e0; }
.badge-live .pulse { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 0 currentColor; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(240, 200, 120, 0.5); } 70% { box-shadow: 0 0 0 10px rgba(240, 200, 120, 0); } 100% { box-shadow: 0 0 0 0 rgba(240, 200, 120, 0); } }
.showcase-card h2 { font-size: clamp(2.2rem, 6vw, 4.4rem); line-height: 1.02; margin-bottom: 18px; }
.showcase-card .sub { font-family: var(--serif); font-weight: 400; font-size: clamp(1.1rem, 2.2vw, 1.6rem); color: var(--muted); display: block; margin-top: 6px; }
.showcase-card p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin: 0 0 26px; }
.mini-stats { display: flex; flex-wrap: wrap; gap: 22px; margin: 0 0 28px; }
.mini-stat-num { font-family: var(--serif); font-weight: 700; font-size: 1.8rem; }
.mini-stat-label { color: var(--dim); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- articles ---------- */
.articles { background: linear-gradient(180deg, rgba(78, 205, 196, 0.04), transparent 40%); }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; margin-top: 14px; }
.article-card {
  display: flex; flex-direction: column; min-height: 230px; padding: 26px; border: 1px solid var(--line);
  border-radius: 18px; background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.18));
  transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}
.article-card:hover { transform: translateY(-4px); border-color: var(--accent-line); box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3); }
.article-card .a-date { color: var(--dim); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.article-card h3 { font-size: 1.4rem; line-height: 1.15; margin-bottom: 12px; }
.article-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.article-card .a-go { margin-top: auto; padding-top: 16px; color: var(--accent); font-size: 1.1rem; }
.articles-empty { padding: 36px; border: 1px dashed var(--accent-line); border-radius: 18px; color: var(--muted); background: rgba(255, 255, 255, 0.025); }
.articles-all { display: inline-flex; align-items: center; gap: 9px; margin-top: 34px; color: var(--accent-bright); font-weight: 600; }
.articles-all .arrow { transition: transform 0.2s ease; }
.articles-all:hover .arrow { transform: translateX(4px); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 60px 0 36px; background: linear-gradient(180deg, transparent, rgba(212, 160, 84, 0.03)); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
.footer-brand h3 { font-size: 1.6rem; margin-bottom: 8px; }
.footer-brand p { color: var(--dim); margin: 0; max-width: 38ch; }
.footer-nav { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; font-family: var(--sans); font-weight: 700; }
.footer-col a { display: block; color: var(--muted); padding: 5px 0; font-size: 14px; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-meta { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--dim); font-size: 12px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- responsive ---------- */
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 760px) { .narrative-cols { grid-template-columns: 1fr 1fr; gap: 50px; } }

@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: calc(100% + 10px); right: 0; left: 0; flex-direction: column; align-items: stretch;
    gap: 4px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(8, 7, 10, 0.96);
    backdrop-filter: blur(18px); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-toggle { display: block; }
  .showcase-card { max-width: none; }
  .showcase.reverse .showcase-card { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .editorial-quote .word { opacity: 1; }
}

/* ============================================================================
   Dodatki: numeracja rozdziałów, social, korekty odstępów
   ========================================================================== */

/* editorial chapter number on showcases */
.chapter-num {
  display: block; font-family: var(--serif); font-weight: 600; font-size: 13px;
  letter-spacing: 0.3em; color: var(--accent); margin-bottom: 20px; opacity: 0.85;
}
.chapter-num::before { content: ""; display: inline-block; width: 34px; height: 1px; background: var(--accent); margin: 0 12px 4px 0; vertical-align: middle; opacity: 0.7; }
.showcase.reverse .chapter-num { color: var(--tech); }
.showcase.reverse .chapter-num::before { background: var(--tech); }

/* section eyebrow with rule (editorial, less "template") */
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.eyebrow .num { font-family: var(--serif); font-size: 13px; letter-spacing: 0.2em; color: var(--accent); }
.eyebrow .rule { height: 1px; width: 48px; background: var(--accent); opacity: 0.6; }
.eyebrow .label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim); }

/* hero refinements */
.hero-meta { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 40px; color: var(--dim); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

/* narrative signature */
.narrative-sign { margin-top: 40px; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--accent-bright); }
.narrative-sign small { display: block; font-style: normal; font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); margin-top: 6px; }

/* ---------- social band ---------- */
.social { padding: clamp(70px, 11vw, 130px) 0; background: linear-gradient(180deg, transparent, rgba(212, 160, 84, 0.04)); }
.social-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 14px; }
@media (min-width: 720px) { .social-grid { grid-template-columns: repeat(3, 1fr); } }
.social-card {
  display: flex; flex-direction: column; gap: 14px; padding: 30px; border: 1px solid var(--line);
  border-radius: 18px; background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(0, 0, 0, 0.18));
  position: relative; overflow: hidden; transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease;
}
.social-card::after { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.social-card:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35); }
.social-card.yt:hover { border-color: rgba(255, 60, 60, 0.45); }
.social-card.yt::after { background: radial-gradient(circle at 20% 0%, rgba(255, 0, 0, 0.12), transparent 60%); }
.social-card.ig:hover { border-color: rgba(225, 95, 160, 0.45); }
.social-card.ig::after { background: radial-gradient(circle at 20% 0%, rgba(225, 48, 108, 0.12), transparent 60%); }
.social-card.fb:hover { border-color: rgba(80, 130, 235, 0.45); }
.social-card.fb::after { background: radial-gradient(circle at 20% 0%, rgba(24, 119, 242, 0.12), transparent 60%); }
.social-card:hover::after { opacity: 1; }
.social-top { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.social-icon { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 13px; background: rgba(255, 255, 255, 0.06); }
.social-icon svg { width: 24px; height: 24px; }
.social-card.yt .social-icon { background: rgba(255, 0, 0, 0.14); color: #ff5a5a; }
.social-card.ig .social-icon { background: rgba(225, 48, 108, 0.14); color: #f06ba8; }
.social-card.fb .social-icon { background: rgba(24, 119, 242, 0.14); color: #6fa3f5; }
.social-name { font-family: var(--serif); font-size: 1.2rem; line-height: 1.1; }
.social-handle { color: var(--dim); font-size: 12px; }
.social-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin: 0; position: relative; z-index: 1; }
.social-go { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--accent-bright); font-weight: 600; font-size: 14px; position: relative; z-index: 1; }
.social-card.yt .social-go { color: #ff7a7a; }
.social-card.ig .social-go { color: #f48fc0; }
.social-card.fb .social-go { color: #8fb8f7; }
.social-go .arrow { transition: transform 0.2s ease; }
.social-card:hover .social-go .arrow { transform: translateX(4px); }

/* ---------- footer social row ---------- */
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line);
  border-radius: 11px; color: var(--muted); transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.footer-social a:hover { color: var(--fg); border-color: var(--accent-line); transform: translateY(-2px); background: rgba(255, 255, 255, 0.04); }
.footer-social svg { width: 20px; height: 20px; }

@media (max-width: 760px) {
  .hero-meta { flex-wrap: wrap; gap: 10px 16px; }
}
