/* ═══════════════════════════════════════════════════
   Tu i Teraz — Domek wypoczynkowy w Lubsku
   Main Stylesheet
   ═══════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette — derived from logo + images */
  --cream:        #FAF6F1;
  --cream-dark:   #F0EAE1;
  --sand:         #E8DDD3;
  --sand-dark:    #D4C8BA;
  --terracotta:   #C4673D;
  --terracotta-light: #D4885F;
  --terracotta-dark:  #A8522E;
  --teal:         #2A4858;
  --teal-light:   #3A6478;
  --brown:        #3D2E22;
  --brown-light:  #5C4A3A;
  --sage:         #8B9E7E;
  --sage-light:   #A8B89D;
  --gold:         #D4A654;
  --white:        #FFFFFF;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad:    clamp(4rem, 8vw, 8rem);
  --section-pad-sm: clamp(3rem, 6vw, 5rem);
  --container-max:  1200px;
  --container-pad:  clamp(1.25rem, 4vw, 2.5rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

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

/* ─── Shared Section Styles ────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--brown-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ─── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 103, 61, 0.3);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* ─── Fade-in Animation ────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 0;
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo-link {
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  transition: height 0.3s var(--ease-smooth);
}

.site-header.scrolled .logo-img {
  height: 40px;
}

.main-nav {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.01em;
}

.site-header.scrolled .nav-link {
  color: var(--brown);
}

.nav-link:hover {
  color: var(--terracotta-light);
}

.site-header.scrolled .nav-link:hover {
  color: var(--terracotta);
  background: rgba(196, 103, 61, 0.08);
}

.header-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  background: var(--terracotta);
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.header-cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.site-header.scrolled .burger span {
  background: var(--brown);
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 72, 88, 0.65) 0%,
    rgba(42, 72, 88, 0.35) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 8rem var(--container-pad) 4rem;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.9;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

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

.hero-facts {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad) 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: auto;
}

.hero-fact {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  text-align: center;
}

.hero-fact:first-child { border-radius: 8px 2px 2px 8px; }
.hero-fact:last-child  { border-radius: 2px 8px 8px 2px; }

.hero-fact-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.hero-fact-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════
   2. SZYBKIE PRZEWAGI
   ═══════════════════════════════════════════════════ */
.advantages {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.advantage-card {
  padding: 2rem 1.5rem;
  border-left: 2px solid var(--sand);
  transition: border-color 0.3s var(--ease-out);
}

.advantage-card:hover {
  border-color: var(--terracotta);
}

.advantage-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--sand-dark);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.advantage-card:hover .advantage-num {
  color: var(--terracotta);
}

.advantage-title {
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.advantage-text {
  font-size: 0.9375rem;
  color: var(--brown-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   3. O DOMKU
   ═══════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--brown-light);
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--brown) !important;
}

.about-images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.about-img-primary {
  border-radius: 12px;
  overflow: hidden;
}

.about-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
  transition: transform 0.6s var(--ease-out);
}

.about-img-primary:hover img {
  transform: scale(1.03);
}

.about-img-secondary {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  transition: transform 0.6s var(--ease-out);
}

.about-img-secondary:hover img {
  transform: scale(1.03);
}

/* ═══════════════════════════════════════════════════
   4. WYPOSAŻENIE I KOMFORT
   ═══════════════════════════════════════════════════ */
.amenities {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.amenities-header {
  text-align: center;
  margin-bottom: 3rem;
}

.amenities-header .section-subtitle {
  margin: 0 auto;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.amenity-group {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 12px;
}

.amenity-group-title {
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sand);
}

.amenity-list li {
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  color: var(--brown-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amenity-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.amenity-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown);
  transition: all 0.3s var(--ease-out);
}

.badge:hover {
  border-color: var(--terracotta);
  background: rgba(196, 103, 61, 0.05);
}

/* ═══════════════════════════════════════════════════
   5. PORANKI I KLIMAT MIEJSCA
   ═══════════════════════════════════════════════════ */
.atmosphere {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.atmosphere-bg {
  position: absolute;
  inset: 0;
}

.atmosphere-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.atmosphere-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 72, 88, 0.55) 0%,
    rgba(42, 72, 88, 0.4) 50%,
    rgba(42, 72, 88, 0.6) 100%
  );
}

.atmosphere-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: var(--section-pad) var(--container-pad);
  max-width: 700px;
}

.atmosphere-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.atmosphere-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.atmosphere-text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   6. ATRAKCJE NA POSESJI
   ═══════════════════════════════════════════════════ */
.property-fun {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.property-fun-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.property-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.property-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.property-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
  padding-top: 0.1rem;
}

.property-feature strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 0.25rem;
  font-weight: 400;
}

.property-feature p {
  font-size: 0.9375rem;
  color: var(--brown-light);
  margin: 0;
  line-height: 1.6;
}

.property-fun-image {
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.property-fun-image img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.property-fun-image:hover img {
  transform: scale(1.02);
}

/* ═══════════════════════════════════════════════════
   7. ATRAKCJE W OKOLICY
   ═══════════════════════════════════════════════════ */
.area-fun {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.area-fun-header {
  text-align: center;
  margin-bottom: 3rem;
}

.area-fun-header .section-subtitle {
  margin: 0 auto;
}

.area-fun-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.area-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.area-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.area-card-wide {
  grid-column: span 2;
}

.area-card-wide img {
  height: 260px;
}

.area-card-content {
  padding: 1.5rem;
}

.area-card-text-only {
  padding: 2rem 1.5rem;
}

.area-card h3 {
  font-size: 1.15rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.area-card p {
  font-size: 0.9375rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   8. LOKALIZACJA I UDOGODNIENIA
   ═══════════════════════════════════════════════════ */
.location {
  padding: var(--section-pad) 0;
  background: var(--teal);
  color: var(--white);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.location .section-eyebrow {
  color: var(--gold);
}

.location .section-title {
  color: var(--white);
}

.location-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.location .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.location .btn-outline:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.distances-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.distance-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
}

.distance-label {
  white-space: nowrap;
}

.distance-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  min-width: 20px;
  margin-bottom: 4px;
}

.distance-value {
  white-space: nowrap;
  font-weight: 500;
  color: var(--gold);
}

.distance-item-bonus,
.distance-item:last-child {
  border-bottom: none;
  padding-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════════
   9. CENNIK I ZASADY
   ═══════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.pricing-card-inner {
  padding: 2.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--teal);
}

.pricing-per {
  font-size: 1.125rem;
  color: var(--brown-light);
}

.pricing-note {
  font-size: 0.9375rem;
  color: var(--brown-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-details {
  margin-bottom: 2rem;
}

.pricing-details li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.9375rem;
}

.pricing-detail-label {
  color: var(--brown-light);
}

.pricing-detail-value {
  font-weight: 600;
  color: var(--brown);
}

.rules-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.rules-title {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.rule-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.9375rem;
  padding-right: 1rem;
}

.rule-item:nth-child(even) {
  padding-left: 1rem;
  padding-right: 0;
}

.rule-label {
  color: var(--brown-light);
}

.rule-value {
  font-weight: 500;
  color: var(--brown);
  text-align: right;
}

.rule-item-note {
  grid-column: span 2;
  padding-left: 0;
}

.cancellation {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sand);
}

.cancellation-title {
  font-size: 1.05rem;
  color: var(--teal);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.cancellation-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cancellation-list li {
  font-size: 0.875rem;
  color: var(--brown-light);
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
}

.cancellation-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--sand-dark);
}

/* ═══════════════════════════════════════════════════
   10. KONTAKT / REZERWACJA
   ═══════════════════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-lead {
  font-size: 1.1rem;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--brown-light);
  opacity: 0.7;
}

.contact-main-cta {
  margin-top: 1.5rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: 12px;
  transition: all 0.3s var(--ease-out);
  border: 1px solid transparent;
}

.contact-channel:hover {
  border-color: var(--terracotta);
  background: rgba(196, 103, 61, 0.04);
  transform: translateX(4px);
}

.contact-channel-icon {
  font-size: 1.25rem;
  width: 2rem;
  text-align: center;
  flex-shrink: 0;
  color: var(--terracotta);
}

.contact-channel-icon svg {
  fill: var(--terracotta);
}

.contact-channel-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brown);
  min-width: 80px;
}

.contact-channel-value {
  font-size: 0.875rem;
  color: var(--brown-light);
  margin-left: auto;
}

/* ═══════════════════════════════════════════════════
   11. STOPKA
   ═══════════════════════════════════════════════════ */
.footer {
  padding: 3rem 0 1.5rem;
  background: var(--teal);
  color: rgba(255, 255, 255, 0.7);
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-tagline {
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
  background: var(--terracotta);
  color: var(--white);
}

.footer-social svg {
  fill: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
  fill: var(--white);
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════════════════ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-smooth);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease-out);
}

.sticky-btn-call {
  background: var(--teal);
  color: var(--white);
}

.sticky-btn-call svg {
  fill: var(--white);
}

.sticky-btn-ask {
  background: var(--terracotta);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .area-fun-grid {
    grid-template-columns: 1fr 1fr;
  }

  .area-card-wide {
    grid-column: span 2;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ─── Mobile Quality Polish Pass ───
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Global Mobile Rhythm ──────────────────────── */
  :root {
    --section-pad:    clamp(3rem, 7vw, 5rem);
    --container-pad:  clamp(1.5rem, 5vw, 2rem);
  }

  body {
    font-size: 15px;
  }

  .section-eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.625rem;
  }

  .section-title {
    font-size: clamp(1.625rem, 5.5vw, 2.25rem);
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  /* ── Navigation ─────────────────────────────────── */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 72, 88, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-smooth);
    z-index: 999;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .main-nav .nav-link {
    font-size: 1.25rem;
    color: var(--white);
    padding: 0.875rem 2rem;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .burger.open span {
    background: var(--white) !important;
  }

  /* ── Hero — Centered Mobile Composition ───────────
     Single vertical axis: everything centered, tight
     rhythm from eyebrow → title → subtitle → CTA →
     fact strip. Designed as its own layout, not a
     squeezed desktop.
     ──────────────────────────────────────────────── */
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-img {
    object-position: center 25%;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(42, 72, 88, 0.5) 0%,
      rgba(42, 72, 88, 0.25) 35%,
      rgba(0, 0, 0, 0.1) 60%,
      rgba(42, 72, 88, 0.45) 100%
    );
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem var(--container-pad) 2rem;
  }

  .hero-eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.875rem;
    opacity: 0.85;
  }

  .hero-title {
    font-size: clamp(1.875rem, 7.5vw, 2.5rem);
    max-width: 100%;
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 340px;
    opacity: 0.88;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
    max-width: 280px;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 0.875rem;
  }

  .hero-ctas .btn-primary {
    padding: 0.8125rem 1.5rem;
  }

  .hero-ctas .btn-ghost {
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
  }

  /* Fact strip — lightweight, doesn't compete with CTA */
  .hero-facts {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 0 var(--container-pad) 1.25rem;
  }

  .hero-fact {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(6px);
    padding: 0.75rem 0.625rem;
  }

  .hero-fact:first-child { border-radius: 6px 2px 2px 2px; }
  .hero-fact:nth-child(2) { border-radius: 2px 6px 2px 2px; }
  .hero-fact:nth-child(3) { border-radius: 2px 2px 2px 6px; }
  .hero-fact:last-child  { border-radius: 2px 2px 6px 2px; }

  .hero-fact-value {
    font-size: 0.8125rem;
    margin-bottom: 0.0625rem;
  }

  .hero-fact-label {
    font-size: 0.625rem;
    opacity: 0.65;
  }

  /* ── Advantages ──────────────────────────────────── */
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .advantage-card {
    padding: 1.25rem 0 1.25rem 1.25rem;
    border-left: 2px solid var(--sand);
    border-bottom: none;
  }

  .advantage-card:last-child {
    padding-bottom: 0;
  }

  .advantage-num {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }

  .advantage-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .advantage-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* ── About / O Domku ─────────────────────────────── */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-lead {
    font-size: 1.0625rem;
  }

  .about-text p {
    font-size: 0.9375rem;
    margin-bottom: 0.875rem;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .about-img-primary img,
  .about-img-secondary img {
    min-height: 200px;
    border-radius: 10px;
  }

  .about-img-primary {
    border-radius: 10px;
  }

  .about-img-secondary {
    margin-top: 0;
    border-radius: 10px;
  }

  /* ── Amenities ───────────────────────────────────── */
  .amenities-header {
    margin-bottom: 2rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .amenity-group {
    padding: 1.125rem;
    border-radius: 10px;
  }

  .amenity-group-title {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.625rem;
  }

  .amenity-list li {
    font-size: 0.875rem;
    padding: 0.3rem 0;
  }

  .amenity-badges {
    gap: 0.5rem;
    justify-content: center;
  }

  .badge {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }

  /* ── Atmosphere ──────────────────────────────────── */
  .atmosphere {
    min-height: 55vh;
  }

  .atmosphere-content {
    padding: 3.5rem var(--container-pad);
  }

  .atmosphere-title {
    font-size: clamp(1.625rem, 6vw, 2.25rem);
    margin-bottom: 1.25rem;
  }

  .atmosphere-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  /* ── Property Fun / Atrakcje na posesji ──────────── */
  .property-fun-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .property-fun-image {
    position: static;
    order: -1;
    border-radius: 12px;
    margin: 0 calc(-1 * var(--container-pad));
    border-radius: 0;
  }

  .property-fun-image img {
    min-height: 220px;
    max-height: 300px;
    border-radius: 0;
  }

  .property-features {
    margin-top: 1.5rem;
    gap: 1.25rem;
  }

  .property-feature {
    gap: 0.875rem;
  }

  .property-feature-icon {
    font-size: 1.25rem;
    width: 2rem;
    padding-top: 0.15rem;
  }

  .property-feature strong {
    font-size: 1rem;
  }

  .property-feature p {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  /* ── Area Fun / Atrakcje w okolicy ───────────────── */
  .area-fun-header {
    margin-bottom: 2rem;
  }

  .area-fun-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .area-card {
    border-radius: 10px;
  }

  .area-card-wide {
    grid-column: span 1;
  }

  .area-card-wide img {
    height: 200px;
  }

  .area-card img {
    height: 180px;
  }

  .area-card-content {
    padding: 1.25rem;
  }

  .area-card-text-only {
    padding: 1.5rem 1.25rem;
  }

  .area-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.375rem;
  }

  .area-card p {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  /* ── Location ────────────────────────────────────── */
  .location-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-text p {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
  }

  .location .btn-outline {
    width: 100%;
    text-align: center;
    padding: 0.8125rem 1.5rem;
  }

  .distances-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }

  .distance-item {
    padding: 0.625rem 0;
    font-size: 0.875rem;
  }

  .distance-item-bonus,
  .distance-item:last-child {
    padding-top: 0.875rem;
    font-size: 0.8125rem;
  }

  /* ── Pricing & Rules ─────────────────────────────── */
  .pricing-header {
    margin-bottom: 2rem;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    border-radius: 12px;
  }

  .pricing-card-inner {
    padding: 1.75rem;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .pricing-per {
    font-size: 1rem;
  }

  .pricing-note {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .pricing-details {
    margin-bottom: 1.5rem;
  }

  .pricing-details li {
    padding: 0.625rem 0;
    font-size: 0.875rem;
  }

  .pricing-card .btn-full {
    padding: 0.875rem;
    font-size: 0.9375rem;
  }

  .rules-card {
    border-radius: 12px;
    padding: 1.75rem;
  }

  .rules-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .rules-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rule-item {
    padding: 0.625rem 0;
    font-size: 0.875rem;
    padding-right: 0;
  }

  .rule-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

  .rule-item-note {
    grid-column: span 1;
  }

  .rule-label {
    font-size: 0.875rem;
  }

  .rule-value {
    font-size: 0.875rem;
  }

  .cancellation {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }

  .cancellation-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .cancellation-list li {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  /* ── Contact ─────────────────────────────────────── */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .contact-note {
    font-size: 0.8125rem;
  }

  .contact-text .btn {
    width: 100%;
    text-align: center;
  }

  .contact-channels {
    gap: 0.625rem;
  }

  .contact-channel {
    padding: 1rem 1.125rem;
    border-radius: 10px;
    flex-wrap: wrap;
  }

  .contact-channel-icon {
    font-size: 1.125rem;
    width: 1.75rem;
  }

  .contact-channel-label {
    font-size: 0.8125rem;
    min-width: auto;
  }

  .contact-channel-value {
    display: block;
    width: 100%;
    padding-left: 2.75rem;
    font-size: 0.8125rem;
    color: var(--brown-light);
    margin-top: -0.25rem;
    margin-left: 0;
  }

  /* ── Footer ──────────────────────────────────────── */
  .footer {
    padding: 2.5rem 0 1.25rem;
    padding-bottom: 5.5rem;
  }

  .footer-layout {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .footer-brand {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-logo {
    width: 44px;
    height: 44px;
  }

  .footer-tagline {
    font-size: 0.8125rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.375rem;
    font-size: 0.8125rem;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    padding-top: 1.25rem;
    font-size: 0.75rem;
  }

  /* ── Sticky CTA Bar ──────────────────────────────── */
  .mobile-sticky-cta {
    display: flex;
    padding: 0.625rem 0.875rem;
    padding-bottom: max(0.625rem, env(safe-area-inset-bottom));
    gap: 0.625rem;
  }

  .sticky-btn {
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
  }

  .sticky-btn-call svg {
    width: 16px;
    height: 16px;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-img-primary img {
    min-height: 200px;
    max-height: 260px;
  }

  .about-img-secondary img {
    min-height: 160px;
    max-height: 220px;
  }

  /* Hero fine-tune for very small screens */
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .hero-subtitle {
    font-size: 0.875rem;
    max-width: 300px;
  }

  .hero-ctas {
    max-width: 260px;
  }

  .hero-fact-value {
    font-size: 0.75rem;
  }

  .hero-fact-label {
    font-size: 0.5625rem;
  }

  .hero-fact {
    padding: 0.625rem 0.5rem;
  }

  .pricing-amount {
    font-size: 1.75rem;
  }

  .pricing-card-inner {
    padding: 1.5rem;
  }

  .rules-card {
    padding: 1.5rem;
  }

  .property-feature p {
    font-size: 0.8125rem;
  }

  .area-card-wide img {
    height: 180px;
  }

  .area-card img {
    height: 160px;
  }
}

/* ═══════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════ */
@media print {
  .site-header,
  .mobile-sticky-cta,
  .burger {
    display: none !important;
  }

  .hero {
    min-height: auto;
    page-break-after: always;
  }

  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}
