/* =========================================================
   Zielony Dom na Wzgórzu — arkusz stylów
   ========================================================= */

:root {
  --forest-950: #0c231b;
  --forest-900: #143529;
  --forest-800: #1e4c3c;
  --forest-700: #2c6650;
  --sage-200: #d7e3d5;
  --sage-100: #e8eee7;
  --sage-50: #f2f6f0;
  --cream: #faf7f0;
  --sand: #e5d9c4;
  --clay: #b95f3c;
  --clay-dark: #9a4b2f;
  --clay-light: #d98a63;
  --ink: #1a211d;
  --muted: #636d67;
  --white: #fff;
  --line: rgba(26, 33, 29, .12);
  --line-strong: rgba(26, 33, 29, .2);

  --shadow-sm: 0 2px 8px rgba(12, 35, 27, .05), 0 8px 24px rgba(12, 35, 27, .05);
  --shadow: 0 4px 14px rgba(12, 35, 27, .06), 0 22px 60px rgba(12, 35, 27, .1);
  --shadow-lg: 0 8px 24px rgba(12, 35, 27, .09), 0 40px 90px rgba(12, 35, 27, .16);

  --radius: 24px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --container: 1180px;
  --header-h: 84px;

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* akcent zmieniany dynamicznie przez sekcję sezonów */
  --season: #7fb069;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* height: auto neutralizuje atrybuty width/height z HTML — bez tego przeglądarka
   traktuje je jak sztywną wysokość i ignoruje aspect-ratio z arkusza stylów */
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--forest-800); color: var(--white); }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg:not(.icon-sprite) {
  width: 1em; height: 1em; flex: none;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}

/* zabezpieczenie przed rozpychaniem kolumn siatki przez długie treści */
.split-layout > *, .rooms-grid > *, .places-grid > *, .contact-grid > *,
.amenities-layout > *, .faq-layout > *, .price-layout > *, .footer-grid > *,
.calc-row > *, .form-row > *, .hero-facts > *, .trust-grid > * { min-width: 0; }

.container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(80px, 9vw, 132px) 0; }
.section-tinted { background: var(--sage-50); }
.section-dark { background: var(--forest-950); color: var(--white); }
.narrow { max-width: 760px; margin-inline: auto; }
.centered { text-align: center; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 9999;
  transform: translateY(-160%); background: var(--white);
  padding: 12px 18px; border-radius: 10px; box-shadow: var(--shadow);
  text-decoration: none; font-weight: 700;
}
.skip-link:focus { transform: none; }

/* ---------- pasek postępu przewijania ---------- */
.scroll-progress {
  position: fixed; z-index: 1100; top: 0; left: 0; right: 0; height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--clay), var(--clay-light));
  box-shadow: 0 0 12px rgba(185, 95, 60, .55);
  transform-origin: left;
}

/* ---------- typografia ---------- */
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.035em;
  font-variation-settings: "opsz" 90;
}
h1 { font-size: clamp(3rem, 6.4vw, 5.9rem); max-width: 15ch; margin-bottom: 26px; }
h2 { font-size: clamp(2.3rem, 4.4vw, 3.9rem); margin-bottom: 20px; }
h3 { line-height: 1.25; letter-spacing: -.015em; }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  color: var(--forest-700);
  font-size: .74rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase;
}
.centered .eyebrow, .section-heading.centered .eyebrow { justify-content: center; }
.eyebrow.light { color: #b8d4bf; }
.eyebrow::before {
  content: ""; width: 26px; height: 1px; flex: none;
  background: currentColor; opacity: .5;
}
.centered .eyebrow::before { display: none; }

.lead { font-size: clamp(1.04rem, 1.5vw, 1.22rem); color: var(--muted); }
.section-heading { margin-bottom: 48px; }
.section-heading > p:last-of-type { max-width: 66ch; color: var(--muted); }
.section-heading.centered > p:last-of-type { margin-inline: auto; }
.section-heading.light p { color: rgba(255,255,255,.7); }

/* ---------- przyciski ---------- */
.button {
  position: relative; display: inline-flex; min-height: 52px;
  padding: 14px 26px; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid var(--clay); border-radius: 999px;
  background: var(--clay); color: var(--white);
  font-size: .92rem; font-weight: 700; letter-spacing: .005em;
  text-decoration: none; cursor: pointer; overflow: hidden;
  box-shadow: 0 3px 10px rgba(185,95,60,.2), 0 14px 34px rgba(185,95,60,.24);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .25s ease, border-color .25s ease;
}
.button::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.28) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
}
.button:hover { transform: translateY(-2px); background: var(--clay-dark); border-color: var(--clay-dark);
  box-shadow: 0 4px 12px rgba(185,95,60,.24), 0 20px 44px rgba(185,95,60,.3); }
.button:hover::before { transform: translateX(120%); }
.button:active { transform: translateY(0); }
.button-small { min-height: 44px; padding: 10px 20px; font-size: .84rem; }
.button-ghost {
  border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.1);
  box-shadow: none; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.button-ghost:hover { background: rgba(255,255,255,.2); border-color: var(--white); box-shadow: none; }
.button-outline {
  border-color: var(--line-strong); background: transparent; color: var(--forest-900); box-shadow: none;
}
.button-outline:hover { background: var(--forest-900); border-color: var(--forest-900); color: var(--white); box-shadow: none; }
.button-full { width: 100%; }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid rgba(185,95,60,.5); outline-offset: 3px; border-radius: 6px;
}

.text-link {
  display: inline-flex; gap: 9px; align-items: center;
  color: var(--forest-800); font-size: .89rem; font-weight: 700; text-decoration: none;
}
.link-arrow { width: 1.1em; height: 1.1em; transition: transform .3s var(--ease-out); }
.text-link:hover .link-arrow { transform: translateX(5px); }

/* ---------- chipy / filtry ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 40px; padding: 8px 17px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: transparent; color: var(--ink);
  font-size: .83rem; font-weight: 700; cursor: pointer;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s var(--ease-out);
}
.chip span { opacity: .45; font-weight: 600; font-variant-numeric: tabular-nums; }
.chip:hover { border-color: var(--forest-800); transform: translateY(-1px); }
.chip.is-active { background: var(--forest-900); border-color: var(--forest-900); color: var(--white); }
.chip.is-active span { opacity: .6; }

/* =========================================================
   NAGŁÓWEK
   ========================================================= */
.site-header {
  position: fixed; z-index: 1000; top: 0; left: 0; right: 0;
  color: var(--white);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(12,35,27,.9);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 10px 34px rgba(0,0,0,.2);
  backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
}
.site-header.is-hidden { transform: translateY(-102%); }

.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; line-height: 1; }
.brand-text strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; letter-spacing: -.02em; }
.brand-text small { display: block; margin-top: 5px; opacity: .78; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid currentColor; border-radius: 50%;
  transition: transform .5s var(--ease-out), background .3s ease;
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); background: rgba(255,255,255,.08); }
.brand-mark svg { width: 27px; height: 27px; stroke-width: 1.7; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a:not(.button) {
  position: relative; font-size: .83rem; font-weight: 600; text-decoration: none;
  opacity: .88; transition: opacity .2s ease;
}
.main-nav > a:not(.button):hover { opacity: 1; }
.main-nav > a:not(.button)::after {
  content: ""; position: absolute; left: 0; bottom: -7px; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .32s var(--ease-out);
}
.main-nav > a:not(.button):hover::after,
.main-nav > a.is-current::after { transform: scaleX(1); transform-origin: left; }
.main-nav > a.is-current { opacity: 1; }

.nav-toggle {
  display: none; width: 46px; height: 46px; padding: 0;
  border: 1px solid rgba(255,255,255,.22); border-radius: 50%;
  background: rgba(255,255,255,.1); cursor: pointer;
}
.nav-toggle-bars { display: grid; gap: 4px; place-items: center; }
.nav-toggle-bars i { display: block; width: 19px; height: 1.8px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s ease; }
.nav-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: min(86svh, 760px);
  display: flex; align-items: flex-end;
  color: var(--white); overflow: hidden;
  background: var(--forest-950);
}
.hero-media { position: absolute; inset: -6% 0; will-change: transform; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 26s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to   { transform: scale(1.13) translate3d(-1.4%, -1.2%, 0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(6,22,16,.72) 0%, rgba(6,22,16,.5) 34%, rgba(6,22,16,.18) 66%, rgba(6,22,16,0) 100%),
    linear-gradient(0deg, rgba(6,22,16,.7) 2%, rgba(6,22,16,.04) 44%, rgba(6,22,16,.3) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: .3; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 2; padding-top: 150px; padding-bottom: 88px; }
/* lżejszy scrim odsłania zdjęcie, więc tekst dostaje własny cień —
   inaczej biała typografia gubi się na jasnych chmurach */
.hero-content h1, .hero-lead, .hero-facts { text-shadow: 0 2px 20px rgba(6,22,16,.55); }
.hero-eyebrow { margin-bottom: 22px; flex-wrap: wrap; }
.hero-eyebrow::before { display: none; }
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--clay-light); flex: none;
  box-shadow: 0 0 0 0 rgba(217,138,99,.7); animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(217,138,99,.6); }
  70%  { box-shadow: 0 0 0 11px rgba(217,138,99,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,138,99,0); }
}
.season-chip {
  padding: 3px 11px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.1);
  font-size: .68rem; letter-spacing: .1em; color: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
}

/* animowane wejście nagłówka słowo po słowie */
h1[data-split] .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
h1[data-split] .word > span {
  display: inline-block;
  transform: translateY(105%);
  animation: wordUp .95s var(--ease-out) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes wordUp { to { transform: translateY(0); } }

.hero-lead {
  max-width: 56ch; margin-bottom: 34px;
  font-size: clamp(1.05rem, 1.65vw, 1.24rem); color: rgba(255,255,255,.84);
  opacity: 0; animation: fadeUp .9s var(--ease-out) .55s forwards;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s var(--ease-out) .7s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.hero-facts {
  max-width: 880px; margin: 38px 0 0; padding: 22px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.2); list-style: none;
  opacity: 0; animation: fadeUp .9s var(--ease-out) .85s forwards;
}
.hero-facts li { display: grid; gap: 3px; padding-right: 24px; }
.hero-facts strong { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; letter-spacing: -.02em; }
.hero-facts li > span { color: rgba(255,255,255,.62); font-size: .76rem; }
.hero-facts strong span { color: inherit; font-size: inherit; }

.hero-meta {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 26px;
  width: min(calc(100% - 44px), var(--container)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  color: rgba(255,255,255,.45); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
}
.scroll-cue { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; }
.scroll-cue i {
  display: block; width: 1px; height: 34px; background: rgba(255,255,255,.3); position: relative; overflow: hidden;
}
.scroll-cue i::after {
  content: ""; position: absolute; inset: 0; background: var(--clay-light);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }

/* =========================================================
   PASEK ATUTÓW
   ========================================================= */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div {
  min-height: 128px; padding: 28px 28px 28px 0;
  display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto;
  column-gap: 14px; align-content: center; border-right: 1px solid var(--line);
}
.trust-grid > div:not(:first-child) { padding-left: 28px; }
.trust-grid > div:last-child { border-right: 0; }
.mini-icon {
  grid-row: 1 / 3; width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; background: var(--sage-100); color: var(--forest-800);
  transition: background .3s ease, color .3s ease, transform .4s var(--ease-out);
}
.mini-icon svg { width: 20px; height: 20px; }
.trust-grid > div:hover .mini-icon { background: var(--forest-900); color: var(--white); transform: scale(1.08) rotate(-4deg); }
.trust-grid strong { font-size: .92rem; }
.trust-grid small { color: var(--muted); font-size: .77rem; }

/* =========================================================
   SEKCJA O MIEJSCU
   ========================================================= */
.intro-section { overflow: hidden; }
.split-layout { display: grid; grid-template-columns: 1.06fr .84fr; gap: clamp(48px, 7vw, 100px); align-items: center; }
.content-column .lead { max-width: 60ch; }
.feature-list { margin: 44px 0 34px; display: grid; gap: 22px; }
.feature-list article { display: grid; grid-template-columns: 52px 1fr; gap: 20px; }
.feature-list article > span {
  width: 48px; height: 48px; display: grid; place-items: center;
  border: 1px solid var(--sand); border-radius: 50%;
  color: var(--clay); font-size: .82rem; font-weight: 800; letter-spacing: .04em;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.feature-list article:hover > span { background: var(--clay); border-color: var(--clay); color: var(--white); }
.feature-list h3 { margin-bottom: 4px; font-size: 1.02rem; }
.feature-list p { margin: 0; color: var(--muted); font-size: .9rem; }

.intro-visual { position: relative; }
.image-frame {
  position: relative; margin: 0; overflow: hidden;
  border-radius: 260px 260px 26px 26px;
  box-shadow: var(--shadow-lg);
}
.image-frame::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); pointer-events: none;
}
.image-frame img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.intro-visual:hover .image-frame img { transform: scale(1.04); }
.intro-badge {
  position: absolute; left: -26px; bottom: 34px;
  display: flex; align-items: center; gap: 13px;
  padding: 15px 20px; border-radius: 16px;
  background: var(--white); box-shadow: var(--shadow);
}
.intro-badge svg { width: 22px; height: 22px; color: var(--clay); }
.intro-badge p { margin: 0; display: grid; }
.intro-badge strong { font-size: .88rem; }
.intro-badge small { color: var(--muted); font-size: .72rem; }

/* =========================================================
   POKOJE
   ========================================================= */
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.room-card {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-image { position: relative; overflow: hidden; }
.room-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,35,27,.28), transparent 45%);
  pointer-events: none;
}
.room-image img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .9s var(--ease-out); }
.room-card:hover .room-image img { transform: scale(1.05); }
.room-badge {
  position: absolute; z-index: 2; top: 18px; left: 18px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(12,35,27,.82); color: var(--white);
  font-size: .74rem; font-weight: 700; letter-spacing: .03em;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.room-body { padding: 32px 34px 34px; }
.card-kicker { margin-bottom: 8px; color: var(--clay); font-size: .71rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.room-body h3 { margin-bottom: 11px; font-family: var(--font-serif); font-weight: 600; font-size: 1.72rem; }
.room-body > p:not(.card-kicker) { color: var(--muted); font-size: .93rem; }
.room-details {
  margin: 24px 0 28px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px; list-style: none; font-size: .84rem;
}
.room-details li { display: flex; align-items: center; gap: 9px; }
.room-details svg { width: 17px; height: 17px; color: var(--clay); }
.room-footer { padding-top: 22px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.room-footer p { margin: 0; display: grid; gap: 2px; }
.room-footer small { color: var(--muted); font-size: .66rem; text-transform: uppercase; letter-spacing: .11em; }
.room-footer strong { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; letter-spacing: -.02em; }
.rooms-note { margin: 28px 0 0; text-align: center; color: var(--muted); font-size: .85rem; }
.rooms-note a { color: var(--forest-800); font-weight: 700; }

/* =========================================================
   UDOGODNIENIA
   ========================================================= */
.amenities-layout { display: grid; grid-template-columns: .74fr 1.26fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.amenities-intro { position: sticky; top: calc(var(--header-h) + 32px); margin-bottom: 0; }
.amenities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.amenities-grid article {
  position: relative; min-height: 186px; padding: 30px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  transition: background .35s ease;
}
.amenities-grid article::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px;
  background: var(--clay); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.amenities-grid article:hover { background: var(--white); }
.amenities-grid article:hover::before { transform: scaleX(1); }
.amenities-grid article > span {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px; background: var(--sage-100); color: var(--forest-800);
  transition: background .3s ease, color .3s ease, transform .45s var(--ease-out);
}
.amenities-grid article:hover > span { background: var(--clay); color: var(--white); transform: translateY(-3px); }
.amenities-grid article > span svg { width: 21px; height: 21px; }
.amenities-grid h3 { margin: 16px 0 7px; font-size: 1rem; }
.amenities-grid p { margin: 0; color: var(--muted); font-size: .85rem; }

/* =========================================================
   GALERIA
   ========================================================= */
.gallery-heading { display: grid; grid-template-columns: 1fr .72fr; gap: 48px; align-items: end; margin-bottom: 30px; }
.gallery-heading > p { color: var(--muted); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }

.gallery-grid { columns: 3; column-gap: 14px; }
.gallery-item {
  position: relative; display: block; width: 100%; margin: 0 0 14px; padding: 0;
  border: 0; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--sage-100); cursor: zoom-in;
  color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent;
  break-inside: avoid; -webkit-column-break-inside: avoid;
  transition: opacity .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gallery-item img { width: 100%; height: auto; transition: transform .7s var(--ease-out), filter .5s ease; }
.gallery-item::after {
  content: ""; position: absolute; inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(8,25,18,.78));
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.gallery-caption {
  position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 14px;
  color: var(--white); font-size: .79rem; font-weight: 700; text-align: left;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease-out);
  pointer-events: none; text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.gallery-item:hover { box-shadow: var(--shadow); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:hover .gallery-caption, .gallery-item:focus-visible .gallery-caption { opacity: 1; transform: none; }
.gallery-item.is-hidden { display: none; }
.gallery-item.is-entering { opacity: 0; transform: scale(.96); }
.gallery-empty { margin-top: 24px; text-align: center; color: var(--muted); }

/* lightbox */
.lightbox {
  width: min(96vw, 1180px); max-width: none; padding: 0; border: 0;
  background: transparent; overflow: visible; color: var(--white);
}
.lightbox::backdrop { background: rgba(4,14,10,.93); backdrop-filter: blur(10px); }
.lightbox[open] { animation: lbIn .32s var(--ease-out); }
@keyframes lbIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.lightbox-figure { margin: 0; }
.lightbox img {
  width: 100%; max-height: 82vh; object-fit: contain;
  border-radius: 16px; background: var(--forest-950);
}
.lightbox figcaption {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  margin-top: 14px; font-size: .85rem; color: rgba(255,255,255,.82);
}
.lightbox figcaption small { color: rgba(255,255,255,.45); font-variant-numeric: tabular-nums; letter-spacing: .1em; }
.lightbox-close, .lightbox-nav {
  position: absolute; z-index: 3; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.28); border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white); cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .22s ease, transform .28s var(--ease-out);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.24); transform: scale(1.08); }
.lightbox-close { top: -50px; right: 0; width: 40px; height: 40px; font-size: 1.5rem; line-height: 1; }
.lightbox-nav { top: 50%; width: 48px; height: 48px; margin-top: -24px; }
.lightbox-nav svg { width: 22px; height: 22px; stroke-width: 2; }
.lightbox-prev { left: -62px; }
.lightbox-next { right: -62px; }

/* =========================================================
   SEZONY
   ========================================================= */
.seasons-section { position: relative; overflow: hidden; }
.seasons-bg { position: absolute; inset: 0; }
.seasons-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1s var(--ease), transform 8s var(--ease);
}
.seasons-bg img.is-active { opacity: .17; transform: scale(1); }
.seasons-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 20% 0%, rgba(12,35,27,.35), rgba(12,35,27,.9) 70%);
}
.seasons-inner { position: relative; z-index: 2; }

.seasons-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 42px; }
.season-tab {
  display: grid; gap: 5px; justify-items: start; padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.035); color: var(--white); cursor: pointer; text-align: left;
  transition: background .3s ease, border-color .3s ease, transform .35s var(--ease-out);
}
.season-tab svg { width: 22px; height: 22px; color: rgba(255,255,255,.6); transition: color .3s ease, transform .4s var(--ease-out); }
.season-tab span { font-size: 1.02rem; font-weight: 700; }
.season-tab small { color: rgba(255,255,255,.42); font-size: .68rem; letter-spacing: .14em; }
.season-tab:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.season-tab.is-active {
  background: rgba(255,255,255,.11); border-color: var(--season);
  box-shadow: inset 0 0 0 1px var(--season), 0 14px 40px rgba(0,0,0,.25);
}
.season-tab.is-active svg { color: var(--season); transform: scale(1.12); }

.seasons-panels { position: relative; }
.season-panel { display: grid; gap: 30px; }
.season-panel[hidden] { display: none; }
.season-panel.is-active { animation: panelIn .55s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.season-lead {
  max-width: 62ch; margin: 0;
  font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1.42; letter-spacing: -.015em; color: rgba(255,255,255,.92);
}
.season-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); overflow: hidden; }
.season-list li { display: flex; gap: 15px; padding: 26px 24px; background: var(--forest-950); transition: background .3s ease; }
.season-list li:hover { background: #10291f; }
.season-list svg { width: 22px; height: 22px; color: var(--season); margin-top: 3px; }
.season-list div { display: grid; gap: 4px; }
.season-list strong { font-size: .95rem; }
.season-list span { color: rgba(255,255,255,.6); font-size: .84rem; line-height: 1.5; }

/* =========================================================
   OKOLICA
   ========================================================= */
.places-filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 34px; }
.places-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.place-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s ease, opacity .35s ease;
}
.place-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.place-card.is-hidden { display: none; }
.place-media { position: relative; overflow: hidden; background: var(--sage-100); }
.place-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .85s var(--ease-out); }
.place-card:hover .place-media img { transform: scale(1.06); }
.place-body { padding: 24px 26px 28px; }
.place-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  color: var(--clay); font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.place-meta svg { width: 16px; height: 16px; }
.place-card h3 { margin-bottom: 9px; font-family: var(--font-serif); font-weight: 600; font-size: 1.35rem; }
.place-card p:not(.place-meta) { margin: 0; color: var(--muted); font-size: .87rem; }
.places-note { margin: 30px 0 0; text-align: center; color: var(--muted); font-size: .78rem; }

/* =========================================================
   BANNER REZERWACYJNY
   ========================================================= */
.booking-banner {
  position: relative; min-height: 560px; display: grid; place-items: center;
  overflow: hidden; color: var(--white); text-align: center; background: var(--forest-950);
}
.booking-banner-bg { position: absolute; inset: -8% 0; will-change: transform; }
.booking-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.booking-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,29,21,.62), rgba(9,29,21,.82));
}
.booking-banner-content { position: relative; z-index: 2; max-width: 840px; padding: 96px 0; }
.booking-banner-content .eyebrow { justify-content: center; }
.booking-banner-content .eyebrow::before { display: none; }
.booking-banner-content h2 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); }
.booking-banner-content > p:not(.eyebrow) { max-width: 54ch; margin: 0 auto 32px; color: rgba(255,255,255,.76); }
.booking-banner-content .hero-actions { justify-content: center; opacity: 1; animation: none; }

/* =========================================================
   CENNIK
   ========================================================= */
.price-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.price-panel {
  position: sticky; top: calc(var(--header-h) + 32px);
  padding: 36px 34px; border-radius: var(--radius);
  background: var(--forest-900); color: var(--white);
  box-shadow: var(--shadow-lg);
  background-image: radial-gradient(120% 80% at 100% 0%, rgba(127,176,105,.22), transparent 60%);
}
.price-panel .eyebrow { color: #a9c8b3; }
.price-figure { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; }
.price-figure strong { font-family: var(--font-serif); font-weight: 600; font-size: 5.2rem; line-height: .9; letter-spacing: -.04em; }
.price-figure span { font-family: var(--font-serif); font-size: 1.6rem; opacity: .7; }
.price-unit { margin: 10px 0 0; color: rgba(255,255,255,.64); font-size: .84rem; }
.price-panel hr { margin: 26px 0; border: 0; border-top: 1px solid rgba(255,255,255,.16); }
.price-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.price-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .86rem; color: rgba(255,255,255,.84); }
.price-list svg { width: 18px; height: 18px; margin-top: 2px; color: var(--clay-light); }

.calculator { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.calc-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.calc-field { display: grid; gap: 9px; }
.calc-field > span { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--forest-800); }
.stepper { display: grid; grid-template-columns: 46px 1fr 46px; align-items: stretch; border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden; }
.stepper button {
  border: 0; background: var(--sage-50); font-size: 1.15rem; font-weight: 700; cursor: pointer; color: var(--forest-800);
  transition: background .2s ease, color .2s ease;
}
.stepper button:hover { background: var(--forest-900); color: var(--white); }
.stepper input {
  border: 0; border-inline: 1px solid var(--line); background: var(--white);
  text-align: center; font-size: 1.1rem; font-weight: 700;
  -moz-appearance: textfield; appearance: textfield;
  min-height: 50px; min-width: 0; width: 100%; color: var(--ink);
}
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-result {
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.calc-breakdown { margin: 0; color: var(--muted); font-size: .86rem; }
.calc-total { margin: 0; font-family: var(--font-serif); font-weight: 600; font-size: 2.5rem; line-height: 1; letter-spacing: -.03em; white-space: nowrap; font-variant-numeric: tabular-nums; }
.calc-total span { transition: color .25s ease; }
.calc-total.is-bumped span { color: var(--clay); }
.calc-note { margin: 16px 0 20px; color: var(--muted); font-size: .76rem; }
.calc-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.pull-quote { position: relative; margin: 34px 0 0; padding: 34px 0 0; border-top: 1px solid var(--line); }
.quote-mark { width: 34px; height: 34px; color: var(--sand); stroke: none; fill: currentColor; }
.pull-quote blockquote { margin: 12px 0 10px; }
.pull-quote blockquote p {
  margin: 0; max-width: 52ch;
  font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45; letter-spacing: -.015em;
}
.pull-quote figcaption { color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.faq-intro { position: sticky; top: calc(var(--header-h) + 32px); margin-bottom: 0; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary {
  position: relative; padding: 24px 52px 24px 0; list-style: none;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: color .22s ease;
}
.accordion summary:hover { color: var(--clay); }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::before, .accordion summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 16px; height: 1.6px;
  background: currentColor; transition: transform .32s var(--ease-out), opacity .25s ease;
}
.accordion summary::after { transform: rotate(90deg); }
.accordion details[open] summary { color: var(--clay); }
.accordion details[open] summary::after { transform: rotate(0); opacity: 0; }
.accordion details div { padding: 0 60px 24px 0; color: var(--muted); font-size: .92rem; animation: faqIn .38s var(--ease-out); }
.accordion details div p { margin: 0; }
.accordion details div a { color: var(--forest-800); font-weight: 700; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact-section { background: var(--sage-100); }
.contact-grid {
  display: grid; gap: 20px; align-items: stretch;
  grid-template-columns: .82fr 1.18fr;
  grid-template-areas: "card map";
}
/* wariant z przywróconym formularzem: "card form" / "map map" */
.contact-grid:has(.contact-form) { grid-template-areas: "card form" "map  map"; }
.contact-card { grid-area: card; }
.contact-form { grid-area: form; }
.map-card { grid-area: map; }
.contact-card, .contact-form, .map-card { border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.contact-card { padding: 34px; display: flex; flex-direction: column; }
.contact-card h3 { margin-bottom: 24px; font-family: var(--font-serif); font-weight: 600; font-size: 1.55rem; }
.contact-card address { display: grid; gap: 4px; font-style: normal; }
.contact-card address a {
  display: grid; grid-template-columns: 34px 1fr; align-items: start; gap: 4px;
  padding: 11px 12px; margin-inline: -12px; border-radius: 12px;
  color: var(--ink); font-size: .89rem; text-decoration: none;
  transition: background .22s ease;
}
.contact-card address a:hover { background: var(--sage-50); }
.contact-card address svg { width: 19px; height: 19px; color: var(--clay); margin-top: 2px; }
.contact-tip {
  margin: 24px 0; padding: 18px; border-radius: 14px; background: var(--sage-50);
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
}
.contact-tip svg { width: 19px; height: 19px; color: var(--forest-700); margin-top: 2px; }
.contact-tip p { margin: 0; color: var(--muted); font-size: .81rem; }
.contact-tip strong { color: var(--ink); }
.contact-actions { margin-top: auto; display: grid; gap: 10px; }
.contact-card .contact-actions .button-full { margin-top: 0; }
.contact-card .button-full { margin-top: auto; }

.contact-form { padding: 34px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--forest-900); font-size: .77rem; font-weight: 800; letter-spacing: .04em; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; min-width: 0; max-width: 100%;
  border: 1px solid #ccd7ce; border-radius: 11px; background: #fbfcfa;
  color: var(--ink); padding: 13px 14px; font-weight: 500;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.contact-form input:hover, .contact-form textarea:hover, .contact-form select:hover { border-color: #b3c3b6; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--forest-700); background: var(--white); box-shadow: 0 0 0 4px rgba(44,102,80,.1); outline: none;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.consent { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 500 !important; line-height: 1.5; font-size: .8rem !important; }
.consent input { margin-top: 3px; accent-color: var(--forest-800); }
.consent a { color: var(--forest-800); font-weight: 700; }
.turnstile-placeholder {
  margin-bottom: 16px; padding: 12px; border: 1px dashed #aabaae; border-radius: 10px;
  background: var(--sage-50); color: var(--muted); font-size: .74rem; text-align: center;
}
.form-status { min-height: 22px; margin: 14px 0 0; font-size: .8rem; }
.form-status.is-error { color: #a13f2b; }
.form-status.is-success { color: #2b6e4c; }

.map-card { min-height: 380px; overflow: hidden; position: relative; }
.map-consent { position: relative; min-height: 380px; height: 100%; display: grid; place-items: center; text-align: center; background: var(--sage-50); }
.map-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.75), rgba(255,255,255,.1)),
    repeating-linear-gradient(45deg, rgba(20,53,41,.055) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(-45deg, rgba(20,53,41,.035) 0 1px, transparent 1px 36px);
}
.map-consent-inner { position: relative; padding: 40px 24px; display: grid; justify-items: center; }
.map-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--forest-900); color: var(--white); }
.map-icon svg { width: 25px; height: 25px; }
.map-consent strong { margin-top: 16px; font-family: var(--font-serif); font-weight: 600; font-size: 1.45rem; }
.map-consent p { max-width: 46ch; margin: 8px auto 18px; color: var(--muted); font-size: .84rem; }
.map-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; }
.map-card iframe { display: block; width: 100%; height: 420px; border: 0; }

/* =========================================================
   STOPKA
   ========================================================= */
.site-footer { padding: 74px 0 24px; background: var(--forest-950); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 56px; }
.footer-grid > div:first-child p { max-width: 38ch; margin: 22px 0 16px; color: rgba(255,255,255,.56); font-size: .83rem; }
.footer-social { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 700; text-decoration: none; }
.footer-social:hover { color: var(--white); }
.footer-grid h3 { margin-bottom: 16px; color: #a9c8b3; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a {
  margin-bottom: 10px; color: rgba(255,255,255,.66); font-size: .81rem; text-decoration: none;
  transition: color .2s ease, transform .25s var(--ease-out);
}
.footer-grid > div:not(:first-child) a:hover { color: var(--white); transform: translateX(3px); }
.footer-bottom {
  margin-top: 56px; padding-top: 22px; display: flex; justify-content: space-between; gap: 26px;
  border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .7rem;
}
.footer-bottom p { margin: 0; }
.mobile-actions { display: none; }

/* =========================================================
   ANIMACJE WEJŚCIA
   ========================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSYWNOŚĆ
   ========================================================= */
@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.button) { font-size: .77rem; }
  .seasons-tabs { grid-template-columns: repeat(2, 1fr); }
  .season-list { grid-template-columns: 1fr; }
  .places-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 2; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 940px) {
  .site-header { background: rgba(12,35,27,.9); backdrop-filter: blur(16px); }
  .nav-toggle { display: grid; place-items: center; }
  .main-nav {
    position: fixed; inset: calc(var(--header-h) + 6px) 18px auto; padding: 18px;
    display: grid; gap: 0;
    border: 1px solid rgba(255,255,255,.14); border-radius: 18px;
    background: rgba(12,35,27,.98); box-shadow: var(--shadow-lg);
    transform: translateY(-14px) scale(.98); opacity: 0; visibility: hidden;
    transition: transform .3s var(--ease-out), opacity .25s ease, visibility .25s;
  }
  .main-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .main-nav > a:not(.button) { padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,.09); font-size: .92rem; }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 14px; }
  .split-layout, .amenities-layout, .faq-layout, .price-layout { grid-template-columns: 1fr; }
  .amenities-intro, .faq-intro, .price-panel { position: static; }
  .price-panel { max-width: 420px; }
  .image-frame { max-width: 560px; margin-inline: auto; }
  .intro-badge { left: 10px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3), .trust-grid > div:nth-child(4) { border-top: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr; grid-template-areas: "card" "map"; }
  .contact-grid:has(.contact-form) { grid-template-areas: "card" "form" "map"; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .hero-meta > span { display: none; }
  .hero-meta { justify-content: flex-end; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 72px 0; }
  h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(2.05rem, 9.5vw, 2.9rem); }
  .header-inner { min-height: 72px; }
  :root { --header-h: 72px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark svg { width: 24px; height: 24px; }
  .hero { min-height: 86svh; }
  .hero-content { padding-top: 132px; padding-bottom: 76px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(6,22,16,.93) 6%, rgba(6,22,16,.3) 60%, rgba(6,22,16,.55) 100%); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; margin-top: 38px; }
  .hero-facts li { padding-right: 8px; }
  .hero-meta { bottom: 14px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 96px; padding: 20px 0 !important; border-right: 0; border-top: 1px solid var(--line); }
  .trust-grid > div:first-child { border-top: 0; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-body { padding: 26px 24px 28px; }
  .room-details { grid-template-columns: 1fr; }
  .room-footer { align-items: flex-start; flex-direction: column; gap: 14px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amenities-grid article { min-height: 0; padding: 24px; }
  .gallery-heading { grid-template-columns: 1fr; gap: 12px; }
  .gallery-grid { columns: 2; column-gap: 10px; }
  .gallery-item { margin-bottom: 10px; border-radius: 11px; }
  .gallery-caption { display: none; }
  .seasons-tabs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .season-tab { padding: 15px 16px; }
  .season-tab span { font-size: .92rem; }
  .places-grid { grid-template-columns: 1fr; }
  .price-figure strong { font-size: 4.2rem; }
  .calc-row { grid-template-columns: 1fr; }
  .calculator { padding: 24px; }
  .calc-total { font-size: 2.1rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-card, .contact-form { padding: 26px 24px; }
  .accordion summary { padding-right: 44px; font-size: .95rem; }
  .accordion details div { padding-right: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding-bottom: 68px; flex-direction: column; gap: 8px; }
  .lightbox-close { top: -46px; }
  .lightbox-nav { width: 42px; height: 42px; }

  .mobile-actions {
    position: fixed; z-index: 1001; left: 10px; right: 10px; bottom: 10px;
    display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden;
    border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
    background: rgba(12,35,27,.96); box-shadow: 0 16px 42px rgba(0,0,0,.34);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    transform: translateY(140%); transition: transform .4s var(--ease-out);
  }
  .mobile-actions.is-visible { transform: none; }
  .mobile-actions a {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 14px 10px; color: var(--white); font-size: .78rem; font-weight: 700; text-decoration: none;
  }
  .mobile-actions svg { width: 15px; height: 15px; }
  .mobile-actions a:last-child { background: var(--clay); }
}

/* =========================================================
   PREFERENCJE UŻYTKOWNIKA
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-lead, .hero-actions, .hero-facts { opacity: 1 !important; }
  h1[data-split] .word > span { transform: none !important; }
  .hero-media img { animation: none !important; transform: scale(1.02) !important; }
  .mobile-actions { transform: none !important; }
}

@media print {
  .site-header, .mobile-actions, .scroll-progress, .hero-media, .booking-banner-bg { display: none !important; }
  body { background: #fff; }
}
