/* ============================================================
   BIELPON, Noclegi na końcu świata
   Design system: industrial loft (cegła / antracyt / kość)
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --bg: #f3efe9;
  --bg-alt: #eae4da;
  --ink: #1a1c20;
  --ink-soft: #50545c;
  --panel: #17191d;
  --panel-2: #1f2227;
  --paper: #fbf9f5;
  --brick: #b0492e;
  --brick-deep: #8f3a24;
  --blue: #3d68c4;
  --line: rgba(26, 28, 32, 0.14);
  --line-soft: rgba(26, 28, 32, 0.08);
  --line-light: rgba(243, 239, 233, 0.18);
  --light: #f3efe9;
  --light-soft: rgba(243, 239, 233, 0.72);

  --font-display: "Bebas Neue", "Space Grotesk", sans-serif;
  --font-head: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --r: 4px;
  --r-lg: 8px;
  --container: 1240px;
  --gutter: clamp(18px, 4vw, 48px);
  --sect: clamp(72px, 11vw, 140px);
  --shadow: 0 18px 50px -18px rgba(20, 20, 24, 0.35);
  --ease: cubic-bezier(0.22, 0.8, 0.24, 1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  /* wygladzanie tekstu: bez tego duze naglowki potrafia sie "pikselowac" */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

/* Tekst renderowany w warstwie kompozytowej bywa rozmyty na ekranach HiDPI.
   Wymuszamy pelna ostrosc na elementach, ktore sie animuja. */
.display, h1, h2, h3, h4, .btn, .card, .chip, .nav, .menu {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--brick); color: #fff; }

:focus-visible { outline: 2px solid var(--brick); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  padding: 10px 16px; background: var(--panel); color: var(--light);
  border-radius: var(--r); transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

/* ---------- typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; }

.heading-xl { font-size: clamp(34px, 4.6vw, 58px); }
.heading-lg { font-size: clamp(28px, 3.4vw, 44px); }
.heading-md { font-size: clamp(20px, 2.2vw, 27px); }

.overline {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brick);
}
.overline::before { content: ""; width: 34px; height: 2px; background: var(--brick); }
.overline--bare::before { display: none; }

.lead { font-size: clamp(17px, 1.6vw, 19.5px); line-height: 1.7; color: var(--ink-soft); }
.body-text { color: var(--ink-soft); }
.light { color: var(--light); }
.light .body-text, .light.body-text { color: var(--light-soft); }

/* ---------- buttons / chips ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: 0.02em;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--brick { background: var(--brick); color: #fff; }
.btn--brick:hover { background: var(--brick-deep); }

.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }

.btn--ghost-light { border-color: var(--line-light); color: var(--light); }
.btn--ghost-light:hover { border-color: var(--light); }

.btn--small { padding: 10px 18px; font-size: 13.5px; }

.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 600; font-family: var(--font-head);
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  background: rgba(251, 249, 245, 0.6);
}
.chip--light { border-color: var(--line-light); color: var(--light-soft); background: rgba(23, 25, 29, 0.35); backdrop-filter: blur(6px); }
.chip svg { width: 15px; height: 15px; flex: none; }

/* ---------- nav ---------- */
.nav {
  /* Nawigacja MUSI byc nad menu (.menu ma 125). Inaczej pasek z logo
     i przyciskiem zamykania chowa sie pod nakladka i na telefonie
     nie da sie zamknac menu. */
  position: fixed; inset: 0 0 auto 0; z-index: 130;
  transition: background 0.35s, box-shadow 0.35s, transform 0.35s;
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav--dark { color: var(--light); }
.nav--scrolled {
  background: rgba(23, 25, 29, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-light);
  color: var(--light);
}
.nav--hidden { transform: translateY(-100%); }

.brand { display: flex; flex-direction: column; line-height: 1; z-index: 130; }
.brand__word { font-family: var(--font-display); font-size: 27px; letter-spacing: 0.06em; text-transform: uppercase; }
.brand__word i { font-style: normal; color: var(--brick); }
.brand__tag { font-family: var(--font-head); font-size: 9.5px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.62; margin-top: 4px; }

.nav__links { display: flex; gap: clamp(16px, 2.4vw, 34px); }
.nav__links a {
  font-family: var(--font-head); font-size: 14.5px; font-weight: 600; letter-spacing: 0.03em;
  opacity: 0.85; padding: 6px 0; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--brick); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { opacity: 1; }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone { font-family: var(--font-head); font-weight: 700; font-size: 14.5px; letter-spacing: 0.02em; opacity: 0.9; white-space: nowrap; }
.nav__phone:hover { opacity: 1; color: var(--brick); }

.nav__toggle { display: none; z-index: 130; width: 44px; height: 44px; position: relative; }
.nav__toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 27px; }
body.menu-open .nav__toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 125;
  background: rgba(21, 23, 27, 0.98);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px var(--gutter) 40px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
body.menu-open .menu { opacity: 1; pointer-events: auto; }
.menu a.menu__link {
  font-family: var(--font-display); font-size: clamp(44px, 9vw, 76px);
  color: var(--light); text-transform: uppercase; line-height: 1.14;
  display: flex; align-items: baseline; gap: 18px;
  transform: translateY(24px); opacity: 0; transition: transform 0.45s var(--ease), opacity 0.45s, color 0.2s;
}
.menu a.menu__link .menu__num { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--brick); letter-spacing: 0.1em; }
.menu a.menu__link:hover { color: var(--brick); }
body.menu-open .menu a.menu__link { transform: translateY(0); opacity: 1; }
body.menu-open .menu a.menu__link:nth-child(2) { transition-delay: 0.05s; }
body.menu-open .menu a.menu__link:nth-child(3) { transition-delay: 0.1s; }
body.menu-open .menu a.menu__link:nth-child(4) { transition-delay: 0.15s; }
body.menu-open .menu a.menu__link:nth-child(5) { transition-delay: 0.2s; }
.menu__meta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px 26px; color: var(--light-soft); font-size: 14px; }
.menu__meta a:hover { color: var(--brick); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  background: var(--panel);
  color: var(--light);
  overflow: hidden;
}
.hero__media, .hero__media video, .hero__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero__poster { background-size: cover; background-position: center; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(18, 19, 23, 0.88) 0%, rgba(18, 19, 23, 0.32) 38%, rgba(18, 19, 23, 0.18) 60%, rgba(18, 19, 23, 0.45) 100%);
}
.hero__inner {
  position: relative; width: 100%;
  max-width: var(--container); margin: 0 auto;
  padding: 130px var(--gutter) clamp(40px, 7vh, 76px);
}
.hero__overline { color: #e8b59f; }
.hero__overline::before { background: #e8b59f; }
.hero__title {
  font-size: clamp(84px, 16.5vw, 228px);
  margin: 10px 0 6px -4px;
  color: var(--light);
}
.hero__title i { font-style: normal; color: var(--brick); }
.hero__sub { max-width: 560px; font-size: clamp(16px, 1.7vw, 19px); color: var(--light-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }

.hero__scroll {
  position: absolute; right: clamp(18px, 4vw, 48px); bottom: 24px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--light-soft);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 54px; background: var(--light-soft);
  animation: scrollPulse 2.2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollPulse { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* ---------- sections ---------- */
.section { padding: var(--sect) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--panel); color: var(--light); }
.section--dark .overline { color: #e8b59f; }
.section--dark .overline::before { background: #e8b59f; }
.section--tight { padding: clamp(48px, 7vw, 84px) 0; }

.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__head .heading-lg, .section__head .heading-xl { margin-top: 14px; }
.section__head .lead { margin-top: 16px; }
.section__head--row {
  max-width: none;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split--rev > .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.split__media--tall img { aspect-ratio: 4 / 3.4; }
.split__badge {
  position: absolute; left: -18px; bottom: 26px;
  background: var(--panel); color: var(--light);
  border-radius: var(--r);
  padding: 16px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
}
.split__badge strong { font-family: var(--font-display); font-size: 40px; line-height: 1; color: #e8b59f; }
.split__badge span { font-size: 12.5px; font-weight: 600; font-family: var(--font-head); letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.8; max-width: 130px; line-height: 1.35; }
.split__content .heading-lg { margin: 14px 0 18px; }
.split__content p + p { margin-top: 14px; }
.split__list { margin-top: 22px; display: grid; gap: 10px; }
.split__list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.split__list li::before {
  content: ""; flex: none; width: 7px; height: 7px; margin-top: 8px;
  background: var(--brick); border-radius: 1px; transform: rotate(45deg);
}
.section--dark .split__list li { color: var(--light-soft); }

/* ---------- stats ---------- */
.stats {
  margin-top: clamp(48px, 7vw, 84px);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats__item { padding: clamp(22px, 3vw, 38px) 18px 0; border-left: 1px solid var(--line); }
.stats__item:first-child { border-left: 0; padding-left: 0; }
.stats__num { font-family: var(--font-display); font-size: clamp(46px, 6vw, 84px); line-height: 1; color: var(--brick); display: flex; align-items: baseline; }
.stats__num small { font-family: var(--font-head); font-size: 0.36em; font-weight: 700; margin-left: 4px; color: var(--ink); opacity: 0.7; }
.stats__label { margin-top: 8px; font-size: 14px; color: var(--ink-soft); max-width: 200px; }

/* ---------- room cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 30px); }
.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10.5; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__num {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-display); font-size: 15px; letter-spacing: 0.14em;
  background: rgba(23, 25, 29, 0.78); color: var(--light);
  padding: 6px 12px 4px; border-radius: var(--r); backdrop-filter: blur(4px);
}
.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__body h3 { font-size: 21px; }
.card__body p { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.card__tags span {
  font-size: 12px; font-weight: 600; font-family: var(--font-head); letter-spacing: 0.03em;
  padding: 5px 10px; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft);
}

/* ---------- film ---------- */
.filmbox {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16 / 9; background: #000; box-shadow: var(--shadow);
}
.filmbox video { width: 100%; height: 100%; object-fit: cover; }
.filmbox__cover {
  position: absolute; inset: 0; z-index: 2;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: opacity 0.4s;
}
.filmbox__cover::before { content: ""; position: absolute; inset: 0; background: rgba(18, 19, 23, 0.35); transition: background 0.3s; }
.filmbox__cover:hover::before { background: rgba(18, 19, 23, 0.2); }
.filmbox--playing .filmbox__cover { opacity: 0; pointer-events: none; }
.filmbox__play {
  position: relative; z-index: 2;
  width: clamp(76px, 9vw, 104px); height: clamp(76px, 9vw, 104px);
  border-radius: 50%; background: var(--brick); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.filmbox__cover:hover .filmbox__play { transform: scale(1.08); background: var(--brick-deep); }
.filmbox__play svg { width: 30%; height: 30%; margin-left: 6%; }
.filmbox__label {
  position: absolute; z-index: 2; left: 24px; bottom: 20px;
  color: var(--light); font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 10px;
}
.filmbox__label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brick); animation: blink 1.6s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- amenities ---------- */
.amen { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; }
.amen__item { background: var(--bg); padding: clamp(22px, 2.6vw, 34px); transition: background 0.3s; }
.amen__item:hover { background: var(--paper); }
.amen__item svg { width: 30px; height: 30px; color: var(--brick); }
.amen__item h3 { font-size: 16.5px; margin: 14px 0 6px; }
.amen__item p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- mood band (patio / ognisko) ---------- */
.mood { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(16px, 2vw, 24px); }
.mood figure { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.mood img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; transition: transform 0.7s var(--ease); }
.mood figure:hover img { transform: scale(1.04); }
.mood figcaption {
  position: absolute; left: 18px; bottom: 16px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--light); background: rgba(23, 25, 29, 0.65); backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: var(--r);
}

/* ---------- gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 44px); }
.filters button {
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 100px;
  font-family: var(--font-head); font-size: 13.5px; font-weight: 600; letter-spacing: 0.03em;
  color: var(--ink-soft); transition: all 0.25s;
}
.filters button:hover { border-color: var(--ink); color: var(--ink); }
.filters button.is-active { background: var(--panel); border-color: var(--panel); color: var(--light); }

.gal { columns: 3 300px; column-gap: 16px; }
.gal a {
  display: block; margin-bottom: 16px; border-radius: var(--r); overflow: hidden;
  position: relative; break-inside: avoid;
}
.gal a.is-hidden { display: none; }
.gal img { width: 100%; transition: transform 0.6s var(--ease), filter 0.4s; }
.gal a:hover img { transform: scale(1.04); filter: brightness(1.05); }
.gal a::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(26, 28, 32, 0.08);
  border-radius: var(--r); pointer-events: none;
}

.gal-teaser { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 210px; gap: 14px; }
.gal-teaser a { position: relative; border-radius: var(--r); overflow: hidden; }
.gal-teaser a:nth-child(1) { grid-row: span 2; }
.gal-teaser a:nth-child(4) { grid-row: span 2; }
.gal-teaser img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gal-teaser a:hover img { transform: scale(1.05); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(16, 17, 20, 0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(92vw, 1500px); max-height: 86vh;
  border-radius: var(--r); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--light); background: rgba(243, 239, 233, 0.08);
  transition: background 0.25s;
}
.lightbox__btn:hover { background: var(--brick); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__btn--prev { left: clamp(10px, 3vw, 40px); }
.lightbox__btn--next { right: clamp(10px, 3vw, 40px); }
.lightbox__close { position: absolute; top: 20px; right: 20px; transform: none; }
.lightbox__count {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--light-soft);
}

/* ---------- dark service strip ---------- */
.strip {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: var(--panel-2); border: 1px solid var(--line-light); border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 44px);
  color: var(--light);
}
.strip h2, .strip h3 { color: var(--light); }
.strip__text h3 { font-size: clamp(20px, 2.2vw, 26px); margin: 10px 0 8px; }
.strip__text p { color: var(--light-soft); max-width: 560px; }
.strip__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- location ---------- */
.loc { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4.5vw, 64px); align-items: stretch; }
.loc__map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; filter: grayscale(0.35) contrast(1.04); }
.loc__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.loc__points { display: grid; gap: 0; align-content: center; }
.loc__point { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.loc__point:first-child { padding-top: 0; }
.loc__point svg { flex: none; width: 26px; height: 26px; color: var(--brick); margin-top: 3px; }
.loc__point h3 { font-size: 17px; margin-bottom: 4px; }
.loc__point p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- CTA banner ---------- */
.cta {
  position: relative; overflow: hidden;
  background: var(--panel);
  color: var(--light);
  text-align: center;
}
.cta__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.45; }
.cta__scrim { position: absolute; inset: 0; background: linear-gradient(rgba(18, 19, 23, 0.55), rgba(18, 19, 23, 0.82)); }
.cta__inner { position: relative; padding: clamp(80px, 11vw, 150px) var(--gutter); max-width: 780px; margin: 0 auto; }
.cta__title { font-size: clamp(52px, 7.5vw, 104px); color: var(--light); }
.cta__title i { font-style: normal; color: #e8b59f; }
.cta p { margin-top: 14px; color: var(--light-soft); font-size: 17px; }
.cta__actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- page head (subpages) ---------- */
.page-head {
  position: relative; min-height: clamp(380px, 52vh, 560px);
  display: flex; align-items: flex-end;
  background: var(--panel); color: var(--light);
  overflow: hidden;
}
.page-head__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-head__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18, 19, 23, 0.9), rgba(18, 19, 23, 0.35) 55%, rgba(18, 19, 23, 0.5)); }
.page-head__inner { position: relative; width: 100%; max-width: var(--container); margin: 0 auto; padding: 140px var(--gutter) clamp(34px, 5vh, 56px); }
.page-head__title { font-size: clamp(58px, 9.5vw, 132px); color: var(--light); }
.page-head__title i { font-style: normal; color: var(--brick); }
.page-head__lead { max-width: 620px; margin-top: 10px; color: var(--light-soft); font-size: clamp(15.5px, 1.6vw, 18px); }
.page-head__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* ---------- feature checklist ---------- */
.checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 34px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 15px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.checks svg { flex: none; width: 19px; height: 19px; color: var(--brick); margin-top: 3px; }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4.5vw, 64px); }
.contact__list { display: grid; gap: 0; align-content: start; }
.contact__item { padding: 22px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.contact__item:first-child { padding-top: 0; }
.contact__item a { font-family: var(--font-head); font-weight: 600; font-size: clamp(19px, 2vw, 24px); letter-spacing: -0.01em; width: fit-content; position: relative; }
.contact__item a:hover { color: var(--brick); }
.contact__item small { font-size: 13px; color: var(--ink-soft); }

.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: grid; gap: 7px; }
.form__field span { font-family: var(--font-head); font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.form input, .form textarea {
  width: 100%; padding: 14px 16px;
  font: inherit; color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--brick); box-shadow: 0 0 0 3px rgba(176, 73, 46, 0.14); }
.form textarea { resize: vertical; min-height: 130px; }
.form__status { font-size: 14px; color: var(--brick); min-height: 20px; }

/* ---------- footer ---------- */
.footer { background: var(--panel); color: var(--light); padding: clamp(56px, 8vw, 96px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: clamp(40px, 6vw, 64px); }
.footer__brand p { margin-top: 16px; color: var(--light-soft); font-size: 14.5px; max-width: 320px; }
.footer h4 { font-family: var(--font-head); font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #e8b59f; margin-bottom: 18px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a, .footer ul li { color: var(--light-soft); font-size: 14.5px; }
.footer ul a:hover { color: var(--light); }
.footer__bottom {
  border-top: 1px solid var(--line-light);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  color: var(--light-soft); font-size: 13px;
}
.footer__bottom a:hover { color: var(--light); }

/* ---------- reveal animations ---------- */
.reveal, .reveal-stagger > * {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in, .reveal-stagger > .is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ---------- ukraiński: fonty z cyrylicą ---------- */
html[lang="uk"] { --font-display: "Oswald", "Bebas Neue", sans-serif; --font-head: "Inter", "Segoe UI", sans-serif; }
html[lang="uk"] .display { font-weight: 600; letter-spacing: 0.005em; }
html[lang="uk"] h1, html[lang="uk"] h2, html[lang="uk"] h3, html[lang="uk"] h4 { letter-spacing: -0.01em; }

/* ---------- przełącznik języków ---------- */
.lang { display: inline-flex; align-items: center; gap: 1px; border: 1px solid var(--line-light); border-radius: 100px; padding: 3px; }
.lang button {
  font-family: var(--font-head); font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 9px; border-radius: 100px; color: inherit; opacity: 0.72;
  transition: background 0.2s, opacity 0.2s, color 0.2s;
}
.lang button:hover { opacity: 1; }
.lang button.is-active { background: var(--brick); color: #fff; opacity: 1; }

.menu__langs { display: flex; gap: 8px; margin-bottom: 26px; }
.menu__langs button {
  font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 0.08em;
  padding: 8px 16px; border: 1px solid var(--line-light); border-radius: 100px; color: var(--light-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.menu__langs button:hover { color: var(--light); }
.menu__langs button.is-active { background: var(--brick); border-color: var(--brick); color: #fff; }

/* ---------- baner cookies ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 210;
  max-width: 660px; margin: 0 auto;
  background: var(--panel); color: var(--light);
  border: 1px solid var(--line-light); border-radius: var(--r-lg);
  padding: 24px 26px; box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  transform: translateY(160%); transition: transform 0.5s var(--ease);
}
.cookie.is-in { transform: none; }
.cookie h4 { font-family: var(--font-head); font-size: 16.5px; margin-bottom: 8px; }
.cookie p { font-size: 13.5px; color: var(--light-soft); line-height: 1.6; }
.cookie p a { color: #e8b59f; text-decoration: underline; }
.cookie__row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

/* ---------- mapa za zgodą ---------- */
.map-wrap { position: relative; }
.map-consent {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 10px; padding: 28px;
  background: var(--panel-2); color: var(--light);
}
.map-consent svg { width: 34px; height: 34px; color: #e8b59f; }
.map-consent h4 { font-family: var(--font-head); font-size: 17px; }
.map-consent p { font-size: 13.5px; color: var(--light-soft); max-width: 380px; line-height: 1.55; }
.map-consent small { font-size: 12px; color: var(--light-soft); opacity: 0.7; }
.map-consent .btn { margin-top: 4px; }

/* ---------- dokument prawny ---------- */
.legal { max-width: 780px; }
.legal__block { padding: 26px 0; border-bottom: 1px solid var(--line); }
.legal__block:first-child { padding-top: 0; }
.legal__block h2 { font-size: clamp(19px, 2vw, 24px); margin-bottom: 12px; }
.legal__block p { color: var(--ink-soft); }
.legal__block p + p { margin-top: 12px; }
.legal__block ul { margin: 14px 0 0; display: grid; gap: 10px; }
.legal__block ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.legal__block ul li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 8px; background: var(--brick); border-radius: 1px; transform: rotate(45deg); }
.legal__note { margin-top: 14px; font-size: 14px; color: var(--ink-soft); opacity: 0.85; font-style: italic; }
.legal__updated { font-size: 13px; color: var(--brick); font-family: var(--font-head); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 30px; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .nav__actions .lang { display: none; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__phone { display: none; }
  .amen { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .split, .loc, .contact { grid-template-columns: 1fr; }
  .split--rev > .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stats__item { padding-top: 26px; }
  .checks { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gal-teaser { grid-auto-rows: 170px; }
}

@media (max-width: 640px) {
  .hero__title { margin-left: -2px; }
  .hero__scroll { display: none; }
  .gal-teaser { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gal-teaser a:nth-child(1), .gal-teaser a:nth-child(4) { grid-row: span 2; }
  .checks { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .amen { grid-template-columns: 1fr; }
  .mood { grid-template-columns: 1fr; }
  .split__badge { left: 12px; }
}
