:root {
  --cream: #F0F0F0;
  --dark: #1C1F1A;
  --forest: #2D3D2E;
  --forest-mid: #3D5240;
  --gold: #C49A3C;
  --gold-light: #E8C96A;
  --warm-white: #F7F7F5;
  --text-muted: #6B6B60;
  --border: rgba(45,61,46,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ─── LOGO IMAGE ─── */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img-footer.logo-img,
.logo-img-footer {
  height: 56px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* ─── BOOKING BAR ─── */
.booking-bar {
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 100;
}

.booking-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.booking-bar-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 1.25rem 2rem 1.25rem 0;
  border-right: 0.5px solid rgba(255,255,255,0.12);
}
.booking-bar-label svg { color: var(--gold); flex-shrink: 0; }

.booking-fields {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.85rem 1.5rem;
  border-right: 0.5px solid rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: background var(--transition);
}
.booking-field:hover { background: rgba(255,255,255,0.04); }

.booking-field label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
}

.booking-date-display {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  min-width: 110px;
}
.booking-date-display.placeholder { color: rgba(255,255,255,0.35); font-size: 15px; }

/* Ukryj natywny input — tylko dla wartości */
.booking-field input[type="date"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.booking-divider {
  color: rgba(255,255,255,0.25);
  font-size: 18px;
  padding: 0 0.25rem;
  flex-shrink: 0;
}

.booking-field-guests {
  border-right: none;
}
.booking-field-guests label { margin-bottom: 1px; }

.booking-guests-control {
  display: flex;
  align-items: center;
  gap: 14px;
}
.booking-guests-control span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  min-width: 20px;
  text-align: center;
}

.guests-btn {
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
  font-family: var(--font-body);
}
.guests-btn:hover { background: rgba(255,255,255,0.18); color: #fff; }

.booking-submit {
  margin-left: auto;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.booking-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── CUSTOM DATE PICKER ─── */
.date-picker-popup {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #1e2b1f;
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 1.25rem;
  z-index: 200;
  width: 280px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.date-picker-popup.open { display: block; }

.picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.picker-month-year {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.03em;
}
.picker-nav {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  cursor: pointer;
  padding: 0 6px;
  line-height: 1;
  transition: color var(--transition);
  font-family: var(--font-body);
}
.picker-nav:hover { color: var(--gold); }

.picker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.picker-weekdays span {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  padding: 4px 0;
}

.picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.picker-day {
  text-align: center;
  padding: 7px 4px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.15s;
  line-height: 1;
}
.picker-day:hover { background: rgba(196,154,60,0.2); color: var(--gold-light); }
.picker-day.today { color: var(--gold); font-weight: 500; }
.picker-day.selected { background: var(--gold); color: var(--dark); font-weight: 500; }
.picker-day.disabled { color: rgba(255,255,255,0.15); cursor: default; pointer-events: none; }
.picker-day.empty { cursor: default; }
.picker-day.in-range { background: rgba(196,154,60,0.12); }

@media (max-width: 900px) {
  .booking-bar-inner {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    align-items: stretch;
  }
  .booking-bar-label {
    border-right: none;
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
    padding: 0 0 0.75rem 0;
  }
  .booking-fields { flex-wrap: wrap; gap: 1rem; }
  .booking-field { padding: 0; border-right: none; }
  .booking-submit { width: 100%; text-align: center; }
  .booking-field { position: static; }
  #picker-arrival, #picker-departure {
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
  }
}

/* Styl dla wtórnych akcji pod widgetem */
.hero-actions-secondary {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-ghost-white {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
  font-family: var(--font-body);
}
.btn-ghost-white:hover { color: #fff; }

/* ─── LANGUAGE SWITCHER ─── */
.lang-bar {
  background: var(--dark);
  text-align: right;
  padding: 6px 2rem;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.lang-bar a {
  color: rgba(255,255,255,0.5);
  margin-left: 12px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.lang-bar a.active, .lang-bar a:hover { color: var(--gold-light); }

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,250,245,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 2rem;
  height: 72px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-link { display: flex; align-items: center; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
}
.logo-text {
  line-height: 1.2;
}
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--forest);
}
.logo-text span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

nav { display: flex; align-items: center; gap: 2rem; }
nav a {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
nav a:hover { color: var(--forest); }
nav a:hover::after { transform: scaleX(1); }

.btn-reserve {
  background: var(--forest);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.btn-reserve:hover { background: var(--gold) !important; color: var(--dark) !important; }
.btn-reserve::after { display: none !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,31,26,0.85) 0%, rgba(28,31,26,0.2) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 4rem;
  max-width: 760px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

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

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 16px; align-items: center; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.btn-ghost:hover { color: #fff; }
.btn-ghost svg { width: 16px; height: 16px; }

.hero-stats {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  display: flex;
  gap: 2rem;
  z-index: 2;
}
.hero-stat {
  text-align: right;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-right: 2rem;
}
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.hero-stat span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── SECTIONS ─── */
section { padding: 6rem 2rem; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.15;
}

/* ─── INTRO ─── */
.intro {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 6rem 4rem;
}

.intro-text p {
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-size: 17px;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-item {
  padding: 1.75rem;
  background: var(--warm-white);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color var(--transition), transform var(--transition);
}
.feature-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}
.feature-icon svg {
  width: 22px;
  height: 22px;
}
.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
}
.feature-item span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── DOMKI GRID ─── */
.cabins-section {
  background: var(--warm-white);
  padding: 6rem 4rem;
}

.cabins-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.cabins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.cabin-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--forest);
}

.cabin-card:first-child {
  grid-column: span 1;
  aspect-ratio: 4/3;
}

.cabin-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  background: var(--forest-mid);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

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

.cabin-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,31,26,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--transition);
}

.cabin-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 1px;
  margin-bottom: 0.75rem;
  font-weight: 500;
  width: fit-content;
}

.cabin-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cabin-meta {
  display: flex;
  gap: 1rem;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cabin-cta {
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cabin-cta::after {
  content: '→';
}
.cabin-card:hover .cabin-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ─── GALLERY STRIP ─── */
.gallery-strip {
  background: var(--dark);
  padding: 4rem 0;
  overflow: hidden;
}
.gallery-strip-title {
  padding: 0 4rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}
.gallery-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 0 4rem;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex: 0 0 280px;
  height: 200px;
  background: var(--forest-mid);
  border: 0;
  border-radius: 1px;
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
}
.gallery-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.08);
  font-family: var(--font-display);
  transition: transform 0.5s ease;
}
.gallery-thumb:hover .gallery-thumb-inner { transform: scale(1.05); }
.gallery-thumb img {
  transition: transform 0.3s ease;
}
.gallery-thumb:hover img {
  transform: scale(1.05);
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(16, 18, 14, 0.92);
}
.gallery-lightbox.open {
  display: flex;
}
.gallery-lightbox img {
  width: auto;
  height: auto;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
}
.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: 0;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}
.gallery-lightbox-prev {
  left: 22px;
}
.gallery-lightbox-next {
  right: 22px;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

/* ─── ATRAKCJE ─── */
.attractions {
  background: var(--cream);
  padding: 6rem 4rem;
}

.attractions-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.attraction-item {
  padding: 2rem;
  background: var(--warm-white);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.attraction-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.attraction-icon {
  width: 48px;
  height: 48px;
  background: var(--forest);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.attraction-icon svg {
  width: 26px;
  height: 26px;
}
.attraction-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
}
.attraction-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── OPINIE ─── */
.reviews {
  background: var(--forest);
  padding: 6rem 4rem;
}
.reviews .section-eyebrow { color: var(--gold-light); }
.reviews .section-title { color: #fff; margin-bottom: 3rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 2rem;
}
.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.reviewer {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--warm-white);
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--border);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  font-size: 20px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item a, .contact-item p {
  color: var(--forest);
  font-size: 16px;
}
.contact-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 2px;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.form-row { margin-bottom: 1rem; }
.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 0.5px solid var(--border);
  border-radius: 2px;
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition);
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--gold);
}
.form-row textarea { height: 100px; resize: vertical; }
.form-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background var(--transition);
}
.btn-submit:hover { background: var(--gold); color: var(--dark); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr 1fr;
  gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo-text strong { color: rgba(255,255,255,0.9); }
.footer-brand .logo-text span { color: rgba(255,255,255,0.35); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-sister {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.footer-sister-label {
  font-size: 10px !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0 !important;
}
.footer-sister-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: opacity var(--transition);
}
.footer-sister-link:hover { opacity: 0.8; }
.footer-helenowka-logo {
  height: 40px;
  width: auto;
  filter: none;
  opacity: 1;
  object-fit: contain;
  object-position: left;
}
.footer-sister-link span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  grid-column: span 5;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ─── BOOKING BAR PLACEHOLDER ─── */
.booking-date-display.placeholder {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}

.booking-bar-label span {
  color: rgba(255,255,255,0.8);
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ─── FORM DATE FIELDS ─── */
.form-date-field {
  position: relative;
  cursor: pointer;
}
.form-date-display {
  font-size: 15px;
  color: var(--dark);
  padding: 10px 0 4px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
}
.form-date-display.placeholder { color: rgba(28,31,26,0.35); }
.form-date-field:hover .form-date-display { border-color: var(--forest); }
.form-date-field .date-picker-popup {
  top: calc(100% + 4px);
  left: 0;
  z-index: 300;
}

/* ─── FOOTER OBJECTS ─── */
.footer-objects {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.25rem;
}
.footer-object-link {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 1;
  transition: opacity var(--transition);
}
.footer-object-link:hover { opacity: 1; }
.footer-object-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
  object-position: left;
  flex-shrink: 0;
}
.footer-object-link span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* ─── NAV DROPDOWN ─── */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  user-select: none;
  display: inline-block;
}
.nav-dropdown-trigger:hover { color: var(--forest); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 20px;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  z-index: 2000;
  padding: 6px 0;
  overflow: hidden;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background var(--transition);
  gap: 1px;
  line-height: 1.4;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: rgba(45,61,46,0.05); color: var(--forest); }
.nav-dropdown-menu a span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 300;
}

.nav-dropdown-divider {
  height: 0.5px;
  background: var(--border);
  margin: 4px 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .cabins-grid { grid-template-columns: 1fr; }
  .cabin-card { aspect-ratio: 4/3; }
  .attractions { padding: 4rem 1.5rem; }
  .attractions-intro { grid-template-columns: 1fr; gap: 2rem; }
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .reviews { padding: 4rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  footer { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem; }
  .footer-bottom { grid-column: span 5; }
  .footer-col-sister { grid-column: span 2; }
  .hero-content { padding: 0 1.5rem 3rem; }
  .hero-stats { display: none; }
  nav { display: none; }
  .cabins-section { padding: 4rem 1.5rem; }
}
