/* =========================================================================
   EliteCore – system stylów
   Autor: Strony WWW Pomorze Aleksander Szypryt
   ========================================================================= */

:root {
	--navy-900: #060c1a;
	--navy-800: #0a1228;
	--navy-700: #0e1b38;
	--navy-600: #14254c;
	--navy-card: #101d3a;
	--navy-line: rgba(200, 165, 90, 0.22);
	--gold: #d7b363;
	--gold-2: #ecca82;
	--gold-soft: #c8a877;
	--ink: #eef2fb;
	--muted: #9fabc4;
	--white: #ffffff;
	--radius: 14px;
	--radius-lg: 22px;
	--wrap: 1200px;
	--shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
	--gold-grad: linear-gradient(135deg, #ecca82 0%, #d7b363 45%, #b8933f 100%);
	--font-head: 'Montserrat', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--navy-900);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-2); }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0 0 .5em; color: var(--white); font-weight: 800; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 78px 0; position: relative; }
.gold { color: var(--gold); }
.text-center { text-align: center; }

/* tła wariantów ---------------------------------------------------------- */
.theme-navy { background:
	radial-gradient(1200px 600px at 80% -10%, rgba(30,60,120,.35), transparent 60%),
	linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-900) 100%);
	background-attachment: fixed;
}
.theme-warm { background:
	radial-gradient(900px 500px at 75% 0%, rgba(120,80,30,.30), transparent 60%),
	linear-gradient(180deg, #0b0a12 0%, #15100c 45%, #0b0a10 100%);
	background-attachment: fixed;
}

/* dekoracja kropek po lewej */
.dots-deco { position: absolute; left: 0; bottom: 40px; width: 140px; height: 180px; opacity: .5; pointer-events: none;
	background-image: radial-gradient(var(--gold) 1.2px, transparent 1.6px); background-size: 14px 14px; }

/* =========================================================================
   Header – przezroczysty overlay na hero (styl jak na produkcyjnej demówce)
   ========================================================================= */
.site-header {
	position: absolute; top: 0; left: 0; right: 0; z-index: 60;
	background: transparent;
}
.site-header .header-inner { position: relative; }

.brand-bar { position: relative; display: flex; justify-content: center; align-items: center; padding: 18px 0 14px; }
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { max-height: 62px; width: auto; }

/* przełącznik języka – złota pigułka top-right */
.lang-switch { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.lang-pill, .lang-switch a {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 9px 16px; border-radius: 999px;
	border: 1px solid var(--gold); background: rgba(0,0,0,.18);
	color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: 14px; cursor: pointer;
}
.lang-pill:hover, .lang-switch a:hover { color: var(--gold-2); border-color: var(--gold-2); }
.lang-switch .flag { width: 22px; height: 15px; border-radius: 2px; object-fit: cover; }
.lang-switch ul { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; }

/* pasek nawigacji z cienką linią na całą szerokość */
.nav-bar {
	position: relative; min-height: 56px;
	display: flex; align-items: center; justify-content: center;
	border-top: 1px solid rgba(255,255,255,.18);
	border-bottom: 1px solid rgba(255,255,255,.06);
}
.main-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; justify-content: center; }
.main-nav a {
	display: inline-block; padding: 17px 18px;
	font-family: var(--font-head); font-weight: 600; font-size: 14px;
	letter-spacing: 1.2px; text-transform: uppercase; color: #eaf0fb; position: relative;
}
.main-nav a:hover { color: var(--gold-2); }
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-parent > a,
.main-nav .current-menu-ancestor > a { color: var(--gold); }
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after,
.main-nav .current-menu-ancestor > a::after { content: ""; position: absolute; left: 18px; right: 18px; bottom: -1px; height: 2px; background: var(--gold); border-radius: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav .menu-item-has-children > a { padding-right: 32px; }
.main-nav .menu-item-has-children > a::before { content: ""; position: absolute; right: 15px; top: 50%; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-70%) rotate(45deg); opacity: .55; }
.main-nav .sub-menu { display: none; position: absolute; top: 100%; left: 0; margin: 0; background: var(--navy-700); border: 1px solid var(--navy-line); border-radius: 10px; padding: 6px; min-width: 234px; box-shadow: var(--shadow); z-index: 6; }
.main-nav li:hover > .sub-menu { display: block; }
.main-nav .sub-menu li { display: block; }
.main-nav .sub-menu a { display: block; padding: 10px 14px; font-size: 13px; text-transform: none; letter-spacing: .3px; border-radius: 7px; white-space: nowrap; }
.main-nav .sub-menu a:hover { background: rgba(255,255,255,.06); color: var(--gold-2); }
.main-nav .sub-menu .current-menu-item > a::after,
.main-nav .sub-menu .current_page_item > a::after { display: none; }

.nav-toggle { display: none; align-items: center; justify-content: center; flex: 0 0 auto; background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.3); color: var(--ink); width: 44px; height: 40px; border-radius: 8px; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: currentColor; position: relative; margin: 0 auto; }
.nav-toggle span::before { position: absolute; top: -6px; } .nav-toggle span::after { position: absolute; top: 6px; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: 15px; cursor: pointer; border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s; }
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--gold-grad); color: #1a1206; box-shadow: 0 12px 28px rgba(210,162,63,.32); }
.btn-gold:hover { transform: translateY(-2px); color: #1a1206; box-shadow: 0 16px 34px rgba(210,162,63,.45); }
.btn-ghost { background: rgba(255,255,255,.02); border-color: rgba(255,255,255,.28); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
/* lewa-do-prawej winieta: tekst po lewej czytelny, zdjęcie widoczne po prawej */
.hero-media::after { content: ""; position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(6,12,26,.92) 0%, rgba(6,12,26,.62) 42%, rgba(6,12,26,.22) 100%),
	            linear-gradient(180deg, rgba(6,12,26,.25) 60%, rgba(6,12,26,.9) 100%); }
.theme-warm .hero-media::after { background: linear-gradient(90deg, rgba(10,8,12,.9) 0%, rgba(12,9,8,.55) 45%, rgba(12,9,8,.18) 100%),
	            linear-gradient(180deg, rgba(8,6,8,.22) 60%, rgba(8,6,8,.9) 100%); }
/* hero wyśrodkowany (home): równomierna, lżejsza winieta by zdjęcie było widoczne */
.hero-center .hero-media img { object-position: center 22%; }
.hero-center .hero-media::after {
	background: radial-gradient(120% 80% at 50% 38%, rgba(6,12,26,.45) 0%, rgba(6,12,26,.74) 70%, rgba(6,12,26,.92) 100%),
	            linear-gradient(180deg, rgba(6,12,26,.35), rgba(6,12,26,.92)); }
.hero-inner { position: relative; z-index: 2; padding: 184px 0 110px; }
.hero-narrow { max-width: 640px; }
.hero h1 { font-size: clamp(40px, 6vw, 76px); font-weight: 900; letter-spacing: -1px; }
.hero-lead { font-size: 18px; color: #d4dcec; max-width: 540px; margin: 18px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-center { text-align: center; }
.hero-center .hero-inner { padding: 196px 0 120px; }
.hero-center h1 { font-size: clamp(42px, 7vw, 78px); }
.hero-center .hero-cta { justify-content: center; }
.hero-center .hero-lead { margin-left: auto; margin-right: auto; }

/* Hero strony głównej z paskiem skrótów (jak na demo) */
.hero-home { overflow: visible; }
.hero-home .hero-media { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; }
.hero-home .hero-inner { padding: 168px 0 150px; }
.hero-tabs { position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%); z-index: 4;
	display: flex; gap: 4px; padding: 8px; border-radius: 999px; max-width: calc(100% - 32px);
	background: rgba(8, 14, 30, .86); border: 1px solid var(--navy-line);
	-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 20px 55px rgba(0, 0, 0, .5); }
.hero-tabs a { display: inline-flex; align-items: center; gap: 9px; padding: 12px 24px; border-radius: 999px;
	font-family: var(--font-head); font-weight: 600; font-size: 15px; color: #c9d3e6; white-space: nowrap;
	position: relative; transition: color .2s ease, background .2s ease; }
.hero-tabs a:hover { color: #fff; }
.hero-tabs a .ht-ic { display: inline-flex; color: var(--gold); }
.hero-tabs a .ht-ic svg { width: 18px; height: 18px; }
.hero-tabs a.is-active { color: #fff; background: rgba(255, 255, 255, .06); }
.hero-tabs a.is-active::after { content: ""; position: absolute; left: 24px; right: 24px; bottom: 8px; height: 2px; border-radius: 2px; background: var(--gold); }
@media (max-width: 640px) {
	.hero-home .hero-inner { padding: 150px 0 140px; }
	.hero-tabs { gap: 2px; padding: 6px; }
	.hero-tabs a { padding: 10px 15px; font-size: 13px; }
	.hero-tabs a .ht-ic { display: none; }
}

.eyebrow { font-family: var(--font-head); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: 13px; color: var(--gold); margin-bottom: 10px; }
.section-head { text-align: center; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }

/* =========================================================================
   Pill sub-nav (segmentowa nawigacja kotwicowa)
   ========================================================================= */
.subnav-wrap { position: relative; z-index: 5; margin-top: -34px; }
.subnav { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 4px; margin: 0 auto; padding: 8px; border-radius: 999px;
	background: rgba(14,27,56,.85); border: 1px solid var(--navy-line); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.theme-warm .subnav { background: rgba(28,20,14,.85); }
.subnav a { display: inline-flex; align-items: center; gap: 9px; padding: 12px 22px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); }
.subnav a svg { width: 19px; height: 19px; color: var(--gold); }
.subnav a:hover, .subnav a.is-active { background: rgba(210,162,63,.12); color: var(--gold-2); }
.subnav .sep { width: 1px; height: 22px; background: var(--navy-line); }
.subnav-center { display: flex; justify-content: center; }

/* =========================================================================
   Cards / grids
   ========================================================================= */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.card { background: linear-gradient(180deg, rgba(20,37,76,.55), rgba(12,22,46,.55)); border: 1px solid var(--navy-line); border-radius: var(--radius); padding: 28px 24px; transition: transform .2s ease, border-color .2s ease; }
.theme-warm .card { background: linear-gradient(180deg, rgba(40,28,18,.5), rgba(22,16,12,.6)); }
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.card-icon { width: 54px; height: 54px; color: var(--gold); margin-bottom: 16px; }
.card-icon svg { width: 100%; height: 100%; }
.card h3 { font-size: 18px; }
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* duże kafelki działów (home) */
.bigtiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bigtile { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 360px; display: flex; align-items: flex-end; border: 1px solid var(--navy-line); }
.bigtile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s ease; }
.bigtile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,12,26,.05) 0%, rgba(6,12,26,.55) 55%, rgba(6,12,26,.95) 100%); z-index: 1; }
.bigtile:hover img { transform: scale(1.06); }
.bigtile .bt-body { position: relative; z-index: 2; padding: 26px; width: 100%; }
.bigtile .bt-logo { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.bigtile .bt-logo .ic { width: 22px; height: 22px; color: var(--gold); }
.bigtile h3 { font-size: 28px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 12px; }
.bigtile .bt-more { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--gold); font-size: 14px; }

/* =========================================================================
   Pakiety
   ========================================================================= */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pkg { position: relative; background: linear-gradient(180deg, rgba(16,29,58,.7), rgba(10,18,40,.7)); border: 1px solid var(--navy-line); border-radius: var(--radius-lg); padding: 34px 28px; display: flex; flex-direction: column; }
.pkg.featured { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(210,162,63,.4), var(--shadow); }
.pkg .ribbon { position: absolute; top: 18px; right: 18px; color: var(--gold); }
.pkg h3 { text-align: center; font-size: 30px; color: var(--gold); letter-spacing: 1px; margin-bottom: 4px; }
.pkg .pkg-sub { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.pkg .pkg-price { text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.pkg .pkg-price span { font-size: 16px; font-weight: 600; color: var(--muted); }
.pkg .pkg-note { text-align: center; color: var(--muted); font-size: 12.5px; margin-bottom: 22px; }
.pkg ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.pkg li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.pkg li::before { content: "✓"; color: var(--gold); font-weight: 800; }
.pkg .btn { margin-top: auto; justify-content: center; }

/* =========================================================================
   Campy
   ========================================================================= */
.camps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.camp-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 280px; display: flex; align-items: flex-end; border: 1px solid var(--navy-line); }
.camp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.camp-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,12,26,.1), rgba(6,12,26,.9)); z-index: 1; }
.camp-card .cc-body { position: relative; z-index: 2; padding: 24px; width: 100%; }
.camp-status { position: absolute; top: 18px; left: 18px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: 13px; background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.18); }
.camp-status .dot { width: 10px; height: 10px; border-radius: 50%; }
.status-open .dot { background: #46d27a; box-shadow: 0 0 10px #46d27a; }
.status-upcoming .dot { background: #e7c168; box-shadow: 0 0 10px #e7c168; }
.status-past .dot { background: #d2544f; }
.camp-card h3 { font-size: 24px; margin-bottom: 8px; }
.camp-meta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; color: #cdd6e8; font-size: 14px; }
.camp-meta span { display: inline-flex; align-items: center; gap: 7px; }
.camp-meta svg { width: 16px; height: 16px; color: var(--gold); }
.camp-card .btn { margin-top: 16px; }

/* =========================================================================
   Zawodnicy / sportowcy (portrety)
   ========================================================================= */
.athletes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.athlete { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--navy-line); background: var(--navy-card); }
.athlete-photo { position: relative; aspect-ratio: 3/3.4; overflow: hidden; }
.athlete-photo img { width: 100%; height: 100%; object-fit: cover; }
.athlete-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,18,40,.95) 100%); }
.athlete-social { position: absolute; top: 12px; right: 12px; z-index: 2; display: grid; gap: 8px; }
.athlete-social a { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); background: rgba(0,0,0,.4); }
.athlete-social a:hover { background: var(--gold); color: #14213d; }
.athlete-social svg { width: 16px; height: 16px; }
.athlete-body { padding: 16px 18px 20px; }
.athlete-body h3 { font-size: 19px; margin-bottom: 6px; }
.athlete-disc { display: inline-block; padding: 4px 12px; border-radius: 6px; background: var(--gold-grad); color: #1a1206; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .5px; margin: 4px 0 10px; }
.athlete-date { color: var(--muted); font-size: 13px; display: inline-flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.athlete-body .succ-title { font-family: var(--font-head); font-weight: 700; font-size: 13px; margin: 6px 0; }
.athlete-body ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.athlete-body li { font-size: 13px; color: var(--muted); display: flex; gap: 6px; }
.athlete-body li::before { content: "✓"; color: var(--gold); }

/* Sportowcy na stronie głównej – wyśrodkowane, łamane do min. dwóch wierszy */
.athletes--center { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.athletes--center .athlete { width: 318px; max-width: 100%; }
@media (max-width: 1100px) { .athletes--center .athlete { width: 300px; } }
@media (max-width: 680px)  { .athletes--center .athlete { width: 260px; } }
@media (max-width: 540px)  { .athletes--center .athlete { width: 100%; max-width: 360px; } }

/* management */
.mgmt { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mgmt .athlete-photo { aspect-ratio: 3/3.1; }
.mgmt-mail { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 13px; margin-top: 6px; }
.mgmt-mail svg { width: 15px; height: 15px; }

/* partnerzy */
.partners { display: grid; gap: 18px; }
.partner-logo { display: grid; place-items: center; min-height: 120px; border: 1px solid var(--navy-line); border-radius: var(--radius); background: rgba(255,255,255,.02); font-family: var(--font-head); font-weight: 900; font-size: 28px; letter-spacing: 2px; color: #e7ecf6; }

/* =========================================================================
   Split intro (track team "o projekcie", o nas)
   ========================================================================= */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.split .media img { border-radius: var(--radius-lg); border: 1px solid var(--navy-line); }
.values { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.values span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; }
.values svg { width: 16px; height: 16px; color: var(--gold); }

/* feature cards (o nas) */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature .ic { flex: 0 0 auto; width: 50px; height: 50px; color: var(--gold); }
.feature h3 { font-size: 20px; margin-bottom: 6px; }
.feature p { color: var(--muted); margin: 0; font-size: 14.5px; }

/* =========================================================================
   Aktualności / posts
   ========================================================================= */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--navy-line); background: var(--navy-card); transition: transform .2s ease, border-color .2s; }
.theme-warm .post-card { background: rgba(28,20,14,.6); }
.post-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.post-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #0a1228; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-cat { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: rgba(0,0,0,.6); border: 1px solid var(--gold); color: var(--gold-2); font-family: var(--font-head); font-weight: 600; font-size: 12px; }
.post-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.post-date { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.post-body h3 { font-size: 19px; margin-bottom: 10px; }
.post-body h3 a:hover { color: var(--gold-2); }
.post-body p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.post-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.post-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 12px; font-family: var(--font-head); font-weight: 600; }

/* single */
.single-hero { padding: 60px 0 40px; }
.entry-content { max-width: 800px; margin: 0 auto; font-size: 16.5px; color: #d7deec; }
.entry-content p { margin: 0 0 1.2em; }
.entry-content h2, .entry-content h3 { color: var(--white); margin-top: 1.4em; }
.entry-content img { border-radius: var(--radius); margin: 1.4em 0; }
.entry-content a { color: var(--gold-2); text-decoration: underline; }

/* =========================================================================
   Kontakt
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 28px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-box { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border: 1px solid var(--navy-line); border-radius: var(--radius); background: rgba(255,255,255,.02); }
.contact-box .ic { width: 30px; height: 30px; color: var(--gold); flex: 0 0 auto; }
.contact-box .ct-text { font-family: var(--font-head); font-weight: 600; font-size: 20px; }
.contact-box .ct-text small { display:block; font-weight:500; font-size: 14px; color: var(--muted); font-family: var(--font-body); }
.contact-form { padding: 32px; border: 1px solid var(--navy-line); border-radius: var(--radius-lg); background: rgba(255,255,255,.02); }
.contact-form h3 { font-size: 24px; }
.contact-form p.hint { color: var(--muted); font-size: 14px; margin-top: 0; }
.contact-form .field { margin-bottom: 16px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--navy-line); background: rgba(6,12,26,.5); color: var(--ink); font-family: var(--font-body); font-size: 15px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); margin-bottom: 18px; line-height: 1.5; }
.contact-form .consent input { flex: 0 0 auto; width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--gold); }
.contact-form .consent span { flex: 1 1 auto; }
.contact-form .consent a { color: var(--gold-2); text-decoration: underline; }
.contact-form .btn { width: 100%; justify-content: center; }
.form-note { padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 16px; }
.form-note.ok { background: rgba(70,210,122,.12); border: 1px solid rgba(70,210,122,.4); color: #8fe7ad; }
.form-note.err { background: rgba(210,84,79,.12); border: 1px solid rgba(210,84,79,.4); color: #f0a6a3; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { border-top: 1px solid var(--navy-line); padding: 40px 0 30px; margin-top: 30px; }
.footer-contact { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 34px; font-family: var(--font-head); font-weight: 600; font-size: 16px; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: 9px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); }
.footer-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.social { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 22px; }
.social .lbl { color: var(--muted); font-family: var(--font-head); font-weight: 600; }
.social a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); transition: all .2s; }
.social a:hover { background: var(--gold-grad); color: #14213d; transform: translateY(-3px); }
.social svg { width: 20px; height: 20px; }
.footer-credits { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-credits a { color: var(--gold-soft); }

/* =========================================================================
   Pasek statystyk + CTA band (strona główna)
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 26px 18px; border: 1px solid var(--navy-line); border-radius: var(--radius); background: linear-gradient(180deg, rgba(20,37,76,.4), rgba(12,22,46,.4)); }
.stat .num { font-family: var(--font-head); font-weight: 900; font-size: 44px; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .lbl { color: var(--muted); font-size: 14px; margin-top: 8px; }

.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--gold); padding: 56px 32px; text-align: center;
	background: radial-gradient(120% 140% at 50% 0%, rgba(210,162,63,.18), transparent 60%), linear-gradient(180deg, rgba(16,29,58,.85), rgba(10,18,40,.85)); }
.cta-band h2 { font-size: clamp(26px, 3.5vw, 40px); }
.cta-band p { color: var(--muted); max-width: 600px; margin: 0 auto 26px; }
.intro-2col { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }

/* =========================================================================
   Akordeon FAQ (treść zmigrowana z ProcessWire)
   ========================================================================= */
.entry-content .accordion { display: grid; gap: 12px; margin: 1.6em 0; }
.entry-content .accordion__header { margin: 0; }
.entry-content .accordion__button {
	width: 100%; text-align: left; cursor: pointer; display: block;
	background: linear-gradient(180deg, rgba(20,37,76,.5), rgba(12,22,46,.5));
	border: 1px solid var(--navy-line); border-radius: 12px;
	padding: 16px 54px 16px 20px; position: relative;
	font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--ink); line-height: 1.4;
	transition: border-color .2s, color .2s;
}
.theme-warm .entry-content .accordion__button { background: linear-gradient(180deg, rgba(40,28,18,.5), rgba(22,16,12,.55)); }
.entry-content .accordion__button:hover { border-color: var(--gold); color: var(--gold-2); }
.entry-content .accordion__button::after {
	content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px;
	transform: translateY(-50%); transition: transform .25s ease;
	background: no-repeat center/contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d2a23f' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.entry-content .accordion__button.is-open::after { transform: translateY(-50%) rotate(180deg); }
.entry-content .accordion__panel { padding: 4px 20px 16px; color: var(--muted); font-size: 15px; }
.entry-content .accordion__panel p:last-child { margin-bottom: 0; }
/* progresywne ulepszenie: gdy JS aktywny – zwijamy panele */
.entry-content .accordion.accordion--js .accordion__panel { display: none; }
.entry-content .accordion.accordion--js .accordion__panel.is-open { display: block; }
.entry-content h2.align_center, .entry-content .align_center { text-align: center; }
.entry-content .button { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px; background: var(--gold-grad); color: #1a1206 !important; font-family: var(--font-head); font-weight: 700; text-decoration: none !important; margin: 6px 0; }
.entry-content .button:hover { transform: translateY(-2px); }
.entry-content table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 14.5px; }
.entry-content th, .entry-content td { border: 1px solid var(--navy-line); padding: 10px 14px; text-align: left; }
.entry-content th { background: rgba(210,162,63,.12); color: var(--gold-2); font-family: var(--font-head); }

/* =========================================================================
   Responsywność
   ========================================================================= */
@media (max-width: 980px) {
	.grid-3, .grid-4, .grid-6, .bigtiles, .packages, .athletes, .mgmt, .posts-grid, .features, .stats { grid-template-columns: repeat(2, 1fr); }
	.split, .contact-grid, .intro-2col { grid-template-columns: 1fr; }
	.section { padding: 56px 0; }
	.stat .num { font-size: 36px; }
}
@media (max-width: 760px) {
	html, body { overflow-x: hidden; }
	.wrap { padding-left: 26px; padding-right: 26px; }
	.hero h1 { font-size: clamp(27px, 7.2vw, 76px) !important; overflow-wrap: anywhere; }
	/* Nagłówek mobilny: hamburger | logo | język — jeden rząd, równa wysokość */
	.nav-toggle { display: inline-flex; }
	.brand-bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 0 12px; }
	.brand-logo { flex: 1 1 auto; justify-content: center; min-width: 0; }
	.brand-logo img { max-height: 42px; }
	.lang-switch { position: static !important; right: auto !important; top: auto !important; transform: none !important; flex: 0 0 auto; }
	.lang-pill, .lang-switch a { padding: 7px 11px; font-size: 13px; gap: 6px; }
	.lang-switch .flag { width: 18px; height: 12px; }
	.nav-bar { min-height: 0; border-bottom: none; }
	.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-800); border-bottom: 1px solid var(--navy-line); padding: 10px; }
	.main-nav.open { display: block; }
	.main-nav ul { flex-direction: column; align-items: stretch; }
	.main-nav .sub-menu { position: static; display: block; box-shadow: none; border: none; background: transparent; padding-left: 14px; }
	.grid-3, .grid-4, .grid-6, .bigtiles, .packages, .athletes, .mgmt, .posts-grid, .features, .camps, .grid-2 { grid-template-columns: 1fr; }
	.subnav { width: 100%; justify-content: center; }
	.subnav .sep { display: none; }
	.footer-contact { font-size: 14px; }
}
