/* =========================================================================
   Apartamenty Przemian — landing (Przemian 26, Warszawa)
   Jeden arkusz dla szablonu przemian-landing. Tokeny wg handoffu (README).
   ========================================================================= */

:root {
  --p26-ink: #26282B;
  --p26-ink-deep: #1D1F22;
  --p26-hero-bg: #141517;
  --p26-cream: #F4EFE6;
  --p26-white: #FFFFFF;
  --p26-ph: #E8E2D6;
  --p26-amber: #C98A3B;
  --p26-amber-dark: #8F5E1F;
  --p26-green: #5C6B54;
  --p26-btn-ink: #1D1E20;
  --p26-pad-x: clamp(20px, 5vw, 56px);
  --p26-pad-y: clamp(76px, 10vw, 132px);
  --p26-font-serif: "Fraunces", Georgia, serif;
  --p26-font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.p26 {
  margin: 0;
  background: var(--p26-ink-deep);
  color: var(--p26-ink);
  font-family: var(--p26-font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.p26 img { display: block; }
.p26 a { color: var(--p26-amber-dark); }
.p26 a:hover { color: var(--p26-ink); }
.p26 ::selection { background: var(--p26-amber); color: var(--p26-btn-ink); }
.p26 :focus-visible { outline: 2px solid var(--p26-amber); outline-offset: 2px; }
.p26 input, .p26 select, .p26 textarea, .p26 button { font-family: inherit; }

.p26-container {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: var(--p26-pad-x);
  padding-right: var(--p26-pad-x);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------------- Typografia */

.p26-h1 {
  margin: 0;
  font-family: var(--p26-font-serif);
  font-weight: 400;
  font-size: clamp(44px, 7.4vw, 106px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--p26-cream);
  max-width: 820px;
  text-wrap: balance;
}

.p26-h2 {
  margin: 0;
  font-family: var(--p26-font-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.p26-eyebrow {
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(38, 40, 43, 0.55);
}
.p26-eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--p26-amber);
  vertical-align: middle;
  margin-right: 13px;
}
.p26-eyebrow--hero {
  margin: 0 0 18px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: rgba(244, 239, 230, 0.75);
}
.p26-eyebrow--hero::before { width: 28px; margin-right: 14px; }
.p26-eyebrow--light { color: rgba(244, 239, 230, 0.6); }

.p26-lead {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(38, 40, 43, 0.74);
}
.p26-lead + .p26-lead { margin-top: 20px; }

.p26-split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px clamp(40px, 5vw, 80px);
  align-items: flex-start;
}
.p26-split > .p26-h2 { flex: 1 1 380px; }
.p26-split__body { flex: 1 1 440px; max-width: 620px; }
.p26-split__body > .p26-lead { max-width: none; }
.p26-split > .p26-lead { flex: 1 1 440px; max-width: 620px; }

/* ------------------------------------------------------------------ Sekcje */

.p26-sec { padding: var(--p26-pad-y) 0; }
.p26-sec--cream { background: var(--p26-cream); color: var(--p26-ink); }
.p26-sec--white { background: var(--p26-white); color: var(--p26-ink); }
#budynek.p26-sec { padding-bottom: clamp(64px, 8vw, 104px); }

/* -------------------------------------------------------------- Nawigacja */

.p26-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  transition: transform 0.4s ease, background-color 0.3s ease;
  background-color: rgba(29, 31, 34, 0);
  transform: translateY(0);
}
.p26-nav.is-solid {
  background-color: rgba(29, 31, 34, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.p26-nav.is-hidden { transform: translateY(-102%); }
.p26-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px var(--p26-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p26-nav__logo {
  font-family: var(--p26-font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--p26-cream);
  text-decoration: none;
}
.p26 .p26-nav__logo:hover { color: var(--p26-cream); }
.p26-burger {
  width: 48px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  padding: 0 2px;
}
.p26-burger span { display: block; width: 30px; height: 2px; background: var(--p26-cream); }
.p26-burger span + span { width: 20px; }

/* Menu fullscreen */
.p26-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--p26-ink);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.p26-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.p26-menu__bar {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 14px var(--p26-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p26-menu__brand {
  font-family: var(--p26-font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--p26-cream);
}
.p26-menu__close {
  width: 48px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--p26-cream);
  font-size: 22px;
  line-height: 1;
  padding: 0 2px;
  text-align: right;
}
.p26-menu__nav { flex: 1; display: flex; align-items: center; }
.p26-menu__list {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--p26-pad-x);
  max-width: 1280px;
  width: 100%;
  box-sizing: border-box;
}
.p26-menu__list li {
  opacity: 0;
  transform: translateY(20px);
}
.p26-menu.is-open .p26-menu__list li { opacity: 1; transform: translateY(0); }
.p26-menu__list li:nth-child(1) { transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s; }
.p26-menu__list li:nth-child(2) { transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s; }
.p26-menu__list li:nth-child(3) { transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s; }
.p26-menu__list li:nth-child(4) { transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s; }
.p26-menu__list li:nth-child(5) { transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s; }
.p26-menu__list li:nth-child(6) { transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .p26-menu__list li { transform: none; }
}
.p26-menu__link {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  padding: 6px 0;
  color: var(--p26-cream);
  text-decoration: none;
  font-family: var(--p26-font-serif);
  font-size: clamp(30px, 5.6vh, 52px);
  font-weight: 400;
  line-height: 1.25;
}
.p26 .p26-menu__link:hover { color: var(--p26-amber); }
.p26-menu__num {
  font-family: var(--p26-font-sans);
  font-size: 12px;
  color: rgba(201, 138, 59, 0.9);
  letter-spacing: 0.1em;
}
.p26-menu__foot {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 22px var(--p26-pad-x) 30px;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.p26-menu__addr { font-size: 14px; color: rgba(244, 239, 230, 0.55); }
.p26-menu__tel {
  font-size: 17px;
  font-weight: 500;
  color: var(--p26-amber);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.p26 .p26-menu__tel:hover { color: var(--p26-amber); text-decoration: underline; }

/* --------------------------------------------------------------------- Hero */

.p26-hero { position: relative; background: var(--p26-hero-bg); }
.p26-hero__outer { height: 190vh; height: 190svh; }
.p26-hero__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: var(--p26-hero-bg);
}
.p26-hero__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}
.p26-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 21, 23, 0.5) 0%, rgba(20, 21, 23, 0.12) 42%, rgba(18, 19, 21, 0.68) 100%);
}
.p26-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.p26-hero__content .p26-container {
  width: 100%;
  padding-bottom: clamp(96px, 14vh, 140px);
}
.p26-hero__lead {
  margin: 22px 0 0;
  max-width: 560px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.8);
}
.p26-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.p26-btn {
  display: inline-block;
  background: var(--p26-cream);
  color: var(--p26-ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 17px 30px;
  transition: background-color 0.25s ease, color 0.25s ease;
  border: none;
  cursor: pointer;
}
.p26 .p26-btn:hover { background: var(--p26-amber); color: var(--p26-btn-ink); }
.p26-btn--ghost {
  background: none;
  border: 1px solid rgba(244, 239, 230, 0.45);
  color: var(--p26-cream);
  padding: 16px 30px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.p26 .p26-btn--ghost:hover { background: none; border-color: var(--p26-amber); color: var(--p26-amber); }

.p26-hero__stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(244, 239, 230, 0.16);
  background: rgba(20, 21, 23, 0.3);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.p26-hero__stats .p26-container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 28px;
}
.p26-hero__stats span { font-size: 14px; color: rgba(244, 239, 230, 0.82); }
.p26-hero__stats strong { font-weight: 600; color: var(--p26-cream); }

@media (prefers-reduced-motion: reduce) {
  .p26-hero__outer { height: 100vh; height: 100svh; }
}

/* ------------------------------------------------------------ O inwestycji */

.p26-photo { margin: clamp(48px, 7vw, 84px) 0 0; }
.p26-photo__frame { aspect-ratio: 1456 / 816; overflow: hidden; background: var(--p26-ph); }
.p26-photo__frame img { width: 100%; height: 100%; object-fit: cover; }

.p26-stats {
  margin: clamp(48px, 7vw, 84px) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 44px clamp(28px, 3vw, 48px);
}
.p26-stat { border-top: 1px solid rgba(38, 40, 43, 0.3); padding-top: 18px; margin: 0; }
.p26-stat dt {
  font-family: var(--p26-font-serif);
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1;
  color: var(--p26-amber-dark);
  font-variant-numeric: tabular-nums;
}
.p26-stat dt .p26-stat__unit { font-size: 0.42em; }
.p26-stat dd { margin: 10px 0 0; font-size: 14px; line-height: 1.5; color: rgba(38, 40, 43, 0.62); }

/* ------------------------------------------------- Budynek: sekwencja światła */

.p26-seq { height: 290vh; position: relative; margin-top: clamp(44px, 6vw, 76px); }
.p26-seq__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--p26-hero-bg);
}
.p26-seq__frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  will-change: opacity;
}
.p26-seq__frame:first-child { opacity: 1; }
.p26-seq__frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.p26-seq__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 39, 26, 0.45) 0%, rgba(43, 39, 26, 0) 42%);
}
.p26-seq__cap {
  position: absolute;
  left: var(--p26-pad-x);
  bottom: 34px;
  background: rgba(20, 21, 23, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--p26-cream);
  font-size: 13.5px;
  letter-spacing: 0.01em;
  padding: 10px 15px;
}
.p26-seq__count {
  position: absolute;
  right: var(--p26-pad-x);
  bottom: 44px;
  color: rgba(244, 239, 230, 0.78);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.p26-seq-static {
  max-width: 1280px;
  margin: clamp(44px, 6vw, 76px) auto 0;
  box-sizing: border-box;
  padding: 0 var(--p26-pad-x);
  display: none;
  flex-direction: column;
  gap: 36px;
}
.p26-seq-static figure { margin: 0; }
.p26-seq-static .p26-seq-static__f1 { aspect-ratio: 2000 / 1116; overflow: hidden; background: var(--p26-ph); }
.p26-seq-static .p26-seq-static__f2 { aspect-ratio: 2752 / 1536; overflow: hidden; background: var(--p26-ph); }
.p26-seq-static img { width: 100%; height: 100%; object-fit: cover; }
.p26-seq-static figcaption { margin-top: 10px; font-size: 13.5px; color: rgba(38, 40, 43, 0.6); }

@media (prefers-reduced-motion: reduce) {
  .p26-seq { display: none; }
  .p26-seq-static { display: flex; }
}

.p26-triptych {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: clamp(56px, 8vw, 96px) var(--p26-pad-x) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 36px clamp(24px, 3vw, 40px);
}
.p26-triptych figure { margin: 0; }
.p26-triptych .p26-triptych__frame { aspect-ratio: 3 / 4; overflow: hidden; background: var(--p26-ph); }
.p26-triptych img { width: 100%; height: 100%; object-fit: cover; }
.p26-triptych figcaption { margin-top: 12px; font-size: 13.5px; line-height: 1.5; color: rgba(38, 40, 43, 0.6); }

/* ---------------------------------------------------------------- Mieszkania */

#mieszkania .p26-lead { margin-top: 24px; max-width: 720px; }

.p26-flats {
  margin-top: clamp(44px, 6vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 44px clamp(36px, 4vw, 72px);
}
.p26-floors { flex: 0 0 auto; width: 216px; }
.p26-floors__sticky { position: sticky; top: 96px; }
.p26-floors__label {
  margin: 0 0 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(38, 40, 43, 0.5);
}
.p26-floors__fig { position: relative; width: 200px; aspect-ratio: 200 / 300; }
.p26-floors__fig svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.p26-floors__band { fill: rgba(0, 0, 0, 0); }
.p26-floors__band.is-active { fill: rgba(201, 138, 59, 0.24); }
.p26-floors__name {
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  pointer-events: none;
  font-size: 13px;
  font-weight: 400;
  color: var(--p26-ink);
}
.p26-floors__name.is-active { font-weight: 600; color: var(--p26-amber-dark); }
.p26-floors__hit {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.p26-floors__hit:hover { background: rgba(201, 138, 59, 0.08); }
.p26-floors__all {
  margin-top: 14px;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(38, 40, 43, 0.6);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.p26-floors__all.is-active { font-weight: 600; color: var(--p26-amber-dark); }

.p26-flats__list { flex: 1 1 640px; min-width: 0; }
.p26-tablewrap { overflow-x: auto; }
.p26-table { width: 100%; border-collapse: collapse; font-family: var(--p26-font-sans); }
.p26-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.p26-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(38, 40, 43, 0.5);
  padding: 0 10px 12px 0;
  border-bottom: 1px solid var(--p26-ink);
}
.p26-table th.p26-t-r { text-align: right; }
.p26-table th:last-child { padding-right: 0; }
.p26-row { cursor: pointer; border-bottom: 1px solid rgba(38, 40, 43, 0.14); }
.p26-row:hover { background: var(--p26-white); }
.p26-row.is-hidden { display: none; }
.p26-row td { padding: 19px 10px 19px 0; font-size: 15px; color: rgba(38, 40, 43, 0.75); }
.p26-row td.p26-t-lokal { font-family: var(--p26-font-serif); font-size: 21px; font-weight: 500; color: var(--p26-ink); }
.p26-row td.p26-t-m2 { font-weight: 500; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--p26-ink); }
.p26-row td.p26-t-ppm { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.p26-row td.p26-t-price { font-size: 15.5px; font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--p26-ink); }
.p26-row td.p26-t-act { padding: 19px 0; text-align: right; white-space: nowrap; }

.p26-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--p26-green);
}
.p26-t-act .p26-status { margin-right: 14px; }
.p26-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--p26-green);
  display: inline-block;
}
.p26-linkbtn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--p26-amber-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 0;
}
.p26-linkbtn:hover { color: var(--p26-ink); }

/* Karty mobilne */
.p26-cards { display: none; flex-direction: column; gap: 12px; }
.p26-card {
  background: var(--p26-white);
  border: 1px solid rgba(38, 40, 43, 0.12);
  padding: 18px;
  cursor: pointer;
}
.p26-card.is-hidden { display: none; }
.p26-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.p26-card__head h3 { margin: 0; font-family: var(--p26-font-serif); font-size: 20px; font-weight: 500; }
.p26-card__head .p26-status { font-size: 12.5px; gap: 6px; }
.p26-card__head .p26-status::before { width: 6px; height: 6px; }
.p26-card__meta { margin: 4px 0 0; font-size: 13.5px; color: rgba(38, 40, 43, 0.6); }
.p26-card__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 16px; }
.p26-card__m2 { font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; }
.p26-card__ppm { display: block; margin-top: 2px; font-size: 12.5px; color: rgba(38, 40, 43, 0.55); font-variant-numeric: tabular-nums; }
.p26-card__price { font-size: 16.5px; font-weight: 600; font-variant-numeric: tabular-nums; }
.p26-card .p26-linkbtn { margin-top: 14px; padding: 0; }

/* --------------------------------------------------------------- Lokalizacja */

.p26-loc {
  margin-top: clamp(44px, 6vw, 72px);
  display: flex;
  flex-wrap: wrap;
  gap: 40px clamp(40px, 5vw, 72px);
  align-items: flex-start;
}
.p26-loc__map { flex: 1.25 1 460px; min-width: min(100%, 300px); }
.p26-loc__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #EAE4D8;
  border: 1px solid rgba(38, 40, 43, 0.12);
  overflow: hidden;
}
.p26-loc__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.p26-loc__addr { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 24px; margin-top: 16px; }
.p26-loc__addr strong { font-size: 15px; font-weight: 600; }
.p26-loc__gmaps { font-size: 14px; font-weight: 500; color: var(--p26-amber-dark); text-decoration: underline; text-underline-offset: 4px; }
.p26-loc__gmaps:hover { color: var(--p26-ink); }

.p26-poi { flex: 1 1 360px; list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(38, 40, 43, 0.25); }
.p26-poi li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(38, 40, 43, 0.12);
}
.p26-poi__name { font-size: 15.5px; font-weight: 500; }
.p26-dots { flex: 1; border-bottom: 1px dotted rgba(38, 40, 43, 0.35); min-width: 24px; transform: translateY(-4px); }
.p26-poi__val { font-size: 15px; font-weight: 600; color: var(--p26-amber-dark); white-space: nowrap; }

/* ------------------------------------------------------------------ Standard */

.p26-grid1px {
  margin-top: clamp(40px, 5vw, 56px);
  border: 1px solid rgba(38, 40, 43, 0.16);
  background: rgba(38, 40, 43, 0.16);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 1px;
}
.p26-tile { background: var(--p26-cream); padding: 30px 28px 34px; }
.p26-tile svg { width: 38px; height: 38px; display: block; margin-bottom: 18px; }
.p26-tile h3 { margin: 0 0 8px; font-family: var(--p26-font-serif); font-size: 21px; font-weight: 500; }
.p26-tile p { margin: 0; font-size: 14.5px; line-height: 1.6; color: rgba(38, 40, 43, 0.65); }

/* ----------------------------------------------------------------- Deweloper */

.p26-textlink {
  display: inline-block;
  margin-top: 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--p26-amber-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.p26-textlink:hover { color: var(--p26-ink); }
.p26-quote {
  margin: clamp(56px, 8vw, 88px) 0 0;
  padding: clamp(40px, 5vw, 56px) 0;
  border-top: 1px solid rgba(38, 40, 43, 0.16);
  border-bottom: 1px solid rgba(38, 40, 43, 0.16);
}
.p26-quote p {
  margin: 0;
  font-family: var(--p26-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 980px;
  text-wrap: balance;
}

/* ------------------------------------------------------------------- Kontakt */

.p26-contact {
  position: relative;
  background: var(--p26-ink);
  color: var(--p26-cream);
  padding: var(--p26-pad-y) 0;
  overflow: hidden;
}
.p26-contact__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}
.p26-contact__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 40, 43, 0.93) 0%, rgba(31, 33, 36, 0.9) 55%, rgba(29, 31, 34, 0.96) 100%);
}
.p26-contact .p26-container { position: relative; }
.p26-contact .p26-h2 { color: var(--p26-cream); }
.p26-contact__lead {
  margin: 24px 0 0;
  max-width: 640px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.78);
}
.p26-contact__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 48px clamp(48px, 6vw, 96px);
  margin-top: clamp(44px, 6vw, 64px);
}
.p26-people { flex: 1 1 300px; max-width: 460px; }
.p26-person { border-top: 1px solid rgba(244, 239, 230, 0.18); padding: 18px 0 20px; }
.p26-person--mail { padding-bottom: 0; }
.p26-person__name { margin: 0; font-size: 16.5px; font-weight: 600; color: var(--p26-cream); }
.p26-person__role { margin: 3px 0 0; font-size: 13.5px; color: rgba(244, 239, 230, 0.55); }
.p26-person__tel {
  display: inline-block;
  margin-top: 10px;
  font-size: 17px;
  font-weight: 500;
  color: var(--p26-amber);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.p26-person__mail { font-size: 16px; font-weight: 500; color: var(--p26-amber); text-decoration: none; }
.p26 .p26-person__tel:hover, .p26 .p26-person__mail:hover { color: var(--p26-amber); text-decoration: underline; }

.p26-form { flex: 1 1 440px; max-width: 640px; color-scheme: dark; }
.p26-form__row { display: flex; flex-wrap: wrap; gap: 16px; }
.p26-form__row .p26-field { flex: 1 1 220px; }
.p26-field + .p26-field, .p26-form__row + .p26-field { margin-top: 16px; }
.p26-form__row .p26-field + .p26-field { margin-top: 0; }
.p26-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(244, 239, 230, 0.75);
  margin-bottom: 8px;
}
.p26-input {
  box-sizing: border-box;
  width: 100%;
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.28);
  color: var(--p26-cream);
  padding: 14px;
  font-size: 15.5px;
  border-radius: 2px;
  outline: none;
}
.p26-input:focus { border-color: var(--p26-amber); }
select.p26-input { cursor: pointer; }
select.p26-input option { background: var(--p26-ink); color: var(--p26-cream); }
textarea.p26-input { resize: vertical; font-family: inherit; }
.p26-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; }
.p26-consent input {
  width: 16px;
  height: 16px;
  accent-color: var(--p26-amber);
  margin: 3px 0 0;
  flex: none;
}
.p26-consent label { font-size: 13px; line-height: 1.55; color: rgba(244, 239, 230, 0.7); }
.p26-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.p26-submit {
  margin-top: 24px;
  background: var(--p26-amber);
  color: var(--p26-btn-ink);
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 17px 42px;
  transition: background-color 0.25s ease;
}
.p26-submit:hover { background: var(--p26-cream); }
.p26-form__org { margin: 22px 0 0; font-size: 13px; color: rgba(244, 239, 230, 0.5); }

.p26-form__notice {
  margin: 0 0 22px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  border: 1px solid rgba(244, 239, 230, 0.28);
  color: var(--p26-cream);
  outline: none;
}
.p26-form__notice--ok { background: rgba(92, 107, 84, 0.28); border-color: rgba(92, 107, 84, 0.7); }
.p26-form__notice--err { background: rgba(201, 138, 59, 0.16); border-color: var(--p26-amber); }

/* -------------------------------------------------------------------- Stopka */

.p26-footer { background: var(--p26-ink-deep); color: rgba(244, 239, 230, 0.6); padding: 48px 0; }
.p26-footer__cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px 40px;
}
.p26-footer__brand { margin: 0; font-family: var(--p26-font-serif); font-size: 20px; font-weight: 500; color: rgba(244, 239, 230, 0.92); }
.p26-footer__addr { margin: 8px 0 0; font-size: 13.5px; }
.p26-footer__c { margin: 0; font-size: 13.5px; }
.p26-footer__link { display: inline-block; margin-top: 6px; font-size: 14px; font-weight: 500; color: var(--p26-amber); text-decoration: none; }
.p26 .p26-footer__link:hover { color: var(--p26-amber); text-decoration: underline; }
.p26-footer__legal { margin: 30px 0 0; max-width: 720px; font-size: 12px; line-height: 1.65; color: rgba(244, 239, 230, 0.42); }

/* ------------------------------------------------------------------- Drawer */

.p26-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 21, 23, 0.55);
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.p26-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }

.p26-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(540px, 100vw);
  box-sizing: border-box;
  background: var(--p26-white);
  color: var(--p26-ink);
  z-index: 96;
  transform: translateX(102%);
  transition: transform 0.5s cubic-bezier(0.22, 0.8, 0.24, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -24px 0 60px rgba(20, 21, 23, 0.25);
}
.p26-drawer.is-open { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .p26-drawer, .p26-backdrop, .p26-menu { transition: none; }
}
.p26-drawer__in { padding: 0 clamp(22px, 4vw, 40px) 44px; }
.p26-drawer__head {
  position: sticky;
  top: 0;
  background: var(--p26-white);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 16px;
  border-bottom: 1px solid rgba(38, 40, 43, 0.14);
}
.p26-drawer__head h3 { margin: 0; font-family: var(--p26-font-serif); font-size: 30px; font-weight: 500; }
.p26-drawer__close {
  width: 44px;
  height: 44px;
  flex: none;
  background: none;
  border: 1px solid rgba(38, 40, 43, 0.25);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  color: var(--p26-ink);
}
.p26-drawer__close:hover { border-color: var(--p26-ink); }
.p26-drawer__meta { display: flex; align-items: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.p26-drawer__floor { font-size: 14.5px; color: rgba(38, 40, 43, 0.65); }
.p26-drawer__plan { margin: 20px 0 0; }
.p26-drawer__plan .p26-drawer__frame { aspect-ratio: 1800 / 1664; background: var(--p26-white); border: 1px solid rgba(38, 40, 43, 0.12); }
.p26-drawer__3d { margin: 14px 0 0; display: none; }
.p26-drawer__3d .p26-drawer__frame { aspect-ratio: 4 / 3; background: var(--p26-white); border: 1px solid rgba(38, 40, 43, 0.12); }
.p26-drawer.has-3d .p26-drawer__3d { display: block; }
.p26-drawer__frame img { width: 100%; height: 100%; object-fit: contain; }
.p26-drawer__desc { margin: 22px 0 0; font-size: 15.5px; line-height: 1.65; color: rgba(38, 40, 43, 0.78); }
.p26-drawer__label {
  margin: 0 0 4px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(38, 40, 43, 0.5);
}
.p26-drawer__rooms { margin-top: 26px; }
.p26-drawer__room {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(38, 40, 43, 0.1);
}
.p26-drawer__room .p26-dots { border-bottom-color: rgba(38, 40, 43, 0.3); min-width: 20px; }
.p26-drawer__room-n { font-size: 15px; color: rgba(38, 40, 43, 0.8); }
.p26-drawer__room-a { font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.p26-drawer__pricebox { margin-top: 30px; border-top: 1px solid var(--p26-ink); padding-top: 20px; }
.p26-drawer__pricebox .p26-drawer__label { margin-bottom: 6px; }
.p26-drawer__pricerow { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.p26-drawer__price { font-family: var(--p26-font-serif); font-size: clamp(30px, 5vw, 38px); font-weight: 500; font-variant-numeric: tabular-nums; }
.p26-drawer__ppm { font-size: 14.5px; color: rgba(38, 40, 43, 0.6); font-variant-numeric: tabular-nums; }
.p26-drawer__cta {
  margin-top: 26px;
  width: 100%;
  background: var(--p26-ink);
  color: var(--p26-cream);
  border: none;
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 18px;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.p26-drawer__cta:hover { background: var(--p26-amber); color: var(--p26-btn-ink); }

/* ------------------------------------------------------- Mobile: pasek + karty */

.p26-mbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(38, 40, 43, 0.15);
  background: var(--p26-white);
  padding-bottom: env(safe-area-inset-bottom);
}
.p26-mbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
}
.p26-mbar__tel { background: var(--p26-white); color: var(--p26-ink); font-variant-numeric: tabular-nums; }
.p26 .p26-mbar__tel:hover { color: var(--p26-ink); }
.p26-mbar__cta { background: var(--p26-ink); color: var(--p26-cream); }
.p26 .p26-mbar__cta:hover { color: var(--p26-cream); }

@media (max-width: 767px) {
  .p26-tablewrap { display: none; }
  .p26-cards { display: flex; }
  .p26-mbar { display: grid; }
  .p26-footer { padding-bottom: calc(116px + env(safe-area-inset-bottom)); }
}
