/* ============================================
   Bursztyn Grzybowo - Modern Stylesheet (2026)
   Scandinavian Coastal Minimalism
   ============================================ */

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

:root {
  /* Color Palette — Baltic Amber */
  --color-bg: #F5F0EB;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F0EBE3;
  --color-amber: #C8892A;
  --color-amber-light: #E8B84B;
  --color-amber-hover: #A8721E;
  --color-amber-mist: rgba(200, 137, 42, 0.08);
  --color-dark: #1A1816;
  --color-text: #2C2B28;
  --color-text-body: #6B6459;
  --color-text-light: #9E9188;
  --color-border: rgba(44, 43, 40, 0.1);

  /* Shadows */
  --shadow: 0 1px 3px rgba(44, 43, 40, 0.04), 0 1px 2px rgba(44, 43, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(44, 43, 40, 0.07);
  --shadow-lg: 0 12px 40px rgba(44, 43, 40, 0.1);

  /* Radii */
  --radius: 4px;
  --radius-lg: 8px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 3rem);
  --section-padding: clamp(4rem, 8vw, 7rem);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul { list-style: none; }

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

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

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.4s ease;
}

.header-scrolled {
  background: var(--color-surface);
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 12px rgba(44, 43, 40, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--color-amber);
}

/* Hamburger - checkbox trick */
.nav-toggle { display: none; }

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  position: relative;
  transition: var(--transition);
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before { top: -7px; }
.nav-toggle-label span::after { top: 7px; }

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-body);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
  background: var(--color-amber-mist);
}

/* Transparent header for hero pages (desktop only) */
@media (min-width: 769px) {
  .header--hero {
    background: transparent;
    border-bottom-color: transparent;
  }

  .header--hero .logo {
    color: #FAF8F5;
  }

  .header--hero .nav-links a {
    color: rgba(250, 248, 245, 0.85);
  }

  .header--hero .nav-links a:hover,
  .header--hero .nav-links a.active {
    color: #FAF8F5;
    background: rgba(255, 255, 255, 0.12);
  }

  .header--hero.header-scrolled {
    background: var(--color-surface);
    border-bottom-color: var(--color-border);
    box-shadow: 0 1px 12px rgba(44, 43, 40, 0.06);
  }

  .header--hero.header-scrolled .logo {
    color: var(--color-text);
  }

  .header--hero.header-scrolled .nav-links a {
    color: var(--color-text-body);
  }

  .header--hero.header-scrolled .nav-links a:hover,
  .header--hero.header-scrolled .nav-links a.active {
    color: var(--color-text);
    background: var(--color-amber-mist);
  }
}

/* --- Hero Carousel --- */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  color: #FAF8F5;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 18, 15, 0.15) 0%,
    transparent 35%,
    rgba(20, 18, 15, 0.55) 100%
  );
}

.hero-slide.active { opacity: 1; }

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 var(--container-padding);
  padding-bottom: clamp(6rem, 14vh, 11rem);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  animation: heroFadeUp 1s ease forwards;
}

.hero-content p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  max-width: 550px;
  animation: heroFadeUp 1s 0.25s ease forwards;
}

.hero-content p + p {
  margin-top: -0.75rem;
}

.hero-content .btn {
  opacity: 0;
  animation: heroFadeUp 1s 0.5s ease forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: var(--container-padding);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(250, 248, 245, 0.25);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-amber-light);
  animation: scrollDown 2.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Carousel controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FAF8F5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.hero-carousel:hover .carousel-prev,
.hero-carousel:hover .carousel-next {
  opacity: 1;
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active,
.carousel-dot:hover {
  background: #FAF8F5;
  border-color: #FAF8F5;
  transform: scale(1.2);
}

/* Hero fallback (subpages) */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: #FAF8F5;
  overflow: hidden;
  padding-bottom: clamp(4rem, 10vh, 8rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  letter-spacing: 0.03em;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  border-radius: 0;
}

.btn-primary {
  background: var(--color-amber);
  color: #FAF8F5;
}

.btn-primary:hover {
  background: var(--color-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 137, 42, 0.25);
}

.btn-outline {
  border: 1.5px solid rgba(250, 248, 245, 0.8);
  color: #FAF8F5;
  background: transparent;
}

.btn-outline:hover {
  background: #FAF8F5;
  color: var(--color-text);
  border-color: #FAF8F5;
}

/* --- Page Header (subpages) --- */
.page-header {
  padding: 150px 0 50px;
  text-align: center;
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  animation: heroFadeUp 0.8s ease forwards;
}

.page-header p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.15s ease forwards;
}

/* --- Sections --- */
.section {
  padding: var(--section-padding) 0;
}

.section-alt {
  background: var(--color-surface-alt);
}

.section-title {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-title h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-amber);
  margin: 0 auto 1.25rem;
}

.section-title p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* --- Rooms description --- */
.rooms-description {
  max-width: 900px;
  margin: 20px auto 0;
  text-align: left;
}

.rooms-description p {
  color: var(--color-text-body);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

.rooms-description ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

.rooms-description ul li {
  color: var(--color-text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.rooms-description ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-grid.about-grid-full {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.about-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.about-text p {
  color: var(--color-text-body);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1rem;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text ul li {
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: 4px;
  padding-left: 20px;
  position: relative;
}

.about-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
}

/* --- Stats --- */
.stats {
  background: var(--color-dark);
  padding: clamp(3rem, 6vw, 5rem) 0;
  color: rgba(250, 248, 245, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--color-amber-light);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Features --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.features-grid .feature-card {
  flex: 0 1 calc(33.333% - 16px);
}

.feature-card {
  background: var(--color-surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* --- Rooms Grid --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.room-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.room-card > img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-card:hover > img { transform: scale(1.04); }

/* --- Room Card Slider --- */
.room-slider {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.room-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.room-slide.active { opacity: 1; }

.room-slider:hover .room-slide.active {
  transform: scale(1.04);
  transition: opacity 0.5s ease, transform var(--transition-slow);
}

.room-slider-prev,
.room-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-slider:hover .room-slider-prev,
.room-slider:hover .room-slider-next { opacity: 1; }

.room-slider-prev { left: 8px; }
.room-slider-next { right: 8px; }

.room-slider-prev:hover,
.room-slider-next:hover { background: rgba(0, 0, 0, 0.6); }

.room-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 6px;
}

.room-slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.room-slider-dot.active { background: #fff; }

/* --- Big Slider (full-width) --- */
.big-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.big-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.big-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  cursor: pointer;
}

.big-slide.active { opacity: 1; }

.big-slider-prev,
.big-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-slider:hover .big-slider-prev,
.big-slider:hover .big-slider-next { opacity: 1; }

.big-slider-prev { left: 20px; }
.big-slider-next { right: 20px; }

.big-slider-prev:hover,
.big-slider-next:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}

.big-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.big-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.big-slider-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

/* --- Masonry Grid --- */
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 22, 0);
  transition: var(--transition);
  pointer-events: none;
}

.masonry-item:hover::after {
  background: rgba(26, 24, 22, 0.1);
}

/* --- Room Info --- */
.room-info { padding: 24px; }

.room-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}

.room-info p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.room-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.room-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-amber);
}

.room-price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.room-capacity {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 22, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(26, 24, 22, 0.12);
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-amber-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
}

.contact-info-card p {
  color: var(--color-text-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-info-card p a {
  color: var(--color-amber);
  transition: var(--transition);
}

.contact-info-card p a:hover {
  color: var(--color-amber-hover);
}

.contact-form {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-amber);
  box-shadow: 0 0 0 3px var(--color-amber-mist);
  background: var(--color-surface);
}

.form-group textarea { height: 120px; resize: vertical; }

/* --- Map --- */
.map-container {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* --- Price Table (Cennik) --- */
.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.price-table thead th {
  background: var(--color-dark);
  color: rgba(250, 248, 245, 0.95);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.price-table thead th small {
  display: block;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 2px;
}

.price-table tbody tr:hover {
  background: var(--color-amber-mist);
}

.price-table tbody td { white-space: nowrap; }

.price-table tbody td:first-child { white-space: normal; }

.price-table tbody td small {
  color: var(--color-text-light);
}

.price-table-simple td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--color-amber);
}

.price-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* --- Regulations (Regulamin) --- */
.regulations-content {
  max-width: 760px;
  margin: 0 auto;
}

.reg-section {
  margin-bottom: 2.5rem;
}

.reg-section h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-amber);
}

.reg-section ol {
  list-style: decimal;
  padding-left: 24px;
}

.reg-section ol li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--color-text-body);
}

.reg-section ol li strong {
  color: var(--color-text);
}

/* --- Attractions (Okolica) --- */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.attraction-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.attraction-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.attraction-card:hover img { transform: scale(1.04); }

.attraction-info { padding: 24px; }

.attraction-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
}

.attraction-distance {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-amber);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.attraction-info p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- CTA --- */
.cta {
  background: var(--color-dark);
  color: rgba(250, 248, 245, 0.9);
  text-align: center;
  padding: var(--section-padding) 0;
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: #FAF8F5;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: #141210;
  color: rgba(250, 248, 245, 0.55);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 3rem;
}

.footer h4 {
  font-family: var(--font-heading);
  color: rgba(250, 248, 245, 0.85);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.footer p {
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer p a {
  color: var(--color-amber-light);
  transition: var(--transition);
}

.footer p a:hover {
  color: var(--color-amber);
}

.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: rgba(250, 248, 245, 0.85);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.08);
  font-size: 0.8rem;
}

/* --- Scroll Animations --- */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="fade-down"] { transform: translateY(-30px); }
[data-animate="fade-left"] { transform: translateX(-30px); }
[data-animate="fade-right"] { transform: translateX(30px); }
[data-animate="fade-in"] { transform: scale(0.97); }
[data-animate="zoom-in"] { transform: scale(0.92); }

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

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-img.lb-fade-in { animation: lbFadeIn 0.3s ease; }

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(250, 248, 245, 0.7);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  color: #FAF8F5;
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(250, 248, 245, 0.8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FAF8F5;
}

.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250, 248, 245, 0.5);
  font-size: 0.8rem;
  z-index: 2;
  letter-spacing: 0.1em;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .features-grid .feature-card { flex: 0 1 calc(50% - 12px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 2; }
  .big-slider-prev, .big-slider-next { width: 40px; height: 40px; font-size: 1rem; }
  .big-slider-prev { left: 12px; }
  .big-slider-next { right: 12px; }
}

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

  .carousel-prev, .carousel-next { width: 40px; height: 40px; font-size: 1rem; }
  .carousel-prev { left: 10px; }
  .carousel-next { right: 10px; }

  /* Mobile nav — full screen overlay */
  .nav-toggle-label { display: block; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--color-surface);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 999;
  }

  .nav-toggle:checked ~ .nav-links {
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle:checked + .nav-toggle-label span { background: transparent; }
  .nav-toggle:checked + .nav-toggle-label span::before { top: 0; transform: rotate(45deg); background: var(--color-text); }
  .nav-toggle:checked + .nav-toggle-label span::after { top: 0; transform: rotate(-45deg); background: var(--color-text); }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    border-radius: 0;
    letter-spacing: 0.01em;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--color-amber);
    background: transparent;
  }

  /* Hero */
  .hero-content h1, .hero h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .hero-content p, .hero p { font-size: 0.95rem; }

  .section { padding: clamp(3rem, 6vw, 4.5rem) 0; }
  .section-title h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
  .features-grid .feature-card { flex: 0 1 100%; }
  .rooms-grid { grid-template-columns: 1fr; }
  .attractions-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .price-table th, .price-table td { padding: 12px 14px; font-size: 0.85rem; }
  .page-header { padding: 120px 0 40px; }
  .page-header h1 { font-size: clamp(1.8rem, 5vw, 2.2rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .map-container iframe { height: 300px; }
  .masonry-grid { columns: 2; }
  .big-slider { border-radius: 0; }

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-carousel, .hero { min-height: 500px; }
  .hero-content h1, .hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-item h3 { font-size: 2rem; }
  .btn { padding: 12px 28px; font-size: 0.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .room-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
  .masonry-grid { columns: 1; }

  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}
