/* ============================================
   G.O.A.T. Social Media — style.css
   Paleta wg grafik: ciemny brąz + pomarańcz/złoto
   ============================================ */

:root {
  --bg: #1e1710;
  --bg-2: #261d13;
  --card: #2a2014;
  --card-2: #332715;
  --line: rgba(246, 165, 30, 0.28);
  --line-soft: rgba(246, 165, 30, 0.14);
  --orange: #f6a51e;
  --orange-2: #ffbe4d;
  --gold: #e9c26a;
  --cream: #f6eedd;
  --text: #f2ece0;
  --muted: #c2b49c;
  --dark: #16100a;
  --radius: 22px;
  --shadow-glow: 0 0 40px rgba(246, 165, 30, 0.18);
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

/* subtelna poświata tła jak na grafikach */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(246, 165, 30, 0.10), transparent 60%),
    radial-gradient(700px 500px at -10% 40%, rgba(246, 165, 30, 0.06), transparent 60%),
    radial-gradient(800px 600px at 50% 110%, rgba(246, 165, 30, 0.07), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; }

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

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-2); }

.container { width: min(1180px, 92%); margin: 0 auto; }

section { padding: 84px 0; }

/* ---------- Typografia ---------- */

h1, h2, h3 { font-weight: 900; text-transform: uppercase; line-height: 1.12; letter-spacing: 0.01em; }

h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.15rem; }

.accent { color: var(--orange); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }

.kicker {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 165, 30, 0.06);
}

.lead { color: var(--muted); margin-top: 16px; font-size: 1.06rem; }

/* ---------- Przyciski ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), #e08d0a);
  color: var(--dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 26px rgba(246, 165, 30, 0.35);
  font-family: var(--font);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(246, 165, 30, 0.5); color: var(--dark); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-2); box-shadow: none; }

.btn-sm { padding: 11px 22px; font-size: 0.8rem; }

/* ---------- Nagłówek / nawigacja ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24, 18, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.brand img { height: 26px; width: auto; }
.brand .sub {
  color: var(--orange);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  padding-left: 2px;
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a:not(.btn) {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  position: relative;
  padding: 6px 0;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transition: right 0.25s ease;
}
.nav a:not(.btn):hover::after,
.nav a.active:not(.btn)::after { right: 0; }
.nav a.active:not(.btn) { color: var(--orange); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--orange); border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero { padding: 90px 0 70px; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero h1 span.orange { color: var(--orange); display: block; }
.hero .sub-headline {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-top: 10px;
}

.hero-rule {
  width: 88px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 26px 0;
}

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chip {
  border: 1px solid var(--line);
  background: rgba(246, 165, 30, 0.07);
  color: var(--cream);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 999px;
}
.chip .dot { color: var(--orange); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

.hero-note { margin-top: 22px; color: var(--muted); font-size: 0.92rem; }
.hero-note strong { color: var(--gold); }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-visual .photo {
  width: min(420px, 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line), 0 0 80px rgba(246, 165, 30, 0.25);
}
.hero-badge {
  position: absolute;
  bottom: 6%;
  right: 2%;
  background: linear-gradient(135deg, var(--orange), #e08d0a);
  color: var(--dark);
  border-radius: 18px;
  padding: 14px 20px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  text-align: center;
}
.hero-badge .big { display: block; font-size: 1.25rem; }

/* ---------- Karty korzyści ---------- */

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-glow); }

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(246, 165, 30, 0.1);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.card .icon svg { width: 26px; height: 26px; stroke: var(--orange); fill: none; stroke-width: 1.8; }

.card h3 { margin-bottom: 10px; color: var(--cream); }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Proces ---------- */

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative;
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
}
.step .num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { color: var(--cream); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }
.step .arrow {
  position: absolute;
  top: 50%;
  right: -23px;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 900;
  z-index: 2;
}

/* ---------- Pasek oferty testowej ---------- */

.band {
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(120deg, var(--orange), #d98a06);
  border-radius: calc(var(--radius) + 6px);
  padding: 52px 48px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(246, 165, 30, 0.25);
}
.band h2 { color: var(--dark); }
.band p { font-weight: 600; margin-top: 8px; max-width: 560px; }
.band .btn {
  background: var(--dark);
  color: var(--orange);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}
.band .btn:hover { color: var(--orange-2); }
.band .tag {
  display: inline-block;
  background: rgba(22, 16, 10, 0.14);
  border: 1.5px solid rgba(22, 16, 10, 0.35);
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  padding: 7px 16px;
  margin-bottom: 14px;
}

/* ---------- Cennik ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price-card {
  background: linear-gradient(170deg, var(--card), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-glow); }

.price-card .name {
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}
.price-card .price {
  font-size: 2.9rem;
  font-weight: 200;
  color: #fff;
  line-height: 1.1;
  margin-top: 10px;
  text-shadow: 0 0 30px rgba(246, 165, 30, 0.45);
}
.price-card .per {
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.price-card .sep { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); margin: 0 auto 20px; width: 80%; }
.price-card ul { list-style: none; color: var(--muted); font-size: 0.95rem; display: grid; gap: 8px; margin-bottom: 24px; }
.price-card ul strong { color: var(--cream); font-weight: 700; }
.price-card .btn { margin-top: auto; justify-content: center; }

.price-card.featured {
  border: 1.5px solid var(--orange);
  box-shadow: 0 0 50px rgba(246, 165, 30, 0.22);
  position: relative;
  transform: scale(1.04);
  z-index: 2;
}
.price-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.price-card.featured .flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-note { text-align: center; color: var(--muted); margin-top: 26px; font-size: 0.92rem; }
.pricing-note strong { color: var(--gold); }

.price-card .od {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-right: 5px;
}

.price-disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 760px;
  margin: 18px auto 0;
}
.price-disclaimer.legal {
  font-size: 0.76rem;
  opacity: 0.7;
  margin-top: 10px;
}

/* ---------- Portfolio ---------- */

.reel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--card);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.reel:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-glow); }
.reel video { width: 100%; height: 100%; object-fit: cover; }
.reel .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(22, 16, 10, 0.1), rgba(22, 16, 10, 0.55));
  transition: opacity 0.25s ease;
}
.reel .play .circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(246, 165, 30, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 0 40px rgba(246, 165, 30, 0.5);
  transition: transform 0.25s ease;
}
.reel:hover .play .circle { transform: scale(1.08); }
.reel .play svg { width: 28px; height: 28px; fill: var(--dark); margin-left: 4px; }
.reel.playing .play { opacity: 0; pointer-events: none; }

/* Suwak postępu wideo (rolki i filmy) */
.vid-bar {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 18px;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 2;
  cursor: pointer;
  touch-action: none;
}
.reel.started .vid-bar, .film.started .vid-bar { opacity: 1; pointer-events: auto; }
.vid-bar .track {
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(246, 238, 221, 0.28);
  overflow: hidden;
  transition: height 0.15s ease;
}
.vid-bar:hover .track { height: 8px; }
.vid-bar .fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 12px rgba(246, 165, 30, 0.6);
}
.vid-time {
  position: absolute;
  right: 14px;
  bottom: 30px;
  background: rgba(22, 16, 10, 0.72);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 3px 10px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
  pointer-events: none;
}
.reel.started .vid-time, .film.started .vid-time { opacity: 1; }

.reel-cta {
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  border: 1.5px dashed var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
  background: rgba(246, 165, 30, 0.04);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.reel-cta:hover { border-color: var(--orange); background: rgba(246, 165, 30, 0.08); }
.reel-cta .inner h3 { color: var(--cream); margin-bottom: 14px; }
.reel-cta .inner p { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }

.post-grid-45 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.post-grid-sq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.post-grid-45 img, .post-grid-sq img {
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  width: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-grid-45 img { aspect-ratio: 4 / 5; }
.post-grid-sq img { aspect-ratio: 1 / 1; }
.post-grid-45 img:hover, .post-grid-sq img:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }

/* ---------- Filmy cinematic (16:9) ---------- */

.film-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.film {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--card);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.film:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-glow); }
.film video { width: 100%; height: 100%; object-fit: cover; }
.film .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(22, 16, 10, 0.1), rgba(22, 16, 10, 0.55));
  transition: opacity 0.25s ease;
}
.film .play .circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(246, 165, 30, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 0 40px rgba(246, 165, 30, 0.5);
  transition: transform 0.25s ease;
}
.film:hover .play .circle { transform: scale(1.08); }
.film .play svg { width: 28px; height: 28px; fill: var(--dark); margin-left: 4px; }
.film.playing .play { opacity: 0; pointer-events: none; }
.film .film-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  background: rgba(22, 16, 10, 0.72);
  border: 1px solid var(--line-soft);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 999px;
  pointer-events: none;
}

/* ---------- Karuzela Instagram ---------- */

.ig-section-grid {
  display: grid;
  grid-template-columns: minmax(300px, 430px) 1fr;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.ig-post {
  width: 100%;
  max-width: 430px;
  background: #100b06;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), var(--shadow-glow);
}

.ig-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}
.ig-head .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffc95c, var(--orange));
  display: grid;
  place-items: center;
  padding: 6px;
  border: 2px solid var(--orange);
}
.ig-head .avatar img { width: 100%; height: auto; }
.ig-head .who { line-height: 1.25; }
.ig-head .who .n { font-weight: 700; font-size: 0.88rem; color: #fff; }
.ig-head .who .s { font-size: 0.74rem; color: var(--muted); }
.ig-head .follow {
  margin-left: auto;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.ig-carousel { position: relative; overflow: hidden; touch-action: pan-y; }
.ig-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.ig-slide { min-width: 100%; }
.ig-slide img { width: 100%; display: block; user-select: none; -webkit-user-drag: none; }

.ig-counter {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(22, 16, 10, 0.75);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  z-index: 3;
}

.ig-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(246, 238, 221, 0.92);
  color: #1a130b;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.ig-arrow:hover { transform: translateY(-50%) scale(1.1); }
.ig-arrow.prev { left: 10px; }
.ig-arrow.next { right: 10px; }
.ig-arrow svg { width: 16px; height: 16px; stroke: #1a130b; stroke-width: 2.6; fill: none; }
.ig-arrow[disabled] { opacity: 0; pointer-events: none; }

.ig-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px 4px;
}
.ig-actions svg { width: 24px; height: 24px; stroke: var(--cream); fill: none; stroke-width: 1.8; cursor: pointer; transition: stroke 0.2s ease, transform 0.2s ease; }
.ig-actions svg:hover { stroke: var(--orange); transform: scale(1.12); }
.ig-actions .heart.liked { stroke: #ff4d6d; fill: #ff4d6d; }
.ig-actions .save { margin-left: auto; }

.ig-dots { display: flex; justify-content: center; gap: 5px; padding: 2px 0 0; }
.ig-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(246, 238, 221, 0.3);
  transition: background 0.25s ease, transform 0.25s ease;
}
.ig-dots .dot.on { background: var(--orange); transform: scale(1.25); }

.ig-caption { padding: 10px 16px 18px; font-size: 0.86rem; color: var(--muted); }
.ig-caption .n { font-weight: 700; color: #fff; margin-right: 6px; }

.ig-desc h2 { margin-bottom: 18px; }
.ig-desc p { color: var(--muted); }
.ig-desc p + p { margin-top: 14px; }
.ig-desc p strong { color: var(--cream); }
.ig-desc .hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ig-desc .hint svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

/* ---------- O mnie ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-grid .photo {
  width: min(400px, 100%);
  border-radius: 50%;
  margin-inline: auto;
  box-shadow: 0 0 0 1px var(--line), 0 0 80px rgba(246, 165, 30, 0.22);
}
.about-grid p + p { margin-top: 16px; }
.about-grid p { color: var(--muted); }
.about-grid p strong { color: var(--cream); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.stat {
  background: rgba(246, 165, 30, 0.06);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 20px 16px;
  text-align: center;
}
.stat .value { font-size: 1.9rem; font-weight: 200; color: #fff; text-shadow: 0 0 24px rgba(246, 165, 30, 0.45); }
.stat .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-top: 4px; }

/* ---------- Kontakt ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.contact-panel {
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.contact-panel h3 { color: var(--cream); margin-bottom: 20px; }

.contact-links { display: grid; gap: 14px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  color: var(--text);
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.contact-link:hover { border-color: var(--orange); background: rgba(246, 165, 30, 0.06); transform: translateX(4px); color: var(--text); }
.contact-link .ic {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(246, 165, 30, 0.1);
  border: 1px solid var(--line);
}
.contact-link .ic svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; }
.contact-link small { display: block; color: var(--muted); font-weight: 500; font-size: 0.8rem; }

form .field { margin-bottom: 18px; }
form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}
form input, form textarea {
  width: 100%;
  background: rgba(22, 16, 10, 0.55);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.98rem;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
form input:focus, form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246, 165, 30, 0.15);
}
form textarea { resize: vertical; min-height: 130px; }
form .btn { width: 100%; justify-content: center; }
.form-hint { color: var(--muted); font-size: 0.82rem; margin-top: 14px; text-align: center; }

.form-success {
  display: none;
  background: rgba(70, 160, 70, 0.12);
  border: 1px solid rgba(120, 200, 120, 0.4);
  color: #c8e6c8;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

/* ---------- Blog ---------- */

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.blog-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  color: var(--text);
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-glow); color: var(--text); }

.blog-cover {
  position: relative;
  aspect-ratio: 16 / 8;
  background:
    radial-gradient(400px 220px at 85% 15%, rgba(246, 165, 30, 0.28), transparent 60%),
    linear-gradient(150deg, #332715, #1c150c);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.blog-cover .num {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.35;
  line-height: 1;
}
.blog-cover .cat {
  background: rgba(246, 165, 30, 0.12);
  border: 1px solid var(--line);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 999px;
}
.blog-card .body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card h3 { color: var(--cream); font-size: 1.2rem; line-height: 1.3; }
.blog-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.blog-card .meta { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; }
.blog-card .more { color: var(--orange); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* Artykuł */

.crumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a { color: var(--gold); }
.crumbs a:hover { color: var(--orange); }

.article-wrap { max-width: 780px; margin: 0 auto; }
.article-meta { color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; margin-top: 16px; }
.article-hero h1 { text-transform: none; letter-spacing: 0; line-height: 1.2; font-size: clamp(1.9rem, 4vw, 2.9rem); }

.key-box {
  background: rgba(246, 165, 30, 0.06);
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 34px 0;
}
.key-box .kb-title {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.key-box ul { list-style: none; display: grid; gap: 10px; }
.key-box li { color: var(--text); padding-left: 26px; position: relative; }
.key-box li::before { content: "→"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }

.article-body { font-size: 1.02rem; }
.article-body h2 {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.5rem;
  color: var(--cream);
  margin: 42px 0 14px;
  line-height: 1.3;
}
.article-body h3 { text-transform: none; letter-spacing: 0; font-size: 1.15rem; color: var(--cream); margin: 28px 0 10px; }
.article-body p { color: var(--muted); margin-bottom: 16px; }
.article-body p strong, .article-body li strong { color: var(--cream); }
.article-body ul, .article-body ol { color: var(--muted); margin: 0 0 18px 22px; display: grid; gap: 8px; }
.article-body a { text-decoration: underline; text-underline-offset: 3px; }

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 26px;
  font-size: 0.95rem;
}
.article-body th, .article-body td {
  border: 1px solid var(--line-soft);
  padding: 12px 16px;
  text-align: left;
  color: var(--muted);
}
.article-body th { background: rgba(246, 165, 30, 0.08); color: var(--cream); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.08em; }
.article-body td strong { color: var(--cream); }
.table-scroll { overflow-x: auto; }

.faq-list { display: grid; gap: 12px; margin: 20px 0 10px; }
.faq-list details {
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}
.faq-list details[open] { border-color: var(--line); }
.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--cream);
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 22px 18px; color: var(--muted); margin: 0; }

.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(160deg, var(--card), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-top: 44px;
}
.author-box img { width: 72px; height: 72px; border-radius: 50%; }
.author-box .a-name { color: var(--cream); font-weight: 800; }
.author-box p { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }

@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- Stopka ---------- */

.site-footer {
  background: #161009;
  border-top: 1px solid var(--line-soft);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.site-footer .f-brand img { height: 30px; width: auto; margin-bottom: 6px; }
.site-footer .f-brand .sub {
  color: var(--orange);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.site-footer p { color: var(--muted); font-size: 0.92rem; }
.site-footer h4 {
  color: var(--cream);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer ul a { color: var(--muted); font-size: 0.92rem; }
.site-footer ul a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 20px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Baner cookies ---------- */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(160deg, #2e2314, #1c150c);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(246, 165, 30, 0.12);
  display: none;
}
.cookie-banner.show { display: block; animation: cookieIn 0.35s ease; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.cookie-banner h3 {
  color: var(--cream);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.cookie-banner p { color: var(--muted); font-size: 0.85rem; line-height: 1.55; margin-bottom: 16px; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner .cb-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 11px 22px; font-size: 0.78rem; }

/* ---------- Podstrony: hero mniejsze ---------- */

.page-hero { padding: 70px 0 30px; }
.page-hero .lead { max-width: 700px; }

/* ---------- Animacje wejścia ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsywność ---------- */

@media (max-width: 1020px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  section { padding: 60px 0; }
  .hero { padding: 60px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .hero-visual .photo { width: min(300px, 80%); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .step .arrow { display: none; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .film-grid { grid-template-columns: 1fr; }
  .post-grid-45 { grid-template-columns: repeat(2, 1fr); }
  .ig-section-grid { grid-template-columns: 1fr; gap: 44px; }
  .ig-post { margin-inline: auto; }
  .band { padding: 40px 30px; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 63px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(24, 18, 12, 0.98);
    border-bottom: 1px solid var(--line-soft);
    padding: 24px 5vw 30px;
    gap: 18px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav.open { transform: none; }
}

@media (max-width: 620px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .reel-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero-badge { position: static; margin-top: 20px; }
  .hero-visual { gap: 10px; }
}
