/* ══════════════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════════════ */
:root {
  --g-dark:    #0d3020;
  --g-mid:     #1a4a2e;
  --g-accent:  #1d5c36;
  --g-light:   #2e8050;
  --bg:        #e7ece7;
  --bg-off:    #dce4dc;
  --bg-panel:  #d3ddd3;
  --white:     #ffffff;
  --dark:      #091509;
  --text:      #192c1e;
  --text-mid:  #385240;
  --text-dim:  #688068;
  --border:    rgba(26,74,46,.16);
  --border-md: rgba(26,74,46,.32);
  --head: 'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;
  --semi: 'Barlow Semi Condensed', sans-serif;
  --nav-h: 64px;
  --max-w: 1400px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 max(48px, calc(50% - var(--max-w) / 2));
  background: rgba(231,236,231,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.1); }

.nav__logo {
  font-family: var(--head); font-size: 19px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--g-dark); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.nav__logo em { font-style: normal; color: var(--g-light); }

.nav__links { display: flex; gap: 32px; list-style: none; }
.nav__links a {
  font-family: var(--semi); font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none; transition: color .2s;
}
.nav__links a:hover { color: var(--g-dark); }

.nav__cta {
  font-family: var(--head); font-size: 13px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--white); background: var(--g-dark);
  padding: 11px 26px; text-decoration: none; transition: background .2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--g-mid); }

.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; height: 2px; background: var(--g-dark);
  transition: transform .3s, opacity .3s; border-radius: 2px;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 899;
  background: rgba(231,236,231,.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 24px 32px 32px; gap: 4px;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: var(--head); font-size: 20px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--g-dark); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer .drawer-cta {
  margin-top: 16px; background: var(--g-dark); color: var(--white);
  text-align: center; padding: 16px; border-bottom: none;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../img/banner-desktop.png');
  background-size: cover; background-position: center 18%;
}
.hero__bg-mobile {
  position: absolute; inset: 0;
  background-image: url('../img/banner-mobile.png');
  background-size: cover; background-position: center top;
  display: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    transparent 30%,
    rgba(13,48,32,.4) 62%,
    rgba(9,21,9,.9) 100%);
}

.hero__content {
  position: relative; z-index: 2;
  width: 100%; padding: 0 max(64px, calc(50% - var(--max-w) / 2)) 72px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
}

.hero__eyebrow {
  font-family: var(--semi); font-size: 11px;
  letter-spacing: .28em; text-transform: uppercase;
  color: rgba(231,236,231,.55); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: rgba(231,236,231,.35);
}

.hero__title {
  font-family: var(--head);
  font-size: clamp(64px, 8.5vw, 120px);
  font-weight: 900; text-transform: uppercase;
  line-height: .88; letter-spacing: -.01em; color: var(--white);
}
.hero__title .sub {
  display: block;
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 300; letter-spacing: .22em;
  color: rgba(231,236,231,.68); margin-top: 4px;
}

.hero__desc {
  font-size: 16px; color: rgba(231,236,231,.6);
  max-width: 390px; line-height: 1.7; margin-top: 18px;
}

.hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; align-items: center; }

.hero__stats {
  display: flex; border: 1px solid rgba(231,236,231,.2); flex-shrink: 0;
}
.hero__stat {
  padding: 18px 28px; text-align: center;
  border-right: 1px solid rgba(231,236,231,.15);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-val {
  font-family: var(--head); font-size: 36px; font-weight: 900;
  color: var(--white); line-height: 1;
}
.hero__stat-lbl {
  font-family: var(--semi); font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(231,236,231,.38); margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  font-family: var(--head); font-weight: 700;
  font-size: 14px; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all .25s;
  white-space: nowrap;
}
.btn--dark {
  color: var(--white); background: var(--g-dark);
  padding: 17px 44px; border: 2px solid var(--g-dark);
}
.btn--dark:hover { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outline {
  color: var(--g-dark); background: transparent;
  border: 2px solid var(--g-dark); padding: 15px 36px;
}
.btn--outline:hover { background: var(--g-dark); color: var(--white); }
.btn--ghost-white {
  color: rgba(231,236,231,.7); text-decoration: none;
  font-family: var(--head); font-size: 14px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border-bottom: 1px solid rgba(231,236,231,.3); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn--ghost-white:hover { color: var(--white); border-color: var(--white); }
.btn--white {
  color: var(--g-dark); background: var(--white);
  padding: 17px 44px; border: 2px solid var(--white);
}
.btn--white:hover { background: transparent; color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   COMMON
══════════════════════════════════════════════════════════════ */
.section { padding: 104px max(64px, calc(50% - var(--max-w) / 2)); }

.label {
  font-family: var(--semi); font-size: 11px;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--g-accent); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.label::before { content: ''; display: block; width: 22px; height: 2px; background: var(--g-accent); }
.label--light { color: rgba(231,236,231,.4); }
.label--light::before { background: rgba(231,236,231,.25); }

h2 {
  font-family: var(--head);
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 900; text-transform: uppercase;
  line-height: .92; color: var(--g-dark); margin-bottom: 24px;
}
h2 em { font-style: normal; color: var(--g-light); }
h2.light { color: var(--white); }
h2.light em { color: rgba(231,236,231,.45); }

.lead { font-size: 17px; line-height: 1.75; color: var(--text-mid); max-width: 560px; }

/* ══════════════════════════════════════════════════════════════
   MISSION
══════════════════════════════════════════════════════════════ */
#mission { background: var(--white); }

.mission__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }

.mission__img { position: relative; }
.mission__img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(.72);
}
.mission__img::before {
  content: ''; position: absolute;
  top: -10px; left: -10px; right: 10px; bottom: 10px;
  border: 2px solid var(--g-dark); z-index: -1; opacity: .2;
}

.chips { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 40px; }
.chip { border-top: 2px solid var(--g-dark); padding: 18px 0 14px; }
.chip__val {
  font-family: var(--head); font-size: 28px; font-weight: 900;
  color: var(--g-dark); line-height: 1;
}
.chip__lbl {
  font-family: var(--semi); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim); margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
#about { background: var(--bg); }

.about__grid { display: grid; grid-template-columns: 5fr 4fr; gap: 88px; align-items: start; }

.about__body { font-size: 16px; line-height: 1.8; color: var(--text-mid); }
.about__body p { margin-bottom: 18px; }
.about__body strong { color: var(--g-dark); font-weight: 600; }

.spec-panel { background: var(--g-dark); padding: 44px 36px; }
.spec-panel__title {
  font-family: var(--head); font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(231,236,231,.38);
  margin-bottom: 28px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(231,236,231,.1);
}
.spec-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid rgba(231,236,231,.08);
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  font-family: var(--semi); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: rgba(231,236,231,.38);
}
.spec-val { font-family: var(--head); font-size: 20px; font-weight: 700; color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════════ */
#galeria { background: var(--white); padding-bottom: 0; }

.gallery__header { padding-bottom: 40px; }

.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 4px;
}
.gallery__item { overflow: hidden; position: relative; background: var(--bg-panel); }
.gallery__item:first-child { grid-row: 1/3; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.58); transition: filter .5s, transform .6s;
}
.gallery__item:hover img { filter: saturate(.95); transform: scale(1.05); }
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9,21,9,.5) 100%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════════════ */
#cennik { background: var(--bg-off); }

.pricing__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: 52px; border: 2px solid var(--g-dark);
}
.price-card {
  background: var(--white); padding: 40px 28px 32px;
  text-align: center; border-right: 1px solid var(--bg-off);
  transition: background .25s;
}
.price-card:last-child { border-right: none; }
.price-card:hover { background: var(--g-dark); }
.price-card:hover .price-card__players,
.price-card:hover .price-card__note { color: rgba(231,236,231,.4); }
.price-card:hover .price-card__amt { color: var(--white); }
.price-card:hover .price-card__curr { color: rgba(231,236,231,.5); }
.price-card:hover .price-card__btn { background: var(--white); color: var(--g-dark); }

.price-card__players {
  font-family: var(--semi); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 20px; transition: color .25s;
}
.price-card__curr {
  font-family: var(--head); font-size: 20px; font-weight: 300;
  color: var(--text-mid); vertical-align: top; margin-top: 12px;
  display: inline-block; transition: color .25s;
}
.price-card__amt {
  font-family: var(--head); font-size: 68px; font-weight: 900;
  color: var(--g-dark); line-height: 1; transition: color .25s;
}
.price-card__note {
  font-family: var(--semi); font-size: 10px; letter-spacing: .1em;
  color: var(--text-dim); margin-top: 6px; text-transform: uppercase; transition: color .25s;
}
.price-card__btn {
  display: block; margin-top: 24px;
  font-family: var(--head); font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); background: var(--g-dark);
  padding: 12px 16px; text-decoration: none; transition: all .25s;
}

/* ══════════════════════════════════════════════════════════════
   VOUCHER
══════════════════════════════════════════════════════════════ */
#poukaz {
  background: var(--g-dark);
  display: grid; grid-template-columns: 1fr auto;
  align-items: stretch; overflow: hidden;
}
.voucher__text { padding: 72px max(64px, calc(50% - var(--max-w) / 2)); display: flex; flex-direction: column; justify-content: center; }
.voucher__text p {
  color: rgba(231,236,231,.6); font-size: 16px;
  max-width: 420px; margin-top: 12px; line-height: 1.7;
}
.voucher__img { width: 320px; flex-shrink: 0; overflow: hidden; }
.voucher__img img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .38; filter: saturate(0);
}

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
#faq { background: var(--white); }

.faq__grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 52px; }
.faq__item {
  border-top: 2px solid var(--border-md);
  padding: 26px 0; cursor: pointer;
}
.faq__item:nth-child(odd) { padding-right: 56px; }
.faq__item:nth-child(even) { padding-left: 52px; border-left: 2px solid var(--border-md); }
.faq__q {
  font-family: var(--head); font-size: 18px; font-weight: 700;
  color: var(--g-dark); text-transform: uppercase; letter-spacing: .02em;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 14px;
  user-select: none;
}
.faq__toggle {
  font-family: var(--body); font-size: 22px; font-weight: 300;
  color: var(--g-light); flex-shrink: 0; line-height: 1; transition: transform .22s;
}
.faq__item.open .faq__toggle { transform: rotate(45deg); }
.faq__a {
  font-size: 14px; color: var(--text-mid); line-height: 1.75;
  margin-top: 12px; display: none;
}
.faq__item.open .faq__a { display: block; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
#kontakt { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; background: var(--bg); }
.contact__left { padding: 88px max(64px, calc(50% - var(--max-w) / 2)); }
.contact__right { overflow: hidden; min-height: 480px; }
.contact__right iframe {
  width: 100%; height: 100%; display: block; border: none;
  filter: saturate(.22) contrast(1.1); transition: filter .4s;
}
.contact__right:hover iframe { filter: saturate(.5) contrast(1.05); }

.c-list { margin-top: 40px; }
.c-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.c-item:first-child { border-top: 1px solid var(--border); }
.c-icon {
  width: 38px; height: 38px; background: var(--g-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 15px;
}
.c-lbl {
  font-family: var(--semi); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 3px;
}
.c-val { font-family: var(--semi); font-size: 16px; font-weight: 600; color: var(--g-dark); }
.c-val a { color: inherit; text-decoration: none; }
.c-val a:hover { color: var(--g-light); }

.socials { display: flex; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.soc-link {
  font-family: var(--head); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--g-dark); border: 2px solid var(--border-md);
  padding: 10px 20px; text-decoration: none; transition: all .2s;
}
.soc-link:hover { background: var(--g-dark); color: var(--white); border-color: var(--g-dark); }

/* ══════════════════════════════════════════════════════════════
   REVIEW CTA
══════════════════════════════════════════════════════════════ */
.review-cta {
  background: var(--bg-off); padding: 56px max(64px, calc(50% - var(--max-w) / 2));
  text-align: center; border-top: 1px solid var(--border);
}
.review-cta p {
  font-family: var(--semi); font-size: 16px; color: var(--text-mid);
  max-width: 480px; margin: 0 auto 32px;
}
.review-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
footer {
  background: var(--dark); padding: 36px max(64px, calc(50% - var(--max-w) / 2));
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.f-logo {
  font-family: var(--head); font-size: 17px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(231,236,231,.82);
}
.f-nav { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.f-nav a {
  font-family: var(--semi); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(231,236,231,.28); text-decoration: none; transition: color .2s;
}
.f-nav a:hover { color: rgba(231,236,231,.8); }
.f-copy {
  font-family: var(--semi); font-size: 10px;
  color: rgba(231,236,231,.2); letter-spacing: .08em; white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE – Tablet ≤1024px
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  .nav { padding: 0 32px; }
  .hero__content { padding: 0 40px 56px; }
  .mission__grid { gap: 56px; }
  .about__grid { gap: 56px; }
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .price-card { border-right: 1px solid var(--bg-off); border-bottom: 1px solid var(--bg-off); }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery__item:first-child { grid-row: auto; }
  .gallery__item { height: 220px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE – Mobile ≤768px
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  #hero { align-items: stretch; min-height: 100svh; }
  .hero__bg { display: none; }
  .hero__bg-mobile { display: block; }
  .hero__overlay {
    background: linear-gradient(to bottom,
      rgba(9,21,9,.05) 0%, transparent 35%,
      rgba(13,48,32,.3) 60%, rgba(9,21,9,.92) 100%);
  }
  .hero__content {
    padding: 0 24px 48px;
    flex-direction: column; align-items: flex-start; justify-content: flex-end;
    gap: 24px; min-height: 100svh;
  }
  .hero__title { font-size: clamp(52px, 14vw, 80px); }
  .hero__title .sub { font-size: clamp(20px, 6vw, 32px); letter-spacing: .18em; }
  .hero__desc { font-size: 15px; max-width: 100%; }
  .hero__actions { gap: 12px; }
  .btn--dark { padding: 15px 32px; font-size: 13px; }
  .hero__stats { flex-direction: row; width: 100%; border: 1px solid rgba(231,236,231,.18); }
  .hero__stat { flex: 1; padding: 14px 10px; }
  .hero__stat-val { font-size: 28px; }

  .section { padding: 64px 24px; }

  .mission__grid { grid-template-columns: 1fr; gap: 40px; }
  .mission__img::before { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }

  .gallery__header { padding-bottom: 28px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 3px; }
  .gallery__item { height: 160px; }
  .gallery__item:first-child { grid-column: 1/-1; height: 220px; grid-row: auto; }

  .pricing__grid { grid-template-columns: 1fr 1fr; border: none; gap: 8px; margin-top: 40px; }
  .price-card { border: 2px solid var(--border-md) !important; }
  .price-card__amt { font-size: 52px; }

  #poukaz { grid-template-columns: 1fr; }
  .voucher__img { display: none; }
  .voucher__text { padding: 64px 24px; }

  .faq__grid { grid-template-columns: 1fr; margin-top: 40px; }
  .faq__item:nth-child(even) { padding-left: 0; border-left: none; }
  .faq__item:nth-child(odd) { padding-right: 0; }

  #kontakt { display: block; }
  .contact__left { padding: 64px 24px; }
  .contact__right { min-height: 280px; }

  .review-cta { padding: 48px 24px; }

  footer { flex-direction: column; text-align: center; padding: 32px 24px; gap: 16px; }
  .f-nav { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE – Small mobile ≤420px
══════════════════════════════════════════════════════════════ */
@media (max-width: 420px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .hero__stat { padding: 12px 8px; }
  .hero__stat-val { font-size: 24px; }
}
