*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #2D4A2D;
  --forest-mid: #3D6B3D;
  --forest-light: #5A8F5A;
  --moss: #7AAB5A;
  --cream: #F9F5EE;
  --warm-white: #FDFAF5;
  --stone: #8C7B6B;
  --stone-light: #C4B8A8;
  --charcoal: #1E1E1E;
  --gold: #C8963A;
  --gold-light: #E8B860;
  --sky: #A8C5D8;
  --text-muted: #6B6050;
  --radius: 12px;
  --radius-sm: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  background: rgba(45, 74, 45, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: transform 0.3s ease;
}
.nav-logo:hover { transform: scale(1.03); }
.nav-logo span { display: block; font-size: 0.7rem; font-family: 'DM Sans', sans-serif; font-weight: 300; color: var(--moss); letter-spacing: 0.15em; text-transform: uppercase; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a:not(.nav-cta) {
  color: rgba(249,245,238,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

/* Efekt podłogi wysuwanej od środka */
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:not(.nav-cta):hover { 
  color: var(--gold-light); 
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 500 !important;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(200, 150, 58, 0.2);
}
.nav-cta:hover { 
  background: var(--gold-light) !important; 
  color: var(--charcoal) !important; 
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 184, 96, 0.35);
}

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 6px; 
  cursor: pointer; 
  padding: 8px; 
  background: none; 
  border: none; 
  z-index: 1001;
}
.hamburger span { 
  display: block; 
  width: 26px; 
  height: 2px; 
  background: var(--cream); 
  border-radius: 2px; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* Animacja ikony hamburgera do X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
  background: var(--gold-light);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--gold-light);
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://lh3.googleusercontent.com/p/AF1QipPZlk3d0Cp62OjVzXG-p0Sj-MhBf8JuUYr9W8-=s1360-w1360-h1020');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }

/* ── HERO OVERLAY z przesuwaniem zdjęcia na mobile ── */
/* ── HERO OVERLAY ── */
/* ── HERO OVERLAY ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 20, 10, 0.5) 0%,
    rgba(15, 28, 15, 0.6) 40%,
    rgba(15, 28, 15, 0.8) 55%,
    rgba(10, 20, 10, 0.95) 100%
  ),
  url('zdjecia/875796830.jpg');
  
  background-size: cover;
  background-position: center 30%;     /* domyślnie na dużych ekranach */
  background-attachment: scroll;       /* zdjęcie zawsze się rusza */
  transition: background-position 0.6s ease;
}

/* Lekkie przesunięcie w lewo na mniejszych ekranach */
@media (max-width: 1024px) {
  .hero-overlay {
    background-position: 38% 30%;
  }
}

@media (max-width: 768px) {
  .hero-overlay {
    background-position: 48% 28%;
  }
}

@media (max-width: 480px) {
  .hero-overlay {
    background-position: 49% 25%;
  }
}
  
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,58,0.2);
  border: 1px solid rgba(200,150,58,0.4);
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(249,245,238,0.85);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); color: var(--charcoal); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: rgba(249,245,238,0.9);
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(249,245,238,0.35);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { background: rgba(249,245,238,0.12); border-color: rgba(249,245,238,0.6); }

.hero-stats {
  position: absolute;
  bottom: 80px;
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2;
  text-align: right;
}
.hero-stat-item { color: rgba(249,245,238,0.7); font-size: 0.75rem; letter-spacing: 0.05em; }
.hero-stat-item strong { display: block; font-size: 1.8rem; font-family: 'Playfair Display', serif; color: #fff; font-weight: 600; line-height: 1; }

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
}
.scroll-hint span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); }
.scroll-line { width: 1px; height: 32px; background: var(--cream); animation: scrollAnim 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes scrollAnim { 0%,100%{transform:scaleY(0);opacity:0} 50%{transform:scaleY(1);opacity:1} }

/* ── SECTIONS COMMON ── */
section { padding: clamp(60px, 10vw, 110px) 5%; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-light);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--forest-mid); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.8;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}

/* ── ABOUT ── */
.about {
  background: var(--cream);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-img:hover img { transform: scale(1.04); }
.about-img.tall { grid-row: span 2; }
.about-img.tall img { height: 360px; }
.about-img.short img { height: 170px; }

.about-single-img-wrapper {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.about-single-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-single-img-wrapper:hover img { transform: scale(1.03); }

.about-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}
.badge-forest { background: rgba(45,74,45,0.1); color: var(--forest-mid); border: 1px solid rgba(45,74,45,0.15); }
.badge-gold { background: rgba(200,150,58,0.12); color: #8B6520; border: 1px solid rgba(200,150,58,0.25); }
.badge-stone { background: rgba(140,123,107,0.1); color: #5C4E42; border: 1px solid rgba(140,123,107,0.2); }

/* ── DOMKI ── */
.domki {
  background: var(--warm-white);
}
.domki-inner { max-width: 1200px; margin: 0 auto; }
.domki-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3rem; }

.domki-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.domek-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.domek-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(45,74,45,0.12); }

.domek-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.domek-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.domek-card:hover .domek-img img { transform: scale(1.05); }

.domek-single-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 15px 45px rgba(45,74,45,0.05);
  max-width: 1000px;
  margin: 0 auto;
}

.domek-img-wrapper {
  position: relative;
  min-height: 400px;
}
.domek-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.domek-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--forest);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.domek-body { padding: 1.5rem; }
.domek-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.domek-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }

.domek-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-bottom: 1.5rem;
}
.domek-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #4A4A4A;
}
.domek-feat-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(45,74,45,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  color: var(--forest-mid);
}

.domek-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.domek-price { font-family: 'Playfair Display', serif; }
.domek-price-val { font-size: 1.6rem; font-weight: 600; color: var(--charcoal); }
.domek-price-unit { font-size: 0.75rem; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }

/* ── ATRAKCJE ── */
.atrakcje {
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.atrakcje::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.025);
  pointer-events: none;
}
.atrakcje::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
  pointer-events: none;
}

.atrakcje-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.atrakcje .section-title { color: #fff; }
.atrakcje .section-title em { color: var(--gold-light); }
.atrakcje .section-label { color: var(--moss); }
.atrakcje .divider { background: var(--gold-light); }
.atrakcje .section-subtitle { color: rgba(249,245,238,0.7); max-width: 600px; }

.atrakcje-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}

.atrak-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.5rem;
  transition: background 0.25s;
}
.atrak-card:hover { background: rgba(255,255,255,0.1); }

.atrak-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(200,150,58,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.atrak-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.4rem; }
.atrak-dist { font-size: 0.75rem; color: var(--gold-light); font-weight: 500; margin-bottom: 0.5rem; }
.atrak-desc { font-size: 0.82rem; color: rgba(249,245,238,0.6); line-height: 1.6; }

/* ── OPINIE ── */
.opinie {
  background: var(--cream);
}
.opinie-inner { max-width: 1200px; margin: 0 auto; }

.opinie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}

.opinia-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.25s;
  position: relative;
}
.opinia-card:hover { transform: translateY(-3px); }
.opinia-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(45,74,45,0.08);
  line-height: 1;
}

.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.75rem; }
.opinia-text { font-size: 0.88rem; color: #3A3530; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.opinia-author { display: flex; align-items: center; gap: 10px; }
.opinia-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  flex-shrink: 0;
}
.opinia-name { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); }
.opinia-date { font-size: 0.72rem; color: var(--text-muted); }

/* ── UDOGODNIENIA ── */
.udogodnienia {
  background: var(--warm-white);
}
.udogodnienia-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.05);
  transition: background 0.2s;
}
.feature-item:hover { background: #EEF3E8; }
.feat-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.feat-label { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; }
.feat-sub { font-size: 0.72rem; color: var(--text-muted); }

.feature-big-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 540px;
}
.feature-big-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-big-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(30,50,30,0.85), transparent);
  color: #fff;
}
.fbo-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.25rem; }
.fbo-sub { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ── MAPA ── */
.mapa {
  background: var(--charcoal);
  padding: 0;
  position: relative;
}
.mapa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.mapa-info {
  padding: clamp(50px, 7vw, 90px) 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--forest);
}
.mapa-info .section-label { color: var(--moss); }
.mapa-info .section-title { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.mapa-info .section-title em { color: var(--gold-light); }
.mapa-info .divider { background: var(--gold-light); }

.contact-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(249,245,238,0.85);
  font-size: 0.9rem;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item a { color: var(--gold-light); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

.mapa-embed { height: 100%; min-height: 520px; }
.mapa-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--warm-white);
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 5%;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-banner .section-label { justify-content: center; display: flex; }
.cta-banner .section-title { text-align: center; margin: 0 auto 1rem; }
.cta-banner .section-subtitle { text-align: center; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-dark {
  background: var(--forest);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-dark:hover { background: var(--forest-mid); transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  border: 1.5px solid var(--forest);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-dark:hover { background: var(--forest); color: #fff; }

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 5%;
  text-align: center;
  font-size: 0.8rem;
}
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: var(--gold-light); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Playfair Display', serif; color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ── RATING BADGE ── */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,150,58,0.15);
  border: 1px solid rgba(200,150,58,0.3);
  padding: 10px 18px;
  border-radius: 40px;
  margin-top: 1.5rem;
}
.rating-score { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); font-weight: 600; }
.rating-text { font-size: 0.75rem; color: whitesmoke; line-height: 1.3; }
.rating-stars { font-size: 0.8rem; color: var(--gold); display: block; }


.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(26, 43, 26, 0.98), rgba(15, 25, 15, 0.99));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 120px 8% 60px 8%;
  flex-direction: column;
  align-items: flex-start; /* Zmiana na do lewej - wygląda znacznie bardziej premium */
  justify-content: flex-start;
  gap: 0;
  
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%); /* Wysuwanie z boku zamiast z góry - styl nowoczesnych aplikacji */
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.mobile-menu.open { 
  opacity: 1; 
  visibility: visible;
  transform: translateX(0);
}

/* Stylizacja kontenerów na linki dla zachowania równych odstępów */
.mobile-menu a:not(.nav-cta) {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.8rem; /* Większy, wyraźny font */
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  padding: 12px 0;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.103); /* Delikatna, minimalistyczna linia podziału */
  transition: all 0.3s ease;
}

/* Elegancki licznik przed tekstem (np. 01. DOMKI) - dodaje luksusowego sznytu */
.mobile-menu a:not(.nav-cta)::before {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* Automatyczne numerowanie linków w menu (zależnie od kolejności w HTML) */
.mobile-menu a:not(.nav-cta):nth-of-type(1)::before { content: "01 /"; }
.mobile-menu a:not(.nav-cta):nth-of-type(2)::before { content: "02 /"; }
.mobile-menu a:not(.nav-cta):nth-of-type(3)::before { content: "03 /"; }
.mobile-menu a:not(.nav-cta):nth-of-type(4)::before { content: "04 /"; }
.mobile-menu a:not(.nav-cta):nth-of-type(5)::before { content: "05 /"; }

.mobile-menu a:not(.nav-cta):hover,
.mobile-menu a:not(.nav-cta):active {
  color: var(--gold-light);
  padding-left: 8px; /* Efekt delikatnego przesunięcia przy interakcji */
}

/* Przycisk CTA dopasowany do dołu menu mobilnego */
.mobile-menu .nav-cta { 
  align-self: stroke; 
  margin-top: 2.5rem; 
  font-size: 0.9rem;
  padding: 16px 32px;
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(200, 150, 58, 0.3);
}

/* ── AUTOMATYCZNA KARUZELA ZDJĘĆ ── */
.gallery-marquee {
  width: 100%;
  overflow: hidden;
  background: var(--cream);
  padding: 2rem 0 4rem;
  position: relative;
  justify-content: center;
}

.gallery-marquee::before,
.gallery-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 10%;
  z-index: 2;
  pointer-events: none;
}
.gallery-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.gallery-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.marquee-inner {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}

.gallery-marquee:hover .marquee-inner {
  animation-play-state: paused;
}

.gallery-item {
  flex: 0 0 280px;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── DOPASOWANIE DO TELEFONÓW (RWD) ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-grid { order: -1; }
  .about-img.tall img { height: 280px; }
  .about-img.short img { height: 130px; }
  .about-single-img-wrapper { height: 300px; margin-top: 2rem; }
  .domki-grid { grid-template-columns: 1fr; }
  .domek-single-layout { grid-template-columns: 1fr; border-radius: 20px; margin: 0 auto; }
  .domek-img-wrapper { min-height: 280px; height: 320px; }
  .atrakcje-grid { grid-template-columns: 1fr 1fr; }
  .opinie-grid { grid-template-columns: 1fr 1fr; }
  .udogodnienia-inner { grid-template-columns: 1fr; }
  .feature-big-img { height: 320px; order: -1; }
  .mapa-inner { grid-template-columns: 1fr; }
  .mapa-embed { min-height: 320px; }
  .hero-stats { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .marquee-inner { animation-duration: 20s; }
  .gallery-item { flex: 0 0 220px; height: 150px; }
  .btn-ghost { display: none; }
  .rating-badge { margin-bottom: 40px; }
}

@media (max-width: 600px) {
  .about-single-img-wrapper { height: 220px; margin-top: 1.5rem; }
  .atrakcje-grid { grid-template-columns: 1fr; }
  .opinie-grid { grid-template-columns: 1fr; }
  .domek-features { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ── ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
/* Przycisk pod opiniami */
.opinie-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.opinie-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(200, 150, 58, 0.25);
}

.opinie-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(200, 150, 58, 0.35);
}
.domek-desc {
  font-size: 1.02rem;        /* ← zwiększony rozmiar */
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Dodatkowe poprawki dla lepszego wyglądu */
.domek-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .domek-desc {
    font-size: 1rem;
  }
}
.opinia-card {
    transition: border-color 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05); /* delikatna, szara ramka na start */
}

.opinia-card:hover {
    border-color: #d4af37; /* zmiana na złoty po najechaniu */
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.15s;
}

.fade-in-delay-2 {
  transition-delay: 0.3s;
}

.fade-in-delay-3 {
  transition-delay: 0.45s;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-content h1 { animation-delay: 0.2s; }
.hero-content .hero-sub { animation-delay: 0.4s; }
.hero-content .hero-actions { animation-delay: 0.6s; }
.hero-content .rating-badge { animation-delay: 0.8s; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}