/* ============================================================
   AGROTURYSTYKA FIFI — style_v2.css
   ============================================================ */

:root {
  --green:        #3D6B5C;
  --green-mid:    #6A9E8A;
  --green-light:  #96C4AD;
  --sage-light:   #E6F3EE;
  --amber:        #C4903A;
  --amber-light:  #DDB06A;
  --cream:        #F8F6EE;
  --cream-dark:   #EDE7D6;
  --text:         #222E28;
  --text-muted:   #607068;
  --white:        #FDFCF9;
  --side:         #E8E4DA;
  --max:          1240px;
  --nav-h:        68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--side);
  min-height: 100vh;
}

/* ── PAGE WRAP ── */
#page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 4px 0 24px rgba(0,0,0,.08), -4px 0 24px rgba(0,0,0,.08);
  min-height: 100vh;
}

/* ============================================================
   NAWIGACJA
   ============================================================ */
#site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: var(--nav-h);
  padding: 0 36px;
  background: #2E5048;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  position: relative;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .82; }
.nav-logo img {
  height: 52px;
  display: block;
}

#nav-menu {
  list-style: none;
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
#nav-menu li { display: list-item; }
#nav-menu a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(245,242,232,.78);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 4px;
  white-space: nowrap;
  position: relative;
  transition: color .18s, background .18s;
}
#nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 13px; right: 13px;
  height: 2px;
  background: var(--amber-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
#nav-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,.10);
}
#nav-menu a.active {
  color: var(--amber-light);
  font-weight: 500;
  background: rgba(255,255,255,.08);
}
#nav-menu a.active::after { transform: scaleX(1); }
#nav-menu a:hover::after  { transform: scaleX(.6); }

.nav-btn {
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--amber);
  color: #1a2018;
  border: none;
  padding: 9px 20px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background .18s, transform .15s;
}
.nav-btn:hover { background: var(--amber-light); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  width: 24px; height: 2px;
  background: rgba(245,242,232,.85);
  display: block;
  border-radius: 2px;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero {
  position: relative;
  height: 580px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  animation: heroDrop 1.4s cubic-bezier(.22,.8,.36,1) both;
  clip-path: inset(0);
}
@keyframes heroDrop {
  0%   { clip-path: inset(0 0 100% 0); opacity: .4; }
  60%  { opacity: 1; }
  100% { clip-path: inset(0 0 0% 0); }
}
.hero::before { display: none; }
.hero-left-overlay {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 600px;
  background: rgba(46, 80, 72, .72);
  z-index: 1;
  pointer-events: none;
}

.hero-badges {
  position: absolute;
  top: 28px; right: 40px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 2;
  animation: heroRight .9s 1.1s cubic-bezier(.22,.8,.36,1) both;
}
@keyframes heroRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: none; }
}
.badge {
  background: rgba(8,20,14,.52);
  border: 1px solid rgba(255,255,255,.16);
  padding: 10px 16px;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  display: flex; align-items: center; gap: 10px;
  min-width: 185px;
  backdrop-filter: blur(6px);
}
.badge-icon { font-size: 17px; }
.badge-label {
  font-size: 10px;
  color: var(--amber-light);
  display: block; margin-bottom: 2px;
  font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-content {
  position: relative; z-index: 3;
  width: 600px;
  height: 100%;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroUp .9s .9s cubic-bezier(.22,.8,.36,1) both;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-logo { margin-bottom: 18px; }
.hero-logo img { height: 140px; display: block; }

.hero-tag {
  font-size: 13px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.hero-tag::before { content: ''; width: 44px; height: 1.5px; background: var(--amber); }
.hero-tag-link {
  color: var(--amber-light);
  text-decoration: none;
  transition: color .2s;
}
.hero-tag-link:hover { color: #fff; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 300; line-height: 1.02;
  color: #fff; margin-bottom: 6px;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  letter-spacing: -.01em;
}
.hero-title em { font-style: italic; color: var(--amber-light); }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600; font-style: italic;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 0 2px 14px rgba(0,0,0,.6);
  letter-spacing: .04em;
}
.hero-location {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--amber); color: #1a2018;
  border: none; padding: 13px 30px; border-radius: 4px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .18s, transform .15s;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }

.btn-outline {
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.42);
  padding: 13px 30px; border-radius: 4px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .18s, background .18s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.10); }

.btn-outline-green {
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: var(--green);
  border: 1px solid var(--green-mid);
  padding: 13px 30px; border-radius: 4px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .18s, color .18s;
}
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 72px 52px; }

.section-tag {
  font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 13px;
  display: flex; align-items: center; gap: 10px;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--amber); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 300; line-height: 1.15;
  color: var(--green); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--green-mid); }

.section-lead {
  font-size: 15px; line-height: 1.85;
  color: var(--text-muted);
  max-width: 560px; margin-bottom: 44px;
}

/* ── FEATURES 3-column grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: 8px; overflow: hidden;
  margin-top: 40px;
}
.feature-item {
  background: var(--white); padding: 30px 26px;
  transition: background .18s;
}
.feature-item:hover { background: #F4F1E8; }
.feature-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #3D6B5C, #6A9E8A);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; margin-bottom: 16px;
}
.feature-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 400;
  color: var(--green); margin-bottom: 6px;
}
.feature-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

/* ── ABOUT STRIP ── */
.about-strip {
  background: #2E5048; padding: 64px 52px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-text .section-title { color: var(--cream); }
.about-text .section-lead  { color: rgba(248,246,238,.72); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.stat-box { border-left: 2px solid var(--amber); padding-left: 16px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300;
  color: var(--amber-light); line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(248,246,238,.6); margin-top: 4px; line-height: 1.4; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: linear-gradient(135deg, #2E5048, #5A9080);
  padding: 56px 52px 44px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -20px; top: -20px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(196,144,58,.14), transparent 70%);
  pointer-events: none;
}
.page-hero .section-tag   { color: var(--amber-light); }
.page-hero .section-title { color: var(--cream); margin-bottom: 10px; }
.page-hero .section-lead  { color: rgba(248,246,238,.66); margin-bottom: 0; }

/* ── HOUSES ── */
.houses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; padding: 48px 52px;
}
.house-card {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  transition: transform .22s, box-shadow .22s;
}
.house-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(20,50,35,.12);
}
.house-visual { height: 200px; position: relative; overflow: hidden; }
.house-visual.dom1  { background: linear-gradient(160deg,#1B3528,#2A5040,#4A7A5C); }
.house-visual.dom2  { background: linear-gradient(160deg,#2A1810,#5C3820,#8A6640); }
.house-visual.pokoj { background: linear-gradient(160deg,#1A2030,#2A3848,#3A5868); }
.house-visual.pokoj4{ background: linear-gradient(160deg,#1A2830,#2A4840,#3A6858); }
.house-visual-deco {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; opacity: .14;
}
.house-visual-deco svg { width: 100px; height: 100px; fill: white; }
.house-badge-top {
  position: absolute; top: 13px; left: 13px;
  font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--amber); color: #1a2018;
  padding: 3px 10px; border-radius: 3px;
}
.house-body { padding: 22px 22px 26px; }
.house-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: var(--green); margin-bottom: 4px;
}
.house-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; font-style: italic; }
.house-specs {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 14px; padding: 12px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.spec { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.spec strong { color: var(--text); font-weight: 500; }
.house-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.amenity-tag {
  font-size: 11px; background: var(--sage-light); color: var(--green);
  padding: 3px 8px; border-radius: 20px;
}
.house-price { display: flex; justify-content: space-between; align-items: flex-end; }
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300;
  color: var(--green); line-height: 1;
}
.price-amount sup { font-size: 14px; vertical-align: top; margin-top: 5px; }
.price-night { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── SPORT ── */
.sport-big-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.sport-big-card {
  background: var(--white);
  display: flex; gap: 22px;
  padding: 28px 32px;
  transition: background .18s;
}
.sport-big-card:hover { background: #F4F1E8; }
.sport-big-icon {
  font-size: 36px;
  width: 66px; height: 66px; flex-shrink: 0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.sport-big-icon.basen  { background: linear-gradient(135deg,#0A3048,#1A5878); }
.sport-big-icon.sauna  { background: linear-gradient(135deg,#3A1808,#6A3018); }
.sport-big-icon.rowery { background: linear-gradient(135deg,#1A3820,#2A5838); }
.sport-big-icon.golf   { background: linear-gradient(135deg,#283018,#3A4828); }
.sport-big-icon.dzieci { background: linear-gradient(135deg,#2A1840,#4A3870); }
.sport-big-icon.ognisko{ background: linear-gradient(135deg,#3A1808,#784020); }
.sport-big-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--green); margin-bottom: 7px;
}
.sport-big-body p { font-size: 14px; line-height: 1.75; color: var(--text-muted); margin-bottom: 12px; }
.sport-tag {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 20px;
}
.sport-tag.sezon   { background: #FFF3D6; color: #8A5C0A; }
.sport-tag.calyrok { background: var(--sage-light); color: var(--green); }
.sport-tag.gratis  { background: #E8F4E8; color: #2A5A2A; }

.sport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; padding: 48px 52px;
}
.sport-card { border-radius: 10px; overflow: hidden; border: 1px solid var(--cream-dark); background: var(--white); }
.sport-card-top { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 46px; }
.sport-card-top.basen  { background: linear-gradient(135deg,#0A3048,#1A5878); }
.sport-card-top.sauna  { background: linear-gradient(135deg,#3A1808,#6A3018); }
.sport-card-top.rowery { background: linear-gradient(135deg,#1A3820,#2A5838); }
.sport-card-top.golf   { background: linear-gradient(135deg,#283018,#3A4828); }
.sport-card-top.dzieci { background: linear-gradient(135deg,#2A1840,#4A3870); }
.sport-card-top.ognisko{ background: linear-gradient(135deg,#3A1808,#784020); }
.sport-card-body { padding: 20px; }
.sport-card-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--green); margin-bottom: 7px; }
.sport-card-desc { font-size: 14px; line-height: 1.7; color: var(--text-muted); }

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 36px;
}
.region-item {
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: 8px; padding: 22px 20px;
  transition: transform .2s, box-shadow .2s;
}
.region-item:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(20,50,35,.09); }
.region-dist { font-size: 12px; font-weight: 500; letter-spacing: .1em; color: var(--amber); margin-bottom: 5px; }
.region-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: var(--green); margin-bottom: 7px; }
.region-desc { font-size: 13px; line-height: 1.7; color: var(--text-muted); }

/* ── CENNIK ── */
.cennik-wrap { padding: 48px 52px; }
.cennik-wrap + .cennik-wrap { padding-top: 0; }
.cennik-table {
  width: 100%; border-collapse: collapse;
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--cream-dark); margin-bottom: 32px;
}
.cennik-table thead { background: #2E5048; }
.cennik-table thead th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 400; color: var(--cream);
  padding: 14px 20px; text-align: left; letter-spacing: .04em;
}
.cennik-table thead th:last-child { text-align: right; }
.cennik-table tbody tr { border-bottom: 1px solid var(--cream-dark); }
.cennik-table tbody tr:last-child { border-bottom: none; }
.cennik-table tbody tr:nth-child(even) { background: #F8F5EE; }
.cennik-table td { padding: 14px 20px; font-size: 15px; color: var(--text); }
.cennik-table td:last-child { text-align: right; font-weight: 500; color: var(--green); }
.td-sub { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.price-big { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--green); }
.note-box {
  background: var(--sage-light); border-left: 3px solid var(--green-mid);
  padding: 16px 20px; border-radius: 0 6px 6px 0; margin-bottom: 26px;
}
.note-box p { font-size: 14px; line-height: 1.7; color: var(--text-muted); }
.note-box p + p { margin-top: 6px; }
.note-box strong { color: var(--green); font-weight: 500; }

/* ── KONTAKT ── */
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; padding: 48px 52px; align-items: start;
}
.contact-block { margin-bottom: 28px; }
.contact-block-label {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}
.contact-block-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; color: var(--green); line-height: 1.5;
}
.contact-block-value a { color: inherit; text-decoration: none; }
.contact-block-value a:hover { color: var(--amber); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 11px; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--text); background: var(--white);
  border: 1px solid var(--cream-dark); border-radius: 4px;
  padding: 10px 14px; transition: border-color .18s, box-shadow .18s; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(106,158,138,.14);
}
.form-group textarea { min-height: 108px; }
.btn-submit {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  background: #2E5048; color: var(--cream); border: none;
  padding: 12px 32px; border-radius: 4px;
  cursor: pointer; align-self: flex-start;
  transition: background .18s, transform .15s;
}
.btn-submit:hover { background: var(--green); transform: translateY(-1px); }
.map-embed {
  width: 100%; height: 270px; border-radius: 8px;
  border: 1px solid var(--cream-dark); background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--text-muted);
}
.map-link {
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); background: var(--amber-light);
  padding: 8px 20px; border-radius: 3px;
  text-decoration: none; transition: background .18s;
}
.map-link:hover { background: var(--amber); }

/* ── ALERTS ── */
.alert { padding: 14px 17px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: var(--sage-light); border: 1px solid #9DC4AA; color: var(--green); }
.alert-error   { background: #FEF0EE; border: 1px solid #F0A898; color: #6A2018; }
.alert strong  { font-weight: 500; display: block; margin-bottom: 3px; }

/* ── FOOTER ── */
#site-footer {
  background: #2E5048;
  padding: 36px 52px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 300; color: var(--cream); }
.footer-logo span { color: var(--amber-light); font-style: italic; }
.footer-copy { font-size: 13px; color: rgba(248,246,238,.42); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(248,246,238,.58); text-decoration: none; transition: color .18s; }
.footer-links a:hover { color: var(--amber-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  section, .cennik-wrap { padding: 52px 24px; }
  .hero-content  { padding: 0 24px 38px; }
  .hero-badges   { display: none; }
  .about-strip   { grid-template-columns: 1fr; gap: 36px; padding: 52px 24px; }
  .kontakt-grid  { grid-template-columns: 1fr; padding: 36px 24px; }
  .houses-grid   { padding: 36px 24px; }
  .sport-grid    { padding: 36px 24px; }
  .page-hero     { padding: 48px 24px 36px; }
  #site-footer   { padding: 32px 24px; }
  .form-row      { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .sport-big-grid{ grid-template-columns: 1fr; }
  .region-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero { height: 480px; }
  .hero-logo img { height: 110px; }
}

@media (max-width: 680px) {
  #nav-menu  { display: none; }
  .nav-btn   { display: none; }
  .nav-burger{ display: flex; }
  #nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #2E5048; padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
    z-index: 99;
  }
  #nav-menu.open a { padding: 12px 28px; border-radius: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .region-grid   { grid-template-columns: 1fr; }
  .about-stats   { grid-template-columns: 1fr 1fr; }
  .hero { height: 420px; }
}

/* ============================================================
   DOMY — lista z dużymi zdjęciami
   ============================================================ */
.domy-lista {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dom-card {
  display: grid;
  grid-template-columns: 480px 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--cream-dark);
}
.dom-card--flip {
  grid-template-columns: 1fr 480px;
}
.dom-card--flip .dom-foto { order: 2; }
.dom-card--flip .dom-body { order: 1; }

.dom-foto {
  position: relative;
  overflow: hidden;
}
.dom-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.dom-card:hover .dom-foto img { transform: scale(1.04); }

.dom-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--amber); color: #1a2018;
  padding: 4px 12px; border-radius: 3px;
}

.dom-body {
  padding: 36px 40px;
  display: flex; flex-direction: column; gap: 20px;
  background: var(--white);
}

.dom-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.dom-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400;
  color: var(--green); margin-bottom: 5px;
  line-height: 1.2;
}
.dom-tagline {
  font-size: 14px; color: var(--text-muted);
  font-style: italic;
}

.dom-cena-box { text-align: right; flex-shrink: 0; }
.dom-cena {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300;
  color: var(--green); line-height: 1;
}
.dom-cena sup { font-size: 16px; vertical-align: top; margin-top: 6px; }
.dom-cena-noc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.dom-specs {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  padding: 14px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.dom-amenities {
  display: flex; flex-wrap: wrap; gap: 6px;
}

.dom-cennik {
  width: 100%; border-collapse: collapse;
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--cream-dark);
  margin-top: 4px;
}
.dom-cennik thead { background: #2E5048; }
.dom-cennik thead th {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 400; color: var(--cream);
  padding: 10px 16px; text-align: left; letter-spacing: .04em;
}
.dom-cennik thead th:last-child { text-align: right; }
.dom-cennik tbody tr { border-bottom: 1px solid var(--cream-dark); }
.dom-cennik tbody tr:last-child { border-bottom: none; }
.dom-cennik tbody tr:nth-child(even) { background: #F8F5EE; }
.dom-cennik td { padding: 11px 16px; font-size: 14px; color: var(--text); }
.dom-cennik td:last-child { text-align: right; font-weight: 500; color: var(--green); }

.dom-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: auto; padding-top: 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .dom-card,
  .dom-card--flip {
    grid-template-columns: 1fr;
  }
  .dom-card--flip .dom-foto { order: 0; }
  .dom-card--flip .dom-body { order: 0; }
  .dom-foto { height: 280px; }
  .dom-body { padding: 24px; }
  .dom-name { font-size: 24px; }
  .dom-cena { font-size: 32px; }
}


/* ── CENNIK FOTO – parallax (JS scroll) ── */
.cennik-foto {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #0a1610;
}
.cennik-foto-bg {
  position: absolute;
  left: 0; right: 0;
  top: -130px;
  height: calc(100% + 260px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
}
.cennik-foto-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 28px;
  background: linear-gradient(to top, rgba(10,20,14,.72) 0%, transparent 100%);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400;
  z-index: 1;
}
@media (max-width: 900px) {
  .cennik-foto { height: 240px; }
  .cennik-foto-bg { top: -70px; height: calc(100% + 140px); }
}

/* ── CENNIK INFO GRID ── */
.cennik-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0 28px;
}
.cennik-info-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 24px 22px;
}
.cennik-info-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.cennik-info-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 400;
  color: var(--green);
  margin-bottom: 10px;
}
.cennik-info-box p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}
.cennik-info-box p strong { color: var(--text); font-weight: 500; }
.cennik-info-box a {
  color: var(--green);
  text-decoration: none;
  transition: color .18s;
}
.cennik-info-box a:hover { color: var(--amber); }
.konto {
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--green);
  font-family: 'DM Sans', sans-serif;
}
@media (max-width: 680px) {
  .cennik-info-grid { grid-template-columns: 1fr; }
}

/* ── DOMY LOKALIZACJA STRIP ── */
.domy-lokalizacja {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #2E5048;
  padding: 0;
}
.lok-item {
  flex: 1 1 auto;
  padding: 13px 20px;
  font-size: 13px;
  color: rgba(248,246,238,.82);
  border-right: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}
.lok-item:last-child { border-right: none; }
.lok-item strong { color: var(--amber-light); font-weight: 500; }
@media (max-width: 900px) {
  .lok-item { flex: 1 1 45%; border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 500px) {
  .lok-item { flex: 1 1 100%; }
}

/* ── DOM POKOJE LIST ── */
.dom-pokoje {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 7px 16px;
  padding: 14px 0;
  border-top: 1px solid var(--cream-dark);
}
.dom-pokoj-item {
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ── DOM BADGE PREMIUM ── */
.dom-badge--premium {
  background: #2E5048;
  color: var(--amber-light);
}

/* ============================================================
   GALERIA WNĘTRZ
   ============================================================ */
.domy-galeria {
  padding: 64px 52px;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}
.galeria-header {
  margin-bottom: 32px;
}
.galeria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.galeria-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.galeria-item:nth-child(3) { transition-delay: .30s; }
@media (max-width: 680px) {
  .galeria-grid--3 { grid-template-columns: 1fr; }
}
.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  /* scroll reveal – starts hidden */
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.galeria-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.galeria-item:nth-child(2) {
  transition-delay: .15s;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.galeria-item:hover img {
  transform: scale(1.06);
}
.galeria-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,14,.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}
.galeria-overlay span {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  color: #fff;
  background: rgba(10,22,14,.55);
  padding: 9px 20px;
  border-radius: 4px;
  opacity: 0;
  transform: scale(.92);
  transition: opacity .25s ease, transform .25s ease;
}
.galeria-item:hover .galeria-overlay { background: rgba(10,22,14,.25); }
.galeria-item:hover .galeria-overlay span { opacity: 1; transform: scale(1); }

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,12,8,.92);
  align-items: center;
  justify-content: center;
  padding: 32px;
  cursor: pointer;
}
#lightbox.open {
  display: flex;
  animation: lbFade .25s ease;
}
@keyframes lbFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lb-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  cursor: default;
  animation: lbScale .3s cubic-bezier(.22,.8,.36,1);
}
@keyframes lbScale {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.lb-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
#lb-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  letter-spacing: .06em;
}
.lb-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 1;
}
.lb-close:hover { background: rgba(255,255,255,.28); }

@media (max-width: 680px) {
  .galeria-grid  { grid-template-columns: 1fr; }
  .domy-galeria  { padding: 48px 24px; }
  .lb-inner      { max-width: 100%; }
  .lb-close      { top: 8px; right: 8px; }
}

/* ============================================================
   SEKCJA FILMÓW
   ============================================================ */
.video-section {
  padding: 72px 52px;
  background: var(--cream-dark);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

.video-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  background: #0a1610;
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(10,22,14,.28);
}

.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(10,20,14,.42);
  transition: background .25s ease;
}
.video-thumb:hover .video-play-btn {
  background: rgba(10,20,14,.28);
}

.play-circle {
  width: 68px; height: 68px;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease;
  padding-left: 5px;
}
.video-thumb:hover .play-circle {
  background: var(--amber);
  border-color: var(--amber);
  transform: scale(1.1);
}

.video-play-btn span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

/* ── VIDEO LIGHTBOX ── */
#video-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2,8,5,.94);
  align-items: center;
  justify-content: center;
  padding: 32px;
}
#video-lb.open {
  display: flex;
  animation: lbFade .2s ease;
}
.vlb-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  animation: lbScale .3s cubic-bezier(.22,.8,.36,1);
}
#vlb-player {
  width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  display: block;
  box-shadow: 0 28px 90px rgba(0,0,0,.7);
  background: #000;
}

@media (max-width: 680px) {
  .video-grid    { grid-template-columns: 1fr; }
  .video-section { padding: 48px 24px; }
  .play-circle   { width: 54px; height: 54px; }
  #video-lb      { padding: 16px; }
}

/* ── CENNIK MOBILE FIX ── */
@media (max-width: 600px) {
  .cennik-wrap { padding: 36px 16px; }

  .cennik-table,
  .cennik-table thead,
  .cennik-table tbody,
  .cennik-table tr,
  .cennik-table th,
  .cennik-table td { display: block; width: 100%; box-sizing: border-box; }

  .cennik-table thead { display: none; }

  .cennik-table tbody tr {
    border-bottom: 2px solid var(--cream-dark);
    padding: 14px 16px;
    background: var(--white);
  }
  .cennik-table tbody tr:nth-child(even) { background: #F8F5EE; }

  .cennik-table td {
    border: none;
    padding: 3px 0;
    text-align: left;
    white-space: normal;
    font-size: 14px;
  }
  .cennik-table td:nth-child(2) { display: none; }
  .cennik-table td:last-child {
    margin-top: 8px;
    font-size: 14px;
  }
  .cennik-table td:last-child::before {
    content: 'Cena: ';
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .price-big { font-size: 22px; }

  .cennik-foto { height: 200px; }
  .cennik-info-grid { grid-template-columns: 1fr; }
}

/* ── VIDEO PROMO BOX ── */
.video-grid--promo {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.video-promo-box {
  background: #2E5048;
  border-radius: 10px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgba(248,246,238,.88);
}
.video-promo-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.video-promo-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 4px;
}
.video-promo-box > p {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 24px;
}
.video-promo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-promo-list li {
  font-size: 14px;
  color: rgba(248,246,238,.82);
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 680px) {
  .video-grid--promo { grid-template-columns: 1fr; }
  .video-promo-box { padding: 28px 22px; }
}

/* ── HERO BRAND (logo + tagline centered in overlay) ── */
.hero-brand {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-brand img {
  height: 190px;
  display: block;
  margin-bottom: 20px;
}
.hero-brand-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
  margin: 0 0 12px;
}
.hero-brand-addr {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
  line-height: 1.8;
  margin: 0 0 80px;
}
.hero-brand-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 680px) {
  .hero-brand img { height: 130px; }
  .hero-content { width: 100%; }
}

/* ── GALERIA 4-OSOBOWY ── */
.galeria-4os {
  background: var(--cream-dark);
  padding: 56px 52px;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.galeria-4os-header { margin-bottom: 28px; }
.galeria-4os-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--green);
}
.galeria-4os-title em { font-style: italic; color: var(--green-mid); }
.galeria-4os-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.galeria-4os-grid .galeria-item {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .25s;
}
.galeria-4os-grid .galeria-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.galeria-4os-grid .galeria-item:hover {
  box-shadow: 0 12px 36px rgba(20,50,35,.18);
}
.galeria-4os-grid .galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.galeria-4os-grid .galeria-item:hover img { transform: scale(1.06); }
@media (max-width: 900px) {
  .galeria-4os { padding: 40px 24px; }
  .galeria-4os-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
@media (max-width: 600px) {
  .galeria-4os-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── GALERIA PAGE ── */
.galeria-page-section {
  padding: 48px 52px 72px;
}
.galeria-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.galeria-page-grid .galeria-item {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .25s;
}
.galeria-page-grid .galeria-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.galeria-page-grid .galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.galeria-page-grid .galeria-item:hover img { transform: scale(1.06); }
.galeria-page-grid .galeria-item:hover { box-shadow: 0 12px 36px rgba(20,50,35,.18); }
@media (max-width: 900px) {
  .galeria-page-section { padding: 36px 24px 52px; }
  .galeria-page-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
@media (max-width: 600px) {
  .galeria-page-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── HERO WWW ── */
.hero-brand-www {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: .1em;
  color: #E8A820;
  text-shadow: 0 1px 10px rgba(0,0,0,.7);
  margin: -40px 0 80px;
}

/* ── KONTAKT WWW LINK ── */
.kontakt-www {
  color: var(--amber);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .18s;
}
.kontakt-www:hover { color: var(--amber-light); }

/* ── NAV LANGS RESPONSIVE ── */
@media (max-width: 680px) {
  .nav-langs { display: none; }
}

/* ── FLAGS / TRANSLATE ── */
.nav-langs {
  display: flex; gap: 4px; align-items: center; flex-shrink: 0;
}
.lang-flag {
  background: none; border: none; cursor: pointer;
  font-size: 22px; padding: 2px 4px; border-radius: 3px;
  opacity: .85; transition: opacity .18s, transform .15s; line-height: 1;
}
.lang-flag:hover { opacity: 1; transform: scale(1.18); }
.goog-te-banner-frame,
.skiptranslate { display: none !important; }
body { top: 0 !important; }
@media (max-width: 680px) { .nav-langs { display: none; } }
