/* === ACCESSIBILITY === */

/* Skip-to-content link (visible only on keyboard focus) */
.skip-link {
 position: absolute;
 top: -100px;
 left: 16px;
 z-index: 1000;
 background: var(--ink);
 color: var(--paper);
 padding: 12px 20px;
 font-family: 'Epilogue', sans-serif;
 font-size: 12px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 font-weight: 500;
 text-decoration: none;
 border-radius: 0;
 transition: top 0.2s;
}
.skip-link:focus,
.skip-link:focus-visible {
 top: 16px;
 outline: 3px solid var(--gold);
 outline-offset: 2px;
}

/* Globalne focus-visible (klawiatura) - tylko gdy uzytkownik nawigauje tabem */
*:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
 outline: 3px solid var(--moss-deep);
 outline-offset: 3px;
 border-radius: 2px;
}
.hd-phone:focus-visible {
 outline-offset: 4px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
 outline-offset: 0;
 outline-color: var(--rust);
}

/* aria-current="page" - aktualna pozycja w nawigacji */
.hd-menu a[aria-current="page"] {
 color: var(--rust) !important;
 font-weight: 600;
}
.fe-col a[aria-current="page"] {
 color: var(--rust) !important;
 font-weight: 600;
}

:root {
 /* Paleta klienta: Sage Green / Dusty Rose / Golden Tan / Warm Beige / Terracotta Brown */
 --sage: #98A086;
 --dust: #A76D5E;
 --tan: #C4A071;
 --beige: #DFCCB1;
 --terra: #846044;

 /* Pochodne dla czytelnosci */
 --paper: #F2E9D6; /* jasniejsze tlo (Warm Beige rozjasniony) */
 --paper-2: #E8DBC0; /* alternatywne sekcje */
 --paper-deep: #DFCCB1; /* Warm Beige bez zmian */
 --ink: #3D2D1E; /* glowny tekst - ciemny brąz */
 --ink-soft: #6B5040;
 --ink-mute: #6E5A46;
 --line: #C9B79A;
 --line-soft: rgba(61,45,30,0.08);

 /* Akcenty - bezposrednio z palety */
 --moss: var(--sage);
 --moss-deep: #6F7A5C; /* ciemniejsza sage do tytulow */
 --rust: var(--dust);
 --gold: var(--tan);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--moss-deep); color: var(--paper); }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

body {
 padding-top: var(--header-h);
 background: var(--paper);
 color: var(--ink);
 font-family: 'Fraunces', Georgia, serif;
 font-weight: 400;
 font-size: 17px;
 line-height: 1.55;
 font-variation-settings: "opsz" 14, "SOFT" 50;
 -webkit-font-smoothing: antialiased;
 text-rendering: optimizeLegibility;
}
strong {
 font-weight: 600;
 color: var(--ink);
 background: linear-gradient(transparent 65%, rgba(152,160,134,0.32) 65%);
 padding: 0 1px;
}
/* Strong na ciemnym tle (kolofon) - jasny tekst + ciemniejszy highlight */
.colophon strong,.copy-line strong {
 color: var(--paper);
 background: linear-gradient(transparent 65%, rgba(196,160,113,0.35) 65%);
}

/* Lucide icons - global defaults */
[data-lucide] {
 width: 18px; height: 18px;
 stroke-width: 1.6;
 flex-shrink: 0;
 vertical-align: middle;
}

/* === DESIGN PRIMITIVES === */
.eyebrow {
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 font-weight: 500;
 letter-spacing: 0.32em;
 text-transform: uppercase;
 color: var(--ink-soft);
}
.eyebrow.accent { color: var(--moss-deep); }
.hand {
 font-family: 'Caveat', cursive;
 font-weight: 500;
 color: var(--rust);
}
.display {
 font-family: 'Fraunces', serif;
 font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
 letter-spacing: -0.04em;
 line-height: 0.9;
}
.tabular { font-variant-numeric: tabular-nums; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 40px; }

/* === HEADER - zawsze jasny (logo klienta w czarnej wersji) === */
:root { --header-h: 78px; }
.site-header {
 position: fixed; top: 0; left: 0; right: 0; z-index: 100;
 padding: 12px 40px;
 display: grid;
 grid-template-columns: 1fr auto 1fr;
 align-items: center;
 gap: 32px;
 background: rgba(242, 233, 214, 0.96);
 backdrop-filter: blur(16px);
 -webkit-backdrop-filter: blur(16px);
 box-shadow: 0 4px 24px rgba(61, 45, 30, 0.08);
 color: var(--ink);
}
.hd-nav ul {
 display: flex; gap: 32px; list-style: none;
}
.hd-nav a {
 font-family: 'Epilogue', sans-serif;
 font-size: 12px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 color: var(--ink);
 text-decoration: none;
 font-weight: 500;
 transition: color 0.2s;
}
.hd-nav a:hover { opacity: 0.7; }
.hd-brand {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-weight: 500;
 font-size: 26px;
 letter-spacing: -0.01em;
 color: var(--ink);
 text-decoration: none;
 justify-self: center;
 font-variation-settings: "opsz" 32, "WONK" 1;
 line-height: 1;
}
.hd-brand .dot { font-style: normal; color: var(--rust); }
.hd-brand img {
 display: block;
 height: 54px;
 width: auto;
}
.hd-actions {
 justify-self: end;
 display: flex; align-items: center; gap: 20px;
}
.hd-loc {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.32em;
 text-transform: uppercase;
 font-weight: 500;
 color: var(--ink-mute);
}

.hd-phone {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 padding: 11px 20px;
 background: var(--ink);
 color: var(--paper);
 text-decoration: none;
 font-family: 'Fraunces', serif;
 font-size: 16px;
 font-weight: 500;
 font-variant-numeric: tabular-nums;
 letter-spacing: 0;
 border-radius: 100px;
 border: 1px solid transparent;
 transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
 box-shadow: 0 2px 10px rgba(61,45,30,0.12);
 line-height: 1;
 font-variation-settings: "opsz" 18;
}
.hd-phone::before {
 content: '\260E';
 font-family: 'Fraunces', serif;
 font-size: 14px;
 color: var(--gold);
 transform: translateY(-1px);
}
.hd-phone:hover {
 background: var(--rust);
 color: var(--paper);
 transform: translateY(-1px);
 box-shadow: 0 6px 20px rgba(61,45,30,0.25);
}
.hd-phone:hover::before { color: var(--paper); }

/* PASEK promocyjny */
.hero-banner {
 position: absolute;
 top: calc(var(--header-h) + 16px);
 left: 50%;
 transform: translateX(-50%);
 z-index: 90;
 background: rgba(255,255,255,0.92);
 color: var(--ink);
 padding: 12px 32px;
 border-radius: 100px;
 display: flex; align-items: center; gap: 16px;
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 15px;
 letter-spacing: 0;
 font-weight: 500;
 white-space: nowrap;
 font-variation-settings: "opsz" 18, "WONK" 1;
}
.hero-banner .dot-sep { opacity: 0.4; }

/* === HERO - pelnoekranowe zdjecie + overlay (HOUSE of SPOILS style) === */
.hero {
 position: relative;
 height: calc(100vh - var(--header-h));
 min-height: 560px;
 overflow: hidden;
 background: var(--ink); /* fallback przed zaladowaniem video / posteru */
}
.hero img,
.hero picture {
 position: absolute; inset: 0;
 width: 100%; height: 100%;
}
.hero picture img,
.hero > picture > img {
 width: 100%; height: 100%;
 object-fit: cover;
}

/* Background MP4 video - HTML5 <video> autoplay muted loop */
.hero-bg-video {
 position: absolute;
 top: 50%; left: 50%;
 transform: translate(-50%, -50%);
 /* Cover behaviour - zawsze pokrywa kontener bez czarnych pasow */
 width: max(100vw, calc(100vh * 16 / 9));
 height: max(100vh, calc(100vw * 9 / 16));
 min-width: 100%;
 min-height: 100%;
 object-fit: cover;
 pointer-events: none;
 z-index: 1;
 background: var(--ink);
}
/* Poster JPG nizej niz video, zostaje jako fallback gdy video nie zaladowane */
.hero-poster {
 z-index: 0;
}
.hero-overlay {
 z-index: 5; /* nad video i posterem */
}
.hero::after {
 z-index: 4; /* gradient nad video, pod overlay */
}
.hero::after {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 35%, transparent 50%, rgba(0,0,0,0.55) 100%);
 pointer-events: none;
}
.hero-overlay {
 position: absolute;
 bottom: 96px;
 left: 50%;
 transform: translateX(-50%);
 text-align: center;
 color: var(--paper);
 z-index: 5;
 width: min(900px, 90vw);
}
.hero-eyebrow {
 font-family: 'Epilogue', sans-serif;
 font-size: 12px;
 letter-spacing: 0.32em;
 text-transform: uppercase;
 font-weight: 500;
 margin-bottom: 28px;
 text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-h1 {
 font-family: 'Fraunces', serif;
 font-weight: 500;
 font-size: clamp(36px, 5vw, 72px);
 line-height: 1.1;
 letter-spacing: -0.02em;
 margin-bottom: 32px;
 font-variation-settings: "opsz" 72, "SOFT" 80;
 text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.hero-cta {
 display: inline-block;
 font-family: 'Epilogue', sans-serif;
 font-size: 13px;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 font-weight: 500;
 color: var(--paper);
 text-decoration: none;
 padding-bottom: 6px;
 border-bottom: 1.5px solid var(--paper);
 transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.hero-cta:hover {
 color: var(--gold);
 border-color: var(--gold);
}

.scroll-cue {
 position: absolute;
 bottom: 24px;
 left: 50%;
 transform: translateX(-50%);
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 letter-spacing: 0.32em;
 text-transform: uppercase;
 color: var(--ink-soft);
 display: flex; align-items: center; gap: 8px;
 z-index: 5;
 pointer-events: none;
}
.scroll-cue::after {
 content: '\2193';
 display: inline-block;
 animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
 0%,100% { transform: translateY(0); }
 50% { transform: translateY(4px); }
}

/* === FACT BAR pod hero === */
.fact-bar {
 background: var(--paper-deep);
 border-bottom: 1px solid var(--line);
 padding: 16px 0;
 overflow: hidden;
 position: relative;
}
/* Fade na obu krawedziach - fakty miekko wjezdzaja/wyjezdzaja */
.fact-bar::before, .fact-bar::after {
 content: ''; position: absolute; top: 0; bottom: 0; width: 56px; z-index: 2; pointer-events: none;
}
.fact-bar::before { left: 0; background: linear-gradient(90deg, var(--paper-deep), transparent); }
.fact-bar::after { right: 0; background: linear-gradient(270deg, var(--paper-deep), transparent); }
/* Sciezka ticker - auto-przewija sie w nieskonczonej petli */
.fact-bar-track {
 display: flex;
 width: max-content;
 align-items: center;
 font-family: 'Epilogue', sans-serif;
 font-size: 13px;
 letter-spacing: 0.05em;
 color: var(--ink);
 animation: fact-marquee 34s linear infinite;
 will-change: transform;
}
.fact-bar:hover .fact-bar-track { animation-play-state: paused; }
@keyframes fact-marquee {
 from { transform: translateX(0); }
 to { transform: translateX(-50%); }
}
.fact-bar .fact {
 display: inline-flex; align-items: center; gap: 10px;
 white-space: nowrap;
 padding: 0 24px;
 flex-shrink: 0;
}
.fact-bar [data-lucide] {
 width: 18px; height: 18px;
 stroke-width: 1.6;
 color: var(--moss-deep);
}
.fact-bar [data-lucide="banknote"] { color: var(--rust); }
.fact-bar [data-lucide="info"] { color: var(--ink-mute); }

/* === QUICKFACTS === */
.quickfacts {
 padding: 140px 40px;
 background: var(--paper-2);
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
}
.quickfacts-inner { max-width: 1240px; margin: 0 auto; }
.quickfacts-hd {
 display: grid;
 grid-template-columns: 1fr;
 margin-bottom: 80px;
 max-width: 720px;
}
.quickfacts-hd h2 {
 font-family: 'Fraunces', serif;
 font-size: clamp(36px, 4.5vw, 60px);
 font-weight: 400;
 line-height: 1.05;
 letter-spacing: -0.02em;
 margin-top: 12px;
 font-variation-settings: "opsz" 60, "SOFT" 80;
}
.quickfacts-hd h2 em {
 font-style: italic;
 color: var(--moss-deep);
 font-variation-settings: "opsz" 60, "WONK" 1;
}
.quickfacts-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 48px 56px;
}
.qf {
 display: grid;
 grid-template-rows: auto auto 1fr;
 gap: 14px;
 padding-top: 24px;
 border-top: 1px solid var(--line);
}
.qf-num {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 26px;
 color: var(--moss-deep);
 font-variation-settings: "opsz" 36, "WONK" 1;
 line-height: 1;
 display: flex;
 align-items: center;
 gap: 12px;
}
.qf-num [data-lucide] {
 width: 22px; height: 22px;
 stroke-width: 1.6;
 color: var(--moss-deep);
}
.qf-q {
 font-family: 'Fraunces', serif;
 font-size: 22px;
 font-weight: 500;
 line-height: 1.2;
 color: var(--ink);
 font-variation-settings: "opsz" 28, "SOFT" 60;
}
.qf-a {
 font-size: 15px;
 line-height: 1.6;
 color: var(--ink-soft);
}

/* Link "Zobacz wszystkie pytania" pod quickfacts */
.quickfacts-more {
 margin-top: 48px;
 text-align: center;
 padding-top: 32px;
 border-top: 1px solid var(--line);
}
.qf-more-link {
 display: inline-flex;
 align-items: center;
 gap: 12px;
 font-family: 'Epilogue', sans-serif;
 font-size: 12px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 font-weight: 500;
 color: #5A6349;
 text-decoration: none;
 padding: 14px 28px;
 border: 1px solid #5A6349;
 transition: background 0.25s, color 0.25s, gap 0.2s;
}
.qf-more-link:hover {
 background: #5A6349;
 color: var(--paper);
 gap: 18px;
}
.qf-more-link .arr {
 font-family: 'Fraunces', serif;
 font-size: 16px;
 letter-spacing: 0;
 transition: transform 0.2s;
}
.qf-more-link:hover .arr { transform: translateX(2px); }

/* Linki listy na stronie 404 */
.not-found-links {
 list-style: none;
 padding: 0;
 margin: 24px 0;
 display: flex;
 flex-direction: column;
 gap: 0;
}
.not-found-links li {
 border-bottom: 1px solid var(--line);
 margin: 0;
}
.not-found-links li:first-child { border-top: 1px solid var(--line); }
.not-found-links a {
 display: block;
 padding: 16px 0;
 color: var(--ink);
 text-decoration: none;
 font-family: 'Fraunces', serif;
 font-size: 16px;
 line-height: 1.5;
 transition: color 0.2s, padding-left 0.2s;
 font-variation-settings: "opsz" 20;
}
.not-found-links a:hover {
 color: var(--rust);
 padding-left: 8px;
}
.not-found-links a strong { font-weight: 500; color: var(--moss-deep); }
.not-found-links a:hover strong { color: var(--rust); }

/* Lead paragraph na podstronach prozy (FAQ, polityka, regulamin) */
.page-prose-lead {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 21px;
 line-height: 1.5;
 color: var(--moss-deep);
 margin-bottom: 40px;
 padding-bottom: 24px;
 border-bottom: 1px solid var(--line);
 font-variation-settings: "opsz" 28, "WONK" 1;
}

/* === LIST OD GOSPODARZY === */
.letter {
 padding: 168px 0 140px;
 background: var(--paper);
 position: relative;
}
.letter-wrap {
 max-width: 760px;
 margin: 0 auto;
 padding: 0 40px;
 position: relative;
}
.letter-stamp {
 position: absolute;
 top: -32px;
 right: 40px;
 width: 88px; height: 88px;
 border: 2px solid var(--moss-deep);
 border-radius: 50%;
 display: flex; flex-direction: column;
 align-items: center; justify-content: center;
 font-family: 'Epilogue', sans-serif;
 font-size: 9px;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 color: var(--moss-deep);
 text-align: center;
 line-height: 1.4;
 transform: rotate(-8deg);
 background: var(--paper);
}
.letter-stamp strong {
 font-family: 'Fraunces', serif;
 font-size: 22px;
 font-weight: 500;
 font-style: italic;
 letter-spacing: 0;
 margin-bottom: 2px;
 text-transform: none;
}
.letter-eyebrow {
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 letter-spacing: 0.32em;
 text-transform: uppercase;
 color: var(--moss-deep);
 margin-bottom: 32px;
 display: flex; align-items: center; gap: 16px;
}
.letter-body {
 font-family: 'Fraunces', serif;
 font-size: clamp(20px, 2.2vw, 26px);
 line-height: 1.55;
 color: var(--ink);
 font-variation-settings: "opsz" 24, "SOFT" 50;
}
.letter-body::first-letter {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 5.2em;
 font-weight: 400;
 float: left;
 line-height: 0.85;
 margin: 0.08em 0.08em 0 -0.08em;
 color: var(--moss-deep);
 font-variation-settings: "opsz" 144, "WONK" 1, "SOFT" 100;
}
.letter-body p + p { margin-top: 24px; }
.letter-signature {
 margin-top: 48px;
 display: flex; flex-direction: column; align-items: flex-end;
 gap: 6px;
 text-align: right;
}
.letter-signature .sig {
 font-family: 'Caveat', cursive;
 font-weight: 500;
 font-size: 38px;
 color: var(--rust);
 line-height: 1;
 transform: rotate(-2deg) translateX(4px);
}
.letter-signature .sig-sub {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 color: var(--ink-soft);
}

/* === SECTION DIVIDER === */
.divider {
 display: flex; align-items: center; justify-content: center;
 padding: 96px 0;
 gap: 24px;
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 16px;
 color: var(--ink-mute);
}
.divider::before,.divider::after {
 content: '';
 width: 64px; height: 1px;
 background: var(--line);
}

/* === PORY ROKU === */
.seasons { padding: 64px 0 140px; }
.seasons-intro {
 text-align: center;
 margin-bottom: 120px;
 max-width: 700px; margin-left: auto; margin-right: auto;
 padding: 0 40px;
}
.seasons-intro h2 {
 font-family: 'Fraunces', serif;
 font-size: clamp(40px, 5.5vw, 72px);
 font-weight: 400;
 line-height: 1.02;
 letter-spacing: -0.02em;
 margin-top: 16px;
 font-variation-settings: "opsz" 80, "SOFT" 80;
}
.seasons-intro h2 em {
 font-style: italic;
 color: var(--moss-deep);
 font-variation-settings: "opsz" 80, "WONK" 1, "SOFT" 100;
}

.season {
 display: grid;
 position: relative;
 padding: 0 40px;
 margin-bottom: 168px;
}
.season:last-child { margin-bottom: 0; }

/* I. Wiosna - 5/7 split, foto duze lewo */
.season.spring { grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; max-width: 1400px; margin-left: auto; margin-right: auto; }
.season.spring .season-img { aspect-ratio: 4/5; }
.season.spring .season-img img { width: 100%; height: 100%; object-fit: cover; }
.season.spring .season-body { padding-right: 64px; }

/* II. Lato - foto wide, tekst pod prawej strony */
.season.summer { grid-template-columns: 1fr; max-width: 1400px; margin-left: auto; margin-right: auto; gap: 56px; }
.season.summer .season-img { aspect-ratio: 16/7; width: 100%; }
.season.summer .season-img img { width: 100%; height: 100%; object-fit: cover; }
.season.summer .season-body-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; padding: 0 64px; }

/* III. Jesien - asymmetric, foto prawo wertykalne, tekst lewo */
.season.autumn { grid-template-columns: 7fr 5fr; gap: 80px; align-items: center; max-width: 1400px; margin-left: auto; margin-right: auto; }
.season.autumn .season-img { aspect-ratio: 4/5; order: 2; }
.season.autumn .season-img img { width: 100%; height: 100%; object-fit: cover; }
.season.autumn .season-body { padding-left: 64px; padding-right: 0; }

/* IV. Zima - centered, big typo */
.season.winter { grid-template-columns: 1fr; max-width: 1100px; margin-left: auto; margin-right: auto; text-align: center; gap: 56px; }
.season.winter .season-img { aspect-ratio: 16/9; }
.season.winter .season-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92) contrast(1.05); }
.season.winter .season-body { max-width: 720px; margin: 0 auto; padding: 0 32px; }

.page-num {
 display: flex; align-items: baseline; gap: 12px;
 margin-bottom: 32px;
}
.page-num .roman {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 56px;
 font-weight: 400;
 line-height: 0.9;
 color: var(--moss-deep);
 font-variation-settings: "opsz" 72, "WONK" 1;
}
.page-num .of {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.32em;
 text-transform: uppercase;
 color: var(--ink-mute);
 padding-bottom: 8px;
}
.season h2 {
 font-family: 'Fraunces', serif;
 font-size: clamp(48px, 5.5vw, 80px);
 font-weight: 400;
 line-height: 1.02;
 letter-spacing: -0.025em;
 font-variation-settings: "opsz" 96, "SOFT" 80;
 margin-bottom: 8px;
}
.season h2 em { font-style: italic; color: var(--moss-deep); font-variation-settings: "opsz" 96, "WONK" 1; }
.season .season-sub {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 19px;
 color: var(--ink-mute);
 font-variation-settings: "opsz" 24, "WONK" 1;
 margin-bottom: 32px;
}
.season-text {
 font-size: 18px;
 line-height: 1.65;
 margin-bottom: 32px;
 color: var(--ink);
 font-variation-settings: "opsz" 18;
}
.season-list {
 list-style: none;
 margin-bottom: 36px;
 border-top: 1px solid var(--line-soft);
}
.season-list li {
 padding: 14px 0;
 border-bottom: 1px solid var(--line-soft);
 display: grid;
 grid-template-columns: 32px 1fr;
 gap: 16px;
 font-size: 15px;
 line-height: 1.55;
 color: var(--ink);
}
.season-list li.num {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.15em;
 color: var(--ink-mute);
 padding-top: 2px;
 font-variant-numeric: tabular-nums;
}
.season-cta {
 font-family: 'Epilogue', sans-serif;
 font-size: 12px;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 color: var(--moss-deep);
 text-decoration: none;
 display: inline-flex; align-items: center; gap: 10px;
 padding: 14px 0;
 border-bottom: 1px solid var(--moss-deep);
 transition: gap 0.25s;
}
.season-cta::after { content: '\2192'; font-size: 14px; transition: transform 0.25s; }
.season-cta:hover { gap: 18px; }
.season-cta:hover::after { transform: translateX(2px); }

.season.summer .summer-margin-quote {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 26px;
 line-height: 1.35;
 color: var(--moss-deep);
 border-left: 2px solid var(--moss-deep);
 padding-left: 24px;
 font-variation-settings: "opsz" 32, "WONK" 1, "SOFT" 100;
}
.season.summer .summer-margin-quote.from {
 display: block;
 margin-top: 16px;
 font-style: normal;
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: var(--ink-mute);
}
.season.winter .winter-stats {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 32px;
 margin: 48px 0 32px;
 padding-top: 32px;
 border-top: 1px solid var(--line);
}
.season.winter .winter-stats > div.num {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 48px;
 font-weight: 400;
 color: var(--moss-deep);
 font-variation-settings: "opsz" 72, "WONK" 1;
 line-height: 1;
}
.season.winter .winter-stats > div.lbl {
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 letter-spacing: 0.32em;
 text-transform: uppercase;
 color: var(--ink-mute);
 margin-top: 8px;
 display: block;
}

/* === SEASONS TEASER (na froncie - link do /pory-roku/) === */
.seasons-teaser {
  padding: 96px 0 120px;
  background: var(--paper);
}
.seasons-teaser-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.seasons-teaser-inner .eyebrow { margin-bottom: 16px; }
.seasons-teaser-inner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 72, "SOFT" 80;
}
.seasons-teaser-inner h2 em {
  font-style: italic;
  color: var(--moss-deep);
  font-variation-settings: "opsz" 80, "WONK" 1, "SOFT" 100;
}
.seasons-teaser-lead {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 680px;
  margin: 0 auto 64px;
  font-variation-settings: "opsz" 22, "SOFT" 60;
}
.seasons-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.st-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper-deep);
}
.st-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.seasons-teaser a.seasons-teaser-cta:hover ~ .seasons-teaser-grid .st-card img,
.st-card:hover img { transform: scale(1.04); }
.st-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.st-label {
  position: absolute;
  bottom: 20px; left: 22px; right: 22px;
  display: flex; align-items: baseline; gap: 12px;
  color: var(--paper);
  z-index: 2;
}
.st-roman {
  font-family: 'Epilogue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.st-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  font-variation-settings: "opsz" 36, "WONK" 1;
}
a.seasons-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 18px 32px;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s;
}
a.seasons-teaser-cta:hover {
  background: var(--ink);
  color: var(--paper);
}
a.seasons-teaser-cta .arr {
  transition: transform 0.25s;
}
a.seasons-teaser-cta:hover .arr { transform: translateX(4px); }

@media (max-width: 900px) {
  .seasons-teaser { padding: 64px 0 80px; }
  .seasons-teaser-inner { padding: 0 20px; }
  .seasons-teaser-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 40px; }
  .st-name { font-size: 22px; }
  a.seasons-teaser-cta { padding: 16px 24px; font-size: 12px; }
}

/* === DOMY - menu restauracji === */
.menu-section {
 background: var(--paper-2);
 padding: 168px 0 168px;
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
}
.menu-intro {
 text-align: center;
 margin-bottom: 120px;
 padding: 0 40px;
}
.menu-intro h2 {
 font-family: 'Fraunces', serif;
 font-size: clamp(48px, 6vw, 88px);
 font-weight: 400;
 line-height: 1;
 letter-spacing: -0.03em;
 margin-top: 16px;
 font-variation-settings: "opsz" 96, "SOFT" 80;
}
.menu-intro h2 em { font-style: italic; color: var(--moss-deep); font-variation-settings: "opsz" 96, "WONK" 1; }

.menu-list { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.menu-item {
 display: grid;
 grid-template-columns: 1fr 360px;
 gap: 64px;
 padding: 64px 0;
 border-top: 1px solid var(--line);
 align-items: center;
 position: relative;
 transition: padding 0.3s;
}
.menu-item:last-child { border-bottom: 1px solid var(--line); }
.menu-item:hover { padding: 80px 0; }
.menu-item:hover.menu-img img { transform: scale(1.04); }
.menu-item-text { position: relative; }
.menu-item-num {
 position: absolute;
 top: -8px; left: -64px;
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 18px;
 color: var(--ink-mute);
 font-variation-settings: "opsz" 24, "WONK" 1;
}
.menu-item h4 {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: clamp(40px, 5vw, 72px);
 font-weight: 400;
 line-height: 0.95;
 letter-spacing: -0.025em;
 margin-bottom: 16px;
 font-variation-settings: "opsz" 96, "WONK" 1, "SOFT" 80;
}
.menu-item .meta {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 color: var(--ink-mute);
 display: flex;
 gap: 24px;
 flex-wrap: wrap;
 margin-bottom: 20px;
}
.menu-item .meta span { display: flex; align-items: center; gap: 8px; }
.menu-item .meta span::before {
 content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--ink-mute);
}
.menu-item .meta span:first-child::before { display: none; }

/* "Najlepszy dla" badge przy domach */
.best-for {
 display: flex;
 align-items: baseline;
 gap: 14px;
 margin: -8px 0 22px;
 padding: 12px 16px;
 background: var(--paper-2);
 border-left: 3px solid var(--moss-deep);
 max-width: 520px;
}
.best-for .bf-label {
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 letter-spacing: 0.28em;
 text-transform: uppercase;
 color: var(--moss-deep);
 font-weight: 500;
 white-space: nowrap;
 flex-shrink: 0;
}
.best-for .bf-text {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 15px;
 line-height: 1.45;
 color: var(--ink);
 font-variation-settings: "opsz" 18, "WONK" 1;
}

.menu-item p {
 font-size: 17px;
 line-height: 1.65;
 color: var(--ink);
 max-width: 520px;
 margin-bottom: 28px;
}
.menu-price-row {
 display: flex; align-items: baseline;
 border-top: 1px dashed var(--line);
 padding-top: 20px;
 gap: 16px;
}
.menu-price-row.leader {
 flex: 1; height: 1px;
 border-bottom: 1px dotted var(--ink-mute);
 margin-bottom: 6px;
}
.menu-price-row.from {
 font-family: 'Epilogue', sans-serif;
 font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
 color: var(--ink-mute);
}
.menu-price-row.price {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 36px;
 font-weight: 400;
 color: var(--ink);
 font-variant-numeric: tabular-nums;
 font-variation-settings: "opsz" 48, "WONK" 1;
}
.menu-price-row.price-sub {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
 color: var(--ink-mute);
}
.menu-img { overflow: hidden; aspect-ratio: 4/5; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }

/* === FEATURES PILLS === */
.features {
 display: flex; flex-wrap: wrap; gap: 8px;
 margin: 4px 0 28px;
}
.features .feat {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.05em;
 padding: 6px 12px;
 background: var(--paper);
 border: 1px solid var(--line);
 color: var(--ink-soft);
 border-radius: 100px;
 display: inline-flex; align-items: center; gap: 6px;
}
.features .feat::before {
 content: ''; width: 4px; height: 4px; background: var(--moss-deep); border-radius: 50%;
}

/* === PRICE TABLE w karcie domu === */
.price-table {
 border-top: 1px solid var(--line);
 padding-top: 18px;
}
.price-row {
 display: flex; align-items: baseline;
 padding: 8px 0;
 gap: 12px;
}
.price-row.total {
 border-top: 1px dashed var(--line);
 margin-top: 4px;
 padding-top: 14px;
}
.pr-label {
 font-family: 'Fraunces', serif;
 font-size: 16px;
 color: var(--ink);
 font-variation-settings: "opsz" 18;
}
.pr-leader {
 flex: 1; height: 1px;
 border-bottom: 1px dotted var(--ink-mute);
 margin-bottom: 6px;
 min-width: 24px;
}
.pr-amount {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 19px;
 font-weight: 500;
 color: var(--moss-deep);
 font-variation-settings: "opsz" 24, "WONK" 1;
 white-space: nowrap;
}
.price-note {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.05em;
 color: var(--ink-mute);
 margin-top: 12px;
 padding-top: 12px;
 border-top: 1px solid var(--line-soft);
 font-style: italic;
}

/* === Z LOTU PTAKA - galeria dronowa === */
.aerial {
 padding: 140px 0 140px;
 background: var(--ink);
 color: var(--paper);
 position: relative;
}
.aerial-inner {
 max-width: 1400px;
 margin: 0 auto;
 padding: 0 40px;
}
.aerial-hd {
 text-align: center;
 max-width: 700px;
 margin: 0 auto 64px;
}
.aerial-hd .eyebrow { color: var(--gold); margin-bottom: 16px; }
.aerial-hd h2 {
 font-family: 'Fraunces', serif;
 font-size: clamp(40px, 5vw, 64px);
 font-weight: 400;
 line-height: 1.05;
 letter-spacing: -0.02em;
 color: var(--paper);
 margin-bottom: 24px;
 font-variation-settings: "opsz" 72, "SOFT" 80;
}
.aerial-hd h2 em {
 font-style: italic;
 color: var(--gold);
 font-variation-settings: "opsz" 80, "WONK" 1, "SOFT" 100;
}
.aerial-lead {
 font-family: 'Fraunces', serif;
 font-size: 18px;
 line-height: 1.6;
 color: rgba(244, 236, 220, 0.78);
 font-variation-settings: "opsz" 22, "SOFT" 60;
}
.aerial-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 8px;
 grid-auto-rows: 220px;
}
.aerial-item {
 position: relative;
 overflow: hidden;
 display: block;
 background: var(--paper-deep);
 grid-column: span 2;
 grid-row: span 1;
}
.aerial-item picture {
 position: absolute; inset: 0;
 width: 100%; height: 100%;
}
.aerial-item img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.7s ease, filter 0.4s ease;
}
.aerial-item:hover img {
 transform: scale(1.04);
 filter: brightness(1.05);
}
.aerial-item::after {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
 opacity: 0;
 transition: opacity 0.3s ease;
}
.aerial-item:hover::after { opacity: 1; }

/* Pierwsze zdjecie - wide (panorama gospodarstwa), 4 kolumny */
.aerial-item.aerial-wide {
 grid-column: span 4;
 grid-row: span 2;
}

@media (max-width: 1100px) {
 .aerial-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
 .aerial-item { grid-column: span 2; }
 .aerial-item.aerial-wide { grid-column: span 4; grid-row: span 2; }
}
@media (max-width: 700px) {
 .aerial { padding: 80px 0; }
 .aerial-inner { padding: 0 16px; }
 .aerial-hd { margin-bottom: 40px; }
 /* 2 kolumny: zwykle zdjecie 1col, panorama (aerial-wide) 2col */
 .aerial-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 6px; }
 .aerial-item { grid-column: span 1; grid-row: span 1; }
 .aerial-item.aerial-wide { grid-column: span 2; grid-row: span 2; }
}

/* === FORMULARZ ZAPYTAJ O TERMIN === */
.inquiry {
 background: var(--paper-2);
 padding: 140px 0 140px;
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
}
.inquiry-inner {
 max-width: 1240px;
 margin: 0 auto;
 padding: 0 40px;
 display: grid;
 grid-template-columns: 1fr 1.1fr;
 gap: 80px;
 align-items: start;
}
.inquiry-text {
 position: sticky;
 top: 100px;
}
.inquiry-text h2 {
 font-family: 'Fraunces', serif;
 font-size: clamp(36px, 4.5vw, 56px);
 font-weight: 400;
 line-height: 1.05;
 letter-spacing: -0.02em;
 margin: 14px 0 24px;
 font-variation-settings: "opsz" 72, "SOFT" 80;
}
.inquiry-text h2 em {
 font-style: italic;
 color: var(--moss-deep);
 font-variation-settings: "opsz" 80, "WONK" 1, "SOFT" 100;
}
.inquiry-lead {
 font-family: 'Fraunces', serif;
 font-size: 18px;
 line-height: 1.6;
 color: var(--ink);
 margin-bottom: 32px;
 max-width: 480px;
 font-variation-settings: "opsz" 22, "SOFT" 60;
}
.inquiry-phone {
 color: var(--terra);
 text-decoration: none;
 border-bottom: 1px solid var(--terra);
 font-weight: 500;
 white-space: nowrap;
}
.inquiry-phone:hover { color: var(--ink); border-color: var(--ink); }
.inquiry-list { list-style: none; padding: 0; margin: 0; max-width: 480px; }
.inquiry-list li {
 display: flex;
 align-items: baseline;
 gap: 14px;
 padding: 14px 0;
 border-top: 1px solid var(--line);
 font-family: 'Fraunces', serif;
 font-size: 15px;
 line-height: 1.5;
 color: var(--ink-soft);
 font-variation-settings: "opsz" 18;
}
.inquiry-list li:last-child { border-bottom: 1px solid var(--line); }
.inquiry-list .num {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.22em;
 color: var(--moss-deep);
 font-weight: 500;
 width: 24px;
 flex-shrink: 0;
}

.inquiry-form {
 background: var(--paper);
 padding: 40px;
 border: 1px solid var(--line);
}
.if-row { margin-bottom: 18px; }
.if-row.if-2col {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 18px;
}
.if-field { display: flex; flex-direction: column; gap: 6px; }
.if-label {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 font-weight: 500;
 color: var(--ink-soft);
}
.if-label .req { color: var(--rust); margin-left: 4px; }
.if-field input,
.if-field select,
.if-field textarea {
 font-family: 'Fraunces', serif;
 font-size: 16px;
 padding: 12px 14px;
 background: var(--paper-2);
 border: 1px solid var(--line);
 color: var(--ink);
 width: 100%;
 transition: border-color 0.2s, background 0.2s;
 font-variation-settings: "opsz" 18;
}
.if-field input:focus,
.if-field select:focus,
.if-field textarea:focus {
 outline: none;
 border-color: var(--moss-deep);
 background: var(--paper);
}
.if-field textarea { resize: vertical; min-height: 90px; font-family: 'Fraunces', serif; }
.if-field input[type="number"],
.if-field input[type="date"],
.if-field input[type="tel"] { font-variant-numeric: tabular-nums; }

.if-rodo {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 margin: 20px 0;
 font-family: 'Epilogue', sans-serif;
 font-size: 13px;
 line-height: 1.55;
 color: var(--ink-soft);
}
.if-rodo input { margin-top: 3px; flex-shrink: 0; }
.if-rodo a { color: var(--rust); text-decoration: underline; }
.if-rodo .req { color: var(--rust); }

/* Rozwijana klauzula RODO przed checkboxem */
.if-rodo-info {
 margin: 16px 0 8px;
 padding: 0;
 font-family: 'Epilogue', sans-serif;
 font-size: 12px;
 line-height: 1.55;
 color: var(--ink-mute);
}
.if-rodo-info summary {
 cursor: pointer;
 padding: 8px 0;
 color: var(--ink-soft);
 font-weight: 500;
 letter-spacing: 0.05em;
 list-style: none;
 user-select: none;
 transition: color 0.2s;
}
.if-rodo-info summary::-webkit-details-marker { display: none; }
.if-rodo-info summary:hover { color: var(--rust); }
.if-rodo-info[open] summary { color: var(--rust); }
.if-rodo-info p {
 margin: 8px 0;
 font-size: 12px;
 line-height: 1.6;
 color: var(--ink-soft);
}
.if-rodo-info a { color: var(--rust); text-decoration: underline; }

.inquiry-submit {
 display: inline-flex;
 align-items: center;
 gap: 14px;
 padding: 16px 28px;
 background: var(--ink);
 color: var(--paper);
 border: 0;
 cursor: pointer;
 font-family: 'Epilogue', sans-serif;
 font-size: 12px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 font-weight: 500;
 transition: background 0.2s, gap 0.2s;
}
.inquiry-submit:hover {
 background: var(--rust);
 gap: 20px;
}
.inquiry-submit:disabled { opacity: 0.6; cursor: wait; }
.inquiry-submit .arr { font-family: 'Fraunces', serif; font-size: 16px; letter-spacing: 0; }

.inquiry-status {
 margin-top: 16px;
 padding: 12px 16px;
 display: none;
 font-family: 'Fraunces', serif;
 font-size: 15px;
 line-height: 1.5;
}
.inquiry-status.success {
 display: block;
 background: rgba(152, 160, 134, 0.18);
 border-left: 3px solid var(--moss-deep);
 color: var(--ink);
}
.inquiry-status.error {
 display: block;
 background: rgba(167, 109, 94, 0.12);
 border-left: 3px solid var(--rust);
 color: var(--ink);
}

/* Honeypot - schowane */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 900px) {
 .inquiry { padding: 64px 0; }
 .inquiry-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 20px; }
 .inquiry-text { position: static; }
 .inquiry-form { padding: 24px; }
 .if-row.if-2col { grid-template-columns: 1fr; gap: 18px; }
 .best-for { gap: 8px; flex-direction: column; align-items: flex-start; padding: 10px 14px; }
}

/* === MAPA / DOJAZD - full width + stripe ponizej === */
.map-section {
 background: var(--paper);
 padding: 140px 0 0;
 border-top: 1px solid var(--line);
}
.map-hd {
 max-width: 1240px; margin: 0 auto 64px; padding: 0 40px;
 display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
 align-items: end;
}
.map-hd h2 {
 font-family: 'Fraunces', serif;
 font-size: clamp(36px, 4.5vw, 56px);
 font-weight: 400;
 line-height: 1.05;
 letter-spacing: -0.02em;
 margin: 12px 0 0;
 font-variation-settings: "opsz" 56, "SOFT" 80;
}
.map-hd h2 em {
 font-style: italic; color: var(--moss-deep);
 font-variation-settings: "opsz" 56, "WONK" 1;
}
.map-hd > p {
 font-size: 16px;
 line-height: 1.65;
 color: var(--ink-soft);
}
.map-frame {
 position: relative;
 width: 100%;
 height: 480px;
 overflow: hidden;
 background: var(--paper-deep);
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
}
#leaflet-map {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 filter: grayscale(0.15) sepia(0.08) contrast(1.02);
}
.leaflet-marker-icon.custom-pin {
 background: var(--paper);
 border: 1px solid var(--rust);
 border-radius: 0;
 padding: 6px 14px;
 font-family: 'Caveat', cursive;
 font-size: 18px;
 color: var(--rust);
 white-space: nowrap;
 box-shadow: 0 4px 16px rgba(167,109,94,0.25);
 width: auto!important;
 height: auto!important;
 text-align: center;
}

/* odleglosci jako stripe pod mapa */
.distances {
 background: var(--paper-2);
 border-bottom: 1px solid var(--line);
}
.dist-inner {
 max-width: 1320px; margin: 0 auto; padding: 0 40px;
 display: grid; grid-template-columns: repeat(5, 1fr);
 gap: 0;
}
.dist {
 padding: 32px 24px;
 border-right: 1px solid var(--line);
 display: flex; flex-direction: column; gap: 8px;
}
.dist:last-child { border-right: none; }
.dist .dist-from {
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 letter-spacing: 0.32em;
 text-transform: uppercase;
 color: var(--ink-mute);
}
.dist.dist-name {
 font-family: 'Fraunces', serif;
 font-size: 19px;
 font-weight: 500;
 color: var(--ink);
 letter-spacing: -0.01em;
 font-variation-settings: "opsz" 22;
}
.dist.dist-km {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 22px;
 color: var(--moss-deep);
 font-variation-settings: "opsz" 28, "WONK" 1;
 font-variant-numeric: tabular-nums;
 line-height: 1;
}
.dist.dist-time {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.1em;
 color: var(--ink-soft);
}
.gps-line {
 max-width: 1320px; margin: 0 auto; padding: 32px 40px 0;
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.18em;
 color: var(--ink-mute);
 font-variant-numeric: tabular-nums;
 text-align: center;
 padding-bottom: 80px;
}
.gps-line strong { color: var(--ink); font-weight: 500; }
.gps-line a { color: var(--moss-deep); text-decoration: none; border-bottom: 1px dotted currentColor; transition: color 0.2s; }
.gps-line a:hover { color: var(--rust); }

/* === KLIK W ADRES -> MAPY GOOGLE === */
/* Adres w sekcji mapy */
.map-address-link { color: inherit; text-decoration: none; border-bottom: 2px solid var(--gold); transition: border-color 0.2s, color 0.2s; }
.map-address-link:hover { color: var(--rust); border-color: var(--rust); }
/* Przycisk "Wyznacz trase" pod adresem */
.map-cta {
 display: inline-flex; align-items: center; gap: 10px;
 margin-top: 18px;
 padding: 13px 24px;
 background: var(--ink); color: var(--paper);
 font-family: 'Epilogue', sans-serif; font-size: 12px; letter-spacing: 0.18em;
 text-transform: uppercase; font-weight: 500; text-decoration: none;
 transition: background 0.2s, gap 0.2s;
}
.map-cta:hover { background: var(--rust); gap: 14px; }
.map-cta i, .map-cta svg { width: 16px; height: 16px; }
/* Przycisk-pigulka na rogu mapy */
.map-open-overlay {
 position: absolute; top: 16px; right: 16px; z-index: 1000;
 display: inline-flex; align-items: center;
 background: var(--paper); color: var(--ink);
 padding: 10px 16px; border-radius: 100px;
 font-family: 'Epilogue', sans-serif; font-size: 11px; letter-spacing: 0.12em;
 text-transform: uppercase; font-weight: 500; text-decoration: none;
 box-shadow: 0 4px 16px rgba(0,0,0,0.22);
 transition: background 0.2s, color 0.2s;
}
.map-open-overlay span { display: inline-flex; align-items: center; gap: 8px; }
.map-open-overlay i, .map-open-overlay svg { width: 15px; height: 15px; }
.map-open-overlay:hover { background: var(--rust); color: var(--paper); }
/* Adres-link w kolofonie (ciemne tlo) */
.colophon-bottom a.val-maps { text-decoration: none; transition: color 0.2s; }
.colophon-bottom a.val-maps:hover { color: var(--gold); }
.colophon-bottom a.val-maps i, .colophon-bottom a.val-maps svg { width: 13px; height: 13px; opacity: 0.55; vertical-align: baseline; }
.colophon-bottom .small-line a { color: inherit; text-decoration: none; transition: color 0.2s; }
.colophon-bottom .small-line a:hover { color: var(--gold); }
/* Adres-link w pasku copyright */
.copy-line a.copy-maps-link { color: inherit; text-decoration: none; transition: color 0.2s; }
.copy-line a.copy-maps-link:hover { color: var(--gold); }

/* === OPINIE === */
.reviews {
 padding: 168px 40px;
 position: relative;
 overflow: hidden;
}
.reviews-bg-50 {
 position: absolute;
 top: 50%; left: 50%;
 transform: translate(-50%, -50%);
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 60vw;
 font-weight: 400;
 line-height: 1;
 color: var(--moss-deep);
 opacity: 0.04;
 pointer-events: none;
 font-variation-settings: "opsz" 144, "WONK" 1;
 white-space: nowrap;
}
.reviews-inner { position: relative; max-width: 1200px; margin: 0 auto; }
.reviews-hd {
 display: flex; justify-content: space-between; align-items: flex-end;
 margin-bottom: 96px;
 gap: 48px;
}
.reviews-hd h2 {
 font-family: 'Fraunces', serif;
 font-size: clamp(40px, 5vw, 64px);
 font-weight: 400;
 line-height: 1.02;
 letter-spacing: -0.02em;
 margin-top: 16px;
 font-variation-settings: "opsz" 64, "SOFT" 80;
 max-width: 580px;
}
.reviews-hd h2 em { font-style: italic; color: var(--moss-deep); font-variation-settings: "opsz" 64, "WONK" 1; }
.reviews-rating {
 text-align: right;
 font-family: 'Fraunces', serif;
}
.reviews-rating .big {
 font-style: italic;
 font-size: 72px;
 font-weight: 400;
 color: var(--moss-deep);
 line-height: 1;
 font-variation-settings: "opsz" 96, "WONK" 1;
}
.reviews-rating .small {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 color: var(--ink-mute);
 margin-top: 8px;
}

.reviews-list { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px 48px; }
.review { display: flex; flex-direction: column; gap: 16px; }
.review:nth-child(1) { grid-column: 1 / 8; }
.review:nth-child(2) { grid-column: 8 / 13; padding-top: 56px; }
.review:nth-child(3) { grid-column: 1 / 6; padding-top: 56px; }
.review:nth-child(4) { grid-column: 6 / 13; }
.review.qmark {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 64px;
 line-height: 0.7;
 color: var(--moss-deep);
 font-variation-settings: "opsz" 96, "WONK" 1;
}
.review blockquote {
 font-family: 'Fraunces', serif;
 font-size: clamp(19px, 1.7vw, 23px);
 line-height: 1.45;
 font-style: italic;
 color: var(--ink);
 font-variation-settings: "opsz" 28, "SOFT" 100, "WONK" 1;
}
.review.who {
 display: flex; align-items: center; gap: 16px;
 margin-top: 12px;
 padding-top: 12px;
 border-top: 1px solid var(--line);
}
.review.who strong {
 font-family: 'Epilogue', sans-serif;
 font-size: 13px;
 font-weight: 500;
 letter-spacing: 0.05em;
 color: var(--ink);
}
.review.who span {
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 letter-spacing: 0.25em;
 text-transform: uppercase;
 color: var(--ink-mute);
}
.review.who.stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }

/* === KOLOFON / DRUGA OKLADKA (zamiast footera) === */
.colophon {
 display: grid;
 grid-template-columns: 1.15fr 0.85fr;
 min-height: 88vh;
 background: var(--ink);
 color: var(--paper);
}
.colophon-image { position: relative; overflow: hidden; }
.colophon-image picture { display: block; width: 100%; height: 100%; }
.colophon-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Globalny bezpiecznik: zaden obrazek nie przelewa kontenera (mobile) */
img { max-width: 100%; }
.colophon-image::after {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(180deg, rgba(0,0,0,0.2), transparent 35%, transparent 65%, rgba(0,0,0,0.4));
}
.colophon-image .corner-tl {
 position: absolute; top: 32px; left: 32px;
 font-family: 'Epilogue', sans-serif;
 font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
 color: var(--paper); opacity: 0.85;
}
.colophon-image .corner-br {
 position: absolute; bottom: 32px; right: 32px;
 font-family: 'Caveat', cursive;
 font-size: 28px;
 color: var(--paper);
 transform: rotate(-3deg);
}

.colophon-text {
 padding: 64px 64px 56px;
 display: grid;
 grid-template-rows: auto 1fr auto;
}
.colophon-edition {
 display: flex; justify-content: space-between;
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.28em;
 text-transform: uppercase;
 color: rgba(244,236,220,0.82);
 padding-bottom: 24px;
 border-bottom: 1px solid rgba(244,236,220,0.25);
}
.colophon-edition.num { color: #C4A071; font-weight: 500; }

.colophon-mid { align-self: center; padding: 56px 0; }
.colophon-mid h2 {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-weight: 400;
 font-size: clamp(56px, 8vw, 132px);
 line-height: 0.85;
 letter-spacing: -0.04em;
 font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.colophon-mid h2.accent { color: #C4A071; }
.colophon-mid .tag {
 margin-top: 40px;
 font-family: 'Fraunces', serif;
 font-size: clamp(20px, 2vw, 26px);
 line-height: 1.45;
 color: rgba(244,236,220,0.95);
 font-weight: 400;
 max-width: 480px;
 font-variation-settings: "opsz" 28, "SOFT" 60;
}

.colophon-bottom {
 display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
 padding-top: 28px;
 border-top: 1px solid rgba(244,236,220,0.15);
}
.colophon-bottom .lbl {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.28em;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 10px;
 display: block;
 font-weight: 500;
}
.colophon-bottom a,.colophon-bottom.val {
 font-family: 'Fraunces', serif;
 font-size: 17px;
 font-weight: 500;
 color: var(--paper);
 text-decoration: none;
 line-height: 1.4;
 font-variation-settings: "opsz" 24;
}
.colophon-bottom .small-line {
 font-family: 'Epilogue', sans-serif;
 font-size: 13px;
 color: rgba(244,236,220,0.9);
 margin-top: 4px;
 font-weight: 400;
 letter-spacing: 0;
}

/* Booking badge w kolofonie */
.colophon-booking {
 margin-top: 36px;
 padding-top: 24px;
 border-top: 1px solid rgba(244,236,220,0.15);
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.colophon-booking .cb-link {
 display: inline-flex;
 align-items: center;
 gap: 14px;
 text-decoration: none;
 color: var(--paper);
 padding: 12px 18px;
 background: rgba(244,236,220,0.06);
 border: 1px solid rgba(244,236,220,0.18);
 align-self: flex-start;
 transition: background 0.25s, border-color 0.25s, gap 0.2s;
}
.colophon-booking .cb-link:hover {
 background: rgba(244,236,220,0.12);
 border-color: var(--gold);
 gap: 18px;
}
.colophon-booking .cb-prefix {
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 letter-spacing: 0.32em;
 text-transform: uppercase;
 color: var(--gold);
 font-weight: 500;
}
.colophon-booking .cb-logo {
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 18px;
 font-weight: 500;
 line-height: 1;
 font-variation-settings: "opsz" 22, "WONK" 1;
}
.colophon-booking .cb-logo .cb-dot { color: var(--gold); font-style: normal; }
.colophon-booking .cb-arrow {
 font-family: 'Fraunces', serif;
 font-size: 18px;
 color: var(--gold);
 transition: transform 0.2s;
}
.colophon-booking .cb-link:hover .cb-arrow { transform: translateX(3px); }
.colophon-booking .cb-note {
 font-family: 'Fraunces', serif;
 font-size: 14px;
 font-style: italic;
 color: rgba(244,236,220,0.78);
 line-height: 1.4;
 font-variation-settings: "opsz" 18, "WONK" 1;
}

.copy-line {
 background: var(--ink);
 color: rgba(244,236,220,0.7);
 padding: 24px 40px;
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 display: flex;
 justify-content: center;
 text-align: center;
 align-items: center;
 gap: 20px;
 flex-wrap: wrap;
 border-top: 1px solid rgba(244,236,220,0.18);
}
.copy-line .credit {
 opacity: 0.65;
 letter-spacing: 0.18em;
 font-size: 10px;
}
.copy-line .credit a {
 color: var(--gold);
 text-decoration: none;
 transition: color 0.2s, opacity 0.2s;
}
.copy-line .credit a:hover {
 color: var(--paper);
 opacity: 1;
}

/* === REVEAL ANIMATIONS === */
[data-reveal] {
 opacity: 0;
 transform: translateY(24px);
 transition: opacity 0.9s ease, transform 0.9s ease;
}
[data-reveal].in {
 opacity: 1;
 transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
.container { padding: 0 28px; }
.menu-item-num { left: 0; top: -32px; }
.season.spring,.season.autumn { grid-template-columns: 1fr; gap: 48px; }
.season.spring .season-body,.season.autumn .season-body { padding: 0; }
.season.autumn .season-img { order: 0; }
.season.summer .season-body-grid { grid-template-columns: 1fr; padding: 0; gap: 32px; }
.menu-item { grid-template-columns: 1fr; gap: 32px; }
.reviews-list { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
.reviews-list >.review { grid-column: 1 / -1!important; padding-top: 0!important; }
.reviews-hd { flex-direction: column; align-items: flex-start; }
.reviews-rating { text-align: left; }
.quickfacts-grid { grid-template-columns: 1fr 1fr; }
.map-hd { grid-template-columns: 1fr; gap: 24px; }
.dist-inner { grid-template-columns: 1fr 1fr; }
.dist { border-right: none; border-bottom: 1px solid var(--line); }
}

@media (max-width: 768px) {
.container,.container-narrow { padding: 0 20px; }
.hero { grid-template-columns: 1fr; min-height: auto; }
.hero-back { padding: 80px 24px 32px; border-right: none; border-bottom: 2px solid var(--ink); order: 2; }
.hero-front { height: 56vh; min-height: 360px; order: 1; }
.hero-recipient { position: static; width: 100%; margin: 24px 0; }
.hero-back-bottom { position: static; margin-top: 32px; }
.postmark { top: 50px; right: 16px; width: 110px; height: 110px; }
.hero-message { max-width: 100%; }
.country-mark strong { font-size: 22px; }
.front-title { left: 24px; bottom: 32px; }
.front-coords { right: 24px; top: 32px; }
.letter { padding: 96px 0; }
.letter-wrap { padding: 0 24px; }
.letter-stamp { right: 24px; width: 72px; height: 72px; }
.seasons { padding: 32px 0 80px; }
.seasons-intro { margin-bottom: 64px; }
.season { padding: 0 20px; margin-bottom: 80px; }
.menu-section { padding: 80px 0; }
.menu-list { padding: 0 24px; }
.menu-intro { margin-bottom: 64px; }
.menu-item { padding: 40px 0!important; }
.menu-item:hover { padding: 40px 0!important; }
.menu-item-num { position: static; margin-bottom: 8px; }
.menu-img { aspect-ratio: 4/3; }
.menu-price-row { flex-wrap: wrap; }
.reviews { padding: 80px 24px; }
.colophon { grid-template-columns: 1fr; min-height: auto; }
.colophon-image { width: 100%; height: auto; aspect-ratio: 16/10; min-height: 0; }
.colophon-text { padding: 32px 24px; }
.colophon-bottom { grid-template-columns: 1fr; gap: 24px; }
.copy-line { padding: 14px 8px; font-size: 9.5px; letter-spacing: 0.03em; }
.season.winter .winter-stats { grid-template-columns: 1fr; gap: 20px; }
.hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quickfacts { padding: 80px 24px; }
.quickfacts-grid { grid-template-columns: 1fr; gap: 24px; }
.map-section { padding: 64px 0 0; }
.map-hd { padding: 0 24px; }
.map-frame { height: 320px; }
.dist-inner { grid-template-columns: 1fr; }
.features .feat { font-size: 10px; padding: 5px 10px; }
.price-row { flex-wrap: wrap; }
.pr-leader { display: none; }
.pr-amount { width: 100%; padding-left: 0; }
}

.tag-link {
 color: var(--gold);
 text-decoration: none;
 border-bottom: 1px solid rgba(196,160,113,0.4);
 padding-bottom: 1px;
 transition: color 0.2s, border-color 0.2s;
}
.tag-link:hover {
 color: #E7C690;
 border-bottom-color: #E7C690;
}

/* Lucide ikony - po createIcons() staja sie <svg>, dodaje margin zeby byla spacja od tekstu */
.fact-bar .fact svg, .dist-from svg, .qf-num svg {
  margin-right: 8px;
  width: 18px; height: 18px;
  stroke-width: 1.6;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -3px;
}
.qf-num svg { width: 22px; height: 22px; vertical-align: -5px; margin-right: 12px; }
.fact-bar .fact { gap: 0; } /* margin-right na ikonie wystarczy */
.dist-from { gap: 0; }

/* === SINGLE OBIEKT NOCLEGOWY === */
.single-hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
}
.single-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.single-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 35%, transparent 55%, rgba(0,0,0,0.5) 100%);
}
.single-hero-overlay {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--paper);
  z-index: 5;
  width: min(900px, 90vw);
}
.single-eyebrow {
  font-family: 'Epilogue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.single-h1 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 72, "WONK" 1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.single-meta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 24px;
  font-family: 'Epilogue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.single-meta span { display: flex; align-items: center; gap: 12px; }
.single-meta span::after {
  content: '';
  width: 3px; height: 3px;
  background: currentColor; border-radius: 50%;
  opacity: 0.6;
}
.single-meta span:last-child::after { display: none; }

.single-body {
  padding: 120px 0;
  background: var(--paper);
}
.single-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.single-content {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  font-variation-settings: "opsz" 22, "SOFT" 60;
}
.single-content .single-lead {
  font-size: 22px;
  line-height: 1.5;
  color: var(--moss-deep);
  font-style: italic;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 28, "WONK" 1;
}
.single-content p { margin-bottom: 20px; }
.single-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  margin: 48px 0 16px;
}
.single-content ul, .single-content ol {
  margin: 0 0 20px 24px;
}
.single-content li { margin-bottom: 8px; }

.single-aside {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 40px;
  position: sticky;
  top: 100px;
}
.single-aside h3 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--moss-deep);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 32, "WONK" 1;
}
.single-prices {
  border-top: 1px solid var(--line);
}
.single-prices .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.single-prices .pr-label {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--ink);
}
.single-prices .pr-amount {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--moss-deep);
  white-space: nowrap;
  font-variation-settings: "opsz" 22, "WONK" 1;
}
.single-note {
  margin-top: 20px;
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-mute);
  font-style: italic;
}
.single-trust {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px;
  padding: 11px 14px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.single-trust:hover { border-color: var(--tan); }
.single-trust .st-stars { color: #D8A63C; font-size: 15px; letter-spacing: 1px; line-height: 1; }
.single-trust .st-text { font-family: 'Epilogue', sans-serif; font-size: 13px; color: var(--ink); line-height: 1.3; }
.single-trust .st-text strong { font-weight: 700; }
.single-quote {
  margin: 16px 0 0;
  padding: 15px 16px 15px 18px;
  background: var(--paper-deep);
  border-left: 3px solid var(--tan);
  border-radius: 5px;
}
.single-quote p {
  margin: 0 0 9px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.single-quote cite {
  display: block;
  font-family: 'Epilogue', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* === ZAREZERWUJ - pelnoekranowe CTA (book-cta) === */
.book-cta { position: relative; overflow: hidden; display: flex; align-items: flex-end; min-height: 660px; }
.book-cta-bg { position: absolute; inset: 0; z-index: 0; }
.book-cta-bg picture { display: block; width: 100%; height: 100%; }
.book-cta-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.book-cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(24,16,9,0.74) 0%, rgba(24,16,9,0.58) 38%, rgba(24,16,9,0.58) 62%, rgba(24,16,9,0.9) 100%); }
.book-cta-inner { position: relative; z-index: 1; width: 100%; max-width: 720px; margin: 0 auto; padding: 90px 24px 80px; text-align: center; color: var(--paper); }
.book-cta .eyebrow.accent { color: var(--tan); }
.book-cta h2 { font-family: 'Fraunces', serif; font-size: clamp(40px, 6vw, 72px); font-weight: 500; line-height: 1.02; letter-spacing: -0.02em; margin: 10px 0 20px; color: var(--paper); font-variation-settings: "opsz" 72, "SOFT" 80; }
.book-cta h2 .accent { color: var(--tan); font-style: italic; }
.book-cta .eyebrow.accent, .book-cta h2, .book-cta-lead, .book-cta-sub { text-shadow: 0 1px 18px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.35); }
.book-cta-lead { font-family: 'Fraunces', serif; font-size: 17px; line-height: 1.6; color: rgba(242,233,214,0.97); max-width: 560px; margin: 0 auto 34px; }
.book-cta-lead strong { color: var(--paper); font-weight: 600; }
.book-cta-phone { display: inline-flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(30px, 5vw, 46px); color: var(--ink); background: var(--paper); padding: 14px 38px; border-radius: 999px; text-decoration: none; letter-spacing: 0.01em; box-shadow: 0 12px 40px rgba(0,0,0,0.25); transition: transform 0.2s, background 0.2s; }
.book-cta-phone:hover { background: var(--tan); color: var(--ink); transform: translateY(-2px); }
.book-cta-phone svg { width: 26px; height: 26px; }
.book-cta-sub { font-family: 'Epilogue', sans-serif; font-size: 14px; color: rgba(242,233,214,0.85); margin-top: 20px; }
.book-cta-sub a { color: var(--tan); text-decoration: none; border-bottom: 1px solid rgba(196,160,113,0.5); }
.book-cta-sub a:hover { color: var(--paper); }
.book-cta-meta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 30px; margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(242,233,214,0.18); font-family: 'Epilogue', sans-serif; font-size: 13px; }
.book-cta-meta a { color: rgba(242,233,214,0.82); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s; }
.book-cta-meta a:hover { color: var(--paper); }
.book-cta-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 700px) {
  .book-cta { min-height: 0; }
  .book-cta-inner { padding: 64px 20px 60px; }
  .book-cta h2 { margin-bottom: 16px; }
  .book-cta-lead { font-size: 16px; margin-bottom: 28px; }
  .book-cta-phone { font-size: 32px; padding: 14px 30px; }
  .book-cta-meta { flex-direction: column; gap: 14px; margin-top: 32px; }
}
.single-cta {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transition: background 0.2s;
  text-align: center;
}
.single-cta:hover { background: var(--terra); }
.single-cta .lbl {
  font-family: 'Epilogue', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.single-cta .num {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}

.single-back {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.single-back-link {
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss-deep);
  text-decoration: none;
}
.single-back-link:hover { color: var(--rust); }

@media (max-width: 900px) {
  .single-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .single-aside { position: static; padding: 28px; }
  .single-body { padding: 64px 0; }
  .single-hero { height: 50vh; min-height: 360px; }
}


.menu-item h4 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.menu-item h4 a:hover { color: var(--rust); }

/* === GALERIA na podstronie domu === */
.single-gallery {
  background: var(--paper-2);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.single-inner-wide {
  max-width: 1440px; margin: 0 auto; padding: 0 40px;
}
.gallery-hd {
  text-align: center;
  margin-bottom: 64px;
}
.gallery-hd h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 12px;
  font-variation-settings: "opsz" 56, "SOFT" 80;
}
.gallery-hd h2 em {
  font-style: italic; color: var(--moss-deep);
  font-variation-settings: "opsz" 56, "WONK" 1;
}
.gallery-section {
  margin-bottom: 64px;
}
.gallery-section:last-child { margin-bottom: 0; }
.gallery-section-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-variation-settings: "opsz" 32, "WONK" 1;
}
.gallery-section-title .gs-count {
  font-family: 'Epilogue', sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 8px;
  font-weight: 400;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.gal-item {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: zoom-in;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gal-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.gal-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .single-gallery { padding: 64px 0; }
  .single-inner-wide { padding: 0 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}


.menu-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 24px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: 'Epilogue', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s, gap 0.2s;
}
.menu-cta:hover {
  background: var(--terra);
  gap: 18px;
}
.menu-cta .arr {
  font-size: 16px;
  font-family: 'Fraunces', serif;
  letter-spacing: 0;
}

/* ===== RESPONSIVE - MOBILE (do 768px) ===== */
@media (max-width: 768px) {
  /* Header */
  :root { --header-h: 58px; }
  .site-header { grid-template-columns: auto 1fr auto; padding: 10px 16px; gap: 12px; }
  .hd-brand { font-size: 22px; }
  .hd-brand img { height: 38px; }
  .hd-loc { display: none; }
  .hd-actions { gap: 8px; }
  .hd-phone { font-size: 14px; padding: 9px 16px; }
  .hd-phone::before { font-size: 13px; }

  /* Hero House-of-Spoils */
  .hero { min-height: 580px; height: auto; }
  .hero-banner {
    top: calc(var(--header-h) + 12px);
    flex-direction: column;
    gap: 1px;
    padding: 8px 20px;
    font-size: 11px;
    line-height: 1.45;
    text-align: center;
    border-radius: 14px;
    max-width: calc(100% - 56px);
    background: rgba(28, 20, 12, 0.42);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--paper);
    border: 1px solid rgba(244, 236, 220, 0.28);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  }
  .hero-banner .dot-sep { display: none; }
  .hero-banner .dot-sep { display: none; }
  .hero-banner span { display: block; text-align: center; }
  .hero-overlay { bottom: 56px; padding: 0 20px; width: 100%; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.25em; margin-bottom: 16px; }
  .hero-h1 { font-size: 30px; line-height: 1.15; margin-bottom: 20px; }
  .hero-cta { font-size: 11px; letter-spacing: 0.18em; }

  /* Fact bar - auto-ticker (marquee z bazy); na mobile mniejszy + szybszy */
  .fact-bar::before, .fact-bar::after { width: 32px; }
  .fact-bar-track { font-size: 11.5px; animation-duration: 24s; }
  .fact-bar .fact { padding: 0 16px; }

  /* List od gospodarzy */
  .letter { padding: 64px 0; }
  .letter-wrap { padding: 0 20px; }
  .letter-body { font-size: 17px; }
  /* Stempel "3 pokolenia" - usuniety na mobile (info jest w tekscie i podpisie) */
  .letter-stamp { display: none; }

  /* Quickfacts */
  .quickfacts { padding: 64px 20px; }
  .quickfacts-grid { grid-template-columns: 1fr; gap: 24px; }
  .quickfacts-hd h2 { font-size: 30px; }
  .qf-q { font-size: 19px; }

  /* Pory roku - wszystkie sezony w 1 kolumnie */
  .seasons { padding: 32px 0 64px; }
  .seasons-intro { margin-bottom: 48px; padding: 0 20px; }
  .seasons-intro h2 { font-size: 28px; }
  .season { grid-template-columns: 1fr !important; gap: 24px; padding: 0 20px; margin-bottom: 56px; }
  .season .season-img { order: 1 !important; aspect-ratio: 16/9 !important; }
  .season .season-body { order: 2 !important; padding: 0 !important; }
  .season h2 { font-size: 36px; }
  .season.summer .season-body-grid { grid-template-columns: 1fr; padding: 0; }
  .season.winter .winter-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .page-num .roman { font-size: 36px; }

  /* Domy menu */
  .menu-section { padding: 64px 0; }
  .menu-intro { padding: 0 20px; margin-bottom: 48px; }
  .menu-intro h2 { font-size: 32px; }
  .menu-list { padding: 0 20px; }
  .menu-item { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .menu-item:hover { padding: 32px 0; }
  .menu-item:nth-child(even) .menu-img { order: -1; }
  .menu-item h4 { font-size: 32px; }
  .menu-item-num { position: static; margin-bottom: 8px; }
  .menu-img { aspect-ratio: 16/10; }
  .menu-cta { width: 100%; justify-content: center; }
  .features { gap: 6px; }
  .features .feat { font-size: 10px; padding: 4px 8px; }
  /* Mniej tresci na mobile: chowamy dlugi opis (szczegoly na podstronie domu) */
  .menu-item-text > p { display: none; }
  .best-for { margin-bottom: 16px; }

  /* Opinie - mniejsze na mobile, zeby nie bylo za duzo dla oczu */
  .reviews { padding: 56px 20px; }
  .reviews-hd { flex-direction: column; align-items: flex-start; margin-bottom: 36px; gap: 16px; }
  .reviews-hd h2 { font-size: 24px; line-height: 1.2; }
  .reviews-rating { text-align: left; }
  .reviews-rating .big { font-size: 40px; }
  .reviews-rating .small { font-size: 10px; }
  .reviews-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .review .qmark { display: none; }
  .reviews-list > .review { grid-column: auto !important; padding-top: 0 !important; }
  .review blockquote { font-size: 13px; line-height: 1.5; }
  .review .who { font-size: 11px; }
  .review.who, .review .who { gap: 10px; margin-top: 10px; padding-top: 10px; }
  .reviews-bg-50 { font-size: 110vw; }

  /* Mapa */
  .map-section { padding: 64px 0 0; }
  .map-hd { grid-template-columns: 1fr; gap: 16px; padding: 0 20px; margin-bottom: 32px; }
  .map-hd h2 { font-size: 28px; }
  .map-frame { height: 320px; }
  /* Dystanse - kompaktowy uklad: 2 wiersze na pozycje zamiast 4 */
  .dist-inner { grid-template-columns: 1fr; }
  .dist {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    column-gap: 12px;
    row-gap: 1px;
    padding: 11px 20px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .dist:last-child { border-bottom: none; }
  .dist .dist-from {
    grid-column: 1; grid-row: 2;
    margin: 0; font-size: 10px; letter-spacing: 0.16em;
    color: var(--ink-mute); gap: 6px;
  }
  .dist .dist-from svg, .dist .dist-from [data-lucide] { width: 12px; height: 12px; }
  .dist .dist-name { grid-column: 1; grid-row: 1; font-size: 14px; margin: 0; }
  .dist .dist-km { grid-column: 2; grid-row: 1; text-align: right; font-size: 14px; white-space: nowrap; margin: 0; }
  .dist .dist-time { grid-column: 2; grid-row: 2; text-align: right; font-size: 11px; color: var(--ink-mute); white-space: nowrap; margin: 0; }
  .gps-line { padding: 24px 20px 64px; }

  /* Kolofon */
  .colophon { grid-template-columns: 1fr; min-height: auto; }
  .colophon-image { aspect-ratio: 16/10; }
  .colophon-text { padding: 48px 24px; }
  .colophon-mid h2 { font-size: 44px; }
  .colophon-bottom { grid-template-columns: 1fr; gap: 24px; }
  .copy-line { gap: 8px; padding: 16px 10px; text-align: center; }
  .copy-line .credit { font-size: 9.5px; letter-spacing: 0.03em; }


  /* Single - podstrony domow */
  .single-hero { min-height: 380px; height: 50vh; }
  .single-h1 { font-size: 36px; }
  .single-meta { gap: 4px 12px; font-size: 11px; }
  .single-body { padding: 48px 0; }
  .single-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .single-aside { position: static; padding: 24px; }
  .single-gallery { padding: 48px 0; }
  .single-inner-wide { padding: 0 16px; }
  .gallery-hd h2 { font-size: 28px; }
  .gallery-section-title { font-size: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* ===== MAŁY MOBILE (do 420px) ===== */
@media (max-width: 420px) {
  .hd-actions .hd-phone { font-size: 13px; letter-spacing: 0.08em; }
  .hero-h1 { font-size: 26px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .season.winter .winter-stats { grid-template-columns: 1fr; }
}


/* === STRONA OKOLICA - ATRAKCJE === */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 40%, transparent 55%, rgba(0,0,0,0.55) 100%); }
.page-hero-overlay {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--paper);
  z-index: 5;
  width: min(900px, 90vw);
}
.page-eyebrow {
  font-family: 'Epilogue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.page-h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 80, "SOFT" 80;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.okolica-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

.okolica-intro {
  padding: 80px 0 40px;
  background: var(--paper);
}
.okolica-intro .lead {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.55;
  color: var(--ink);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  font-variation-settings: "opsz" 28, "SOFT" 60;
}
.okolica-intro .lead strong { font-weight: 500; }

.okolica-attractions {
  padding: 40px 0 100px;
  background: var(--paper);
}
.attraction {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.attraction:last-child { border-bottom: 1px solid var(--line); }
.att-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 56px;
  line-height: 0.9;
  color: var(--moss-deep);
  font-variation-settings: "opsz" 72, "WONK" 1;
}
.att-body h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 48, "SOFT" 80;
}
.att-meta {
  font-family: 'Epilogue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.att-body p {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  font-variation-settings: "opsz" 22;
}
.att-body p strong { font-weight: 600; }
.att-body a { color: var(--terra); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: color 0.2s; }
.att-body a:hover { color: var(--moss-deep); }
.att-maps { margin-top: 18px; }
.att-maps-label { font-family: 'Epilogue', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.att-maps-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.att-maps-list a { font-family: 'Epilogue', sans-serif; display: inline-flex; align-items: center; padding: 7px 14px; background: var(--paper-deep); border: 1px solid var(--line); border-radius: 999px; color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 500; line-height: 1.2; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.att-maps-list a:hover { background: var(--tan); border-color: var(--tan); color: #fff; }
.att-maps-src { font-family: 'Epilogue', sans-serif; display: inline-block; font-size: 13px; color: var(--rust); text-decoration: none; border-bottom: 1px dotted currentColor; transition: color 0.2s; }
.att-maps-src:hover { color: var(--moss-deep); }

.okolica-baltic {
  background: var(--paper-2);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.baltic-hd { text-align: center; margin-bottom: 64px; }
.baltic-hd h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 12px;
  font-variation-settings: "opsz" 56, "SOFT" 80;
}
.baltic-hd h2 em { font-style: italic; color: var(--moss-deep); font-variation-settings: "opsz" 56, "WONK" 1; }
.baltic-intro {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 640px;
  margin: 24px auto 0;
}
.baltic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.bal-item {
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.bal-item .bal-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.bal-item .bal-km {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--moss-deep);
  font-variation-settings: "opsz" 24, "WONK" 1;
}

.okolica-back {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.okolica-back-link {
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss-deep);
  text-decoration: none;
}
.okolica-back-link:hover { color: var(--rust); }

@media (max-width: 768px) {
  .okolica-inner { padding: 0 20px; }
  .attraction { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .att-num { font-size: 36px; }
  .att-body h2 { font-size: 26px; }
  .baltic-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .okolica-intro { padding: 48px 0 24px; }
  .okolica-attractions { padding: 24px 0 64px; }
  .okolica-baltic { padding: 64px 0; }
}


/* === STRONA TEKSTOWA (Polityka, Regulamin) === */
.page-hero-slim { height: 40vh; min-height: 300px; }
.page-content-section {
  padding: 80px 0 64px;
  background: var(--paper);
}
.page-content-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}
.page-prose {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  font-variation-settings: "opsz" 22, "SOFT" 60;
}
.page-prose h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  color: var(--moss-deep);
  margin: 48px 0 16px;
  font-variation-settings: "opsz" 36, "WONK" 1;
}
.page-prose h2:first-child { margin-top: 0; }
.page-prose h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  margin: 32px 0 12px;
  color: var(--ink);
}
.page-prose p { margin: 0 0 16px; }
.page-prose ul, .page-prose ol { margin: 0 0 20px 24px; padding: 0; }
.page-prose li { margin-bottom: 8px; }
.page-prose strong { color: var(--ink); background: linear-gradient(transparent 65%, rgba(152,160,134,0.28) 65%); padding: 0 1px; }
.page-prose a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }
.page-prose a:hover { color: var(--moss-deep); }
.page-prose hr {
  border: 0; height: 1px; background: var(--line);
  margin: 48px 0;
}
.page-prose .updated-date {
  font-family: 'Epilogue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 40px;
  display: block;
}

@media (max-width: 768px) {
  .page-content-section { padding: 48px 0 40px; }
  .page-content-inner { padding: 0 20px; }
  .page-prose { font-size: 16px; }
  .page-prose h2 { font-size: 24px; margin: 36px 0 12px; }
}


/* === NAWIGACJA - dropdown + hamburger === */
.hd-nav { position: relative; }
.hd-menu { display: flex; gap: 28px; list-style: none; align-items: center; margin: 0; padding: 0; }
.hd-menu > li { position: relative; }
.hd-menu a {
  font-family: 'Epilogue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  padding: 8px 0;
  display: inline-block;
  transition: opacity 0.2s;
}
.hd-menu a { color: var(--ink); }
.hd-menu a:hover { opacity: 0.7; }
.hd-sub {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--paper);
  border: 1px solid var(--line);
  list-style: none;
  padding: 12px 0;
  margin: 8px 0 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 110;
}
.has-sub:hover .hd-sub,
.has-sub:focus-within .hd-sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.hd-sub li { margin: 0; }
.hd-sub a {
  display: block;
  padding: 10px 24px;
  color: var(--ink) !important;
  text-shadow: none !important;
  letter-spacing: 0.05em;
  font-size: 13px;
  text-transform: none;
  font-weight: 400;
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 18;
}
.hd-sub a:hover { background: var(--paper-2); color: var(--moss-deep) !important; opacity: 1; }
.hd-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 4px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.hd-burger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.2s; }

.hd-burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hd-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hd-burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 768px) {
  .hd-burger { display: flex; }
  .hd-nav .hd-menu {
    display: none;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    background: rgba(60, 45, 30, 0.96);
    backdrop-filter: blur(14px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line-soft);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    z-index: 99;
  }
  .hd-nav .hd-menu.is-open { display: flex; }
  .hd-menu a { color: var(--paper) !important; text-shadow: none; font-size: 14px; }
  .hd-menu > li { width: 100%; border-bottom: 1px solid rgba(244,236,220,0.15); padding-bottom: 12px; text-align: center; }
  .hd-menu > li:last-child { border-bottom: none; }
  .hd-sub {
    position: static;
    background: transparent;
    border: 0;
    padding: 8px 0 0;
    margin: 4px 0 0;
    min-width: auto;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    transition: none;
  }
  .hd-sub a { color: rgba(244,236,220,0.85) !important; padding: 6px 0; font-size: 13px; }
  .hd-sub a:hover { background: transparent; color: var(--gold) !important; }
}


/* === FOOTER-EXTRA (4-col z linkami) - JASNE TLO === */
.footer-extra {
  background: var(--paper-deep);
  border-top: 1px solid rgba(61,45,30,0.08);
  padding: 64px 0 40px;
  color: var(--ink);
}
.footer-extra-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.fe-col h4.fe-h {
  font-family: 'Epilogue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss-deep);
  margin-bottom: 18px;
  font-weight: 500;
}
.fe-col ul { list-style: none; padding: 0; margin: 0; }
.fe-col li { margin-bottom: 10px; line-height: 1.4; }
.fe-col a {
  color: var(--ink);
  text-decoration: none;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  transition: color 0.2s;
  font-variation-settings: "opsz" 18;
}
.fe-col a:hover { color: var(--rust); }
.fe-col .fe-phone { font-size: 19px; font-weight: 500; font-variant-numeric: tabular-nums; }
/* Facebook - ikona w stopce i naglowku */
.fe-social a { display: inline-flex; align-items: center; gap: 8px; }
.fe-social svg { width: 17px; height: 17px; flex-shrink: 0; }
.hd-fb { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; color: var(--ink-soft); transition: color 0.2s, transform 0.2s; }
.hd-fb svg { width: 22px; height: 22px; }
.hd-fb:hover { color: var(--rust); transform: translateY(-1px); }
@media (max-width: 600px) { .hd-fb { display: none; } }
/* WhatsApp - plywajacy przycisk (wszystkie strony) */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 80; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 22px rgba(37,211,102,0.45); transition: transform 0.2s, box-shadow 0.2s; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.07); box-shadow: 0 10px 28px rgba(37,211,102,0.55); color: #fff; }
@media (max-width: 768px) { .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; } .wa-float svg { width: 28px; height: 28px; } }
/* NA MIEJSCU - amenities (front) */
.amenities { padding: 96px 0; background: var(--paper); }
.amenities-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.amenities-hd { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.amenities-hd h2 { font-family: 'Fraunces', serif; font-weight: 460; font-size: clamp(30px, 4vw, 50px); line-height: 1.06; color: var(--ink); margin: 14px 0 16px; letter-spacing: -0.02em; }
.amenities-hd h2 em { font-style: italic; color: var(--moss-deep); font-variation-settings: "opsz" 40, "WONK" 1; }
.amenities-lead { font-size: 17px; line-height: 1.6; color: var(--ink-soft); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.am-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 6px; padding: 28px 24px; }
.am-card svg { width: 30px; height: 30px; color: var(--moss-deep); stroke-width: 1.5; margin-bottom: 14px; display: block; }
.am-card h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 19px; color: var(--ink); margin: 0 0 7px; line-height: 1.2; }
.am-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .amenities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .amenities { padding: 64px 0; } .amenities-inner { padding: 0 20px; } .amenities-grid { gap: 12px; } }
.fe-col .fe-small {
  color: var(--ink-soft);
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-extra { padding: 40px 0 24px; }
  .footer-extra-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding: 0 20px; text-align: center; }
  .fe-col h4.fe-h { margin-bottom: 12px; }
}
@media (max-width: 420px) {
  .footer-extra-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(244,236,220,0.18);
  border-radius: 4px;
  padding: 24px 28px;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.cookie-banner.is-open { display: block; }
.cookie-banner h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 28;
}
.cookie-banner p {
  font-family: 'Epilogue', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(244,236,220,0.85);
  margin-bottom: 16px;
}
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-banner strong, .cookie-banner b {
  color: var(--paper);
  background: none;
  padding: 0;
  font-weight: 600;
}
.cookie-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cookie-actions button {
  font-family: 'Epilogue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 18px;
  border: 1px solid rgba(244,236,220,0.3);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cookie-actions button:hover { border-color: var(--gold); color: var(--gold); }
.cookie-actions .accept-all { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.cookie-actions .accept-all:hover { background: var(--paper); color: var(--ink); }
.cookie-prefs {
  display: none;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(244,236,220,0.15);
}
.cookie-prefs.is-open { display: block; }
.cookie-pref-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(244,236,220,0.85);
}
.cookie-pref-row input { margin: 0; }
.cookie-pref-row label { flex: 1; }
.cookie-pref-row .pref-name { font-weight: 600; color: var(--paper); }

@media (max-width: 768px) {
  .cookie-banner { padding: 18px 20px; left: 8px; right: 8px; bottom: 72px; }
  .cookie-banner h3 { font-size: 18px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { width: 100%; }
}


/* === MEDIA PLACEHOLDERY (sloty na zdjecia/wideo od klienta) === */
.media-placeholder {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 12px;
 text-align: center;
 width: 100%;
 height: 100%;
 min-height: 220px;
 padding: 28px 20px;
 background:
   repeating-linear-gradient(45deg, rgba(152,160,134,0.07), rgba(152,160,134,0.07) 14px, transparent 14px, transparent 28px),
   var(--paper-2);
 border: 1.5px dashed var(--moss-deep);
 color: var(--ink-mute);
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 line-height: 1.5;
}
.media-placeholder svg {
 width: 30px; height: 30px;
 stroke: var(--moss-deep);
 opacity: 0.75;
}
.media-placeholder em {
 display: block;
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 16px;
 letter-spacing: 0;
 text-transform: none;
 color: var(--ink-soft);
 font-variation-settings: "opsz" 20, "WONK" 1;
}

/* Placeholdery przy atrakcjach (okolica) */
.attraction .att-media {
 grid-column: 1 / -1;
 aspect-ratio: 4 / 3;
 margin-top: 8px;
}
@media (min-width: 901px) {
 .attraction { grid-template-columns: 96px 1fr 300px !important; align-items: start; }
 .attraction .att-media { grid-column: 3; margin-top: 6px; aspect-ratio: auto; min-height: 200px; align-self: stretch; }
 .attraction .att-media .media-placeholder { min-height: 200px; }
}
/* okolica: zdjecia atrakcji w slocie */
.attraction .att-media { overflow: hidden; border-radius: 4px; }
.attraction .att-media picture { display: block; width: 100%; height: 100%; }
.attraction .att-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* okolica: para zdjec (dwie stajnie) */
.attraction .att-media.att-media-pair { overflow: visible; border-radius: 0; aspect-ratio: auto; display: grid; gap: 8px; grid-template-columns: 1fr 1fr; }
.attraction .att-media.att-media-pair picture { width: 100%; height: auto; border-radius: 4px; overflow: hidden; display: block; }
.attraction .att-media.att-media-pair img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
@media (min-width: 901px) {
 .attraction .att-media.att-media-pair { grid-template-columns: 1fr; grid-auto-rows: 1fr; height: 360px; min-height: 0; align-self: start; }
 .attraction .att-media.att-media-pair picture { height: 100%; }
 .attraction .att-media.att-media-pair img { height: 100%; aspect-ratio: auto; }
}

/* Placeholder wideo na podstronie domu */
.single-video-ph {
 max-width: 1240px;
 margin: 0 auto;
 padding: 0 40px 96px;
}
.single-video-ph .media-placeholder { aspect-ratio: 16 / 9; min-height: 0; }
@media (max-width: 768px) {
 .single-video-ph { padding: 0 20px 56px; }
}

/* Zdjecie w tresci FAQ/prozy */
.page-prose figure { margin: 28px 0 36px; }
.page-prose figure img { width: 100%; height: auto; display: block; border-radius: 2px; }
.page-prose figcaption {
 margin-top: 12px;
 text-align: center;
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 color: var(--ink-mute);
}

/* === WIDEO-SPACERY PO DOMACH (Od srodka) === */
.house-videos {
 background: var(--paper-2);
 border-top: 1px solid var(--line);
 padding: 96px 0;
}
.hv-grid {
 display: grid;
 gap: 28px;
 margin-top: 48px;
}
.hv-count-1 { grid-template-columns: minmax(0, 400px); justify-content: center; }
.hv-count-2 { grid-template-columns: repeat(2, minmax(0, 400px)); justify-content: center; }
.hv-count-3 { grid-template-columns: repeat(3, minmax(0, 380px)); justify-content: center; }
.hv-item { margin: 0; }
.hv-item video {
 width: 100%;
 aspect-ratio: 9 / 16; /* filmy krecone pionowo (telefon) */
 object-fit: cover;
 display: block;
 background: var(--ink);
 border-radius: 2px;
 box-shadow: 0 10px 30px rgba(61,45,30,0.10);
}
.hv-item figcaption {
 margin-top: 14px;
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 color: var(--ink-soft);
 text-align: center;
}
@media (max-width: 900px) {
 .house-videos { padding: 56px 0; }
 .hv-grid { grid-template-columns: minmax(0, 420px) !important; justify-content: center; gap: 32px; margin-top: 32px; }
}


/* === WEDKARSTWO (strona glowna) - ciemna sekcja promujaca lowisko === */
.eyebrow.gold { color: var(--gold); }
.fishing {
 background: var(--moss-deep);
 color: var(--paper);
 padding: 120px 0;
 position: relative;
 overflow: hidden;
}
.fishing-inner {
 max-width: 1280px;
 margin: 0 auto;
 padding: 0 40px;
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
 gap: 72px;
 align-items: center;
}
.fishing-text h2 {
 font-family: 'Fraunces', serif;
 font-weight: 420;
 font-size: clamp(34px, 4.4vw, 56px);
 line-height: 1.06;
 letter-spacing: -0.015em;
 margin: 18px 0 22px;
 color: var(--paper);
}
.fishing-text h2 em {
 font-style: italic;
 color: var(--gold);
 font-variation-settings: "opsz" 40, "WONK" 1;
}
.fishing-lead {
 font-size: 17px;
 line-height: 1.6;
 color: rgba(244, 236, 220, 0.85);
 max-width: 52ch;
}
.fishing-lead strong { color: var(--paper); }
.fishing-species {
 list-style: none;
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 margin: 26px 0 0;
 padding: 0;
}
.fishing-species li {
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 padding: 7px 16px;
 border: 1px solid rgba(244, 236, 220, 0.35);
 border-radius: 100px;
 color: rgba(244, 236, 220, 0.9);
}
.fishing-facts {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 0;
 margin: 36px 0 0;
 border-top: 1px solid rgba(244, 236, 220, 0.2);
 padding-top: 28px;
}
.fishing-facts .ff {
 padding: 0 20px;
 border-left: 1px solid rgba(244, 236, 220, 0.2);
}
.fishing-facts .ff:first-child { border-left: none; padding-left: 0; }
.ff-num {
 display: block;
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 26px;
 font-weight: 500;
 color: var(--gold);
 line-height: 1;
 margin-bottom: 8px;
 font-variation-settings: "opsz" 32;
 white-space: nowrap;
}
.ff-desc {
 display: block;
 font-family: 'Epilogue', sans-serif;
 font-size: 11.5px;
 letter-spacing: 0.06em;
 line-height: 1.5;
 color: rgba(244, 236, 220, 0.75);
}
.fishing-cta {
 display: inline-block;
 margin-top: 34px;
 font-family: 'Epilogue', sans-serif;
 font-size: 12px;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 font-weight: 600;
 color: var(--paper);
 text-decoration: none;
 border-bottom: 1px solid var(--gold);
 padding-bottom: 6px;
 transition: color 0.2s;
}
.fishing-cta:hover { color: var(--gold); }
.fishing-cta .arr { transition: transform 0.2s; display: inline-block; }
.fishing-cta:hover .arr { transform: translateX(4px); }
.fishing-gallery {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 16px;
}
.fishing-gallery figure { margin: 0; }
.fg-item img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 border-radius: 2px;
 box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}
.fg-wide { grid-column: 1 / -1; }
.fg-wide img { aspect-ratio: 16 / 10; }
.fg-item:not(.fg-wide) img { aspect-ratio: 4 / 5; }
.fishing-caption {
 grid-column: 1 / -1;
 font-family: 'Fraunces', serif;
 font-style: italic;
 font-size: 14px;
 color: rgba(244, 236, 220, 0.6);
 text-align: right;
 margin-top: 2px;
}

/* === BANER PORY ROKU - kompaktowy link do podstrony === */
.seasons-banner {
 background: var(--paper-2);
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
}
.seasons-banner-link {
 max-width: 1280px;
 margin: 0 auto;
 padding: 30px 40px;
 display: flex;
 align-items: center;
 gap: 32px;
 text-decoration: none;
 color: var(--ink);
}
.sb-thumbs { display: flex; flex-shrink: 0; }
.sb-thumb {
 width: 68px;
 height: 68px;
 border-radius: 50%;
 overflow: hidden;
 border: 3px solid var(--paper-2);
 margin-left: -14px;
 box-shadow: 0 2px 10px rgba(61, 45, 30, 0.18);
}
.sb-thumb:first-child { margin-left: 0; }
.sb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sb-eyebrow {
 display: block;
 font-family: 'Epilogue', sans-serif;
 font-size: 10px;
 letter-spacing: 0.28em;
 text-transform: uppercase;
 font-weight: 600;
 color: var(--moss-deep);
 margin-bottom: 6px;
}
.sb-title {
 font-family: 'Fraunces', serif;
 font-size: clamp(18px, 2.2vw, 24px);
 font-weight: 450;
 line-height: 1.25;
 letter-spacing: -0.01em;
 font-variation-settings: "opsz" 28;
}
.sb-title .arr { transition: transform 0.2s; display: inline-block; color: var(--rust); }
.seasons-banner-link:hover .sb-title { color: var(--rust); }
.seasons-banner-link:hover .sb-title .arr { transform: translateX(5px); }

@media (max-width: 900px) {
 .fishing { padding: 80px 0; }
 .fishing-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
 .fishing-facts .ff { padding: 0 14px; }
 .fishing-caption { text-align: left; }
 .seasons-banner-link { padding: 26px 24px; gap: 20px; flex-direction: column; align-items: flex-start; }
 .sb-thumb { width: 52px; height: 52px; margin-left: -10px; }
}
@media (max-width: 480px) {
 .fishing-facts { grid-template-columns: 1fr; gap: 18px; }
 .fishing-facts .ff { border-left: none; padding: 0; }
}

/* === STRONA WEDKARSTWO (/wedkarstwo/) === */
.wedk-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* Gdzie lowisz - 3 karty */
.wedk-how { padding: 88px 0; background: var(--paper); }
.wedk-how-hd { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.wedk-how-hd h2 { font-family: 'Fraunces', serif; font-weight: 460; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; color: var(--ink); margin: 14px 0 0; letter-spacing: -0.015em; font-variation-settings: "opsz" 44; }
.wedk-how-hd h2 em { font-style: italic; color: var(--moss-deep); font-variation-settings: "opsz" 40, "WONK" 1; }
.wedk-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.wedk-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: 4px; padding: 32px 28px; }
.wedk-card .wedk-ic { width: 34px; height: 34px; stroke: var(--moss-deep); margin-bottom: 16px; }
.wedk-card h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; color: var(--ink); margin: 0 0 10px; }
.wedk-card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* Zasady lowiska */
.wedk-rules { padding: 88px 0; background: var(--paper-2); border-top: 1px solid var(--line); }
.wedk-rules h2 { font-family: 'Fraunces', serif; font-weight: 460; font-size: clamp(28px, 3.4vw, 44px); color: var(--ink); text-align: center; margin: 0 0 40px; letter-spacing: -0.015em; font-variation-settings: "opsz" 44; }
.wedk-rules h2 em { font-style: italic; color: var(--moss-deep); font-variation-settings: "opsz" 40, "WONK" 1; }
.wedk-rules-list { max-width: 760px; margin: 0 auto; list-style: none; padding: 0; }
.wedk-rules-list li { display: grid; grid-template-columns: 32px 1fr; gap: 18px; align-items: start; padding: 20px 0; border-top: 1px solid var(--line); font-size: 16px; line-height: 1.6; color: var(--ink); }
.wedk-rules-list li:last-child { border-bottom: 1px solid var(--line); }
.wedk-rules-list .rn { font-family: 'Fraunces', serif; font-style: italic; font-size: 20px; color: var(--gold); line-height: 1.4; }
.wedk-rules-list strong { font-weight: 500; }

/* Media - wideo + zdjecia w drodze */
.wedk-media { padding: 88px 0; background: var(--paper); }
.wedk-media-hd { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.wedk-media-hd h2 { font-family: 'Fraunces', serif; font-weight: 460; font-size: clamp(28px, 3.4vw, 44px); color: var(--ink); margin: 14px 0 12px; letter-spacing: -0.015em; font-variation-settings: "opsz" 44; }
.wedk-media-hd h2 em { font-style: italic; color: var(--moss-deep); font-variation-settings: "opsz" 40, "WONK" 1; }
.wedk-media-hd p { font-size: 15px; line-height: 1.6; color: var(--ink-mute); margin: 0; }
.wedk-video { max-width: 320px; margin: 0 auto; border-radius: 6px; overflow: hidden; background: #000; box-shadow: 0 18px 50px rgba(61,45,30,0.22); }
.wedk-video video { width: 100%; height: auto; display: block; aspect-ratio: 9 / 16; object-fit: cover; }
/* sekcja FILM - zarybianie (2 kolumny: tekst | wideo) */
.wedk-film { padding: 84px 0; background: var(--paper-2); }
.wedk-film-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr minmax(0, 320px); gap: 56px; align-items: center; }
.wedk-film-text .eyebrow { display: block; margin-bottom: 14px; }
.wedk-film-text h2 { font-family: 'Fraunces', serif; font-weight: 460; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; color: var(--ink); margin: 0 0 18px; letter-spacing: -0.015em; font-variation-settings: "opsz" 44; }
.wedk-film-text h2 em { font-style: italic; color: var(--moss-deep); font-variation-settings: "opsz" 40, "WONK" 1; }
.wedk-film-text p { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 12px; max-width: 46ch; }
.wedk-film-text p strong { font-weight: 500; color: var(--ink); }
.wedk-film-note { font-family: 'Fraunces', serif; font-style: italic; font-size: 15px; color: var(--ink-mute); }
.wedk-film .wedk-video { margin: 0; }
@media (max-width: 768px) {
 .wedk-film { padding: 56px 0; }
 .wedk-film-inner { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
 .wedk-film .wedk-video { margin: 0 auto; }
}
.wedk-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.wedk-gallery .rg-item { margin: 0; border-radius: 4px; overflow: hidden; }
.wedk-gallery .rg-item img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }

/* CTA */
.wedk-cta { background: var(--moss-deep); color: var(--paper); padding: 80px 0; text-align: center; }
.wedk-cta-ic { width: 40px; height: 40px; stroke: var(--gold); margin: 0 auto 18px; display: block; }
.wedk-cta h2 { font-family: 'Fraunces', serif; font-weight: 440; font-size: clamp(28px, 3.6vw, 46px); color: var(--paper); margin: 0 0 16px; letter-spacing: -0.015em; font-variation-settings: "opsz" 46; }
.wedk-cta h2 em { font-style: italic; color: var(--gold); font-variation-settings: "opsz" 40, "WONK" 1; }
.wedk-cta p { font-size: 16px; line-height: 1.6; color: rgba(244,236,220,0.85); max-width: 56ch; margin: 0 auto 32px; }
.wedk-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.wedk-btn { display: inline-block; font-family: 'Epilogue', sans-serif; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; padding: 16px 30px; border-radius: 100px; text-decoration: none; transition: all 0.2s; }
.wedk-btn-primary { background: var(--gold); color: var(--ink); }
.wedk-btn-primary:hover { background: var(--paper); }
.wedk-btn-ghost { border: 1px solid rgba(244,236,220,0.5); color: var(--paper); }
.wedk-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 900px) {
 .wedk-grid3 { grid-template-columns: 1fr; gap: 18px; }
 .wedk-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
 .wedk-inner { padding: 0 20px; }
 .wedk-how, .wedk-rules, .wedk-media { padding: 56px 0; }
 .wedk-cta { padding: 60px 0; }
 .wedk-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ============================================================
   TEREN - mozaika kadrow z terenu + lightbox (front-page)
   ============================================================ */
.teren {
 padding: 130px 0 140px;
 background: var(--ink);
 color: var(--paper);
 position: relative;
}
.teren-inner {
 max-width: 1500px;
 margin: 0 auto;
 padding: 0 40px;
}
.teren-hd {
 text-align: center;
 max-width: 760px;
 margin: 0 auto 60px;
}
.teren-hd .eyebrow { color: var(--gold); margin-bottom: 16px; }
.teren-hd h2 {
 font-family: 'Fraunces', serif;
 font-size: clamp(38px, 5vw, 62px);
 font-weight: 400;
 line-height: 1.05;
 letter-spacing: -0.02em;
 color: var(--paper);
 margin-bottom: 22px;
 font-variation-settings: "opsz" 72, "SOFT" 80;
}
.teren-hd h2 em {
 font-style: italic;
 color: var(--gold);
 font-variation-settings: "opsz" 80, "WONK" 1, "SOFT" 100;
}
.teren-lead {
 font-family: 'Fraunces', serif;
 font-size: 18px;
 line-height: 1.65;
 color: rgba(244, 236, 220, 0.78);
 font-variation-settings: "opsz" 22, "SOFT" 60;
}
.teren-count {
 display: block;
 margin-top: 18px;
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 font-weight: 700;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: var(--gold);
 opacity: .85;
}

/* --- mozaika: 12 kolumn, pasma po 5 kafli wypelniaja sie bez dziur --- */
.teren-mosaic {
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 grid-auto-rows: 232px; /* kafel 3 kol. = ok. 3:2, czyli proporcja zdjecia - zero brutalnego kadrowania */
 gap: 10px;
}
.tm-item {
 position: relative;
 display: block;
 overflow: hidden;
 grid-column: span 3;
 grid-row: span 1;
 padding: 0;
 border: 0;
 background: #241a12;
 cursor: zoom-in;
 border-radius: 2px;
 -webkit-appearance: none;
 appearance: none;
}
.tm-item.tm-big  { grid-column: span 6; grid-row: span 2; }
.tm-item.tm-wide { grid-column: span 6; grid-row: span 2; }
.tm-item picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.tm-item img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 transition: transform .7s cubic-bezier(.2,.7,.3,1), filter .5s ease;
}
.tm-item.tm-pion img { object-position: center 38%; }
.tm-item::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, rgba(36,26,18,0) 45%, rgba(36,26,18,.82) 100%);
 opacity: 0;
 transition: opacity .45s ease;
 pointer-events: none;
}
.tm-cap {
 position: absolute;
 left: 18px;
 right: 18px;
 bottom: 14px;
 z-index: 2;
 font-family: 'Epilogue', sans-serif;
 font-size: 13px;
 line-height: 1.35;
 font-weight: 500;
 color: var(--paper);
 text-align: left;
 opacity: 0;
 transform: translateY(8px);
 transition: opacity .4s ease, transform .45s cubic-bezier(.2,.7,.3,1);
 pointer-events: none;
}
.tm-item.tm-big .tm-cap { font-size: 16px; }
.tm-item:hover img,
.tm-item:focus-visible img { transform: scale(1.045); }
.tm-item:hover::after,
.tm-item:focus-visible::after { opacity: 1; }
.tm-item:hover .tm-cap,
.tm-item:focus-visible .tm-cap { opacity: 1; transform: none; }
.tm-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --- lightbox --- */
.tlb {
 position: fixed;
 inset: 0;
 z-index: 9999;
 background: rgba(20, 14, 9, .96);
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 40px 72px 76px;
 animation: tlbIn .25s ease;
}
.tlb[hidden] { display: none; }
@keyframes tlbIn { from { opacity: 0 } to { opacity: 1 } }
.tlb-stage {
 margin: 0;
 max-width: 100%;
 max-height: 100%;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 18px;
}
.tlb-img {
 max-width: 100%;
 max-height: calc(100vh - 160px);
 object-fit: contain;
 border-radius: 2px;
 box-shadow: 0 24px 70px rgba(0,0,0,.5);
}
.tlb-meta {
 display: flex;
 align-items: baseline;
 gap: 16px;
 font-family: 'Epilogue', sans-serif;
 color: rgba(244,236,220,.92);
 font-size: 14px;
}
.tlb-count { color: var(--gold); font-size: 12px; letter-spacing: .1em; }
.tlb-close, .tlb-nav {
 position: absolute;
 background: rgba(244,236,220,.10);
 border: 1px solid rgba(244,236,220,.22);
 color: var(--paper);
 cursor: pointer;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: background .25s ease, border-color .25s ease;
 line-height: 1;
}
.tlb-close:hover, .tlb-nav:hover { background: rgba(244,236,220,.2); border-color: var(--gold); }
.tlb-close { top: 24px; right: 24px; width: 44px; height: 44px; font-size: 26px; }
.tlb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 30px; }
.tlb-prev { left: 20px; }
.tlb-next { right: 20px; }

@media (max-width: 1399px) {
 .teren-mosaic { grid-auto-rows: 16.5vw; }
}
@media (max-width: 1100px) {
 .teren-mosaic { grid-auto-rows: 22vw; }
 .tm-item { grid-column: span 4; }
 .tm-item.tm-big { grid-column: span 8; grid-row: span 2; }
 .tm-item.tm-wide { grid-column: span 12; grid-row: span 2; }
}
@media (max-width: 640px) {
 .teren { padding: 84px 0 90px; }
 .teren-inner { padding: 0 16px; }
 .teren-hd { margin-bottom: 40px; }
 .teren-mosaic { grid-auto-rows: 30vw; gap: 6px; }
 .tm-item { grid-column: span 6; }
 .tm-item.tm-big { grid-column: span 12; grid-row: span 2; }
 .tm-item.tm-wide { grid-column: span 12; grid-row: span 2; }
 .tm-cap { display: none; }
 .tlb { padding: 16px 12px 64px; }
 .tlb-img { max-height: calc(100vh - 130px); }
 .tlb-nav { width: 42px; height: 42px; font-size: 24px; }
 .tlb-prev { left: 8px; } .tlb-next { right: 8px; }
 .tlb-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
 .tm-item img, .tm-cap, .tm-item::after { transition: none; }
 .tlb { animation: none; }
}

/* ============================================================
   LEJEK: hero CTA-row, skrot terenu, sticky pasek mobile
   ============================================================ */
.hero-cta-row {
 display: flex;
 gap: 34px;
 align-items: baseline;
 flex-wrap: wrap;
 justify-content: center;
}
.hero-cta-ghost {
 border-bottom-color: rgba(244, 236, 220, 0.45);
 color: rgba(244, 236, 220, 0.85);
}

.tm-item.tm-hidden { display: none; }
.teren-more-wrap { text-align: center; margin-top: 36px; }
.teren-more {
 font-family: 'Epilogue', sans-serif;
 font-size: 12px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 font-weight: 500;
 color: var(--paper);
 background: transparent;
 border: 1px solid rgba(244, 236, 220, 0.35);
 border-radius: 999px;
 padding: 15px 34px;
 cursor: pointer;
 transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.teren-more:hover { border-color: var(--gold); color: var(--gold); }

.cta-dock {
 position: fixed;
 left: 0; right: 0; bottom: 0;
 z-index: 9000;
 display: none;
 grid-template-columns: 1fr 1fr;
 gap: 1px;
 background: rgba(61, 45, 30, 0.35);
 transform: translateY(105%);
 transition: transform .3s cubic-bezier(.2,.7,.3,1);
 padding-bottom: env(safe-area-inset-bottom, 0);
 box-shadow: 0 -8px 28px rgba(36, 26, 18, .28);
}
.cta-dock.show { transform: none; }
.cta-dock a {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 9px;
 padding: 16px 10px;
 font-family: 'Epilogue', sans-serif;
 font-size: 14px;
 font-weight: 600;
 letter-spacing: 0.04em;
 text-decoration: none;
}
.cta-dock svg, .cta-dock i { width: 17px; height: 17px; }
.dock-call { background: var(--moss-deep); color: var(--paper); }
.dock-form { background: var(--paper); color: var(--ink); }
@media (max-width: 860px) {
 .cta-dock { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
 .cta-dock { transition: none; }
}

/* ============================================================
   HOUSES-GRID - czytelne karty domow na glownej
   ============================================================ */
.houses-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 26px;
 max-width: 1320px;
 margin: 0 auto;
 padding: 0 40px;
}
.house-card {
 display: flex;
 flex-direction: column;
 background: var(--paper);
 border: 1px solid var(--line-soft);
 border-radius: 6px;
 overflow: hidden;
 box-shadow: 0 2px 14px rgba(61, 45, 30, 0.06);
 transition: box-shadow .3s ease, transform .3s ease;
}
.house-card:hover {
 box-shadow: 0 14px 34px rgba(61, 45, 30, 0.14);
 transform: translateY(-3px);
}
.house-media {
 position: relative;
 display: block;
 aspect-ratio: 4 / 3;
 overflow: hidden;
}
.house-media picture, .house-media img {
 width: 100%; height: 100%;
 object-fit: cover;
 display: block;
}
.house-media img { transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.house-card:hover .house-media img { transform: scale(1.04); }
.house-num {
 position: absolute;
 top: 14px; left: 14px;
 font-family: 'Epilogue', sans-serif;
 font-size: 11px;
 font-weight: 700;
 letter-spacing: .14em;
 text-transform: uppercase;
 color: var(--paper);
 background: rgba(61, 45, 30, 0.72);
 padding: 6px 12px;
 border-radius: 999px;
}
.house-body {
 display: flex;
 flex-direction: column;
 flex: 1;
 padding: 26px 26px 28px;
}
.house-name {
 font-family: 'Fraunces', serif;
 font-weight: 480;
 font-size: 26px;
 line-height: 1.12;
 letter-spacing: -0.01em;
 margin: 0 0 8px;
 min-height: 2.24em;
}
.house-name a { color: var(--ink); text-decoration: none; }
.house-name a:hover { color: var(--moss-deep); }
.house-for {
 font-family: 'Epilogue', sans-serif;
 font-size: 14.5px;
 line-height: 1.55;
 color: var(--ink-soft);
 margin: 0 0 18px;
}
.house-facts {
 list-style: none;
 margin: 0 0 20px;
 padding: 16px 0 0;
 border-top: 1px solid var(--line-soft);
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.house-facts li {
 display: flex;
 align-items: center;
 gap: 10px;
 font-family: 'Epilogue', sans-serif;
 font-size: 14.5px;
 color: var(--ink);
}
.house-facts svg, .house-facts i {
 width: 17px; height: 17px;
 color: var(--moss-deep);
 flex: 0 0 auto;
}
.house-price {
 display: flex;
 align-items: baseline;
 gap: 7px;
 margin-top: auto;
}
.hp-from, .hp-per {
 font-family: 'Epilogue', sans-serif;
 font-size: 13px;
 color: var(--ink-soft);
}
.hp-amount {
 font-family: 'Fraunces', serif;
 font-size: 32px;
 font-weight: 500;
 color: var(--ink);
 letter-spacing: -0.01em;
}
.house-price-sub {
 font-family: 'Epilogue', sans-serif;
 font-size: 12.5px;
 color: var(--ink-mute);
 margin: 4px 0 18px;
}
.house-cta {
 display: block;
 text-align: center;
 font-family: 'Epilogue', sans-serif;
 font-size: 13px;
 font-weight: 600;
 letter-spacing: .1em;
 text-transform: uppercase;
 color: var(--paper);
 background: var(--moss-deep);
 text-decoration: none;
 padding: 15px 18px;
 border-radius: 4px;
 transition: background .25s ease;
}
.house-cta:hover { background: var(--ink); }
.houses-note {
 text-align: center;
 font-family: 'Epilogue', sans-serif;
 font-size: 13px;
 color: var(--ink-mute);
 margin: 30px auto 0;
 max-width: 640px;
 padding: 0 40px;
}
@media (max-width: 1100px) {
 .houses-grid { grid-template-columns: 1fr; max-width: 640px; gap: 30px; }
 .house-name { min-height: 0; }
 .house-media { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
 .houses-grid { padding: 0 16px; }
 .house-body { padding: 20px 18px 22px; }
 .houses-note { padding: 0 16px; }
}
