/* ============================================================
   SPARTA ADVENTURE PARK — motyw 2026
   ============================================================ */
:root {
  --bg: #0d0c0b;
  --bg-2: #14120f;
  --card: #1a1713;
  --gold: #e0a82e;
  --gold-light: #f3c75a;
  --gold-dark: #a97c15;
  --red: #b3122a;
  --red-light: #e0233f;
  --red-dark: #7d0c1d;
  --text: #f5f3ef;
  --muted: #a9a49b;
  --line: rgba(224, 168, 46, 0.16);
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #161616; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2e2921; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

h1, h2, h3, h4, .display {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.03em;
  line-height: 1.15;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* pasek postępu scrolla */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 3000;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  box-shadow: 0 0 12px rgba(224, 168, 46, 0.7);
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.pre-shield {
  width: 84px; height: 84px; border-radius: 50%;
  border: 3px solid var(--gold);
  display: grid; place-items: center;
  font-family: 'Cinzel', serif; font-size: 2.6rem; font-weight: 900;
  color: var(--gold);
  animation: shieldPulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(224, 168, 46, 0.4);
}
@keyframes shieldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 168, 46, 0.45); transform: scale(1); }
  50% { box-shadow: 0 0 0 22px rgba(224, 168, 46, 0); transform: scale(1.05); }
}
.preloader p {
  font-family: 'Cinzel', serif; text-transform: uppercase;
  letter-spacing: 0.4em; font-size: 0.85rem; color: var(--gold);
}

/* ============ MEANDER (grecki wzór) ============ */
.meander {
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='14' viewBox='0 0 40 14'%3E%3Cpath d='M0 1h32v8h-8V5h-4v8H0v-4h28V5H4v4h4v4' fill='none' stroke='%23e0a82e' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 14px;
  opacity: 0.55;
}

/* ============ HEADER ============ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13, 12, 11, 0.5);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
header.scrolled {
  background: rgba(13, 12, 11, 0.92);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 16px; }
header.scrolled .nav { height: 70px; }
.nav { transition: height 0.4s var(--ease); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  height: 60px; width: auto; object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(224, 168, 46, 0.35));
  transition: height 0.4s var(--ease), transform 0.3s;
}
header.scrolled .brand img { height: 50px; }
.brand:hover img { transform: rotate(-6deg) scale(1.06); }
.brand-name {
  font-family: 'Cinzel', serif; font-weight: 900; font-size: 20px;
  line-height: 1.05; text-transform: uppercase;
}
.brand-name span {
  color: var(--gold); display: block; font-size: 11px;
  letter-spacing: 0.32em; font-weight: 700;
}

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-weight: 500; font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text);
  transition: color 0.25s; position: relative; padding: 4px 0;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: linear-gradient(120deg, var(--red-light), var(--red));
  color: #fff; padding: 10px 24px; border-radius: 999px;
  font-weight: 700; letter-spacing: 0.06em;
  box-shadow: 0 6px 20px rgba(179, 18, 42, 0.4);
  transition: all 0.3s var(--ease);
}
.nav-cta:hover {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #161616; transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 168, 46, 0.45);
}

.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: 0; padding: 8px; z-index: 1200;
}
.burger span {
  width: 26px; height: 3px; background: var(--gold);
  border-radius: 2px; transition: 0.35s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; isolation: isolate;
}
.hero-bg {
  position: absolute; inset: -6%; z-index: -3;
  background: url('../img/hero.jpg') center / cover no-repeat;
  animation: heroZoom 20s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.14); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse 70% 55% at 50% 115%, rgba(179, 18, 42, 0.28), transparent 65%),
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(224, 168, 46, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(13, 12, 11, 0.78) 0%, rgba(13, 12, 11, 0.45) 45%, rgba(13, 12, 11, 0.95) 100%);
}
#embers { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.hero-inner { padding: 120px 24px 60px; max-width: 960px; position: relative; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold); font-weight: 600; letter-spacing: 0.42em;
  text-transform: uppercase; font-size: 12.5px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}
.hero .eyebrow::before, .hero .eyebrow::after {
  content: ""; width: 44px; height: 1px; background: var(--gold); opacity: 0.6;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.03; text-transform: uppercase;
  margin: 22px 0 10px;
  text-shadow: 0 6px 34px rgba(0, 0, 0, 0.8);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block; transform: translateY(112%);
  animation: lineUp 1s var(--ease) forwards;
}
.hero h1 .gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero p {
  margin: 20px auto 36px; font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: #e8e4dc; max-width: 660px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.85s forwards;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 1.05s forwards;
}

/* statystyki w hero */
.hero-stats {
  display: flex; gap: clamp(1.5rem, 5vw, 4rem); justify-content: center;
  margin-top: 52px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 1.25s forwards;
}
.stat { text-align: center; }
.stat .num {
  font-family: 'Cinzel', serif; font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--gold); line-height: 1;
}
.stat .lbl {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--muted); margin-top: 6px;
}

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 26px; animation: bob 1.8s infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.6; }
}

/* ============ PRZYCISKI ============ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 14.5px; cursor: pointer; border: 2px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(120deg, var(--red-light), var(--red) 60%, var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 26px rgba(179, 18, 42, 0.45);
}
.btn-primary:hover {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #161616; transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(224, 168, 46, 0.5);
}
.btn-ghost {
  background: rgba(224, 168, 46, 0.06); color: #fff;
  border-color: var(--gold);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: var(--gold); color: #161616; transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(224, 168, 46, 0.4);
}
.btn-pulse { animation: btnPulse 2.8s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(179, 18, 42, 0.45); }
  50% { box-shadow: 0 8px 42px rgba(179, 18, 42, 0.8); }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden; white-space: nowrap; padding: 1rem 0;
}
.marquee-track { display: inline-flex; gap: 3.2rem; animation: marquee 30s linear infinite; }
.marquee span {
  font-family: 'Cinzel', serif; text-transform: uppercase;
  letter-spacing: 0.3em; font-size: 0.88rem; color: var(--muted);
}
.marquee span b { color: var(--gold); font-weight: 700; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ SEKCJE ============ */
section { padding: 96px 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head .kicker {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold); font-weight: 600; letter-spacing: 0.36em;
  text-transform: uppercase; font-size: 12.5px;
}
.section-head .kicker::before, .section-head .kicker::after {
  content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.5;
}
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900;
  text-transform: uppercase; margin-top: 14px;
}
.section-head h2 em { font-style: normal; color: var(--gold); }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ============ ATRAKCJE ============ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 460px; display: flex; align-items: flex-end;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
  transform-style: preserve-3d;
}
.card:hover {
  transform: translateY(-10px);
  border-color: rgba(224, 168, 46, 0.55);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.6), 0 8px 40px rgba(224, 168, 46, 0.16);
}
.card > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform 0.8s var(--ease), filter 0.6s;
  filter: saturate(0.9);
}
.card:hover > img { transform: scale(1.09); filter: saturate(1.15); }
.card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(transparent 25%, rgba(10, 9, 8, 0.95));
}
.card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.09) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease);
}
.card:hover::after { transform: translateX(120%); }
.card-body { position: relative; z-index: 2; padding: 30px; }
.card-body h3 {
  font-size: 1.65rem; font-weight: 900; text-transform: uppercase; color: #fff;
}
.card-body h3 em { color: var(--gold); font-style: normal; }
.card-body p { color: #d9d5cd; margin-top: 10px; font-size: 0.97rem; }
.tag {
  display: inline-block;
  background: linear-gradient(120deg, var(--red-light), var(--red));
  color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 30px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(179, 18, 42, 0.4);
}

/* ============ CENNIK ============ */
.pricing { background: var(--bg-2); }
.pricing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='28' viewBox='0 0 80 28'%3E%3Cpath d='M0 2h64v16h-16V10h-8v16H0V18h56V10H8v8h8v8' fill='none' stroke='%23e0a82e' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 80px 28px;
}
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px 28px 36px; text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.price-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); }
.price-card:hover::before { opacity: 1; }
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(224, 168, 46, 0.08), var(--card) 55%);
  box-shadow: 0 0 0 1px rgba(224, 168, 46, 0.35), 0 22px 54px rgba(0, 0, 0, 0.55);
  transform: scale(1.04);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.price-card .ribbon {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #161616; font-weight: 700; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 30px; margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(224, 168, 46, 0.4);
}
.price-card h3 { font-size: 1.3rem; text-transform: uppercase; color: #fff; }
.price-card .amount {
  font-family: 'Cinzel', serif; font-size: 3.4rem; font-weight: 900;
  color: var(--gold); margin: 16px 0 4px; line-height: 1;
}
.price-card .amount small { font-size: 1.2rem; color: var(--muted); font-weight: 700; }
.price-card .per {
  color: var(--muted); font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase;
}

.price-block { margin-top: 72px; }
.price-block h3 {
  text-align: center; font-size: 1.7rem; text-transform: uppercase;
  color: #fff; margin-bottom: 6px;
}
.price-block .sub {
  text-align: center; color: var(--gold); font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; font-size: 12px; margin-bottom: 30px;
}
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 920px; margin: 0 auto; }
.mini-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
.mini {
  background: var(--card); border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px; padding: 28px 24px; text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.mini:hover {
  transform: translateY(-6px); border-color: rgba(224, 168, 46, 0.5);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
}
.mini .big {
  font-family: 'Cinzel', serif; font-size: 1.9rem; font-weight: 900; color: var(--gold);
  margin: 6px 0;
}
.mini h4 { text-transform: uppercase; font-size: 1.02rem; color: #fff; }
.mini p { color: var(--muted); font-size: 0.9rem; }

/* ============ GALERIA ============ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; }
.gallery a {
  overflow: hidden; border-radius: 12px; position: relative; cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s;
}
.gallery a::after {
  content: "+"; position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  font-size: 2.4rem; color: var(--gold); font-weight: 300;
  background: rgba(13, 12, 11, 0.45);
  opacity: 0; transition: opacity 0.35s;
}
.gallery a:hover::after { opacity: 1; }
.gallery a:hover img { transform: scale(1.12); }
.gallery .wide { grid-column: span 2; }
.gallery .tall { grid-row: span 2; }

/* ============ LIGHTBOX ============ */
.lb {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(8, 7, 6, 0.95); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.lb.open { display: flex; opacity: 1; }
.lb-img {
  max-width: 90vw; max-height: 82vh; border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.8);
  user-select: none; animation: lbIn 0.35s var(--ease) both;
}
@keyframes lbIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.lb-cap {
  position: absolute; bottom: 26px; left: 0; right: 0; text-align: center;
  color: #f0ede7; font-size: 1rem; padding: 0 60px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.lb-count {
  position: absolute; top: 24px; left: 0; right: 0; text-align: center;
  color: var(--gold); font-family: 'Cinzel', serif;
  font-weight: 700; letter-spacing: 0.12em; font-size: 0.95rem;
}
.lb-btn {
  position: absolute; background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(224, 168, 46, 0.45); color: #fff;
  width: 54px; height: 54px; border-radius: 50%; font-size: 26px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s, color 0.2s; line-height: 1;
  backdrop-filter: blur(4px);
}
.lb-btn:hover { background: var(--gold); color: #161616; transform: scale(1.1); }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.1); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-next:hover { transform: translateY(-50%) scale(1.1); }
.lb-close { top: 20px; right: 20px; width: 46px; height: 46px; font-size: 22px; }
@media (max-width: 600px) {
  .lb-btn { width: 44px; height: 44px; font-size: 22px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-cap { font-size: 0.9rem; padding: 0 20px; bottom: 16px; }
}

/* ============ PARTNER (BeeShot) ============ */
.partner {
  position: relative; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, var(--red-dark), #14100c 70%);
}
.partner::before {
  content: ""; position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23f1b51a' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}
.partner .inner { max-width: 780px; margin: 0 auto; position: relative; }
.partner .bee-icon {
  font-size: 2.6rem; display: inline-block; margin-bottom: 14px;
  animation: beeFloat 3.2s ease-in-out infinite;
}
@keyframes beeFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(6deg); }
}
.partner h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); text-transform: uppercase; color: #fff; }
.partner h2 em { font-style: normal; color: var(--gold); }
.partner p { color: #f0dcb4; margin: 18px 0 30px; font-size: 1.08rem; }

/* ============ INFO / KONTAKT ============ */
.info { background: var(--bg-2); }
.info-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.info-list { display: flex; flex-direction: column; gap: 20px; }
.info-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px; padding: 20px 22px;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.info-item:hover {
  transform: translateX(8px); border-color: rgba(224, 168, 46, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}
.info-item .ic {
  flex: 0 0 52px; height: 52px; border-radius: 50%;
  background: rgba(224, 168, 46, 0.13);
  border: 1px solid rgba(224, 168, 46, 0.35);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.info-item h4 { text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.02rem; color: #fff; }
.info-item p { color: var(--muted); font-size: 0.98rem; }
.info-item a { color: var(--gold); font-weight: 700; }
.info-item a:hover { text-decoration: underline; }

.hours-box {
  background: var(--card);
  border: 1px solid rgba(224, 168, 46, 0.3);
  border-radius: var(--radius); padding: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.hours-box h3 {
  text-transform: uppercase; color: var(--gold); font-size: 1.3rem;
  margin-bottom: 20px; text-align: center;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 1.02rem; border-radius: 8px;
  transition: background 0.3s;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { color: #fff; font-weight: 500; }
.hours-row .closed { color: var(--red-light); font-weight: 700; }
.hours-row .open { color: var(--gold); font-weight: 700; }
.hours-row.today {
  background: rgba(224, 168, 46, 0.1);
  outline: 1px solid rgba(224, 168, 46, 0.35);
}
.hours-row.today .day::after {
  content: "dziś"; margin-left: 10px;
  background: var(--gold); color: #161616;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 2px 9px; border-radius: 20px;
  vertical-align: middle;
}

/* ============ CTA ============ */
.cta {
  position: relative; text-align: center; overflow: hidden; isolation: isolate;
}
.cta-bg {
  position: absolute; inset: -10%; z-index: -2;
  background: url('../img/cta.jpg') center / cover no-repeat;
  will-change: transform;
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(179, 18, 42, 0.3), transparent 60%),
    linear-gradient(rgba(12, 11, 10, 0.8), rgba(12, 11, 10, 0.88));
}
.cta h2 {
  font-size: clamp(2rem, 5vw, 3.4rem); text-transform: uppercase; color: #fff;
}
.cta h2 em { font-style: normal; color: var(--gold); }
.cta p { color: #e8e4dc; margin: 18px auto 32px; max-width: 620px; font-size: 1.15rem; }

/* ============ FOOTER ============ */
footer {
  background: #0a0908; padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  position: relative;
}
footer::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(900px, 90%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.foot-brand img { height: 110px; width: auto; }
footer p { color: var(--muted); font-size: 0.95rem; }
footer h5 {
  font-family: 'Cinzel', serif; text-transform: uppercase; color: var(--gold);
  letter-spacing: 0.12em; font-size: 0.98rem; margin-bottom: 18px;
  position: relative; display: inline-block; padding-bottom: 8px;
}
footer h5::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 40px; height: 2px; background: var(--gold);
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: var(--muted); transition: color 0.25s, padding-left 0.25s; }
footer ul li a:hover { color: var(--gold); padding-left: 6px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700;
  transition: all 0.3s var(--ease);
}
.socials a:hover {
  background: var(--gold); color: #161616; transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(224, 168, 46, 0.4);
}
.copy {
  text-align: center; color: #726c62; font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07); padding-top: 22px;
}
.copy a { color: var(--gold); }

/* przycisk "do góry" */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(224, 168, 46, 0.55);
  background: rgba(13, 12, 11, 0.85); backdrop-filter: blur(8px);
  color: var(--gold); font-size: 1.2rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all 0.35s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: #161616; box-shadow: 0 10px 26px rgba(224, 168, 46, 0.45); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-46px); }
.reveal-right { transform: translateX(46px); }
.reveal-left.in, .reveal-right.in { transform: none; }
.reveal-zoom { transform: scale(0.92); }
.reveal-zoom.in { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSYWNOŚĆ ============ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; gap: 26px;
    background: rgba(10, 9, 8, 0.97); backdrop-filter: blur(20px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    z-index: 1100;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.3rem; }
  .burger { display: flex; }
  .cards, .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }
  .mini-grid { grid-template-columns: 1fr; }
  .mini-grid.two { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery .wide { grid-column: span 2; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  section { padding: 72px 0; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gallery .wide { grid-column: span 1; }
  .brand-name { font-size: 15px; }
  .hero-stats { gap: 1.6rem; }
}
