2026-08-03 16:23:25 +02:00
<!doctype html>
< html lang = "pl" >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< title > Ischgl / Silvretta Arena + dolina Paznaun — Ski 2027 — Skicircus Saalbach< / title >
< style >
:root { color-scheme: light dark; --fg:#0f172a; --muted:#64748b; --bg:#ffffff;
--line:#e2e8f0; --accent:#0d9488; --chip:#f1f5f9; --quote:#f8fafc; }
@media (prefers-color-scheme: dark) {
:root { --fg:#e2e8f0; --muted:#94a3b8; --bg:#0f172a; --line:#334155;
--accent:#2dd4bf; --chip:#1e293b; --quote:#1e293b; }
}
* { box-sizing: border-box; }
body { margin: 0 auto; padding: 1.25rem 1rem 4rem; max-width: 46rem;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
font-size: 17px; line-height: 1.55; color: var(--fg); background: var(--bg);
-webkit-text-size-adjust: 100%; }
nav { font-size: .85rem; margin-bottom: 1.25rem; }
nav a { color: var(--muted); }
h1 { font-size: 1.55rem; line-height: 1.25; margin: 0 0 .35rem; }
h2 { font-size: 1.2rem; margin: 2rem 0 .5rem; padding-top: .5rem;
border-top: 1px solid var(--line); }
h3 { font-size: 1.02rem; margin: 1.4rem 0 .4rem; }
p, ul, ol { margin: .6rem 0; }
ul, ol { padding-left: 1.3rem; }
li { margin: .25rem 0; }
li.task { list-style: none; margin-left: -1.3rem; }
li.task input { margin-right: .45rem; }
a { color: var(--accent); }
a.ext::after { content: " ↗"; font-size: .8em; color: var(--muted); }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em;
background: var(--chip); padding: .1em .35em; border-radius: 4px; }
pre { background: var(--chip); padding: .75rem; border-radius: 6px; overflow-x: auto; }
pre code { background: none; padding: 0; }
blockquote { margin: .9rem 0; padding: .6rem .9rem; background: var(--quote);
border-left: 3px solid var(--accent); border-radius: 0 6px 6px 0; }
blockquote p { margin: .2rem 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 1.5rem 0; }
.table-wrap { overflow-x: auto; margin: .8rem 0; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; font-size: .92rem; }
th, td { border: 1px solid var(--line); padding: .4rem .55rem; vertical-align: top; }
th { background: var(--chip); font-weight: 600; }
.chip { display: inline-block; background: var(--chip); color: var(--muted);
font-size: .72rem; text-transform: uppercase; letter-spacing: .04em;
padding: .15rem .5rem; border-radius: 999px; }
.lead { color: var(--muted); margin: .35rem 0 1.25rem; }
.meta { margin: 0 0 1.5rem; }
.meta summary { cursor: pointer; font-size: .85rem; color: var(--muted);
padding: .3rem 0; }
.meta table { font-size: .85rem; }
.meta th { width: 38%; text-align: left; font-weight: 500; word-break: break-word; }
.cards { list-style: none; padding: 0; margin: 0; }
.cards li { border: 1px solid var(--line); border-radius: 8px; padding: .8rem .9rem;
margin: .6rem 0; }
.cards a { font-weight: 600; text-decoration: none; }
.cards p { margin: .3rem 0 0; font-size: .9rem; color: var(--muted); }
footer { margin-top: 3rem; padding-top: 1rem; border-top: 1px solid var(--line);
font-size: .78rem; color: var(--muted); }
Przeprojektowanie pod decyzję: start.html, porownanie.html, galerie
Wejściem jest teraz landing pages/start.html (trzy kafle: porównanie ofert,
analiza wariantów, graf + kafle czterech regionów ze zdjęciem najlepszej
oferty w tle), a graf schodzi do roli załącznika. start.html linkuje
root-absolutnie, bo ten sam plik jest serwowany jako /index.html i jako
/pages/start.html.
pages/porownanie.html: jedna tabela wszystkich 12 ofert prosto z
frontmatterów (miniatura, priorytet, region, ceny, status, odległość, www),
sortowanie klikiem w nagłówek (czysty JS, bez zależności), wiersze barwione
statusem ceny. Nad tabelą podsumowanie per region — budżet całkowity i jeden
wniosek parsowane z tabeli i „Wniosków przekrojowych” w wyjazd.md, bez
zaszywania nazw regionów w kodzie.
Karty ofert dostały galerię (duże zdjęcie + miniatury, lazy loading),
a nawigacja na każdej stronie prowadzi do startu i porównania.
Komenda deployu (kopiuje start.html jako /content/index.html) jest
wypisywana przez gen_pages.py. Pliki .md bez zmian, check_okf zielony.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-03 17:24:25 +02:00
/* landing: kafle i lista regionów */
body.wide { max-width: 72rem; }
.tiles, .regions { list-style: none; padding: 0; }
.tiles { margin: 1.25rem 0 2rem; display: grid; gap: .75rem; }
.regions { margin: .6rem 0 0; display: grid; gap: .5rem; }
@media (min-width: 34rem) {
2026-08-03 17:37:14 +02:00
.tiles { grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
Przeprojektowanie pod decyzję: start.html, porownanie.html, galerie
Wejściem jest teraz landing pages/start.html (trzy kafle: porównanie ofert,
analiza wariantów, graf + kafle czterech regionów ze zdjęciem najlepszej
oferty w tle), a graf schodzi do roli załącznika. start.html linkuje
root-absolutnie, bo ten sam plik jest serwowany jako /index.html i jako
/pages/start.html.
pages/porownanie.html: jedna tabela wszystkich 12 ofert prosto z
frontmatterów (miniatura, priorytet, region, ceny, status, odległość, www),
sortowanie klikiem w nagłówek (czysty JS, bez zależności), wiersze barwione
statusem ceny. Nad tabelą podsumowanie per region — budżet całkowity i jeden
wniosek parsowane z tabeli i „Wniosków przekrojowych” w wyjazd.md, bez
zaszywania nazw regionów w kodzie.
Karty ofert dostały galerię (duże zdjęcie + miniatury, lazy loading),
a nawigacja na każdej stronie prowadzi do startu i porównania.
Komenda deployu (kopiuje start.html jako /content/index.html) jest
wypisywana przez gen_pages.py. Pliki .md bez zmian, check_okf zielony.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-03 17:24:25 +02:00
.regions { grid-template-columns: repeat(2, 1fr); }
}
.tiles a, .regions a { display: block; border: 1px solid var(--line); border-radius: 10px;
padding: .9rem 1rem; text-decoration: none; color: var(--fg); }
.tiles a { font-size: 1.05rem; font-weight: 600; }
.tiles a:hover, .tiles a:focus, .regions a:hover, .regions a:focus {
border-color: var(--accent); }
.tiles small, .regions small { display: block; margin-top: .3rem; font-weight: 400;
font-size: .85rem; color: var(--muted); }
.regions a { font-weight: 600; }
/* podsumowanie per region na karcie porównania */
.summary { list-style: none; padding: 0; margin: .8rem 0 2rem; display: grid; gap: .6rem; }
@media (min-width: 48rem) { .summary { grid-template-columns: repeat(2, 1fr); } }
.summary li { border: 1px solid var(--line); border-left: 3px solid var(--accent);
border-radius: 8px; padding: .65rem .85rem; }
.summary .budget { font-size: .95rem; }
.summary p { margin: .35rem 0 0; font-size: .88rem; color: var(--muted); }
/* tabela porównawcza: sortowanie klikiem + kolor statusu ceny */
table.sortable th { cursor: pointer; user-select: none; white-space: nowrap; }
table.sortable th::after { content: " ↕"; font-size: .8em; opacity: .35; }
table.sortable th[data-dir="asc"]::after { content: " ↑"; opacity: 1; }
table.sortable th[data-dir="desc"]::after { content: " ↓"; opacity: 1; }
table.sortable td { font-size: .88rem; padding: .35rem .5rem; }
table.sortable td[data-num] { white-space: nowrap; }
table.sortable .name { font-weight: 600; }
tr.verified td { background: rgba(13, 148, 136, .14); }
tr.estimate td { background: rgba(100, 116, 139, .10); color: var(--muted); }
tr.estimate td.name a, tr.verified td.name a { color: var(--accent); }
.legend { font-size: .82rem; color: var(--muted); margin: .5rem 0 0; }
.legend .box { display: inline-block; width: .8em; height: .8em; border-radius: 3px;
border: 1px solid var(--line); vertical-align: -.05em; margin-right: .25em; }
.legend .box.v { background: rgba(13, 148, 136, .35); }
.legend .box.e { background: rgba(100, 116, 139, .25); }
/* miniatury w tabeli */
td.thumb { padding: .25rem; width: 128px; }
td.thumb img { width: 120px; height: 80px; object-fit: cover; border-radius: 6px;
display: block; }
td.thumb .placeholder { display: flex; width: 120px; height: 80px; border-radius: 6px;
align-items: center; justify-content: center; background: var(--chip);
color: var(--muted); font-weight: 700; letter-spacing: .05em;
text-decoration: none; }
/* galeria na karcie oferty */
.gallery { margin: 0 0 1.25rem; }
.gallery-main img { width: 100%; max-height: 24rem; object-fit: cover;
border-radius: 10px; display: block; background: var(--chip); }
.gallery-thumbs { display: flex; gap: .4rem; margin-top: .4rem; overflow-x: auto;
-webkit-overflow-scrolling: touch; padding-bottom: .2rem; }
.gallery-thumbs button { flex: 0 0 auto; padding: 0; border: 2px solid transparent;
border-radius: 6px; background: none; cursor: pointer; }
.gallery-thumbs button[aria-current] { border-color: var(--accent); }
.gallery-thumbs img { width: 5.5rem; height: 3.6rem; object-fit: cover;
border-radius: 4px; display: block; }
2026-08-03 17:37:14 +02:00
/* spis linków do kopiowania */
.copybar { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
margin: 1rem 0 1.5rem; }
.copybar button { font: inherit; font-size: .9rem; padding: .45rem .9rem;
border: 1px solid var(--accent); border-radius: 8px;
background: var(--accent); color: #f8fafc; cursor: pointer; }
.copybar button + button { background: none; color: var(--accent); }
.copybar button:hover { filter: brightness(1.08); }
.copy-status { font-size: .85rem; color: var(--muted); }
.links { list-style: none; padding: 0; margin: .5rem 0 0; }
.links li { padding: .55rem 0; border-bottom: 1px solid var(--line); }
.links li:last-child { border-bottom: 0; }
.links a { font-weight: 600; text-decoration: none; }
.links code.url { display: block; margin: .2rem 0; font-size: .82rem;
background: none; padding: 0; color: var(--muted);
word-break: break-all; user-select: all; }
.links p { margin: 0; font-size: .85rem; color: var(--muted); }
Przeprojektowanie pod decyzję: start.html, porownanie.html, galerie
Wejściem jest teraz landing pages/start.html (trzy kafle: porównanie ofert,
analiza wariantów, graf + kafle czterech regionów ze zdjęciem najlepszej
oferty w tle), a graf schodzi do roli załącznika. start.html linkuje
root-absolutnie, bo ten sam plik jest serwowany jako /index.html i jako
/pages/start.html.
pages/porownanie.html: jedna tabela wszystkich 12 ofert prosto z
frontmatterów (miniatura, priorytet, region, ceny, status, odległość, www),
sortowanie klikiem w nagłówek (czysty JS, bez zależności), wiersze barwione
statusem ceny. Nad tabelą podsumowanie per region — budżet całkowity i jeden
wniosek parsowane z tabeli i „Wniosków przekrojowych” w wyjazd.md, bez
zaszywania nazw regionów w kodzie.
Karty ofert dostały galerię (duże zdjęcie + miniatury, lazy loading),
a nawigacja na każdej stronie prowadzi do startu i porównania.
Komenda deployu (kopiuje start.html jako /content/index.html) jest
wypisywana przez gen_pages.py. Pliki .md bez zmian, check_okf zielony.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-03 17:24:25 +02:00
/* kafel regionu ze zdjęciem w tle */
.regions a.hero { background-size: cover; background-position: center;
border-color: transparent; color: #f8fafc; min-height: 6.5rem;
display: flex; flex-direction: column; justify-content: flex-end; }
.regions a.hero small { color: #e2e8f0; }
2026-08-03 16:23:25 +02:00
< / style >
< / head >
< body >
2026-08-03 17:37:14 +02:00
< nav > < a href = "../start.html" > ← Start< / a > · < a href = "../index.html" > Wszystkie karty< / a > · < a href = "../porownanie.html" > Porównanie ofert< / a > · < a href = "../linki.html" > Linki< / a > · < a href = "../../viz.html" > Graf< / a > < / nav >
2026-08-03 16:23:25 +02:00
< span class = "chip" > region< / span >
< h1 > Ischgl / Paznaun — informacje o regionie< / h1 >
< p class = "lead" > Wariant alternatywny: 239 km Silvretta Areny z jazdą do bezcłowego Samnaun, nocleg w tańszym Kappl — skipass zweryfikowany na 26/27, bez zniżki dla 17-latków.< / p >
Przeprojektowanie pod decyzję: start.html, porownanie.html, galerie
Wejściem jest teraz landing pages/start.html (trzy kafle: porównanie ofert,
analiza wariantów, graf + kafle czterech regionów ze zdjęciem najlepszej
oferty w tle), a graf schodzi do roli załącznika. start.html linkuje
root-absolutnie, bo ten sam plik jest serwowany jako /index.html i jako
/pages/start.html.
pages/porownanie.html: jedna tabela wszystkich 12 ofert prosto z
frontmatterów (miniatura, priorytet, region, ceny, status, odległość, www),
sortowanie klikiem w nagłówek (czysty JS, bez zależności), wiersze barwione
statusem ceny. Nad tabelą podsumowanie per region — budżet całkowity i jeden
wniosek parsowane z tabeli i „Wniosków przekrojowych” w wyjazd.md, bez
zaszywania nazw regionów w kodzie.
Karty ofert dostały galerię (duże zdjęcie + miniatury, lazy loading),
a nawigacja na każdej stronie prowadzi do startu i porównania.
Komenda deployu (kopiuje start.html jako /content/index.html) jest
wypisywana przez gen_pages.py. Pliki .md bez zmian, check_okf zielony.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-03 17:24:25 +02:00
2026-08-03 16:23:25 +02:00
< details class = "meta" open > < summary > Metadane (frontmatter)< / summary > < div class = "table-wrap" > < table > < tbody > < tr > < th > type< / th > < td > region< / td > < / tr > < tr > < th > title< / th > < td > Ischgl / Silvretta Arena + dolina Paznaun< / td > < / tr > < tr > < th > description< / th > < td > Wariant alternatywny: 239 km Silvretta Areny z jazdą do bezcłowego Samnaun, nocleg w tańszym Kappl — skipass zweryfikowany na 26/27, bez zniżki dla 17-latków.< / td > < / tr > < tr > < th > timestamp< / th > < td > 2026-08-01T00:00:00Z< / td > < / tr > < tr > < th > tags< / th > < td > region, ischgl, wariant, skipass, logistyka< / td > < / tr > < tr > < th > id< / th > < td > ischgl-paznaun< / td > < / tr > < tr > < th > nazwa< / th > < td > Ischgl / Silvretta Arena + dolina Paznaun< / td > < / tr > < tr > < th > kraj< / th > < td > Austria< / td > < / tr > < tr > < th > region< / th > < td > Tyrol< / td > < / tr > < tr > < th > sezon< / th > < td > 2026/2027< / td > < / tr > < tr > < th > grupa< / th > < td > 4 rodziny (2× 2+2, 2× 2+1) = 14 osób< / td > < / tr > < tr > < th > wyjazd_z< / th > < td > Warszawa< / td > < / tr > < tr > < th > rekomendowany_termin< / th > < td > 16– 23.01.2027 (alt. 9– 16.01)< / td > < / tr > < tr > < th > strategia_budzetowa< / th > < td > mieszkać w Kappl, nie w Ischgl< / td > < / tr > < tr > < th > ostatnia_aktualizacja< / th > < td > 2026-08-01< / td > < / tr > < / tbody > < / table > < / div > < / details >
< p > Wariant "Ischgl, ale w budżecie": jeździmy w Silvretta Arenie, mieszkamy w < strong > Kappl< / strong > (10 min od Ischgl, skibus gratis). Nocleg w samym Ischgl odrzucony cenowo już na etapie pierwszego porównania.< / p >
< h2 > Teren< / h2 >
Ischgl: rozstrzygnięcie VIP vs Silvretta — obowiązuje Silvretta
Tańsze stawki 385/231 € to VIP Skipass: tylko dla nocujących
w Ischgl/Mathon, 46 urządzeń, NIE działa na wyciągach Kappl. Nasz
PLAN A to nocleg w Kappl, więc obowiązuje Silvretta Skipass
(451/257 €, 75 urządzeń z Kappl i See) — ceny w tabelach zostają bez
zmian, zmienia się ich uzasadnienie.
Przy okazji dwa błędy w karcie, które rozstrzygnięcie odsłoniło:
tabela 451/257 € była podpisana "VIP Skipass" (to Silvretta), a sekcja
"Teren" przypisywała VIP-owi zasięg całego Paznaun łącznie z Kappl —
czyli dokładnie to, czego VIP nie obejmuje.
Pułapka wiekowa 8–<17 potwierdzona i zostaje w wyjazd.md; dopisany
plus po stronie Silvretty: dzieci <8 lat gratis (przy dwójce takich
dzieci grupa schodzi z ~5 150 € do ~4 640 €). Nowy wiersz "Dzieci
gratis" w tabeli porównawczej — b.d. tam, gdzie bundle nie ma danych,
zamiast domyślnego "brak".
Źródło: ischgl.com, cennik 26/27 (26.11.2026–02.05.2027), sprawdzone
03.08.2026.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-03 16:53:53 +02:00
< ul > < li > < strong > Silvretta Arena Ischgl– Samnaun: 239 km tras< / strong > , jazda do Szwajcarii (bezcłowy Samnaun — tanie zakupy), wysoko położona (1 400– 2 872 m), pewny śnieg.< / li > < li > < strong > Kappl: 40 km< / strong > rodzinnych tras pod domem + oświetlony tor saneczkowy 6 km (hit dla nastolatków wieczorem).< / li > < li > < strong > Silvretta Skipass< / strong > obejmuje cały Paznaun (Ischgl, Kappl, See, Galtür) — darmowy skibus łączy wszystkie miejscowości. To karnet obowiązujący dla naszego planu; tańszy VIP Skipass < strong > nie działa na wyciągach Kappl< / strong > i wymaga noclegu w Ischgl/Mathon (patrz niżej).< / li > < / ul >
< h2 > Skipass — Silvretta Skipass (obowiązujący dla naszego planu)< / h2 >
< p > Cennik OFICJALNY 2026/27, zweryfikowany. < strong > To jest karnet, który nas dotyczy< / strong > : przy noclegu w Kappl (PLAN A) tańszy VIP Skipass jest niedostępny — porównanie obu taryf niżej.< / p >
< div class = "table-wrap" > < table > < thead > < tr > < th style = "text-align:left" > Taryfa 6 dni< / th > < th style = "text-align:left" > Cena 26/27< / th > < / tr > < / thead > < tbody > < tr > < td style = "text-align:left" > Dorosły< / td > < td style = "text-align:left" > < strong > 451 €< / strong > < / td > < / tr > < tr > < td style = "text-align:left" > Dziecko/młodzież 8 – < 17 lat< / td > < td style = "text-align:left" > < strong > 257 €< / strong > < / td > < / tr > < tr > < td style = "text-align:left" > ⚠️ 17-latek< / td > < td style = "text-align:left" > płaci jak dorosły (451 €)< / td > < / tr > < tr > < td style = "text-align:left" > Dzieci < 8 lat< / td > < td style = "text-align:left" > < strong > gratis< / strong > < / td > < / tr > < / tbody > < / table > < / div >
2026-08-03 16:23:25 +02:00
< div class = "table-wrap" > < table > < thead > < tr > < th style = "text-align:left" > Rodzina< / th > < th style = "text-align:left" > Skład< / th > < th style = "text-align:left" > Skipassy 6 dni< / th > < / tr > < / thead > < tbody > < tr > < td style = "text-align:left" > 2+2 (nastolatki < 17)< / td > < td style = "text-align:left" > 2 dorosłych + 2 młodzież< / td > < td style = "text-align:left" > < strong > 1 416 €< / strong > < / td > < / tr > < tr > < td style = "text-align:left" > 2+1< / td > < td style = "text-align:left" > 2 dorosłych + 1 dziecko< / td > < td style = "text-align:left" > < strong > 1 159 €< / strong > < / td > < / tr > < tr > < td style = "text-align:left" > < strong > Grupa 14 os. razem< / strong > < / td > < td style = "text-align:left" > < / td > < td style = "text-align:left" > < strong > ~5 150 €< / strong > < / td > < / tr > < / tbody > < / table > < / div >
< blockquote > < p > ⚠️ Kluczowe ryzyko taryfowe: jeśli któryś nastolatek ma ur. przed wyjazdem i kończy 17 lat → +194 € na rodzinę. Sprawdzić roczniki!< / p > < / blockquote >
Ischgl: rozstrzygnięcie VIP vs Silvretta — obowiązuje Silvretta
Tańsze stawki 385/231 € to VIP Skipass: tylko dla nocujących
w Ischgl/Mathon, 46 urządzeń, NIE działa na wyciągach Kappl. Nasz
PLAN A to nocleg w Kappl, więc obowiązuje Silvretta Skipass
(451/257 €, 75 urządzeń z Kappl i See) — ceny w tabelach zostają bez
zmian, zmienia się ich uzasadnienie.
Przy okazji dwa błędy w karcie, które rozstrzygnięcie odsłoniło:
tabela 451/257 € była podpisana "VIP Skipass" (to Silvretta), a sekcja
"Teren" przypisywała VIP-owi zasięg całego Paznaun łącznie z Kappl —
czyli dokładnie to, czego VIP nie obejmuje.
Pułapka wiekowa 8–<17 potwierdzona i zostaje w wyjazd.md; dopisany
plus po stronie Silvretty: dzieci <8 lat gratis (przy dwójce takich
dzieci grupa schodzi z ~5 150 € do ~4 640 €). Nowy wiersz "Dzieci
gratis" w tabeli porównawczej — b.d. tam, gdzie bundle nie ma danych,
zamiast domyślnego "brak".
Źródło: ischgl.com, cennik 26/27 (26.11.2026–02.05.2027), sprawdzone
03.08.2026.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-03 16:53:53 +02:00
< h3 > VIP vs Silvretta — dlaczego płacimy drożej< / h3 >
< p > Tańsze stawki krążące po grupie (385 / 231 €) są prawdziwe, ale dotyczą < strong > innego produktu< / strong > , niedostępnego przy noclegu w Kappl. Zestawienie obu taryf (< a href = "https://www.ischgl.com/en/winter/operating-times-prices/skipass-prices-vip" target = "_blank" rel = "noopener" class = "ext" > ischgl.com — VIP skipass prices< / a > , cennik 26/27 dla okresu 26.11.2026– 02.05.2027, sprawdzone 03.08.2026):< / p >
< div class = "table-wrap" > < table > < thead > < tr > < th style = "text-align:left" > < / th > < th style = "text-align:left" > VIP Skipass< / th > < th style = "text-align:left" > < strong > Silvretta Skipass< / strong > (nasz)< / th > < / tr > < / thead > < tbody > < tr > < td style = "text-align:left" > Dorosły 6 dni< / td > < td style = "text-align:left" > 385 €< / td > < td style = "text-align:left" > < strong > 451 €< / strong > < / td > < / tr > < tr > < td style = "text-align:left" > Młodzież 6 dni< / td > < td style = "text-align:left" > 231 € (10 – < 17 lat)< / td > < td style = "text-align:left" > < strong > 257 € (8 – < 17 lat)< / strong > < / td > < / tr > < tr > < td style = "text-align:left" > Dzieci gratis< / td > < td style = "text-align:left" > < 10 lat< / td > < td style = "text-align:left" > < strong > < 8 lat< / strong > < / td > < / tr > < tr > < td style = "text-align:left" > Kto może kupić< / td > < td style = "text-align:left" > < strong > tylko goście nocujący w Ischgl/Mathon< / strong > (wymagana karta gościa)< / td > < td style = "text-align:left" > goście spoza Ischgl/Mathon — < strong > w tym Kappl< / strong > < / td > < / tr > < tr > < td style = "text-align:left" > Zasięg< / td > < td style = "text-align:left" > 46 urządzeń: Ischgl + Samnaun< / td > < td style = "text-align:left" > < strong > 75 urządzeń: Ischgl + Samnaun + Galtür + Kappl + See< / strong > < / td > < / tr > < tr > < td style = "text-align:left" > Wyciągi w Kappl< / td > < td style = "text-align:left" > < strong > ❌ nie działa< / strong > < / td > < td style = "text-align:left" > ✅ w cenie< / td > < / tr > < / tbody > < / table > < / div >
< p > Konsekwencja dla nas: < strong > PLAN A to nocleg w Kappl< / strong > , więc VIP odpada podwójnie — nie mamy karty gościa Ischgl/Mathon, a karnet i tak nie otwierałby wyciągów pod naszym domem (te 40 km rodzinnych tras to jeden z argumentów za Kappl). Obowiązuje Silvretta i to jego stawki są w tabelach wyżej oraz w porównaniu wariantów w < a href = "../wyjazd.html" > wyjeździe< / a > .< / p >
< p > Dwa wnioski praktyczne:< / p >
< ol > < li > < strong > Pułapka wiekowa zostaje< / strong > , i to w ostrzejszej wersji: Silvretta tnie zniżkę już przy 8 latach wzwyż w taryfie młodzieżowej i przy< / li > < li > roku życia — 17-latek płaci pełne 451 €. Roczniki sprawdzić przed zakupem.< / li > < li > < strong > Nowy plus: dzieci < 8 lat jeżdżą gratis.< / strong > Jeśli któreś z młodszych dzieci grupy nie skończyło 8 lat, znika cała pozycja 257 € — przy dwójce takich dzieci grupa schodzi z ~5 150 € do ~4 640 €. (Próg VIP-u byłby korzystniejszy — < 10 lat — ale VIP-u i tak nie kupimy z Kappl.)< / li > < / ol >
2026-08-03 16:23:25 +02:00
< h2 > Dojazd z Warszawy< / h2 >
< ul > < li > ~1 150 km: Katowice → Ostrawa → Brno → Wiedeń/Linz → Innsbruck → Landeck → dolina Paznaun (zjazd Pians). 11– 12 h.< / li > < li > Opłaty: winiety CZ + AT, bez odcinków specjalnych. Dojazd ~350 €/auto w obie strony.< / li > < / ul >
< h2 > Terminy< / h2 >
< p > 16– 23.01 i 9– 16.01 — oba poza szczytem, w Ischgl styczeń po 6.01 to najluźniejszy okres; ceny noclegów w Kappl wtedy najniższe w sezonie.< / p >
< h2 > Koszty życia< / h2 >
< p > Ischgl = najdroższa gastronomia z 4 porównywanych regionów (obiad na stoku 18– 25 €/os.). Ratunek: gotowanie w Kappl (Spar w wiosce) + 1 dzień zakupów w bezcłowym Samnaun (nartami!). Taksa ~3 €/os./noc.< / p >
< h2 > Budżet grupy (14 os., tydzień)< / h2 >
< div class = "table-wrap" > < table > < thead > < tr > < th style = "text-align:left" > Pozycja< / th > < th style = "text-align:left" > Kwota< / th > < / tr > < / thead > < tbody > < tr > < td style = "text-align:left" > Noclegi (Kappl, 4 apartamenty)< / td > < td style = "text-align:left" > 4 000– 5 600 €< / td > < / tr > < tr > < td style = "text-align:left" > Skipassy< / td > < td style = "text-align:left" > ~5 150 €< / td > < / tr > < tr > < td style = "text-align:left" > Dojazd (4 auta)< / td > < td style = "text-align:left" > ~1 400 €< / td > < / tr > < tr > < td style = "text-align:left" > Jedzenie + taksy< / td > < td style = "text-align:left" > 3 000– 3 800 €< / td > < / tr > < tr > < td style = "text-align:left" > < strong > RAZEM< / strong > < / td > < td style = "text-align:left" > < strong > ~13 500– 16 000 €< / strong > < / td > < / tr > < / tbody > < / table > < / div >
< h2 > Ocena względem Saalbach (bazowego planu)< / h2 >
< p > < strong > +< / strong > najwyżej położony i najbardziej "wow" teren; Samnaun; tor saneczkowy. < strong > − < / strong > skipass najdroższy (brak zniżki 17+); mieszkanie poza główną areną (codziennie 10 min skibusem do Ischgl); gastronomia najdroższa.< / p >
< footer > Wygenerowane z bundle'a OKF przez < code > gen_pages.py< / code > — nie edytuj
tych plików, edytuj < code > .md< / code > i przegeneruj.< / footer >
< / body >
< / html >