* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4efe7;
  color: #1e2f35;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(244, 239, 231, 0.92);
  border-bottom: 1px solid rgba(30, 47, 53, 0.12);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 130px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(244, 239, 231, 0.82), rgba(244, 239, 231, 0.92)),
    url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
}

.hero-box {
  max-width: 900px;
}

.hero-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 18px;
  color: #7b6a52;
  font-weight: 700;
}

h1 {
  font-size: 62px;
  margin: 0 0 18px;
  letter-spacing: 1px;
}

.hero-text {
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: #1e2f35;
  color: #ffffff;
}

.btn-primary:hover {
  background: #2f4a52;
}

.btn-secondary {
  border: 1px solid #1e2f35;
  color: #1e2f35;
}

.btn-secondary:hover {
  background: rgba(30, 47, 53, 0.08);
}

/* SECTIONS */

.section {
  padding: 90px 24px;
}

.section-light {
  background: #ffffff;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-title {
  font-size: 38px;
  margin: 0 0 18px;
}

.section-lead {
  font-size: 19px;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 0 34px;
  color: #40545b;
}

/* GRID */

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

.card {
  background: #f4efe7;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(30, 47, 53, 0.08);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.card p {
  margin: 0;
  line-height: 1.6;
  color: #40545b;
}

/* CONTACT */

.contact-box {
  background: #1e2f35;
  color: #ffffff;
  padding: 42px;
  border-radius: 28px;
}

.contact-box p {
  font-size: 18px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* FOOTER */

.footer {
  padding: 28px 24px;
  background: #162429;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 14px;
}

/* MOBILE */

@media (max-width: 800px) {
  .nav {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .menu {
    gap: 14px;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 19px;
  }

  .section {
    padding: 64px 20px;
  }

  .section-title {
    font-size: 31px;
  }

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

  .contact-box {
    padding: 28px;
  }
}
/* POPRAWKA LOGO I NAGŁÓWKA */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(244, 239, 231, 0.96);
  border-bottom: 1px solid rgba(30, 47, 53, 0.12);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1180px;
  height: 118px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 330px;
  height: 110px;
  overflow: hidden;
  display: block;
  position: relative;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 320px;
  width: auto;
  max-width: none;
  transform: translate(-165px, -92px);
}

.menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #1e2f35;
}

.hero {
  padding-top: 160px;
}

@media (max-width: 800px) {
  .nav {
    height: auto;
    min-height: 96px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .logo {
    width: 280px;
    height: 92px;
  }

  .logo img {
    height: 270px;
    transform: translate(-140px, -78px);
  }

  .menu {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .menu a {
    font-size: 14px;
  }

  .hero {
    padding-top: 180px;
  }
}
/* BIAŁE TŁO GÓRNEGO PASKA */

.header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(30, 47, 53, 0.14) !important;
}

.nav {
  background: #ffffff !important;
}

.logo {
  background: #ffffff !important;
}
/* MNIEJSZE LOGO */

.logo {
  width: 220px !important;
  height: 76px !important;
}

.logo img {
  height: 220px !important;
  transform: translate(-112px, -63px) !important;
}

/* MNIEJSZY PASEK GÓRNY */

.nav {
  height: 74px !important;
  padding: 6px 24px !important;
}

.logo {
  width: 190px !important;
  height: 62px !important;
}

.logo img {
  height: 190px !important;
  transform: translate(-96px, -55px) !important;
}

.menu a {
  font-size: 15px !important;
}

.hero {
  padding-top: 115px !important;
}

}
/* FINAL HEADER COMPACT */

.header {
  height: 64px !important;
  min-height: 64px !important;
  max-height: 64px !important;
  background: #ffffff !important;
  overflow: hidden !important;
}

.nav {
  height: 64px !important;
  min-height: 64px !important;
  max-height: 64px !important;
  padding: 4px 24px !important;
  align-items: center !important;
}

.logo {
  width: 170px !important;
  height: 54px !important;
  max-height: 54px !important;
  overflow: hidden !important;
}

.logo img {
  height: 170px !important;
  width: auto !important;
  max-width: none !important;
  transform: translate(-86px, -49px) !important;
}

.menu a {
  font-size: 14px !important;
}

.hero {
  padding-top: 105px !important;
}
/* FINAL LOGO SMALLER */

.logo {
  width: 145px !important;
  height: 46px !important;
  max-height: 46px !important;
}

.logo img {
  height: 145px !important;
  width: auto !important;
  max-width: none !important;
  transform: translate(-73px, -42px) !important;
}
/* LOGO MNIEJSZE + ELEGANCKIE MENU */

.logo {
  width: 125px !important;
  height: 40px !important;
  max-height: 40px !important;
}

.logo img {
  height: 125px !important;
  width: auto !important;
  max-width: none !important;
  transform: translate(-63px, -36px) !important;
}

.menu {
  gap: 34px !important;
  align-items: center !important;
}

.menu a {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 1.6px !important;
  text-transform: uppercase !important;
  color: #2b2b2b !important;
  text-decoration: none !important;
}

.menu a:hover {
  color: #b7222b !important;
}

.nav {
  height: 62px !important;
  min-height: 62px !important;
  max-height: 62px !important;
}
/* ELEGANCKIE MENU GÓRNE */

.menu {
  gap: 30px !important;
  align-items: center !important;
}

.menu a {
  position: relative !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.4px !important;
  text-transform: none !important;
  color: #263238 !important;
  text-decoration: none !important;
  padding: 8px 0 !important;
}

.menu a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 2px !important;
  width: 0 !important;
  height: 2px !important;
  background: #c3262f !important;
  transition: width 0.25s ease !important;
}

.menu a:hover::after {
  width: 100% !important;
}

.menu a:hover {
  color: #c3262f !important;
}

/* Kontakt jako subtelny przycisk */

.menu a:last-child {
  padding: 9px 18px !important;
  border: 1px solid rgba(195, 38, 47, 0.45) !important;
  border-radius: 999px !important;
  color: #c3262f !important;
}

.menu a:last-child::after {
  display: none !important;
}

.menu a:last-child:hover {
  background: #c3262f !important;
  color: #ffffff !important;
}
/* KONTAKT - MNIEJSZA KARTA */

#kontakt .section-inner {
  max-width: 760px !important;
}

.contact-box {
  padding: 34px 42px !important;
  border-radius: 22px !important;
}

.contact-box .section-title {
  font-size: 34px !important;
  margin-bottom: 24px !important;
}

.contact-box p {
  font-size: 17px !important;
  line-height: 1.6 !important;
}

.contact-links {
  margin-top: 28px !important;
}

.contact-links .btn {
  padding: 12px 20px !important;
  font-size: 15px !important;
}
/* FINALNY KONTAKT - LEWA STRONA + MAPA */

#kontakt.contact-section {
  display: grid !important;
  grid-template-columns: 48% 52% !important;
  width: 100% !important;
  min-height: 520px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #f4efe7 !important;
}

#kontakt .contact-info {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 520px !important;
  padding: 70px 40px !important;
  background: #f4efe7 !important;
}

#kontakt .contact-info-inner {
  max-width: 560px !important;
  text-align: center !important;
}

#kontakt .contact-info h2 {
  margin: 0 0 18px !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #34424a !important;
}

#kontakt .contact-address {
  margin: 0 0 44px !important;
  font-size: 23px !important;
  line-height: 1.55 !important;
  color: #4d5960 !important;
}

#kontakt .contact-call p {
  margin: 0 0 12px !important;
  font-size: 23px !important;
  color: #4d5960 !important;
}

#kontakt .contact-call a {
  display: block !important;
  margin: 8px 0 !important;
  font-size: 22px !important;
  color: #c99b5b !important;
  text-decoration: underline !important;
  text-underline-offset: 5px !important;
}

#kontakt .contact-map {
  width: 100% !important;
  min-height: 520px !important;
  background: #ddd !important;
}

#kontakt .contact-map iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 520px !important;
  border: 0 !important;
  display: block !important;
  filter: grayscale(100%) !important;
}
/* UDOGODNIENIA - IKONY */

.amenities-section {
  background: #f4efe7 !important;
}

.amenities-icons {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 36px !important;
  margin-top: 54px !important;
  text-align: center !important;
}

.amenity-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

.amenity-icon {
  width: 82px !important;
  height: 82px !important;
  margin-bottom: 24px !important;
  border: 2px solid #38525c !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 38px !important;
  color: #38525c !important;
  line-height: 1 !important;
}

.amenity-item h3 {
  margin: 0 !important;
  font-size: 23px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  color: #4d5960 !important;
}

@media (max-width: 900px) {
  .amenities-icons {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 34px 24px !important;
  }
}

@media (max-width: 520px) {
  .amenities-icons {
    grid-template-columns: 1fr !important;
  }
}
/* IKONY UDOGODNIEŃ - CZYSTE LINIE */

.amenity-icon {
  width: 88px !important;
  height: 88px !important;
  margin-bottom: 24px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #38525c !important;
}

.amenity-icon svg {
  width: 88px !important;
  height: 88px !important;
  display: block !important;
}

.amenity-icon svg * {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 3 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.amenity-item h3 {
  margin: 0 !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  color: #4d5960 !important;
}
/* FINALNE IKONY UDOGODNIEŃ */

.amenities-icons {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 70px !important;
  margin-top: 56px !important;
  text-align: center !important;
  align-items: start !important;
}

.amenity-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.amenity-icon {
  width: 78px !important;
  height: 78px !important;
  margin-bottom: 26px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #38525c !important;
}

.amenity-icon svg {
  width: 78px !important;
  height: 78px !important;
  display: block !important;
}

.amenity-icon svg * {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 3.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.amenity-item h3 {
  margin: 0 !important;
  max-width: 230px !important;
  font-size: 21px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  color: #4d5960 !important;
}

@media (max-width: 900px) {
  .amenities-icons {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 44px 30px !important;
  }
}

@media (max-width: 520px) {
  .amenities-icons {
    grid-template-columns: 1fr !important;
  }
}
/* IKONY - DELIKATNY SZKIC OŁÓWKIEM */

.amenities-icons {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 72px !important;
  margin-top: 58px !important;
  text-align: center !important;
  align-items: start !important;
}

.amenity-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.amenity-icon {
  width: 96px !important;
  height: 96px !important;
  margin-bottom: 24px !important;
  border: none !important;
  background: transparent !important;
  color: #3f5961 !important;
}

.amenity-icon svg {
  width: 96px !important;
  height: 96px !important;
  display: block !important;
  overflow: visible !important;
}

.amenity-icon svg * {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.amenity-item h3 {
  margin: 0 !important;
  max-width: 250px !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  color: #4d5960 !important;
}

@media (max-width: 900px) {
  .amenities-icons {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 44px 30px !important;
  }
}

@media (max-width: 520px) {
  .amenities-icons {
    grid-template-columns: 1fr !important;
  }
}
/* CZCIONKI PREMIUM */

body {
  font-family: 'Lato', Arial, sans-serif !important;
  font-weight: 400 !important;
}

h1,
.section-title,
.contact-info h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
}

.section-title {
  font-size: 46px !important;
  line-height: 1.15 !important;
}

.section-lead {
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  line-height: 1.85 !important;
  color: #3f4f55 !important;
  max-width: 1020px !important;
}

.amenity-item h3 {
  font-family: 'Lato', Arial, sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.2px !important;
}

.menu a {
  font-family: 'Lato', Arial, sans-serif !important;
}
/* FILM W TLE STRONY */

.site-bg-video {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: -2 !important;
}

.site-bg-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(244, 239, 231, 0.70) !important;
  z-index: -1 !important;
}

body {
  background: transparent !important;
}

.page {
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
}

.section,
.section-light,
.amenities-section {
  background: rgba(244, 239, 231, 0.88) !important;
}

.header,
.nav {
  background: rgba(255, 255, 255, 0.94) !important;
}/* FILM W TLE - LEPSZA WIDOCZNOŚĆ */

.site-bg-overlay {
  background: rgba(244, 239, 231, 0.38) !important;
}

.hero {
  background: rgba(244, 239, 231, 0.28) !important;
}

.hero-box {
  background: rgba(244, 239, 231, 0.42) !important;
  padding: 34px 46px !important;
  border-radius: 28px !important;
  backdrop-filter: blur(3px) !important;
}

.hero-label,
.hero-text,
h1 {
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.65) !important;
}
/* SEKCJA POKOJE - FILM W TLE */

#pokoje {
  background: rgba(244, 239, 231, 0.28) !important;
  backdrop-filter: none !important;
}

#pokoje .section-inner {
  background: rgba(244, 239, 231, 0.42) !important;
  padding: 46px 52px !important;
  border-radius: 28px !important;
  backdrop-filter: blur(3px) !important;
}

#pokoje .card {
  background: rgba(255, 255, 255, 0.62) !important;
  backdrop-filter: blur(4px) !important;
}
/* KONTAKT + MAPA - FILM W TLE */

#kontakt.contact-section {
  background: rgba(244, 239, 231, 0.22) !important;
}

#kontakt .contact-info {
  background: rgba(244, 239, 231, 0.34) !important;
  backdrop-filter: blur(3px) !important;
}

#kontakt .contact-info-inner {
  background: rgba(244, 239, 231, 0.42) !important;
  padding: 44px 54px !important;
  border-radius: 28px !important;
  backdrop-filter: blur(4px) !important;
}

#kontakt .contact-map {
  background: rgba(244, 239, 231, 0.18) !important;
}

#kontakt .contact-map iframe {
  opacity: 0.82 !important;
  filter: grayscale(100%) contrast(0.95) brightness(1.05) !important;
}
/* KAFELKI O NAS - JAK W SEKCJI POKOJE */

#o-nas .card {
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
  border-radius: 24px !important;
  padding: 30px 32px !important;
  backdrop-filter: blur(4px) !important;
}

#o-nas .card h3 {
  color: #162429 !important;
  font-size: 24px !important;
}

#o-nas .card p {
  color: #40545b !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
}
/* STOPKA - REGULAMIN / PRYWATNOŚĆ / COOKIES */

.footer {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.footer-links {
  display: flex !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none !important;
  font-size: 14px !important;
}

.footer-links a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}
/* REGULAMIN - PROFESJONALNA TYPOGRAFIA */

.legal-inner {
  font-family: 'Source Sans 3', Arial, sans-serif !important;
}

.legal-inner h1 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 54px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
}

.legal-inner h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1px !important;
}

.legal-intro {
  font-family: 'Source Sans 3', Arial, sans-serif !important;
  font-size: 21px !important;
  font-weight: 400 !important;
  line-height: 1.8 !important;
}

.legal-inner li {
  font-family: 'Source Sans 3', Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.75 !important;
}

.legal-inner p {
  font-family: 'Source Sans 3', Arial, sans-serif !important;
}
/* REGULAMIN - BEŻOWE TŁO STRONY */

html,
body {
  background: #f4efe7 !important;
}

.legal-page {
  background: #f4efe7 !important;
}

.legal-inner {
  background: rgba(244, 239, 231, 0.78) !important;
}
/* REGULAMIN - UKŁAD JAK WZÓR, NIE DO LEWEJ */

.legal-page {
  background: #f4efe7 !important;
  padding: 120px 24px 90px !important;
}

.legal-inner {
  max-width: 1160px !important;
  margin: 0 auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 40px !important;
}

.legal-inner h1 {
  text-align: center !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 46px !important;
  margin-bottom: 44px !important;
  color: #162429 !important;
}

.legal-intro {
  max-width: 1080px !important;
  margin: 0 auto 60px !important;
  text-align: center !important;
  font-family: 'Source Sans 3', Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  line-height: 1.9 !important;
  color: #6b6f72 !important;
}

.legal-inner h2 {
  text-align: center !important;
  font-family: 'Source Sans 3', Arial, sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  margin: 54px 0 36px !important;
  color: #6b6f72 !important;
}

.legal-inner ol {
  max-width: 1080px !important;
  margin: 0 auto 46px !important;
  padding-left: 34px !important;
  text-align: left !important;
}

.legal-inner li {
  font-family: 'Source Sans 3', Arial, sans-serif !important;
  font-size: 23px !important;
  font-weight: 300 !important;
  line-height: 1.85 !important;
  color: #6b6f72 !important;
  margin-bottom: 10px !important;
}

.legal-back {
  text-align: center !important;
  margin-top: 70px !important;
}
/* FILM W TLE STRONY - NAPRAWA */

.site-bg-video {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  object-fit: cover !important;
  z-index: -2 !important;
  display: block !important;
}

.site-bg-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(244, 239, 231, 0.38) !important;
  z-index: -1 !important;
  display: block !important;
}

html,
body {
  background: transparent !important;
}

body {
  min-height: 100vh !important;
}

.page {
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
}
/* PODSTRONA POKOJE */

.rooms-page {
  background: transparent !important;
}

.rooms-hero {
  padding: 160px 24px 90px !important;
  text-align: center !important;
}

.rooms-hero-inner {
  max-width: 720px !important;
  margin: 0 auto !important;
  background: rgba(244, 239, 231, 0.58) !important;
  padding: 42px 50px !important;
  border-radius: 28px !important;
  backdrop-filter: blur(4px) !important;
}

.rooms-hero h1 {
  margin: 0 0 18px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 56px !important;
  color: #162429 !important;
}

.rooms-hero p {
  margin: 0 auto !important;
  max-width: 620px !important;
  font-size: 21px !important;
  line-height: 1.75 !important;
  font-weight: 300 !important;
  color: #3f4f55 !important;
}

.rooms-content {
  padding: 90px 24px !important;
  background: rgba(244, 239, 231, 0.72) !important;
}

.rooms-offer-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  margin-top: 48px !important;
}

.room-offer-card {
  background: rgba(255, 255, 255, 0.82) !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
  backdrop-filter: blur(4px) !important;
}

.room-photo-placeholder {
  height: 230px !important;
  background: rgba(244, 239, 231, 0.92) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #7a8589 !important;
  font-size: 18px !important;
  letter-spacing: 1px !important;
}

.room-offer-content {
  padding: 30px 32px 34px !important;
}

.room-offer-content h3 {
  margin: 0 0 14px !important;
  font-size: 26px !important;
  color: #162429 !important;
}

.room-offer-content p {
  margin: 0 0 20px !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: #40545b !important;
}

.room-offer-content ul {
  margin: 0 0 26px !important;
  padding-left: 20px !important;
}

.room-offer-content li {
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: #40545b !important;
}

.room-offer-content .btn {
  display: inline-block !important;
}

@media (max-width: 1000px) {
  .rooms-offer-grid {
    grid-template-columns: 1fr !important;
  }

  .rooms-hero-inner {
    padding: 36px 26px !important;
  }

  .rooms-hero h1 {
    font-size: 42px !important;
  }
}
/* POKOJE - BEŻOWE TŁO BEZ FILMU */

body:has(.rooms-page) {
  background: #f4efe7 !important;
}

body:has(.rooms-page) .page {
  background: #f4efe7 !important;
}

.rooms-page {
  background: #f4efe7 !important;
}

.rooms-hero {
  background: #f4efe7 !important;
}

.rooms-hero-inner {
  background: rgba(244, 239, 231, 0.92) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
  box-shadow: 0 18px 50px rgba(22, 36, 41, 0.06) !important;
  backdrop-filter: none !important;
}

.rooms-content {
  background: #f4efe7 !important;
}

.room-offer-card {
  background: rgba(255, 255, 255, 0.82) !important;
}
/* POKOJE - STRONA W BUDOWIE */

.rooms-under-construction {
  min-height: 75vh !important;
  background: #f4efe7 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.rooms-under-construction .rooms-hero {
  width: 100% !important;
  padding: 150px 24px 100px !important;
}

.rooms-under-construction .rooms-hero-inner {
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center !important;
  background: rgba(244, 239, 231, 0.92) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
  border-radius: 30px !important;
  padding: 54px 58px !important;
  box-shadow: 0 18px 50px rgba(22, 36, 41, 0.06) !important;
}

.under-construction-actions {
  display: flex !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin-top: 30px !important;
}
/* GALERIA - STRONA W PRZYGOTOWANIU */

.rooms-under-construction {
  min-height: 75vh !important;
  background: #f4efe7 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.rooms-under-construction .rooms-hero {
  width: 100% !important;
  padding: 150px 24px 100px !important;
}

.rooms-under-construction .rooms-hero-inner {
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center !important;
  background: rgba(244, 239, 231, 0.92) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
  border-radius: 30px !important;
  padding: 54px 58px !important;
  box-shadow: 0 18px 50px rgba(22, 36, 41, 0.06) !important;
}

.under-construction-actions {
  display: flex !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin-top: 30px !important;
}
/* MOBILE - VILLA DANUSIA */

@media (max-width: 768px) {

  body {
    overflow-x: hidden !important;
  }

  .header {
    position: fixed !important;
    height: auto !important;
  }

  .nav {
    height: auto !important;
    min-height: 74px !important;
    padding: 10px 16px !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .logo {
    width: 120px !important;
    height: 42px !important;
  }

  .logo img {
    height: 120px !important;
    transform: translate(-60px, -35px) !important;
  }

  .menu {
    width: 100% !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
  }

  .menu a {
    font-size: 13px !important;
    padding: 6px 4px !important;
  }

  .menu-booking {
    padding: 8px 14px !important;
    font-size: 13px !important;
  }

  .hero {
    min-height: 100vh !important;
    padding: 150px 18px 70px !important;
  }

  .hero-box {
    max-width: 100% !important;
    padding: 28px 22px !important;
    border-radius: 24px !important;
  }

  .hero-label {
    font-size: 12px !important;
    letter-spacing: 2px !important;
  }

  h1,
  .hero h1 {
    font-size: 42px !important;
    line-height: 1.08 !important;
  }

  .hero-text {
    font-size: 18px !important;
    line-height: 1.6 !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
  }

  .btn {
    width: 100% !important;
    max-width: 260px !important;
    text-align: center !important;
  }

  .section {
    padding: 64px 18px !important;
  }

  .section-title {
    font-size: 36px !important;
    line-height: 1.15 !important;
  }

  .section-lead {
    font-size: 18px !important;
    line-height: 1.75 !important;
  }

  .grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .card {
    padding: 24px !important;
    border-radius: 22px !important;
  }

  .card h3 {
    font-size: 22px !important;
  }

  .card p {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  #kontakt.contact-section {
    grid-template-columns: 1fr !important;
  }

  #kontakt .contact-info {
    padding: 56px 20px !important;
    min-height: auto !important;
  }

  #kontakt .contact-info-inner {
    padding: 36px 24px !important;
    border-radius: 24px !important;
  }

  #kontakt .contact-info h2 {
    font-size: 24px !important;
  }

  #kontakt .contact-address,
  #kontakt .contact-call p,
  #kontakt .contact-call a {
    font-size: 19px !important;
  }

  #kontakt .contact-map,
  #kontakt .contact-map iframe {
    min-height: 340px !important;
  }

  .footer {
    padding: 26px 18px !important;
    font-size: 13px !important;
  }

  .footer-links {
    gap: 12px !important;
  }

  .footer-links a {
    font-size: 13px !important;
  }

  .legal-page {
    padding: 110px 18px 70px !important;
  }

  .legal-inner {
    padding: 0 8px !important;
    max-width: 100% !important;
  }

  .legal-inner h1 {
    font-size: 38px !important;
  }

  .legal-intro {
    font-size: 19px !important;
  }

  .legal-inner h2 {
    font-size: 22px !important;
  }

  .legal-inner li {
    font-size: 18px !important;
    line-height: 1.75 !important;
  }

  .rooms-under-construction .rooms-hero {
    padding: 135px 18px 80px !important;
  }

  .rooms-under-construction .rooms-hero-inner {
    padding: 38px 24px !important;
    border-radius: 24px !important;
  }

  .rooms-hero h1 {
    font-size: 42px !important;
  }

  .rooms-hero p {
    font-size: 18px !important;
  }
}


/* PATCH 2026-06-19 — Villa Danusia: poprawki treści/CTA/ikony bez przebudowy layoutu */

/* Profesjonalne ikony z Font Awesome CDN, w rozmiarze zgodnym z oryginalną sekcją */
.amenity-icon {
  width: 96px !important;
  height: 96px !important;
  margin-bottom: 24px !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #3f5961 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.amenity-icon i {
  font-size: 78px !important;
  line-height: 1 !important;
  color: inherit !important;
}

/* Czyści reguły dla dawnych ręcznie rysowanych SVG */
.amenity-icon svg,
.amenity-icon svg * {
  display: none !important;
}

/* Przycisk Google Maps w sekcji kontakt */
#kontakt .contact-actions {
  margin-top: 28px !important;
  display: flex !important;
  justify-content: center !important;
}

#kontakt .btn-map {
  display: inline-block !important;
  padding: 13px 24px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(201, 155, 91, 0.72) !important;
  color: #c99b5b !important;
  background: transparent !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

#kontakt .btn-map:hover {
  background: #c99b5b !important;
  color: #162429 !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .amenity-icon {
    width: 86px !important;
    height: 86px !important;
  }

  .amenity-icon i {
    font-size: 68px !important;
  }
}

/* PATCH 2026-06-19 — dodatkowe sekcje informacyjne bez przebudowy layoutu */


.audience-strip {
  padding: 58px 24px !important;
  background: rgba(244, 239, 231, 0.70) !important;
}

.audience-inner {
  max-width: 980px !important;
  text-align: center !important;
  background: rgba(244, 239, 231, 0.46) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
  border-radius: 28px !important;
  padding: 36px 46px !important;
  backdrop-filter: blur(4px) !important;
}

.audience-inner h2 {
  margin: 0 0 14px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 34px !important;
  line-height: 1.2 !important;
  color: #162429 !important;
}

.audience-inner p {
  margin: 0 auto !important;
  max-width: 820px !important;
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 300 !important;
  line-height: 1.75 !important;
  color: #3f4f55 !important;
}

.seo-note {
  padding: 42px 24px !important;
  background: rgba(244, 239, 231, 0.82) !important;
}

.seo-note .section-inner {
  max-width: 980px !important;
  text-align: center !important;
}

.seo-note p {
  margin: 0 auto !important;
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  line-height: 1.75 !important;
  color: #40545b !important;
}

@media (max-width: 520px) {
  .audience-strip {
    padding: 46px 18px !important;
  }

  .audience-inner {
    padding: 30px 24px !important;
    border-radius: 24px !important;
  }

  .audience-inner h2 {
    font-size: 30px !important;
  }

  .audience-inner p {
    font-size: 18px !important;
    line-height: 1.7 !important;
  }

  .seo-note {
    padding: 36px 18px !important;
  }

  .seo-note p {
    font-size: 16px !important;
  }
}


/* PATCH — podstrona Pokoje: karty pokoi 1–10 ze zdjęciami tymczasowymi */
.rooms-detail-hero {
  min-height: 72vh !important;
  padding: 150px 24px 88px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: rgba(244, 239, 231, 0.24) !important;
}

.rooms-detail-hero-inner {
  max-width: 900px !important;
  margin: 0 auto !important;
  background: rgba(244, 239, 231, 0.46) !important;
  padding: 44px 52px !important;
  border-radius: 30px !important;
  backdrop-filter: blur(4px) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
}

.rooms-detail-hero h1 {
  margin: 0 0 18px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 62px !important;
  color: #162429 !important;
}

.rooms-detail-hero p {
  margin: 0 auto 30px !important;
  max-width: 780px !important;
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  line-height: 1.75 !important;
  color: #3f4f55 !important;
}

.rooms-overview {
  background: rgba(244, 239, 231, 0.74) !important;
}

.room-list-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  margin-top: 48px !important;
}

.room-type-card {
  overflow: hidden !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
  box-shadow: 0 18px 50px rgba(22, 36, 41, 0.06) !important;
  backdrop-filter: blur(4px) !important;
}

.room-type-card-featured {
  background: rgba(255, 255, 255, 0.86) !important;
}

.room-photo-wrap {
  position: relative !important;
  height: 235px !important;
  overflow: hidden !important;
  background: rgba(244, 239, 231, 0.92) !important;
  border-bottom: 1px solid rgba(30, 47, 53, 0.08) !important;
}

.room-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  filter: saturate(0.86) contrast(0.96) brightness(1.04) !important;
  opacity: 0.88 !important;
}

.room-photo-label {
  position: absolute !important;
  left: 18px !important;
  bottom: 16px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  background: rgba(244, 239, 231, 0.86) !important;
  color: #3f4f55 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  backdrop-filter: blur(4px) !important;
}

.room-type-content {
  padding: 30px 32px 34px !important;
}

.room-type-meta {
  display: inline-block !important;
  margin-bottom: 14px !important;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  background: rgba(201, 155, 91, 0.14) !important;
  color: #9c7341 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
}

.room-type-content h3 {
  margin: 0 0 14px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 31px !important;
  line-height: 1.2 !important;
  color: #162429 !important;
}

.room-type-content p {
  margin: 0 0 22px !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: #40545b !important;
}

.room-type-content ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: grid !important;
  gap: 9px !important;
}

.room-type-content li {
  position: relative !important;
  padding-left: 22px !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  color: #40545b !important;
}

.room-type-content li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.72em !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #c99b5b !important;
}

.rooms-note {
  padding: 64px 24px 90px !important;
  background: rgba(244, 239, 231, 0.82) !important;
}

.rooms-note-inner {
  max-width: 900px !important;
  text-align: center !important;
  background: rgba(244, 239, 231, 0.50) !important;
  padding: 40px 48px !important;
  border-radius: 28px !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
  backdrop-filter: blur(4px) !important;
}

.rooms-note h2 {
  margin: 0 0 14px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 38px !important;
  color: #162429 !important;
}

.rooms-note p {
  margin: 0 auto 28px !important;
  max-width: 760px !important;
  font-size: 19px !important;
  font-weight: 300 !important;
  line-height: 1.75 !important;
  color: #3f4f55 !important;
}

@media (max-width: 1100px) {
  .room-list-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .rooms-detail-hero {
    min-height: auto !important;
    padding: 145px 18px 64px !important;
  }

  .rooms-detail-hero-inner {
    padding: 34px 24px !important;
    border-radius: 26px !important;
  }

  .rooms-detail-hero h1 {
    font-size: 46px !important;
  }

  .rooms-detail-hero p {
    font-size: 18px !important;
    line-height: 1.7 !important;
  }

  .room-list-grid {
    grid-template-columns: 1fr !important;
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .room-photo-wrap {
    height: 220px !important;
  }

  .room-type-content {
    padding: 26px 24px 30px !important;
  }

  .room-type-content h3 {
    font-size: 28px !important;
  }

  .rooms-note {
    padding: 52px 18px 72px !important;
  }

  .rooms-note-inner {
    padding: 34px 24px !important;
    border-radius: 24px !important;
  }

  .rooms-note h2 {
    font-size: 32px !important;
  }

  .rooms-note p {
    font-size: 17px !important;
  }
}


/* GALERIA - VILLA DANUSIA */

.gallery-page {
  background: transparent !important;
}

.gallery-hero {
  min-height: 72vh !important;
  padding: 150px 24px 80px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  background: rgba(244, 239, 231, 0.22) !important;
}

.gallery-hero-inner {
  max-width: 820px !important;
  margin: 0 auto !important;
  background: rgba(244, 239, 231, 0.48) !important;
  padding: 44px 54px !important;
  border-radius: 30px !important;
  backdrop-filter: blur(4px) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
}

.gallery-hero h1 {
  margin: 0 0 18px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 58px !important;
  color: #162429 !important;
}

.gallery-hero p {
  margin: 0 auto !important;
  max-width: 720px !important;
  font-size: 21px !important;
  line-height: 1.75 !important;
  font-weight: 300 !important;
  color: #3f4f55 !important;
}

.gallery-hero-actions,
.gallery-cta-actions {
  display: flex !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin-top: 30px !important;
}

.gallery-section {
  padding: 90px 24px !important;
  background: rgba(244, 239, 231, 0.78) !important;
}

.gallery-intro {
  text-align: center !important;
}

.gallery-intro .section-lead {
  margin-left: auto !important;
  margin-right: auto !important;
}

.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 26px !important;
  margin-top: 52px !important;
}

.gallery-card {
  position: relative !important;
  margin: 0 !important;
  min-height: 310px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 18px 52px rgba(22, 36, 41, 0.08) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
}

.gallery-card img {
  width: 100% !important;
  height: 100% !important;
  min-height: 310px !important;
  display: block !important;
  object-fit: cover !important;
  transform: scale(1.01) !important;
  transition: transform 0.45s ease, filter 0.45s ease !important;
  filter: saturate(0.9) contrast(0.98) brightness(1.02) !important;
}

.gallery-card:hover img {
  transform: scale(1.06) !important;
  filter: saturate(1) contrast(1) brightness(1.02) !important;
}

.gallery-card figcaption {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  padding: 54px 24px 22px !important;
  background: linear-gradient(to top, rgba(22, 36, 41, 0.78), rgba(22, 36, 41, 0.0)) !important;
  color: #ffffff !important;
}

.gallery-card figcaption strong {
  display: block !important;
  font-size: 21px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
}

.gallery-card figcaption span {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.84) !important;
}

.gallery-note {
  max-width: 860px !important;
  margin: 56px auto 0 !important;
  padding: 30px 36px !important;
  border-radius: 26px !important;
  background: rgba(255, 255, 255, 0.64) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
  text-align: center !important;
  backdrop-filter: blur(4px) !important;
}

.gallery-note h3 {
  margin: 0 0 10px !important;
  font-size: 24px !important;
  color: #162429 !important;
}

.gallery-note p {
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  color: #40545b !important;
}

.gallery-cta {
  padding: 80px 24px !important;
  background: rgba(244, 239, 231, 0.40) !important;
}

.gallery-cta-inner {
  max-width: 820px !important;
  margin: 0 auto !important;
  padding: 42px 48px !important;
  border-radius: 30px !important;
  text-align: center !important;
  background: rgba(244, 239, 231, 0.56) !important;
  border: 1px solid rgba(30, 47, 53, 0.08) !important;
  backdrop-filter: blur(4px) !important;
}

.gallery-cta h2 {
  margin: 0 0 14px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 38px !important;
  color: #162429 !important;
}

.gallery-cta p {
  margin: 0 auto !important;
  max-width: 620px !important;
  font-size: 19px !important;
  line-height: 1.7 !important;
  color: #40545b !important;
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    min-height: auto !important;
    padding: 145px 18px 64px !important;
  }

  .gallery-hero-inner {
    padding: 34px 24px !important;
    border-radius: 24px !important;
  }

  .gallery-hero h1 {
    font-size: 42px !important;
  }

  .gallery-hero p {
    font-size: 18px !important;
    line-height: 1.7 !important;
  }

  .gallery-section {
    padding: 64px 18px !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .gallery-card,
  .gallery-card img {
    min-height: 260px !important;
  }

  .gallery-note {
    padding: 26px 22px !important;
  }

  .gallery-note p {
    font-size: 16px !important;
  }

  .gallery-cta {
    padding: 60px 18px !important;
  }

  .gallery-cta-inner {
    padding: 34px 24px !important;
  }

  .gallery-cta h2 {
    font-size: 31px !important;
  }
}
/* MOBILE FINAL — VILLA DANUSIA */

@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden !important;
  }

  .header {
    position: fixed !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .nav {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 10px 16px 12px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .logo {
    width: 118px !important;
    height: 40px !important;
    max-height: 40px !important;
  }

  .logo img {
    height: 118px !important;
    width: auto !important;
    max-width: none !important;
    transform: translate(-59px, -34px) !important;
  }

  .menu {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 12px !important;
    flex-wrap: wrap !important;
  }

  .menu a {
    font-size: 13px !important;
    line-height: 1.2 !important;
    padding: 5px 2px !important;
    letter-spacing: 0.1px !important;
    white-space: nowrap !important;
  }

  .menu a:last-child {
    padding: 7px 13px !important;
    border-radius: 999px !important;
  }

  .hero {
    min-height: 100vh !important;
    padding: 150px 18px 64px !important;
  }

  .hero-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 28px 22px !important;
    border-radius: 24px !important;
  }

  .hero-label {
    font-size: 12px !important;
    letter-spacing: 2px !important;
    margin-bottom: 14px !important;
  }

  h1,
  .hero h1 {
    font-size: 40px !important;
    line-height: 1.08 !important;
    margin-bottom: 16px !important;
  }

  .hero-text {
    font-size: 18px !important;
    line-height: 1.55 !important;
    margin-bottom: 26px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .btn {
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
    padding: 13px 20px !important;
  }

  .section {
    padding: 62px 18px !important;
  }

  .section-title {
    font-size: 34px !important;
    line-height: 1.15 !important;
  }

  .section-lead {
    font-size: 18px !important;
    line-height: 1.7 !important;
  }

  .grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .card {
    padding: 24px !important;
    border-radius: 22px !important;
  }

  .amenities-icons {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .amenity-icon {
    width: 82px !important;
    height: 82px !important;
    margin-bottom: 18px !important;
  }

  .amenity-icon i {
    font-size: 64px !important;
  }

  .amenity-item h3 {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }

  #kontakt.contact-section {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  #kontakt .contact-info {
    min-height: auto !important;
    padding: 54px 20px !important;
  }

  #kontakt .contact-info-inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 34px 24px !important;
    border-radius: 24px !important;
  }

  #kontakt .contact-info h2 {
    font-size: 23px !important;
  }

  #kontakt .contact-address,
  #kontakt .contact-call p,
  #kontakt .contact-call a {
    font-size: 19px !important;
  }

  #kontakt .contact-map,
  #kontakt .contact-map iframe {
    min-height: 340px !important;
  }

  .footer {
    padding: 26px 18px !important;
    font-size: 13px !important;
  }

  .footer-links {
    gap: 12px !important;
  }

  .footer-links a {
    font-size: 13px !important;
  }
}