@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --deep-blue: #0a1628;
  --deep-blue-light: #132744;
  --emerald: #2d8a6e;
  --emerald-light: #3aaf8a;
  --sunset: #e8854a;
  --sunset-light: #f4a76c;
  --warm-beige: #f5efe6;
  --soft-white: #faf8f5;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --text-dark: #1a1a2e;
  --text-light: #f0ece4;
  --text-muted: #8a9bb5;
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.3);
  --shadow-glow-emerald: 0 0 40px rgba(45,138,110,0.3);
  --shadow-glow-sunset: 0 0 40px rgba(232,133,74,0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--soft-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(45,138,110,0.12), rgba(232,133,74,0.1));
  border: 1px solid rgba(45,138,110,0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--deep-blue), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-weight: 300;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  position: relative;
}

.header__logo span { color: var(--sunset); }

.header__nav { display: flex; gap: 30px; align-items: center; }

.header__nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__nav a i {
  width: 16px;
  height: 16px;
  stroke-width: 2.2px;
  transition: var(--transition);
  color: var(--sunset-light);
  opacity: 0.8;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sunset);
  transition: var(--transition);
}

.header__nav a:hover { color: white; }
.header__nav a:hover i { transform: translateY(-2px) scale(1.1); color: var(--sunset); opacity: 1; }
.header__nav a:hover::after { width: 100%; }

.header__cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  color: white !important;
  border-radius: 50px;
  font-weight: 600 !important;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header__cta i {
  color: white !important;
  width: 18px !important;
  height: 18px !important;
  opacity: 1 !important;
}

.header__cta::after { display: none !important; }

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-sunset);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: white;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('rys/bg.png') no-repeat center center / cover fixed;
}

.hero__slider {
  display: none;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  will-change: opacity;
}

.hero__slide.active { opacity: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,22,40,0.5) 0%,
    rgba(10,22,40,0.3) 40%,
    rgba(10,22,40,0.6) 100%
  );
  z-index: 1;
}

.hero__fog {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}

.hero__fog::before, .hero__fog::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.15) 0%, transparent 60%);
  animation: fogMove 20s ease-in-out infinite;
}

.hero__fog::after {
  animation-delay: -10s;
  animation-duration: 25s;
}

@keyframes fogMove {
  0%, 100% { transform: translate(-25%, -25%) rotate(0deg); }
  33% { transform: translate(-20%, -30%) rotate(5deg); }
  66% { transform: translate(-30%, -20%) rotate(-3deg); }
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(50px); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--sunset-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: fadeInDown 1s 0.3s both;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInDown 1s 0.5s both;
}

.hero__title span {
  display: block;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 40px;
  animation: fadeInDown 1s 0.7s both;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 1s 0.9s both;
}

.btn-primary {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-sunset);
}

.btn-outline {
  padding: 16px 36px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInDown 1s 1.2s both;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--sunset), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === WAVES === */
.hero__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
}

.hero__waves .waves {
  position: relative;
  width: 100%;
  height: 8vh;
  min-height: 50px;
  max-height: 80px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% { transform: translate3d(-90px, 0, 0); }
  100% { transform: translate3d(85px, 0, 0); }
}

/* === ABOUT === */
.about {
  padding: 120px 40px;
  background: var(--soft-white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45,138,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text { position: relative; }

.about__description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 30px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.about__feature:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

.about__feature svg { color: var(--emerald); flex-shrink: 0; }

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.about__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.about__img:first-child {
  grid-row: 1 / 3;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__img:hover img { transform: scale(1.05); }

.about__floating-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  opacity: 0.15;
  top: -30px;
  right: -30px;
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* === ADVANTAGES === */
.advantages {
  padding: 120px 40px;
  background: linear-gradient(rgba(10, 22, 40, 0.7), rgba(10, 22, 40, 0.7)), url('rys/bg.png') no-repeat center center / cover;
  background-attachment: fixed, fixed;
  position: relative;
  overflow: hidden;
}

.advantages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(45,138,110,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232,133,74,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.advantages .section-badge { color: var(--sunset-light); border-color: rgba(232,133,74,0.3); }
.advantages .section-title {
  background: linear-gradient(135deg, white, var(--sunset-light));
  -webkit-background-clip: text; background-clip: text;
}
.advantages .section-subtitle { color: rgba(255,255,255,0.5); }

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,138,110,0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: var(--emerald-light);
  box-shadow: var(--shadow-glow-emerald);
}

.advantage-card:hover::before { opacity: 1; }

.advantage-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  position: relative;
  transition: var(--transition);
}

.advantage-card:hover .advantage-card__icon { transform: scale(1.1) rotate(5deg); }

.advantage-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 12px;
  position: relative;
}

.advantage-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  position: relative;
}

/* === GALLERY === */
.gallery {
  padding: 120px 40px;
  background: var(--soft-white);
  overflow: hidden;
}

.gallery__grid {
  max-width: 1400px;
  margin: 0 auto;
  columns: 4;
  column-gap: 16px;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.gallery__item:hover img { transform: scale(1.08); }

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.6), transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover::after { opacity: 1; }

.gallery__zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery__item:hover .gallery__zoom { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: lightboxIn 0.4s ease;
}

@keyframes lightboxIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover { background: rgba(255,255,255,0.2); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav--prev { left: 30px; }
.lightbox__nav--next { right: 30px; }

/* === ACTIVITIES === */
.activities {
  padding: 120px 40px;
  background: linear-gradient(rgba(245, 239, 230, 0.8), rgba(250, 248, 245, 0.8)), url('rys/bg.png') no-repeat center center / cover;
  background-attachment: fixed, fixed;
  position: relative;
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.activity-block {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.activity-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--sunset));
  transform: scaleX(0);
  transition: var(--transition);
}

.activity-block:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.activity-block:hover::before { transform: scaleX(1); }

.activity-block__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.activity-block__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.activity-block:hover .activity-block__icon {
  transform: scale(1.15) translateY(-5px);
}

.activity-block__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--deep-blue);
}

.activity-block__text {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* === HOUSES === */
.houses {
  padding: 120px 40px;
  background: var(--deep-blue);
  position: relative;
  overflow: hidden;
}

.houses::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 60%, rgba(232,133,74,0.08) 0%, transparent 50%);
}

.houses .section-title {
  background: linear-gradient(135deg, white, var(--sunset-light));
  -webkit-background-clip: text; background-clip: text;
}
.houses .section-subtitle { color: rgba(255,255,255,0.5); }
.houses .section-badge { color: var(--sunset-light); border-color: rgba(232,133,74,0.3); }

.houses__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.house-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.house-card:hover { transform: translateY(-6px); border-color: var(--emerald-light); box-shadow: var(--shadow-glow-emerald); }

.house-card__image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.house-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.house-card:hover .house-card__image img { transform: scale(1.05); }

.house-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.house-card__body { padding: 30px; }

.house-card__title {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 12px;
}

.house-card__desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.house-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.house-card__amenity {
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.house-card__pricing { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }

.house-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.house-card__price-label { color: rgba(255,255,255,0.5); }
.house-card__price-value { color: var(--sunset-light); font-weight: 600; }

.house-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

/* === BOOKING CALCULATOR === */
.pricing {
  padding: 120px 40px;
  background: linear-gradient(rgba(250, 248, 245, 0.85), rgba(250, 248, 245, 0.85)), url('rys/bg.png') no-repeat center center / cover;
  background-attachment: fixed, fixed;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45,138,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,133,74,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.calc {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

/* Steps */
.calc__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc__step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid #eee;
  transition: var(--transition);
  position: relative;
}

.calc__step:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: rgba(45,138,110,0.15);
}

.calc__step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.calc__step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(45,138,110,0.3);
}

.calc__step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin: 0;
}

/* House Selection */
.calc__houses {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc__house {
  cursor: pointer;
  display: block;
}

.calc__house input[type="radio"] {
  display: none;
}

.calc__house-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 2px solid #eee;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  background: #fafafa;
  position: relative;
}

.calc__house input:checked ~ .calc__house-inner {
  border-color: var(--emerald);
  background: linear-gradient(135deg, rgba(45,138,110,0.04), rgba(45,138,110,0.02));
  box-shadow: 0 4px 20px rgba(45,138,110,0.12);
}

.calc__house-inner:hover {
  border-color: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.calc__house-img {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.calc__house-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.calc__house:hover .calc__house-img img {
  transform: scale(1.1);
}

.calc__house-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.calc__house-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-blue);
}

.calc__house-cap {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.calc__house-price-hint {
  font-size: 0.8rem;
  color: var(--emerald);
}

.calc__house-price-hint strong {
  font-size: 1rem;
}

.calc__house-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.calc__house input:checked ~ .calc__house-inner .calc__house-check {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-color: var(--emerald);
  color: white;
  box-shadow: 0 3px 10px rgba(45,138,110,0.3);
}

/* Dates */
.calc__dates {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.calc__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc__input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--deep-blue);
  background: #fafafa;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}

.calc__input:focus {
  border-color: var(--emerald);
  background: white;
  box-shadow: 0 0 0 4px rgba(45,138,110,0.1);
}

.calc__input:hover {
  border-color: var(--emerald-light);
}

.calc__nights-display {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(45,138,110,0.06), rgba(232,133,74,0.04));
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--deep-blue);
  font-weight: 500;
  border: 1px solid rgba(45,138,110,0.12);
  transition: all 0.4s ease;
}

.calc__nights-display.has-nights {
  background: linear-gradient(135deg, rgba(45,138,110,0.1), rgba(45,138,110,0.04));
  border-color: var(--emerald);
}

.calc__nights-icon {
  font-size: 1.2rem;
}

/* Guests */
.calc__guests-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.calc__counter {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid #eee;
  border-radius: 50px;
  overflow: hidden;
  background: #fafafa;
}

.calc__counter-btn {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--deep-blue);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.calc__counter-btn:hover {
  background: var(--emerald);
  color: white;
}

.calc__counter-btn:active {
  transform: scale(0.9);
}

.calc__counter-value {
  width: 50px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-blue);
  font-family: 'Playfair Display', serif;
}

.calc__guests-label {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Extras */
.calc__extras {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc__extra {
  cursor: pointer;
  display: block;
}

.calc__extra input[type="checkbox"] {
  display: none;
}

.calc__extra-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  background: #fafafa;
}

.calc__extra input:checked ~ .calc__extra-inner {
  border-color: var(--emerald);
  background: linear-gradient(135deg, rgba(45,138,110,0.04), rgba(45,138,110,0.02));
  box-shadow: 0 3px 15px rgba(45,138,110,0.1);
}

.calc__extra-inner:hover {
  border-color: var(--emerald-light);
  transform: translateY(-1px);
}

.calc__extra-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.calc__extra-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.calc__extra-name {
  font-weight: 600;
  color: var(--deep-blue);
  font-size: 0.92rem;
}

.calc__extra-price {
  font-size: 0.8rem;
  color: var(--emerald);
  font-weight: 500;
}

.calc__extra-check {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.calc__extra-check::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.calc__extra input:checked ~ .calc__extra-inner .calc__extra-check {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-color: var(--emerald);
  box-shadow: 0 2px 8px rgba(45,138,110,0.3);
}

.calc__extra input:checked ~ .calc__extra-inner .calc__extra-check::after {
  opacity: 1;
  transform: scale(1);
}

/* Summary Panel */
.calc__summary {
  position: sticky;
  top: 100px;
}

.calc__summary-inner {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.calc__summary-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--sunset), var(--emerald-light));
}

.calc__summary-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.calc__summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 8px;
}

.calc__summary-house {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(45,138,110,0.08), rgba(45,138,110,0.04));
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
  border: 1px solid rgba(45,138,110,0.15);
  transition: all 0.3s ease;
}

.calc__summary-details {
  margin-bottom: 20px;
}

.calc__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
}

.calc__summary-label {
  color: var(--text-muted);
}

.calc__summary-value {
  font-weight: 600;
  color: var(--deep-blue);
}

.calc__summary-breakdown {
  padding: 16px 0;
  border-top: 1px dashed #e0e0e0;
  margin-bottom: 0;
}

.calc__summary-breakdown .calc__summary-row {
  padding: 6px 0;
}

.calc__summary-breakdown .calc__summary-value {
  color: var(--emerald);
}

.calc__summary-total {
  background: linear-gradient(135deg, var(--deep-blue), var(--deep-blue-light));
  margin: 20px -36px;
  padding: 24px 36px;
  position: relative;
}

.calc__summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  font-weight: 500;
}

.calc__total-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  transition: all 0.4s ease;
}

.calc__total-price.animate {
  animation: priceUpdate 0.5s ease;
}

@keyframes priceUpdate {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); color: var(--sunset-light); }
  100% { transform: scale(1); color: white; }
}

.calc__summary-note {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  margin-top: 6px;
  font-style: italic;
}

.calc__book-btn {
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.calc__book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.calc__book-btn:hover::before {
  left: 100%;
}

.calc__book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232,133,74,0.4);
}

.calc__book-btn:active {
  transform: translateY(-1px);
}

.calc__book-btn-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.calc__book-btn:hover .calc__book-btn-arrow {
  transform: translateX(4px);
}

.calc__summary-trust {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.calc__trust-item {
  font-size: 0.8rem;
  color: #888;
  padding: 4px 0;
  line-height: 1.5;
}

/* === CUSTOM DATEPICKER CALENDAR === */
.datepicker-selection {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.datepicker-selection__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fafafa;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: default;
}

.datepicker-selection__item.active {
  border-color: var(--emerald);
  background: linear-gradient(135deg, rgba(45,138,110,0.04), rgba(45,138,110,0.02));
  box-shadow: 0 4px 16px rgba(45,138,110,0.12);
}

.datepicker-selection__item.has-date {
  border-color: var(--emerald-light);
}

.datepicker-selection__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.datepicker-selection__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.datepicker-selection__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.datepicker-selection__date {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-blue);
  font-family: 'Inter', sans-serif;
}

.datepicker-selection__arrow {
  font-size: 1.2rem;
  color: var(--text-muted);
  flex-shrink: 0;
  font-weight: 300;
}

/* Calendar */
.datepicker-calendar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.datepicker-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 4px;
}

.datepicker-calendar__month {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep-blue);
  text-transform: capitalize;
}

.datepicker-calendar__nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #eee;
  background: white;
  color: var(--deep-blue);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.datepicker-calendar__nav:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: white;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(45,138,110,0.3);
}

.datepicker-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
  padding: 0 2px;
}

.datepicker-calendar__weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 8px 0;
}

.datepicker-calendar__weekdays .weekend {
  color: var(--sunset);
}

.datepicker-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 0 2px;
}

.cal-day {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--deep-blue);
  user-select: none;
  border: 2px solid transparent;
}

.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty):not(.cal-day--booked) {
  background: rgba(45,138,110,0.08);
  border-color: rgba(45,138,110,0.2);
  transform: scale(1.08);
}

.cal-day--empty {
  cursor: default;
}

.cal-day--today {
  font-weight: 700;
  color: var(--emerald);
  border-color: rgba(45,138,110,0.25);
}

.cal-day--today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--emerald);
}

.cal-day--disabled {
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.4;
}

.cal-day--weekend {
  color: var(--sunset);
}

.cal-day--weekend.cal-day--disabled {
  color: #dcc;
}

.cal-day--booked {
  color: #e84a5f;
  cursor: not-allowed;
  position: relative;
}

.cal-day--booked::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 8px;
  background: rgba(232, 74, 95, 0.08);
  border: 1px solid rgba(232, 74, 95, 0.15);
}

.cal-day--booked::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 2px;
  background: rgba(232, 74, 95, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  border-radius: 1px;
}

.cal-day--checkin {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light)) !important;
  color: white !important;
  border-color: var(--emerald) !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(45,138,110,0.35);
  z-index: 2;
  border-radius: 10px 4px 4px 10px;
}

.cal-day--checkin::after {
  display: none;
}

.cal-day--checkout {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light)) !important;
  color: white !important;
  border-color: var(--sunset) !important;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(232,133,74,0.35);
  z-index: 2;
  border-radius: 4px 10px 10px 4px;
}

.cal-day--checkout::after {
  display: none;
}

.cal-day--in-range {
  background: rgba(45,138,110,0.08);
  color: var(--emerald) !important;
  border-radius: 4px;
  font-weight: 600;
}

.cal-day--in-range::after {
  display: none;
}

/* Legend */
.datepicker-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  flex-shrink: 0;
}

.legend-dot--checkin {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
}

.legend-dot--range {
  background: rgba(45,138,110,0.15);
  border: 1px solid rgba(45,138,110,0.3);
}

.legend-dot--checkout {
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
}

.legend-dot--booked {
  background: rgba(232, 74, 95, 0.15);
  border: 1px solid rgba(232, 74, 95, 0.3);
}

/* Time picker */
.datepicker-time {
  margin-bottom: 16px;
}

.datepicker-time__select select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238a9bb5' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* === ADMIN CALENDAR === */
.admin-calendar {
  background: white;
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.admin-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.admin-calendar__month {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-blue);
  text-transform: capitalize;
}

.admin-calendar__nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #eee;
  background: white;
  color: var(--deep-blue);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 600;
}

.admin-calendar__nav:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: white;
  box-shadow: 0 4px 12px rgba(45,138,110,0.3);
}

.admin-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.admin-calendar__weekdays span {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 10px 0;
}

.admin-calendar__weekdays .weekend {
  color: var(--sunset);
}

.admin-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.admin-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--deep-blue);
  user-select: none;
  border: 2px solid transparent;
  position: relative;
}

.admin-day:hover:not(.admin-day--empty):not(.admin-day--past) {
  background: rgba(45,138,110,0.08);
  border-color: rgba(45,138,110,0.2);
  transform: scale(1.06);
}

.admin-day--empty {
  cursor: default;
}

.admin-day--past {
  color: #ccc;
  cursor: default;
  opacity: 0.35;
}

.admin-day--today {
  font-weight: 700;
  border-color: rgba(45,138,110,0.3);
  color: var(--emerald);
}

.admin-day--booked {
  background: linear-gradient(135deg, #e84a5f, #ff6b7a) !important;
  color: white !important;
  font-weight: 700;
  border-color: #e84a5f !important;
  box-shadow: 0 4px 14px rgba(232,74,95,0.3);
}

.admin-day--booked:hover {
  background: linear-gradient(135deg, #d43b4f, #e84a5f) !important;
  box-shadow: 0 6px 18px rgba(232,74,95,0.4);
}

.admin-day--weekend {
  color: var(--sunset);
}

.admin-day--weekend.admin-day--past {
  color: #dbb;
}

.admin-calendar__legend {
  display: flex;
  gap: 20px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.admin-calendar__legend .legend-item {
  font-size: 0.78rem;
}

.admin-calendar__hint {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

.admin-stats {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.admin-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(45,138,110,0.06), rgba(45,138,110,0.02));
  border: 1px solid rgba(45,138,110,0.12);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-blue);
}

.admin-stat__count {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  min-width: 28px;
  text-align: center;
}

/* Responsive for calendar */
@media (max-width: 768px) {
  .datepicker-selection {
    flex-direction: column;
    gap: 8px;
  }
  .datepicker-selection__arrow {
    transform: rotate(90deg);
  }
  .datepicker-calendar {
    padding: 14px;
  }
  .cal-day {
    font-size: 0.8rem;
  }
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--warm-beige), var(--soft-white));
  position: relative;
  overflow: hidden;
}

.testimonials__slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  text-align: center;
  display: none;
  animation: fadeInUp 0.6s ease;
  position: relative;
  border: 1px solid rgba(45,138,110,0.1);
}

.testimonial-card.active { display: block; }

.testimonial-card__quote {
  font-size: 3rem;
  color: var(--emerald);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card__text {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--deep-blue);
}

.testimonial-card__date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(45,138,110,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials__dot.active {
  background: var(--emerald);
  width: 30px;
  border-radius: 5px;
}

/* === FAQ === */
.faq {
  padding: 120px 40px;
  background: linear-gradient(rgba(250, 248, 245, 0.85), rgba(250, 248, 245, 0.85)), url('rys/bg.png') no-repeat center center / cover;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid #eee;
  transition: var(--transition);
}

.faq__item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }

.faq__question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.faq__question:hover { color: var(--emerald); }

.faq__icon {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  color: var(--emerald);
}

.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.open .faq__answer { max-height: 300px; }

.faq__answer-inner {
  padding: 0 28px 22px;
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* === CONTACT === */
.contact {
  padding: 120px 40px;
  background: var(--deep-blue);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(45,138,110,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 20%, rgba(232,133,74,0.08) 0%, transparent 50%);
}

.contact .section-title {
  background: linear-gradient(135deg, white, var(--sunset-light));
  -webkit-background-clip: text; background-clip: text;
}
.contact .section-subtitle { color: rgba(255,255,255,0.5); }
.contact .section-badge { color: var(--sunset-light); border-color: rgba(232,133,74,0.3); }

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
}

.contact__info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.contact__info-card:hover { border-color: var(--emerald-light); transform: translateX(4px); }

.contact__info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact__info-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact__info-value {
  color: white;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact__info-value a {
  color: var(--sunset-light);
  text-decoration: none;
  transition: var(--transition);
}

.contact__info-value a:hover { color: var(--sunset); }

.contact__map {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.8) contrast(1.1);
}

.contact__form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form__group {
  margin-bottom: 20px;
  position: relative;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form__input, .form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}

.form__input:focus, .form__textarea:focus {
  border-color: var(--emerald-light);
  box-shadow: 0 0 0 3px rgba(45,138,110,0.15);
}

.form__input::placeholder, .form__textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form__textarea { resize: vertical; min-height: 220px; }

.form__submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--sunset), var(--sunset-light));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.form__submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-sunset);
}

/* === FOOTER === */
.footer {
  padding: 60px 40px 30px;
  background: #060e1a;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: white;
  font-weight: 700;
}

.footer__logo span { color: var(--sunset); }

.footer__links { display: flex; gap: 24px; }

.footer__links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__links a i {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: var(--transition);
}

.footer__links a:hover { color: white; }
.footer__links a:hover i { opacity: 1; transform: scale(1.1); color: var(--sunset-light); }

.footer__copy { font-size: 0.8rem; }

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .activities__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { columns: 3; }
  .houses__grid { grid-template-columns: 1fr; max-width: 600px; }
  .calc { grid-template-columns: 1fr; max-width: 700px; }
  .calc__summary { position: static; }
}

@media (max-width: 768px) {
  .header { padding: 14px 20px; }
  .header.scrolled { padding: 10px 20px; }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10,22,40,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 20px;
    transition: right 0.4s ease;
    align-items: flex-start;
  }
  
  .header__nav a {
    width: 100%;
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .header__nav a i {
    width: 20px;
    height: 20px;
  }
  
  .header__cta {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  .header__nav.open { right: 0; }
  .hamburger { display: flex; }

  .about__container { grid-template-columns: 1fr; gap: 40px; }
  .about__images { order: -1; }
  .about__features { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .activities__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery__grid { columns: 2; }
  .contact__container { grid-template-columns: 1fr; }
  .calc__dates { grid-template-columns: 1fr 1fr; }
  .calc__step { padding: 24px; }

  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem); }

  .footer__top { flex-direction: column; gap: 20px; }
  .footer__links { flex-wrap: wrap; justify-content: center; }

  .testimonial-card { padding: 30px 20px; }
}

@media (max-width: 480px) {
  .gallery__grid { columns: 1; }
  .hero__buttons { flex-direction: column; align-items: center; }
  .contact__form { padding: 25px; }
  .calc__dates { grid-template-columns: 1fr; }
  .calc__step { padding: 20px; }
  .calc__summary-inner { padding: 24px; }
  .calc__summary-total { margin: 20px -24px; padding: 20px 24px; }
  .pricing { padding: 80px 20px; }
}

/* === HOUSE STATUS (Booked/Free) === */
.house-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.house-status.free { color: #3aaf8a; border-color: rgba(58,175,138,0.3); }
.house-status.free .status-dot {
  background-color: #3aaf8a;
  box-shadow: 0 0 10px #3aaf8a;
  animation: blinkFree 2s infinite;
}

.house-status.booked { color: #e84a5f; border-color: rgba(232,74,95,0.3); }
.house-status.booked .status-dot {
  background-color: #e84a5f;
  box-shadow: 0 0 10px #e84a5f;
  animation: blinkBooked 2s infinite;
}

@keyframes blinkFree {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px #3aaf8a; }
  50% { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 2px #3aaf8a; }
}

@keyframes blinkBooked {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px #e84a5f; }
  50% { opacity: 0.5; transform: scale(0.8); box-shadow: 0 0 2px #e84a5f; }
}
