:root {
  --ink: #213242;
  --muted: #607386;
  --paper: #f6f8fb;
  --surface: #ffffff;
  --line: #dbe7f5;
  --ludor-red: #e6274c;
  --ludor-red-dark: #c8163d;
  --ludor-blue: #1f4f82;
  --skalice: #1c6f86;
  --skalice-dark: #0d4557;
  --warm: #f7efe2;
  --gold: #e5a726;
  --shadow: 0 14px 34px rgba(16, 44, 84, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", Arial, "Helvetica Neue", sans-serif;
  line-height: 1.58;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 10px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(219, 231, 245, 0.9);
  background: rgba(246, 248, 251, 0.94);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 188px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--ludor-blue);
  font-size: 15px;
  font-weight: 800;
}

.site-nav a,
.header-phone {
  transition: color 0.18s ease;
}

.site-nav a:hover,
.header-phone:hover {
  color: var(--ludor-red);
}

.header-phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ludor-red);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  font-weight: 800;
}

.phone-icon {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.phone-icon::before {
  content: "\260E";
  font-size: 18px;
  line-height: 1;
}

.phone-country {
  align-self: flex-start;
  margin-top: 2px;
  font-size: 0.46em;
  font-weight: 800;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(22px, 5vw, 60px);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 69, 87, 0.82), rgba(31, 79, 130, 0.36) 54%, rgba(31, 79, 130, 0.08)),
    linear-gradient(0deg, rgba(13, 69, 87, 0.58), rgba(13, 69, 87, 0.05) 45%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 7s ease;
}

.hero-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  color: #fff;
  padding-bottom: min(6vh, 56px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(50px, 8vw, 104px);
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  color: var(--ludor-red);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  text-transform: uppercase;
}

h3 {
  color: var(--ludor-blue);
  font-size: 24px;
  line-height: 1.15;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: linear-gradient(90deg, var(--ludor-red), #ef2e5f);
  box-shadow: 0 12px 24px rgba(230, 39, 76, 0.24);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.13);
}

.contact-card .button.secondary {
  color: var(--ludor-blue);
  border-color: var(--line);
  background: #fff;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 34px 0 0;
}

.quick-facts div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.quick-facts dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head p:not(.eyebrow),
.intro-copy p,
.feature-layout p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  background: var(--surface);
}

.rating-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.rating-strip div {
  padding: 24px 12px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--ludor-red);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.rating-strip strong,
.rating-strip span {
  display: block;
  text-align: center;
}

.rating-strip strong {
  color: var(--ludor-blue);
  font-size: 30px;
  line-height: 1;
}

.rating-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.room-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 44, 84, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(16, 44, 84, 0.12);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card div {
  padding: 20px;
}

.room-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 0 11px;
  color: var(--ludor-red);
  background: #fff3f5;
  font-size: 13px;
  font-weight: 800;
}

.room-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 40px;
  color: #fff;
  background: linear-gradient(135deg, var(--skalice-dark), var(--skalice));
}

.feature-layout h2 {
  color: #fff;
}

.feature-layout p {
  color: rgba(255, 255, 255, 0.78);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.amenities div {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.amenities strong,
.amenities span {
  display: block;
}

.amenities strong {
  margin-bottom: 8px;
  font-size: 19px;
}

.amenities span {
  color: rgba(255, 255, 255, 0.76);
}

.gallery-section {
  background: var(--warm);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  min-height: 210px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(28px, 5vw, 72px);
  color: #fff;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 69, 87, 0.84), rgba(31, 79, 130, 0.32)),
    linear-gradient(0deg, rgba(13, 69, 87, 0.58), rgba(13, 69, 87, 0.05));
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.room-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  scroll-margin-top: 96px;
  background: #fff;
}

.room-detail.alt {
  background: #f4f8fd;
}

.room-detail-copy {
  position: sticky;
  top: 108px;
}

.room-detail-copy p {
  color: var(--muted);
  font-size: 18px;
}

.room-detail-copy ul {
  margin: 20px 0 24px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 17px;
}

.room-gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.room-gallery a {
  min-height: 220px;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.room-gallery a.wide {
  grid-column: span 2;
  min-height: 360px;
}

.room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px clamp(18px, 5vw, 72px);
  background: rgba(11, 22, 34, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: min(100%, 1320px);
  max-height: calc(100vh - 152px);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  object-fit: contain;
  user-select: none;
}

.lightbox__button {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.lightbox__button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.04);
}

.lightbox__close {
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  font-size: 32px;
  line-height: 1;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox__prev {
  left: 22px;
}

.lightbox__next {
  right: 22px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  transform: translateY(-50%) scale(1.04);
}

.lightbox__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.reservation-section {
  background: linear-gradient(135deg, #fff, #eef7fa);
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.reservation-copy,
.reservation-widget {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  box-shadow: var(--shadow);
}

.reservation-copy strong {
  display: block;
  color: var(--ludor-blue);
  font-size: 24px;
  line-height: 1.15;
}

.reservation-copy p,
.reservation-widget p {
  color: var(--muted);
  font-size: 17px;
}

.reservation-widget form,
.reservation-widget fieldset {
  max-width: 100%;
}

.reservation-widget input,
.reservation-widget select,
.reservation-widget textarea {
  max-width: 100%;
}

.price-section {
  background: #fff;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-list div {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.price-list div:last-child {
  border-right: 0;
}

.price-list span {
  color: var(--muted);
  font-weight: 800;
}

.price-list strong {
  color: var(--ludor-blue);
  font-size: clamp(26px, 3vw, 36px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  background: #f4f8fd;
}

.contact-card,
.map-link {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-card {
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
}

.map-link {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.map-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-link span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  background: var(--ludor-blue);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(42px, 7vw, 76px) clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #172b3d;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: var(--ludor-red);
  font-size: 30px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-col p {
  max-width: 560px;
  margin: 0 0 8px;
}

.footer-address {
  color: #fff;
  font-weight: 800;
}

.footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
}

.footer-contact-line a:hover,
.footer-links a:hover {
  color: #fff;
}

.footer-col-right {
  text-align: right;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ff6d8c;
  font-weight: 800;
}

.footer-copy {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.62);
}

.reservation-widget form.kontakt,
.reservation-widget form {
  margin: 0;
}

.reservation-widget fieldset {
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

.reservation-widget legend {
  margin-bottom: 16px;
  color: var(--ludor-red);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.reservation-widget input,
.reservation-widget select,
.reservation-widget textarea {
  width: 100%;
  min-height: 48px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.reservation-widget input[type="submit"] {
  cursor: pointer;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--ludor-red), #ef2e5f);
}

.form_odeslan,
.form_neodeslan {
  margin: 0 0 18px;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 14px 32px rgba(15, 38, 68, 0.14);
}

.form_odeslan {
  border: 2px solid #149b5f;
  color: #075a36;
  background: #e9fff4;
}

.form_neodeslan {
  border: 2px solid var(--ludor-red);
  color: #8f1030;
  background: #fff0f4;
}

.calendar-field {
  position: relative;
}

.simple-calendar {
  position: absolute;
  left: 0;
  top: calc(100% - 4px);
  z-index: 10020;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  width: min(340px, 100%);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 38, 68, 0.18);
}

.simple-calendar__head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--ludor-blue);
  text-align: center;
  text-transform: capitalize;
}

.simple-calendar__nav,
.simple-calendar__day {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  background: #f5f8fb;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.simple-calendar__nav:disabled,
.simple-calendar__day:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.simple-calendar__day:hover:not(:disabled),
.simple-calendar__nav:hover:not(:disabled) {
  color: #fff;
  background: var(--ludor-blue);
}

.simple-calendar__week {
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.datepicker {
  z-index: 10000 !important;
  font-family: "Source Sans 3", Arial, "Helvetica Neue", sans-serif;
}

.datepicker-dropdown {
  z-index: 10000 !important;
}

@media (max-width: 1100px) {
  .rooms-grid,
  .price-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-list div:nth-child(2) {
    border-right: 0;
  }

  .price-list div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 160px;
  }

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ludor-blue);
  }

  .site-nav,
  .header-phone {
    display: none;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: start;
    gap: 12px;
    padding: 8px 0 6px;
  }

  .hero {
    min-height: 760px;
    padding-top: 90px;
  }

  .quick-facts,
  .intro-band,
  .feature-layout,
  .contact-section,
  .room-detail,
  .reservation-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-col-right {
    text-align: left;
  }

  .room-detail-copy {
    position: static;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 680px;
    padding: 18px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-facts,
  .rooms-grid,
  .price-list,
  .gallery-grid,
  .room-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall,
  .room-gallery a.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .room-gallery a,
  .room-gallery a.wide {
    min-height: 260px;
  }

  .gallery-item {
    min-height: 260px;
  }

  .lightbox {
    padding: 58px 12px;
  }

  .lightbox__image {
    max-height: calc(100vh - 124px);
  }

  .lightbox__prev,
  .lightbox__next {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .lightbox__prev {
    left: 10px;
  }

  .lightbox__next {
    right: 10px;
  }

  .lightbox__close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .price-list div,
  .price-list div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-list div:last-child {
    border-bottom: 0;
  }

  .room-card {
    grid-template-rows: 220px 1fr;
  }
}
