/*
Theme Name: Księcia Józefa 121
Theme URI: https://ksieciajozefa121.pl
Author: Deweloper KJ121
Description: Motyw inwestycji Księcia Józefa 121 w Krakowie
Version: 3.0.0
Text Domain: ksiecia-jozefa
*/

/* ===== WORDPRESS RESET ===== */
.site-header,
.site-footer-wp,
.wp-block-post-title {
  display: none !important
}

.entry-content,
.page-content,
.post-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important
}

.wp-site-blocks {
  padding: 0 !important;
  margin: 0 !important
}

/* ===== ZMIENNE ===== */
:root {
  --forest: #1a3a2a;
  --forest-deep: #0f2219;
  --forest-mid: #2d5c3f;
  --stone: #e8dcc8;
  --stone-light: #f5f0e8;
  --stone-dark: #c4b49a;
  --cream: #faf8f4;
  --white: #ffffff;
  --text-dark: #1a1a18;
  --text-mid: #4a4a42;
  --text-light: #7a7a70;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  display: inline-flex;
  align-items: center
}

/* ===== NAV ===== */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 34, 25, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 220, 200, 0.1);
  transition: background .3s;
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--stone);
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-logo-monogram {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--stone);
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.nav-logo-name {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: #fff
}

.nav-logo-sub {
  font-size: .58rem;
  letter-spacing: .25em;
  color: var(--stone-dark);
  margin-top: 3px
}

#desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem
}

@media(min-width:1024px) {
  #desktop-nav {
    display: flex
  }
}

.nav-link {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--stone);
  transition: width .3s
}

.nav-link:hover,
.nav-link.active {
  color: #fff
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.nav-cta {
  border: 1px solid rgba(232, 220, 200, .4);
  color: #fff;
  padding: .6rem 1.5rem;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s
}

.nav-cta:hover {
  background: rgba(232, 220, 200, .12);
  border-color: rgba(232, 220, 200, .7)
}

#mobile-menu-button {
  color: #fff;
  display: flex;
  align-items: center
}

@media(min-width:1024px) {
  #mobile-menu-button {
    display: none
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--forest-deep);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.mobile-menu-overlay.open {
  transform: translateX(0)
}

.mobile-menu-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 220, 200, .04) 0%, transparent 60%);
  pointer-events: none
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  z-index: 2
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: .75rem
}

.mobile-logo-name {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: #fff;
  line-height: 1
}

.mobile-logo-sub {
  display: block;
  font-size: .58rem;
  letter-spacing: .3em;
  color: var(--stone-dark);
  margin-top: 3px
}

.mobile-menu-close {
  color: rgba(255, 255, 255, .6);
  display: flex
}

.mobile-menu-links {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
  position: relative;
  z-index: 2
}

.mobile-menu-link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 1.5rem;
  letter-spacing: .02em;
  transition: color .2s, padding-left .2s
}

.mobile-menu-link:hover {
  color: var(--stone);
  padding-left: .5rem
}

.mobile-menu-footer {
  padding: 2rem;
  position: relative;
  z-index: 2
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--stone);
  color: var(--forest-deep);
  padding: 1rem 1.5rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 25, 15, .6) 0%, rgba(15, 34, 25, .35) 45%, rgba(15, 34, 25, .7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5rem;
  max-width: 720px
}

@media(max-width:768px) {
  .hero-content {
    padding: 0 1.5rem
  }
}

.hero-eyebrow {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: .875rem;
}

.hero-eyebrow span {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--stone-dark)
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 1.75rem;
  letter-spacing: -.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--stone)
}

.hero-desc {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, .62);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.75rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.hero-btn-primary {
  background: var(--stone);
  color: var(--forest-deep);
  padding: .95rem 2.5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s;
}

.hero-btn-primary:hover {
  background: var(--stone-dark)
}

.hero-btn-ghost {
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  padding: .95rem 2.5rem;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color .2s;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero-btn-ghost:hover {
  border-color: rgba(255, 255, 255, .65)
}

.hero-btn-ghost .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings: 'FILL' 0
}

.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  background: rgba(255, 255, 255, .06);
  border-left: 1px solid rgba(255, 255, 255, .1);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat {
  padding: 1.75rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, .08)
}

.hero-stat:last-child {
  border-right: 0
}

.hero-stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1
}

.hero-stat-l {
  display: block;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  margin-top: 5px
}

@media(max-width:768px) {
  .hero-stats {
    display: none
  }
}

.hero-tag {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  z-index: 2;
  transform: translateY(-50%) rotate(90deg);
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25)
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3)
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .18);
  position: relative;
  overflow: hidden
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .45);
  animation: sl 2s ease-in-out infinite
}

@keyframes sl {
  0% {
    left: -100%
  }

  100% {
    left: 100%
  }
}

@media(max-width:768px) {
  .scroll-indicator {
    display: none
  }
}

/* ===== STRIP ===== */
.features-strip {
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: .875rem 2rem;
  gap: 0;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  padding: .4rem 1.5rem
}

.strip-item .material-symbols-outlined {
  font-size: 13px;
  color: var(--stone-dark)
}

.strip-sep {
  color: rgba(255, 255, 255, .18);
  font-size: .75rem
}

/* ===== SEKCJA — SHARED ===== */
.section-eyebrow {
  font-size: .65rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--text-light)
}

.section-eyebrow.centered {
  justify-content: center
}

.section-eyebrow.centered::before {
  display: none
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1rem
}

.section-h2 em {
  font-style: italic;
  color: var(--forest-mid)
}

.section-text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.25rem
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem
}

/* ===== O INWESTYCJI ===== */
.section-about {
  padding: 5rem 0;
  background: var(--white)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center
}

@media(min-width:1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem
  }
}

.about-stats {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--stone);
  padding-top: 2rem
}

.about-stat {
  flex: 1;
  border-right: 1px solid var(--stone);
  padding: 0 1.5rem
}

.about-stat:first-child {
  padding-left: 0
}

.about-stat:last-child {
  border-right: 0
}

.about-stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1
}

.about-stat-l {
  display: block;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px
}

.about-image-wrap {
  position: relative
}

.about-image-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover
}

.about-image-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--forest);
  color: var(--stone);
  padding: .875rem 1.5rem;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem
}

.about-image-badge .material-symbols-outlined {
  font-size: 15px
}

/* ===== APARTAMENTY ===== */
.section-apartments {
  padding: 5rem 0;
  background: var(--cream)
}

.section-header {
  margin-bottom: 3.5rem
}

.section-header.centered {
  text-align: center
}

.apartments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

@media(min-width:1024px) {
  .apartments-grid {
    grid-template-columns: 1fr 1fr
  }
}

.apt-card {
  background: var(--white);
  overflow: hidden
}

/* Górna część karty — ciemna z numerem */
.apt-card-top {
  height: 280px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apt-card-top img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  transition: transform .6s ease;
}

.apt-card:hover .apt-card-top img {
  transform: scale(1.04)
}

.apt-card-number {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .08);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.apt-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  background: var(--stone);
  color: var(--forest-deep);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem .875rem;
  font-weight: 500;
}

.apt-card-badge.inv {
  background: var(--forest-deep);
  color: var(--stone);
  border: 1px solid rgba(232, 220, 200, .3)
}

.apt-card-status {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .75rem;
}

.apt-card-status.free {
  background: rgba(255, 255, 255, .9);
  color: var(--forest)
}

.apt-card-status.inv-tag {
  background: rgba(15, 34, 25, .8);
  color: var(--stone);
  border: 1px solid rgba(232, 220, 200, .2)
}

/* Body karty */
.apt-card-body {
  padding: 2rem 2.5rem 2.5rem
}

.apt-card-header {
  margin-bottom: 1.5rem
}

.apt-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: .25rem
}

.apt-tagline {
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: .05em
}

/* Specs row */
.apt-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  margin-bottom: 1.5rem;
  text-align: center;
}

.apt-spec-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1
}

.apt-spec-l {
  display: block;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px
}

/* Zakładki rzutów */
.rzuty-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--stone);
  margin-bottom: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.rzuty-tabs::-webkit-scrollbar {
  display: none
}

.rzut-tab {
  padding: .5rem 1.25rem;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  color: var(--text-light);
  cursor: pointer;
  transition: color .2s, border-color .2s;
  font-family: var(--sans);
  white-space: nowrap;
  flex-shrink: 0;
}

.rzut-tab:hover,
.rzut-tab.active {
  color: var(--forest);
  border-bottom-color: var(--forest)
}

.rzut-tab-pdf {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .3rem;
  color: var(--text-light);
  padding: .5rem 1rem;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rzut-tab-pdf:hover {
  color: var(--forest)
}

.rzut-tab-pdf .material-symbols-outlined {
  font-size: 13px
}

.rzut-panels {
  margin-bottom: 1.5rem
}

.rzut-panel {
  display: none
}

.rzut-panel.active {
  display: block
}

.rzut-panel img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: var(--stone-light);
  padding: .5rem;
  border: 1px dashed var(--stone-dark);
}

/* Placeholder gdy brak obrazka */
.rzut-placeholder {
  width: 100%;
  height: 160px;
  background: var(--stone-light);
  border: 1px dashed var(--stone-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--text-light);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rzut-placeholder .material-symbols-outlined {
  font-size: 1.5rem;
  font-variation-settings: 'FILL' 0
}

/* Features */
.apt-features {
  list-style: none;
  margin-bottom: 1.75rem
}

.apt-features li {
  font-size: .875rem;
  color: var(--text-mid);
  padding: .45rem 0;
  display: flex;
  align-items: center;
  gap: .875rem;
  border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.apt-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--forest-mid);
  flex-shrink: 0
}

/* Cena */
.apt-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid var(--stone);
  margin-bottom: 1.5rem;
}

.apt-price-col {}

.apt-price-label {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px
}

.apt-price-main {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1
}

.apt-price-per {
  text-align: right
}

.apt-price-per-n {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-mid)
}

/* Przyciski */
.apt-btns {
  display: flex;
  gap: .75rem
}

.apt-btn-main {
  flex: 1;
  background: var(--forest);
  color: var(--stone-light);
  padding: .9rem 1.5rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  transition: background .2s;
  border: 1px solid var(--forest);
}

.apt-btn-main:hover {
  background: var(--forest-mid)
}

.apt-btn-main.dark {
  background: var(--forest-deep);
  border-color: var(--forest-deep)
}

.apt-btn-dl {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .9rem 1.25rem;
  border: 1px solid var(--stone-dark);
  color: var(--text-mid);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--stone-light);
  white-space: nowrap;
  transition: background .2s;
}

.apt-btn-dl:hover {
  background: var(--stone)
}

.apt-btn-dl .material-symbols-outlined {
  font-size: 15px
}

/* Pasek dokumentów */
.docs-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 2.5rem;
  background: var(--white);
  margin-top: 2px;
  border-top: 3px solid var(--forest);
}

.docs-bar-label {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light)
}

.docs-bar-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--forest);
  border-bottom: 1px solid var(--stone-dark);
  padding-bottom: 2px;
  transition: color .2s;
}

.docs-bar-link:hover {
  color: var(--forest-mid)
}

.docs-bar-link .material-symbols-outlined {
  font-size: 15px
}

/* ===== ATUTY ===== */
.section-atuty {
  padding: 5rem 0;
  background: var(--white)
}

.atuty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem
}

@media(min-width:640px) {
  .atuty-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .atuty-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.atut {
  border-top: 1px solid var(--stone-dark);
  padding-top: 1.75rem
}

.atut-icon {
  width: 42px;
  height: 42px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem
}

.atut-icon .material-symbols-outlined {
  font-size: 19px;
  color: var(--stone)
}

.atut-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .6rem
}

.atut-desc {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300
}

/* ===== LOKALIZACJA ===== */
.section-lokalizacja {
  padding: 5rem 0;
  background: var(--cream)
}

.lok-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start
}

@media(min-width:1024px) {
  .lok-grid {
    grid-template-columns: 1fr 1fr
  }
}

.lok-quote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  border-left: 3px solid var(--forest-mid);
  padding: 0 1.5rem;
  margin: 1.5rem 0 2rem;
  line-height: 1.65
}

.lok-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem
}

.lok-list-2col {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 3rem
}

@media(min-width:768px) {
  .lok-list-2col {
    grid-template-columns: 1fr 1fr
  }
}

.lok-list-2col .lok-item {
  border-bottom: 1px solid var(--stone);
  padding-bottom: 1.5rem
}

.lok-list-2col .lok-item:nth-last-child(-n+2) {
  border-bottom: 0;
  padding-bottom: 0
}

.lok-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--stone)
}

.lok-item:last-child {
  border-bottom: 0;
  padding-bottom: 0
}

.lok-dist {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest);
  width: 140px;
  min-width: 140px;
  line-height: 1;
  flex-shrink: 0
}

.lok-name {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px
}

.lok-desc {
  font-size: .78rem;
  color: var(--text-light)
}

.lok-map-wrap {
  position: relative;
  height: 360px;
  overflow: hidden
}

.lok-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}

.map-pin-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  padding: .6rem 1rem;
  font-size: .78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .4rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
  z-index: 10
}

.map-pin-label .material-symbols-outlined {
  font-size: 15px;
  color: var(--forest)
}

.map-note {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 34, 25, .9);
  color: rgba(255, 255, 255, .7);
  padding: .75rem 1.25rem;
  font-size: .73rem;
  line-height: 1.5;
  z-index: 10
}

/* ===== POSTĘP BUDOWY ===== */
.section-budowa {
  padding: 5rem 0;
  background: var(--stone-light)
}

.budowa-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 2rem
}

.budowa-date {
  font-size: .78rem;
  color: var(--text-light);
  text-align: right;
  line-height: 1.7
}

.budowa-date strong {
  color: var(--forest)
}

.budowa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 4px
}

@media(max-width:768px) {
  .budowa-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.budowa-photo {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 100%);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.budowa-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.budowa-photo:hover img {
  transform: scale(1.04)
}

.budowa-photo-main {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto
}

@media(max-width:768px) {
  .budowa-photo-main {
    grid-column: span 2;
    grid-row: span 1
  }
}

.budowa-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .25);
  text-align: center;
  padding: 1rem
}

.budowa-placeholder .material-symbols-outlined {
  font-size: 2rem;
  margin-bottom: .5rem;
  font-variation-settings: 'FILL' 0
}

.budowa-placeholder p {
  font-size: .73rem;
  letter-spacing: .05em
}

.budowa-placeholder-hint {
  font-size: .62rem !important;
  color: rgba(255, 255, 255, .15);
  margin-top: 4px
}

.budowa-photo-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .5));
  padding: 1.25rem 1rem .75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end
}

.budowa-photo-date {
  font-size: .62rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .1em
}

.budowa-photo-label {
  font-size: .68rem;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .08em;
  text-transform: uppercase
}

.budowa-note {
  margin-top: 1.5rem;
  font-size: .78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: .5rem
}

.budowa-note .material-symbols-outlined {
  font-size: 15px;
  font-variation-settings: 'FILL' 0
}

.budowa-note a {
  color: var(--forest)
}

/* ===== KONTAKT ===== */
.section-kontakt {
  padding: 5rem 0;
  background: var(--white)
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: start
}

@media(min-width:1024px) {
  .kontakt-grid {
    grid-template-columns: 1fr 1fr
  }
}

.contact-person {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin: 2rem 0 2.5rem;
  padding: 1.5rem;
  background: var(--stone-light);
  border-left: 3px solid var(--forest)
}

.contact-person-photo {
  flex-shrink: 0
}

.contact-person-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--stone) 0%, var(--stone-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--forest);
  font-style: italic
}

.contact-person-avatar img {
  width: 72px;
  height: 72px;
  object-fit: cover
}

.contact-person-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 3px
}

.contact-person-role {
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .875rem
}

.contact-person-phone,
.contact-person-email {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: var(--forest);
  margin-bottom: .25rem
}

.contact-person-phone .material-symbols-outlined,
.contact-person-email .material-symbols-outlined {
  font-size: 14px
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem 0 2rem
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  padding: .75rem 0;
  border-bottom: 1px solid var(--stone)
}

.contact-detail-label {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 75px
}

.contact-detail-val {
  font-size: .875rem;
  color: var(--text-dark)
}

.urgency-box {
  background: var(--forest);
  color: #fff;
  padding: 2rem 2.25rem
}

.urgency-box h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: .75rem
}

.urgency-box p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.75
}

.urgency-counts {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.urgency-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1
}

.urgency-l {
  display: block;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .32);
  margin-top: 4px
}

.kontakt-form-wrap {
  background: var(--stone-light);
  padding: 2.5rem
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem
}

.form-group label {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light)
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--stone-dark);
  background: var(--white);
  padding: .875rem 1rem;
  font-size: .9rem;
  font-family: var(--sans);
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest)
}

.form-group textarea {
  resize: none;
  height: 100px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

@media(max-width:640px) {
  .form-row {
    grid-template-columns: 1fr
  }
}

.form-consent {
  display: flex;
  gap: .75rem;
  align-items: flex-start
}

.form-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--forest)
}

.form-consent label {
  font-size: .76rem;
  color: var(--text-light);
  line-height: 1.6
}

.form-submit {
  background: var(--forest);
  color: var(--stone-light);
  border: none;
  padding: 1rem 2rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  transition: background .2s;
}

.form-submit:hover {
  background: var(--forest-mid)
}

.form-submit .material-symbols-outlined {
  font-size: 17px;
  font-variation-settings: 'FILL' 0
}

.form-success {
  text-align: center;
  padding: 3rem 2rem
}

.form-success .material-symbols-outlined {
  font-size: 3.5rem;
  color: var(--forest);
  display: block;
  margin-bottom: 1rem
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: .5rem
}

.form-success p {
  color: var(--text-light)
}

.hidden {
  display: none !important
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, .42)
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

@media(min-width:640px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr
  }
}

@media(min-width:1024px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1.25rem
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: rgba(232, 220, 200, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  color: var(--stone-dark);
  letter-spacing: 1px
}

.footer-logo-name {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .72);
  line-height: 1
}

.footer-logo-sub {
  display: block;
  font-size: .58rem;
  letter-spacing: .25em;
  color: rgba(255, 255, 255, .28);
  margin-top: 3px
}

.footer-tagline {
  font-size: .8rem;
  color: rgba(255, 255, 255, .32);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 1.25rem
}

.footer-legal-info {
  font-size: .68rem;
  color: rgba(255, 255, 255, .18);
  line-height: 1.7
}

.footer-heading {
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  margin-bottom: 1.25rem
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .875rem
}

.footer-contact-list li {
  display: flex;
  gap: .625rem;
  font-size: .8rem;
  align-items: flex-start;
  line-height: 1.5
}

.footer-contact-list .material-symbols-outlined {
  font-size: 14px;
  color: rgba(255, 255, 255, .22);
  flex-shrink: 0;
  margin-top: 1px
}

.footer-contact-list a {
  color: inherit;
  transition: color .2s
}

.footer-contact-list a:hover {
  color: rgba(255, 255, 255, .68)
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.footer-links a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .38);
  transition: color .2s
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .72)
}

.footer-bottom {
  padding: 1.5rem 0;
  font-size: .72rem;
  color: rgba(255, 255, 255, .18)
}

.footer-disclaimer {
  margin-top: .25rem;
  font-size: .68rem
}

/* ===== LIGHTBOX ===== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 15, .95);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: all
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .6);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center
}

/* ===== ANIMACJE ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0)
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
  .hero-content {
    padding: 0 1.5rem
  }

  .hero-title {
    font-size: clamp(2.75rem, 10vw, 4rem)
  }

  .about-image-wrap img {
    height: 300px
  }

  .apt-card-body {
    padding: 1.5rem
  }

  .kontakt-form-wrap {
    padding: 1.75rem
  }

  .docs-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem
  }
}

@media(max-width:480px) {
  .hero-btns {
    flex-direction: column
  }

  .apt-btns {
    flex-direction: column
  }

  .features-strip {
    gap: .5rem
  }

  .strip-sep {
    display: none
  }

  .form-row {
    grid-template-columns: 1fr
  }
}

/* ===================================================
   ROZSZERZENIE v3.1 — podstrony + UX
   =================================================== */

/* ── NAV - dodatkowe ── */
.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .55);
  font-size: .72rem;
  letter-spacing: .06em;
  transition: color .2s
}

.nav-phone:hover {
  color: #fff
}

.nav-phone .material-symbols-outlined {
  font-size: 14px
}

@media(max-width:1023px) {
  .nav-phone {
    display: none
  }
}

/* ── GALERIA HERO ── */
.galeria-hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden
}

.galeria-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0
}

.galeria-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 25, 15, .72) 0%, rgba(15, 34, 25, .45) 50%, rgba(15, 34, 25, .8) 100%)
}

.galeria-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  margin: 0 auto;
  padding: 10rem 2.5rem 5rem;
  width: 100%
}

@media(max-width:768px) {
  .galeria-hero {
    min-height: 55vh
  }

  .galeria-hero-inner {
    padding: 8rem 1.25rem 3rem
  }
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--forest-deep);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 45vh;
  display: flex;
  align-items: flex-end
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 220, 200, .04) 0%, transparent 60%);
  pointer-events: none
}

.page-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2
}

.page-eyebrow {
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--stone-dark)
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem
}

.page-title em {
  font-style: italic;
  color: var(--stone)
}

.page-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.85;
  font-weight: 300;
  max-width: 520px
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  transition: color .2s;
  margin-bottom: 2rem
}

.back-link:hover {
  color: rgba(255, 255, 255, .75)
}

.back-link .material-symbols-outlined {
  font-size: 14px
}

/* ── MID CTA ── */
.section-mid-cta {
  padding: 4.5rem 0;
  background: var(--forest);
  text-align: center
}

.mid-cta-eyebrow {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(232, 220, 200, .42);
  margin-bottom: 1.25rem
}

.mid-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 2.25rem
}

.mid-cta-title em {
  font-style: italic;
  color: var(--stone)
}

.mid-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap
}

.mid-cta-btn-primary {
  background: var(--stone);
  color: var(--forest-deep);
  padding: .95rem 2.5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s
}

.mid-cta-btn-primary:hover {
  background: var(--stone-dark)
}

.mid-cta-btn-ghost {
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: .95rem 2.5rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color .2s
}

.mid-cta-btn-ghost:hover {
  border-color: rgba(255, 255, 255, .65)
}

/* ── MIESZKANIA — dostępność ── */
.avail-block {
  background: var(--white);
  padding: 5rem 0;
  border-bottom: 1px solid var(--stone)
}

.avail-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center
}

@media(min-width:768px) {
  .avail-inner {
    grid-template-columns: 1fr 1fr
  }
}

.avail-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem
}

.avail-text h2 em {
  font-style: italic;
  color: var(--forest-mid)
}

.avail-text p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300
}

.avail-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--stone);
  padding-top: 2rem;
  margin-top: 2.5rem
}

.avail-stat {
  flex: 1;
  border-right: 1px solid var(--stone);
  padding: 0 1.5rem
}

.avail-stat:first-child {
  padding-left: 0
}

.avail-stat:last-child {
  border-right: 0
}

.avail-stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1
}

.avail-stat-l {
  display: block;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px
}

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--stone-light);
  border: 1px solid var(--stone-dark);
  padding: .5rem 1rem;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 2rem
}

.avail-badge .material-symbols-outlined {
  font-size: 13px;
  color: var(--forest)
}

/* ── MIESZKANIA — karty oferty ── */
.section-offer {
  padding: 5rem 0;
  background: var(--cream)
}

.offer-block {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 2px
}

@media(min-width:1024px) {
  .offer-block {
    grid-template-columns: 1fr 1fr
  }
}

.offer-visual {
  background: var(--forest);
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.offer-visual-num {
  font-family: var(--serif);
  font-size: 12rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .06);
  user-select: none;
  line-height: 1
}

.offer-visual-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
  background: var(--stone);
  color: var(--forest-deep);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem .875rem;
  font-weight: 500
}

.offer-visual-badge.inv {
  background: rgba(232, 220, 200, .12);
  color: var(--stone);
  border: 1px solid rgba(232, 220, 200, .25)
}

.offer-visual-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
  line-height: 1
}

.offer-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35
}

.offer-body {
  padding: 3rem
}

.offer-name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: .4rem
}

.offer-tagline {
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: .05em;
  margin-bottom: 2rem
}

.offer-desc {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem
}

.offer-params {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.offer-params li {
  font-size: .875rem;
  color: var(--text-mid);
  padding: .45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  display: flex;
  align-items: center;
  gap: .875rem
}

.offer-params li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--forest-mid);
  flex-shrink: 0
}

.offer-price-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between
}

.offer-price-label {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px
}

.offer-price-main {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1
}

.offer-price-per {
  text-align: right
}

.offer-price-per-n {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text-mid)
}

.offer-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(26, 58, 42, .08);
  color: var(--forest);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .875rem;
  margin-bottom: 1.5rem
}

.offer-btns {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap
}

.offer-btn-primary {
  flex: 1;
  background: var(--forest);
  color: var(--stone-light);
  padding: .9rem 1.5rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid var(--forest);
  transition: background .2s;
  min-width: 160px
}

.offer-btn-primary:hover {
  background: var(--forest-mid)
}

.offer-btn-ghost {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .9rem 1.25rem;
  border: 1px solid var(--stone-dark);
  color: var(--text-mid);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--stone-light);
  transition: background .2s;
  white-space: nowrap
}

.offer-btn-ghost:hover {
  background: var(--stone)
}

/* ── MIESZKANIA — rzuty na str. mieszkania ── */
.section-plans {
  padding: 4rem 0;
  background: var(--white)
}

.plans-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  overflow: hidden
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem
}

.plans-grid>div {
  min-width: 0;
  overflow: hidden
}

@media(min-width:1024px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start
  }
}

.plans-block-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--text-dark)
}

/* ── DOKUMENTY — podstrona mieszkania ── */
.section-docs {
  padding: 3.5rem 0;
  background: var(--stone-light)
}

.docs-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem
}

.docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem
}

@media(min-width:640px) {
  .docs-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.doc-card {
  background: var(--white);
  padding: 1.5rem;
  border-top: 2px solid var(--stone-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .2s
}

.doc-card:hover {
  border-color: var(--forest)
}

.doc-card-icon {
  width: 36px;
  height: 36px;
  background: var(--stone-light);
  display: flex;
  align-items: center;
  justify-content: center
}

.doc-card-icon .material-symbols-outlined {
  font-size: 18px;
  color: var(--forest)
}

.doc-card-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-dark)
}

.doc-card-desc {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1
}

.doc-card-link {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--stone-dark);
  padding-bottom: 2px;
  transition: color .2s
}

.doc-card-link:hover {
  color: var(--forest-mid)
}

.doc-card-link .material-symbols-outlined {
  font-size: 13px
}

/* ── GALERIA — grid ── */
.section-gallery {
  padding: 5rem 0;
  background: var(--cream)
}

.gallery-cats {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem
}

.gallery-cat {
  padding: .5rem 1.25rem;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--stone-dark);
  background: none;
  color: var(--text-mid);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  font-family: var(--sans)
}

.gallery-cat.active,
.gallery-cat:hover {
  background: var(--forest);
  color: var(--stone);
  border-color: var(--forest)
}

.gallery-group {
  margin-bottom: 4rem
}

.gallery-group-title {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.gallery-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--stone)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px
}

@media(min-width:640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.gallery-item-wrap {
  aspect-ratio: 4/3;
  background: var(--forest);
  overflow: hidden;
  position: relative;
  cursor: pointer
}

.gallery-item-wrap.large {
  grid-column: span 2;
  aspect-ratio: 16/7
}

.gallery-item-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  opacity: .6
}

.gallery-item-wrap:hover img {
  transform: scale(1.04)
}

.gallery-item-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .2)
}

.gallery-item-placeholder .material-symbols-outlined {
  font-size: 2rem;
  font-variation-settings: 'FILL' 0
}

.gallery-item-placeholder span {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 15, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s
}

.gallery-item-wrap:hover .gallery-item-overlay {
  opacity: 1
}

.gallery-item-overlay .material-symbols-outlined {
  font-size: 2rem;
  color: #fff;
  font-variation-settings: 'FILL' 0
}

/* ── KONTAKT — full ── */
.section-contact-full {
  padding: 5rem 0;
  background: var(--white)
}

.contact-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: start
}

@media(min-width:1024px) {
  .contact-full-grid {
    grid-template-columns: 1fr 1fr
  }
}

.contact-avail {
  background: var(--forest);
  color: #fff;
  padding: 2rem 2.25rem;
  margin-top: 2.5rem
}

.contact-avail h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: .6rem
}

.contact-avail p {
  font-size: .875rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75
}

.contact-avail-nums {
  display: flex;
  gap: 2rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.contact-avail-n {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--stone);
  line-height: 1
}

.contact-avail-l {
  display: block;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .32);
  margin-top: 4px
}

.contact-map-block {
  margin-top: 2.5rem
}

.contact-map-block h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--text-dark)
}

.contact-map-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  border: 1px solid var(--stone)
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}

/* ── LOKALIZACJA ── */
.section-location-full {
  padding: 5rem 0;
  background: var(--cream)
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: start
}

@media(min-width:1024px) {
  .location-grid {
    grid-template-columns: 1fr 1fr
  }
}

.location-map-wrap {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--stone)
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block
}

.location-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem
}

.location-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--stone)
}

.location-point:last-child {
  border-bottom: 0;
  padding-bottom: 0
}

.location-dist {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  min-width: 65px;
  line-height: 1;
  flex-shrink: 0
}

.location-name {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px
}

.location-desc {
  font-size: .78rem;
  color: var(--text-light)
}

/* ── HOMEPAGE — btn-all-link ── */
.btn-all-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--stone-dark);
  color: var(--text-mid);
  padding: .875rem 2rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--white);
  transition: background .2s, border-color .2s, color .2s
}

.btn-all-link:hover {
  background: var(--forest);
  color: var(--stone);
  border-color: var(--forest)
}

.btn-all-link .material-symbols-outlined {
  font-size: 15px;
  font-variation-settings: 'FILL' 0
}

.section-all-link {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem
}

/* ── GALERIA PREVIEW ── */
.section-gallery-preview {
  padding: 5rem 0;
  background: var(--stone-light)
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 3rem
}

@media(max-width:640px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.gallery-preview-item {
  aspect-ratio: 4/3;
  background: var(--forest);
  overflow: hidden;
  position: relative
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: transform .5s ease, opacity .3s
}

.gallery-preview-item:hover img {
  transform: scale(1.04);
  opacity: .7
}

.gallery-preview-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
  color: rgba(255, 255, 255, .18)
}

.gallery-preview-placeholder .material-symbols-outlined {
  font-size: 2rem;
  font-variation-settings: 'FILL' 0
}

.gallery-preview-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem
}

/* ── CONTACT MINI ── */
.section-contact-mini {
  padding: 4rem 0;
  background: var(--stone-light);
  border-top: 1px solid var(--stone)
}

.contact-mini-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center
}

@media(min-width:768px) {
  .contact-mini-inner {
    grid-template-columns: 1fr auto
  }
}

.contact-mini-text h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: .6rem
}

.contact-mini-text h2 em {
  font-style: italic;
  color: var(--forest-mid)
}

.contact-mini-text p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.75
}

.contact-mini-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-start
}

@media(min-width:768px) {
  .contact-mini-actions {
    align-items: flex-end
  }
}

.contact-mini-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--forest)
}

.contact-mini-phone .material-symbols-outlined {
  font-size: 18px
}

.contact-mini-btn {
  background: var(--forest);
  color: var(--stone-light);
  padding: .875rem 2rem;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s;
  white-space: nowrap
}

.contact-mini-btn:hover {
  background: var(--forest-mid)
}

/* ── RESPONSIVE extra ── */
@media(max-width:768px) {
  .page-hero {
    padding: 8rem 0 3.5rem
  }

  .offer-body {
    padding: 2rem 1.5rem
  }

  .offer-btns {
    flex-direction: column
  }

  /* Kolejność na mobile: zdjęcie zawsze nad treścią */
  #apt-53 .offer-visual {
    order: -1
  }

  #apt-100 .offer-block {
    display: grid;
    grid-template-columns: 1fr
  }

  #apt-100 .offer-visual {
    order: -1
  }

  #apt-100 .offer-body {
    order: 0 !important
  }

  .docs-grid {
    grid-template-columns: 1fr
  }

  .mid-cta-btns {
    flex-direction: column;
    align-items: center
  }

  .contact-full-grid {
    gap: 3rem
  }
}

@media(max-width:480px) {
  .gallery-preview-grid {
    grid-template-columns: 1fr
  }

  .avail-stats {
    flex-direction: column;
    gap: 1.5rem
  }

  .avail-stat {
    border-right: 0;
    border-bottom: 1px solid var(--stone);
    padding-bottom: 1.25rem;
    padding-left: 0
  }

  .avail-stat:last-child {
    border-bottom: 0
  }
}

/* ===================================================
   GALLERY SHOWCASE — v3.2
   =================================================== */

.gallery-showcase {
  padding: 5rem 0;
  background: var(--cream)
}

.gallery-showcase-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem
}

/* Category tabs */
.showcase-cats {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 3rem;
  overflow-x: auto;
}

.showcase-cat {
  padding: .75rem 1.75rem;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  font-family: var(--sans);
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}

.showcase-cat.active,
.showcase-cat:hover {
  color: var(--forest);
  border-bottom-color: var(--forest)
}

/* Main viewer */
.showcase-stage {
  width: 100%
}

.showcase-viewer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media(max-width:768px) {
  .showcase-viewer {
    grid-template-columns: auto 1fr auto
  }
}

/* Nav arrows — absolutnie po bokach zdjęcia */
.showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  z-index: 10;
  border: 2px solid var(--forest);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.showcase-arrow:hover {
  background: var(--forest);
  border-color: var(--forest)
}

.showcase-arrow:hover .material-symbols-outlined {
  color: var(--stone)
}

.showcase-arrow .material-symbols-outlined {
  font-size: 28px;
  color: var(--forest);
  transition: color .2s
}

.showcase-arrow-left {
  left: 1rem
}

.showcase-arrow-right {
  right: 1rem
}

/* Main image area */
.showcase-main {
  position: relative;
  flex: 1;
  aspect-ratio: 16/9;
  background: var(--forest-deep);
  background: var(--forest);
  overflow: hidden;
}

@media(max-width:768px) {
  .showcase-main {
    aspect-ratio: 4/3
  }
}

.showcase-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
  cursor: zoom-in;
}

.showcase-main img.active {
  opacity: 1
}

.showcase-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .2);
}

.showcase-placeholder .material-symbols-outlined {
  font-size: 3rem;
  font-variation-settings: 'FILL' 0;
}

.showcase-placeholder-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* Caption bar */
.showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(transparent, rgba(10, 25, 15, .75));
  padding: 2rem 1.5rem .875rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.showcase-caption-label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

.showcase-counter {
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .4);
}

.showcase-counter strong {
  color: rgba(255, 255, 255, .8)
}

/* Thumbnails strip */
.showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 4px;
  margin-top: 1rem;
}

@media(max-width:480px) {
  .showcase-thumbs {
    grid-template-columns: repeat(4, 1fr)
  }
}

.showcase-thumb {
  aspect-ratio: 1;
  background: var(--forest);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: .45;
  transition: opacity .2s;
  border: 2px solid transparent;
}

.showcase-thumb:hover {
  opacity: .75
}

.showcase-thumb.active {
  opacity: 1;
  border-color: var(--stone-dark)
}

.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.showcase-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .2);
}

.showcase-thumb-placeholder .material-symbols-outlined {
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 0
}

/* Lightbox overlay */
.showcase-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 12, .97);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.showcase-lightbox.active {
  opacity: 1;
  pointer-events: all
}

.showcase-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain
}

.showcase-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color .2s;
}

.showcase-lightbox-close:hover {
  color: #fff
}

.showcase-lightbox-close .material-symbols-outlined {
  font-size: 2rem
}

/* Expand icon */
.showcase-expand {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .6);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}

.showcase-expand:hover {
  background: rgba(255, 255, 255, .2)
}

.showcase-expand .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings: 'FILL' 0
}

/* ===================================================
   PREMIUM CONTACT FORM — v3.2
   =================================================== */

.section-contact-premium {
  padding: 6rem 0;
  background: var(--white);
}

.contact-premium-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

@media(max-width:1024px) {
  .contact-premium-grid {
    grid-template-columns: 1fr;
    gap: 4rem
  }
}

/* Left — person */
.contact-premium-left {}

.contact-premium-person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-premium-photo {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--stone) 0%, var(--stone-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--forest);
  font-style: italic;
  flex-shrink: 0;
}

.contact-premium-photo img {
  width: 96px;
  height: 96px;
  object-fit: cover
}

.contact-premium-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: .3rem;
}

.contact-premium-role {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.contact-premium-links {
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.contact-premium-link {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: 1rem;
  color: var(--text-dark);
  transition: color .2s;
}

.contact-premium-link:hover {
  color: var(--forest)
}

.contact-premium-link .material-symbols-outlined {
  font-size: 16px;
  color: var(--forest);
  width: 32px;
  height: 32px;
  background: var(--stone-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-premium-divider {
  width: 40px;
  height: 1px;
  background: var(--stone-dark);
  margin: 2rem 0;
}

.contact-premium-hours {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 2
}

.contact-premium-hours strong {
  color: var(--text-dark);
  font-weight: 500
}

/* Right — form */
.contact-premium-right {}

.premium-form {
  display: flex;
  flex-direction: column;
  gap: 0
}

.premium-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

@media(max-width:640px) {
  .premium-form-row {
    grid-template-columns: 1fr
  }
}

.premium-field {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.premium-field label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
}

.premium-field input,
.premium-field select,
.premium-field textarea {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text-dark);
  width: 100%;
  padding: .25rem 0;
  -webkit-appearance: none;
  appearance: none;
}

.premium-field select {
  cursor: pointer
}

.premium-field textarea {
  resize: none;
  height: 80px;
  line-height: 1.6
}

.premium-field input::placeholder,
.premium-field select::placeholder,
.premium-field textarea::placeholder {
  color: var(--stone-dark)
}

.premium-field input:focus~.field-line,
.premium-field select:focus~.field-line {
  width: 100%
}

.premium-consent {
  padding: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.premium-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--forest);
  cursor: pointer;
}

.premium-consent label {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.7;
  cursor: pointer;
}

.premium-submit {
  margin-top: 1rem;
  background: var(--forest);
  color: var(--stone-light);
  border: none;
  padding: 1.125rem 2.5rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: .875rem;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
  justify-content: center;
}

.premium-submit:hover {
  background: var(--forest-mid)
}

.premium-submit .material-symbols-outlined {
  font-size: 16px;
  font-variation-settings: 'FILL' 0
}

.premium-avail {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  border-left: 2px solid var(--forest);
  background: var(--stone-light);
}

.premium-avail-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: .4rem;
}

.premium-avail-text {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.7
}

.premium-avail-counts {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--stone);
}

.premium-avail-n {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1
}

.premium-avail-l {
  display: block;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 3px
}

@media(max-width:768px) {
  .contact-premium-grid {
    padding: 0 1.5rem
  }

  .section-contact-premium {
    padding: 4rem 0
  }
}

/* ===================================================
   GALLERY CAROUSEL (center-focus / peek) — v3.3
   =================================================== */

.section-gallery-carousel {
  padding: 3.5rem 0 2.5rem;
  background: var(--stone-light);
  overflow: hidden;
}

.gallery-carousel-header {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 2rem;
}

/* Outer — clips the sides but lets peek through */
.gallery-carousel-outer {
  position: relative;
  overflow: hidden;
  /* extend past edges so side slides peek in */
  width: 100%;
}

/* Track — horizontal flex row */
.gallery-carousel-track {
  display: flex;
  gap: 2rem;
  will-change: transform;
  transition: transform .72s cubic-bezier(.4, 0, .2, 1);
  /* Start at position 0; JS adjusts translateX */
}

/* Each slide */
.gallery-carousel-slide {
  flex: 0 0 62%;
  position: relative;
  overflow: hidden;
  /* Dimmed + scaled down by default */
  opacity: .32;
  transform: scale(.945);
  transition: opacity .6s ease, transform .6s ease;
  cursor: pointer;
}

.gallery-carousel-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  pointer-events: none;
}

/* Active slide — full brightness and scale */
.gallery-carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Navigation row */
.gallery-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 0 1.5rem;
}

/* Circle arrow buttons */
.gallery-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--stone-dark);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}

.gallery-carousel-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.gallery-carousel-btn:hover .material-symbols-outlined {
  color: var(--stone)
}

.gallery-carousel-btn .material-symbols-outlined {
  font-size: 22px;
  color: var(--text-mid);
  transition: color .2s;
}

/* Dots */
.gallery-carousel-dots {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.gc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stone-dark);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}

.gc-dot.active {
  background: var(--forest);
  transform: scale(1.4);
}

/* Responsive */
@media(max-width:768px) {
  .gallery-carousel-slide {
    flex: 0 0 82%
  }

  .section-gallery-carousel {
    padding: 3.5rem 0
  }

  .gallery-carousel-track {
    gap: 1rem
  }
}

@media(max-width:480px) {
  .gallery-carousel-slide {
    flex: 0 0 90%
  }

  .gallery-carousel-track {
    gap: .75rem
  }
}

/* ===================================================
   MOBILE NAV — nowy układ: logo | CTA | hamburger
   =================================================== */

/* Na telefonie: pokaż środkowy CTA, ukryj desktop-nav tekst */
.nav-mobile-cta {
  display: none;
}

@media (max-width: 1023px) {

  /* Ukryj tekst przy logo na telefonie */
  .nav-logo-text {
    display: none;
  }

  /* Pokaż środkowy przycisk CTA */
  .nav-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--stone);
    color: var(--forest-deep);
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .55rem 1.1rem;
    white-space: nowrap;
    transition: background .2s;
    text-align: center;
  }

  .nav-mobile-cta:hover {
    background: var(--stone-dark);
  }

  /* Hamburger — upewnij się że jest widoczny */
  #mobile-menu-button {
    display: flex;
    align-items: center;
    color: #fff;
    padding: .5rem;
  }

  #mobile-menu-button .material-symbols-outlined {
    font-size: 26px;
  }

  /* Nav inner — 3 kolumny: logo | cta | hamburger */
  .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .75rem;
    padding: 0 1.25rem;
    height: 60px;
  }

  /* Desktop nav schowany */
  #desktop-nav {
    display: none !important;
  }
}

/* ===================================================
   MOBILE — KARTY APARTAMENTÓW
   =================================================== */

/* Badge — nie wychodź poza kartę */
@media (max-width: 768px) {
  .apt-card-badge {
    font-size: .55rem;
    padding: .3rem .6rem;
    max-width: calc(100% - 100px);
    /* żeby nie nachodził na status */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .apt-card-badge.inv {
    font-size: .55rem;
    padding: .3rem .6rem;
    max-width: 55%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Cena — stack pionowo na środku */
  .apt-price-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .apt-price-col {
    text-align: center;
  }

  .apt-price-per {
    text-align: center;
  }

  .apt-price-main {
    font-size: 2rem;
  }

  /* Karty pełna szerokość */
  .apartments-grid {
    grid-template-columns: 1fr;
  }

  .apt-card-body {
    padding: 1.25rem 1.5rem 1.75rem;
  }

  /* Specs na mobile */
  .apt-specs {
    gap: .5rem;
  }

  .apt-spec-n {
    font-size: 1.75rem;
  }

  /* Offer price block na mobile */
  .offer-price-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .offer-price-per {
    text-align: center;
  }

  .offer-price-main {
    font-size: 2rem;
  }

  /* Kontener padding na mobile */
  .container {
    padding: 0 1.25rem;
  }

  .page-hero-inner {
    padding: 0 1.25rem;
  }

  .plans-inner {
    padding: 0 1.25rem;
  }

  .docs-inner {
    padding: 0 1.25rem;
  }

  .avail-inner {
    padding: 0 1.25rem;
  }

  .gallery-showcase-inner {
    padding: 0 1.25rem;
  }

  .contact-premium-grid {
    padding: 0 1.25rem;
  }

  /* Podstrona hero padding */
  .page-hero {
    padding: 7rem 0 3rem;
  }

  .page-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Mid CTA buttons */
  .mid-cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }

  .mid-cta-btn-primary,
  .mid-cta-btn-ghost {
    text-align: center;
  }

  /* Section atuty */
  .atuty-grid {
    grid-template-columns: 1fr;
  }

  /* Budowa grid */
  .budowa-grid {
    grid-template-columns: 1fr 1fr;
  }

  .budowa-photo-main {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Lokalizacja */
  .lok-map-wrap {
    height: 280px;
  }

  .section-lokalizacja {
    padding: 3rem 0;
  }

  /* About */
  .section-about {
    padding: 3.5rem 0;
  }

  .about-grid {
    gap: 2.5rem;
  }

  .about-image-wrap img {
    height: 260px;
  }

  .about-stats {
    flex-direction: column;
    gap: 0;
  }

  .about-stat {
    border-right: none;
    border-bottom: 1px solid var(--stone);
    padding: 1rem 0;
  }

  .about-stat:first-child {
    padding-left: 0;
    padding-top: 0;
  }

  .about-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Section apartments */
  .section-apartments {
    padding: 3.5rem 0;
  }

  /* Kontakt */
  .kontakt-grid {
    gap: 2.5rem;
  }

  .section-kontakt {
    padding: 3.5rem 0;
  }

  /* Docs bar */
  .docs-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }

  /* Rzuty tabs scrollable */
  .rzuty-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .rzut-tab {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .strip-sep {
    display: none;
  }

  .features-strip {
    gap: .25rem;
  }

  .strip-item {
    padding: .3rem .75rem;
    font-size: .6rem;
  }

  /* Hero full mobile */
  .hero-title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btn-primary {
    text-align: center;
  }

  /* Apt buttons */
  .apt-btns {
    flex-direction: column;
  }

  /* Upload placeholder */
  .budowa-placeholder-hint {
    display: none;
  }

  /* ukryj hint deweloperski */

  /* Lokalizacja lista */
  .lok-dist {
    font-size: 2rem;
    width: 115px;
    min-width: 115px;
  }

  .location-dist {
    font-size: 1.75rem;
    min-width: 55px;
  }

  /* Offer block */
  .offer-body {
    padding: 1.5rem 1.25rem;
  }

  .offer-btns {
    flex-direction: column;
  }

  .offer-btn-ghost {
    justify-content: center;
  }

  /* Contact person */
  .contact-person {
    flex-direction: column;
    gap: 1rem;
  }

  /* Plans grid */
  .plans-grid {
    gap: 2.5rem;
  }

  /* Avail stats */
  .avail-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .avail-stat {
    border-right: 0;
    border-bottom: 1px solid var(--stone);
    padding-bottom: 1.25rem;
    padding-left: 0;
  }

  .avail-stat:last-child {
    border-bottom: 0;
  }
}

/* ===================================================
   LEGAL & COMPLIANCE — stopka i sekcje
   =================================================== */

.footer-legal {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: .68rem;
  color: rgba(255, 255, 255, .2);
  line-height: 1.8;
}

.footer-legal strong {
  color: rgba(255, 255, 255, .35);
}

.footer-legal a {
  color: rgba(255, 255, 255, .28);
  transition: color .2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .55);
}

/* Sekcja DFG / Rachunek powierniczy — info bar */
.legal-info-bar {
  background: var(--forest-deep);
  border-top: 1px solid rgba(232, 220, 200, .08);
  padding: 1.25rem 0;
}

.legal-info-bar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 640px) {
  .legal-info-bar-inner {
    padding: 0 1.25rem;
    flex-direction: column;
    gap: 1rem;
  }
}

.legal-info-item {
  flex: 1;
  min-width: 200px;
  font-size: .7rem;
  color: rgba(255, 255, 255, .28);
  line-height: 1.7;
}

.legal-info-item strong {
  color: rgba(255, 255, 255, .45);
  display: block;
  margin-bottom: .2rem;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ===================================================
   FINANSOWANIE — sekcja
   =================================================== */

.section-financing {
  padding: 5rem 0;
  background: var(--white);
}

.financing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .financing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.financing-img-wrap {
  position: relative;
  background: var(--forest);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.financing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}

.financing-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .25);
  gap: 1rem;
}

.financing-img-placeholder .material-symbols-outlined {
  font-size: 3rem;
  font-variation-settings: 'FILL' 0;
}

.financing-img-placeholder span {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.financing-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.financing-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--stone);
}

.financing-step:last-child {
  border-bottom: 0;
}

.financing-step-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--stone-dark);
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}

.financing-step-text strong {
  display: block;
  font-size: .85rem;
  color: var(--text-dark);
  margin-bottom: .2rem;
}

.financing-step-text span {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================================================
   O DEWELOPERZE — sekcja / podstrona
   =================================================== */

.section-developer {
  padding: 5rem 0;
  background: var(--cream);
}

.developer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .developer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.developer-img-wrap {
  position: relative;
  background: var(--forest);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.developer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.developer-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .25);
  gap: 1rem;
  text-align: center;
}

.developer-img-placeholder .material-symbols-outlined {
  font-size: 3rem;
  font-variation-settings: 'FILL' 0;
}

.developer-img-placeholder span {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 0 2rem;
}

.developer-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.developer-value {
  border-top: 1px solid var(--stone-dark);
  padding-top: 1.25rem;
}

.developer-value-icon {
  width: 36px;
  height: 36px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.developer-value-icon .material-symbols-outlined {
  font-size: 17px;
  color: var(--stone);
}

.developer-value-name {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: .3rem;
}

.developer-value-desc {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.65;
}

.developer-stats {
  display: flex;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--stone);
  padding-top: 2rem;
}

.developer-stat {
  flex: 1;
  border-right: 1px solid var(--stone);
  padding: 0 1.5rem;
}

.developer-stat:first-child {
  padding-left: 0;
}

.developer-stat:last-child {
  border-right: 0;
}

.developer-stat-n {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}

.developer-stat-l {
  display: block;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

/* ===================================================
   SOCIAL PROOF — opinie
   =================================================== */

.section-opinions {
  padding: 5rem 0;
  background: var(--stone-light);
}

.opinions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .opinions-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .opinions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.opinion-card {
  background: var(--white);
  padding: 2rem 2.25rem;
  border-top: 3px solid var(--forest);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.opinion-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
}

.opinion-author {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stone);
}

.opinion-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--stone) 0%, var(--stone-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--forest);
  font-style: italic;
  flex-shrink: 0;
}

.opinion-name {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
}

.opinion-role {
  font-size: .7rem;
  color: var(--text-light);
  letter-spacing: .05em;
}

/* ===================================================
   IMAGE PLACEHOLDER — "czekam na grafikę"
   =================================================== */

.img-placeholder {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .875rem;
  color: rgba(255, 255, 255, .28);
  text-align: center;
  min-height: 200px;
}

.img-placeholder .material-symbols-outlined {
  font-size: 2.5rem;
  font-variation-settings: 'FILL' 0;
}

.img-placeholder-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 0 1.5rem;
  line-height: 1.6;
}

.img-placeholder-sub {
  font-size: .58rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .15);
}

/* ===================================================
   POLITYKA PRYWATNOŚCI — podstrona
   =================================================== */

.section-privacy {
  padding: 5rem 0;
  background: var(--white);
}

.privacy-content {
  max-width: 720px;
}

.privacy-content h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-dark);
  margin: 2.5rem 0 .875rem;
  border-bottom: 1px solid var(--stone);
  padding-bottom: .5rem;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1rem;
}

.privacy-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.privacy-content ul li {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: .4rem;
}

.privacy-content strong {
  color: var(--text-dark);
  font-weight: 500;
}

.privacy-content a {
  color: var(--forest);
  border-bottom: 1px solid var(--stone-dark);
}

/* ===================================================
   BUDOWA — placeholder ukrycie dla "czekam na zdjęcia"
   =================================================== */

/* Ukryj WordPress-specific hint w tekście publicznym */
.budowa-placeholder-hint {
  display: none !important;
}

/* Lepszy placeholder do zdjęć budowy */
.budowa-placeholder p {
  font-size: .72rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .3);
}

/* ===================================================
   HAMBURGERMENI — fix
   =================================================== */

/* Upewnij się że overlay i animacja działa poprawnie */
.mobile-menu-overlay {
  will-change: transform;
}

/* Zamknięcie na overlay */
.mobile-menu-overlay.open {
  transform: translateX(0) !important;
}

/* Odpowiedni z-index dla hamburger button */
#mobile-menu-button {
  z-index: 101;
  position: relative;
}

/* ===================================================
   NAV � scroll-spy aktywny link
   =================================================== */
.nav-link.nav-active {
  color: #fff;
}

.nav-link.nav-active::after {
  width: 100%;
}

@media(max-width:1260px) {
  .nav-phone {
    display: none;
  }
}

@media(max-width:1120px) {
  #desktop-nav {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: .65rem;
  }
}

/* ===================================================
   FINANSOWANIE � Section
   =================================================== */
.section-financing {
  padding: 7rem 0;
  background: var(--white);
}

.financing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

@media(max-width:900px) {
  .financing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.financing-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.financing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.financing-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .25);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: center;
}

.financing-img-placeholder .material-symbols-outlined {
  font-size: 3rem;
  font-variation-settings: 'FILL' 0;
}

.financing-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.financing-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.financing-step-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--stone-dark);
  line-height: 1;
  min-width: 2.5rem;
  padding-top: .1rem;
}

.financing-step-text {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.financing-step-text strong {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: .02em;
}

.financing-step-text span {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===================================================
   O DEWELOPERZE � strona
   =================================================== */
.section-developer {
  padding: 7rem 0;
  background: var(--cream);
}

.developer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

@media(max-width:900px) {
  .developer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.developer-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.developer-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .3);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}

.developer-img-placeholder .material-symbols-outlined {
  font-size: 3.5rem;
  font-variation-settings: 'FILL' 0;
}

.developer-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--stone);
}

.developer-stat {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.developer-stat-n {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}

.developer-stat-l {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.developer-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media(max-width:600px) {
  .developer-values {
    grid-template-columns: 1fr;
  }
}

.developer-value {
  padding: 2rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.developer-value-icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .25rem;
}

.developer-value-icon .material-symbols-outlined {
  color: var(--stone);
  font-size: 20px;
  font-variation-settings: 'FILL' 0;
}

.developer-value-name {
  font-weight: 500;
  font-size: .9rem;
  color: var(--text-dark);
  letter-spacing: .02em;
}

.developer-value-desc {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================================================
   OPINIE � section
   =================================================== */
.section-opinions {
  padding: 7rem 0;
  background: var(--forest-deep);
}

.section-opinions .section-eyebrow {
  color: var(--stone-dark);
}

.section-opinions .section-h2 {
  color: #fff;
}

.section-opinions .section-h2 em {
  color: var(--stone);
}

.opinions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

@media(max-width:900px) {
  .opinions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.opinion-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.opinion-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .75);
  line-height: 1.75;
  flex: 1;
}

.opinion-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.opinion-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest-mid);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--stone);
  flex-shrink: 0;
}

.opinion-name {
  font-weight: 500;
  font-size: .88rem;
  color: #fff;
}

.opinion-role {
  font-size: .7rem;
  color: var(--stone-dark);
  letter-spacing: .08em;
  margin-top: .2rem;
}

/* ===================================================
   PAGE HERO � podstrony
   =================================================== */
.page-hero {
  background: var(--forest-deep);
  padding: 10rem 0 6rem;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
}

.page-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.page-eyebrow {
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: 1.5rem;
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 1.75rem;
}

.page-title em {
  font-style: italic;
  color: var(--stone);
}

.page-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.75;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: 3rem;
  transition: color .2s;
}

.back-link:hover {
  color: var(--stone);
}

.back-link .material-symbols-outlined {
  font-size: 15px;
}

/* ===================================================
   MOBILE � nav-mobile-cta layout
   =================================================== */
.mobile-menu-link.active {
  color: var(--stone);
}

@media(max-width:1023px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: .75rem;
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    padding: .55rem 1.1rem;
    border: 1px solid rgba(232, 220, 200, .35);
    font-size: .64rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    transition: background .2s, border-color .2s;
    white-space: nowrap;
  }

  .nav-mobile-cta:hover {
    background: rgba(232, 220, 200, .1);
    border-color: rgba(232, 220, 200, .6);
  }
}

@media(min-width:1024px) {
  .nav-mobile-cta {
    display: none;
  }
}

/* misc */
.section-eyebrow.centered {
  display: block;
  text-align: center;
}

.financing-img-wrap {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s, transform .8s;
}

.financing-img-wrap.visible {
  opacity: 1;
  transform: none;
}

/* ===================================================
   MOBILE FIXES v3.5 — dopisz na koniec style.css
   =================================================== */

@media (max-width: 768px) {

  /* Biała luka pod rzutami — section-plans ma padding:4rem 0 */
  .section-plans {
    padding: 2rem 0 1.5rem;
  }

  /* Rzuty tabs — overflow scroll działa tylko z flex-start */
  .rzuty-tabs {
    justify-content: flex-start !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap !important;
  }

  .rzuty-tabs::-webkit-scrollbar {
    display: none;
  }

  .rzut-tab {
    white-space: nowrap !important;
    flex-shrink: 0;
  }

  /* Offer sections — luka między sekcjami */
  .section-offer {
    padding: 1.5rem 0;
  }

  #apt-53 {
    padding-bottom: 0 !important;
  }

  #apt-100 {
    padding-top: 0 !important;
  }

}

/* ===================================================
   O DEWELOPERZE — MOBILE FIX (dopisz na koniec style.css)
   =================================================== */

/* 1. Placeholder zdjęcia — aspect-ratio:3/4 na mobile = ~500px wysokości */
.developer-img-wrap {
  aspect-ratio: unset;
  height: clamp(200px, 45vw, 400px);
  min-height: unset;
}

.developer-img-placeholder {
  min-height: unset;
  height: 100%;
  width: 100%;
}

/* 2. Statystyki — gap:3rem na 3 elementach = overflow na mobile */
@media (max-width: 768px) {
  .developer-stats {
    gap: 0;
    flex-wrap: wrap;
  }

  .developer-stat {
    flex: 0 0 33.333%;
    padding: 0 0.75rem;
    min-width: 0;
  }

  .developer-stat:first-child {
    padding-left: 0;
  }

  .developer-stat:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .developer-stat-n {
    font-size: 1.75rem;
  }

  .developer-stat-l {
    font-size: .55rem;
  }
}

/* 3. Tekst — długie słowa wylewają się poza kontener */
.developer-grid,
.developer-grid p,
.developer-grid h2,
.section-developer .section-text {
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

/* ===================== REALIZACJA SLIDER ===================== */
.realizacja-slider {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--forest);
}

.realizacja-slider-track {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  width: 100%;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.realizacja-slider-track img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* White square arrows — matching reference design */
.realizacja-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 4px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s, background .2s, transform .2s;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.realizacja-arrow .material-symbols-outlined {
  font-size: 26px;
  font-weight: 300;
}

.realizacja-arrow--left {
  left: 10px;
}

.realizacja-arrow--right {
  right: 10px;
}

.realizacja-slider:hover .realizacja-arrow {
  opacity: 1;
}

.realizacja-arrow:hover {
  background: #f8f8f8;
  transform: translateY(-50%) scale(1.05);
}

/* Zoom hint — top right corner */
.realizacja-zoom-hint {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.realizacja-zoom-hint .material-symbols-outlined {
  font-size: 16px;
}

.realizacja-slider:hover .realizacja-zoom-hint {
  opacity: 1;
}

/* Counter in card — bottom right, white text with shadow */
.realizacja-counter {
  position: absolute;
  bottom: 12px;
  right: 15px;
  font-size: .75rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: .1em;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ===================== LIGHTBOX ===================== */
.realizacja-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, .92);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s cubic-bezier(.4, 0, .2, 1);
}

.realizacja-lightbox.open {
  display: flex;
  opacity: 1;
}

.realizacja-lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
}

/* Lightbox close — square */
.realizacja-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.realizacja-lightbox-close:hover {
  background: rgba(255, 255, 255, .2);
}

.realizacja-lightbox-close .material-symbols-outlined {
  font-size: 24px;
}

/* Lightbox arrows — square, matching card style */
.realizacja-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.realizacja-lightbox-arrow:hover {
  background: rgba(255, 255, 255, .2);
}

.realizacja-lightbox-arrow .material-symbols-outlined {
  font-size: 28px;
}

.realizacja-lightbox-arrow--left {
  left: 20px;
}

.realizacja-lightbox-arrow--right {
  right: 20px;
}

/* Lightbox counter */
.realizacja-lightbox-counter {
  position: absolute;
  bottom: 20px;
  right: 24px;
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
  letter-spacing: .12em;
}

@media(max-width:768px) {
  .realizacja-arrow {
    opacity: 1;
    width: 34px;
    height: 34px;
  }

  .realizacja-arrow .material-symbols-outlined {
    font-size: 18px;
  }

  .realizacja-zoom-hint {
    opacity: 1;
  }

  .realizacja-lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .realizacja-lightbox-arrow .material-symbols-outlined {
    font-size: 22px;
  }

  .realizacja-lightbox-arrow--left {
    left: 8px;
  }

  .realizacja-lightbox-arrow--right {
    right: 8px;
  }

  .realizacja-lightbox-close {
    top: 10px;
    right: 10px;
  }
}

/* ===================================================
   RZUTY TABS — 2-rzędowy grid dla 100m² na mobile
   =================================================== */

.rzuty-tabs--grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  overflow-x: unset !important;
  flex-wrap: unset !important;
  gap: 0;
}

.rzuty-tabs--grid .rzut-tab {
  text-align: center;
  padding: .5rem .5rem;
  font-size: .6rem;
  white-space: normal !important;
  flex-shrink: unset;
}

@media (max-width: 480px) {
  .rzuty-tabs--grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rzuty-tabs--grid .rzut-tab {
    font-size: .55rem;
    padding: .45rem .35rem;
    letter-spacing: .06em;
  }
}