.menuHead {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 251, 244, 0.95);
  border-bottom: 1px solid rgba(213, 197, 172, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(30, 30, 24, 0.1);
}

.menuHeadTop {
  background: linear-gradient(180deg, #2d3a2f 0%, #253126 100%);
  color: #f0e7d9;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menuHeadTopInner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menuHeadTopLeft,
.menuHeadTopRight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.menuHeadTopLeft {
  flex-wrap: wrap;
}

.menuHeadTop a {
  color: #f5ecde;
}

.menuHeadBookButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #dfc08e, #c49861);
  border: 1px solid #b88b56;
  color: #2f2113;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.menuHeadBookButton:hover,
.menuHeadBookButton:focus-visible {
  color: #23190f;
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.menuHeadMain {
  background: rgba(255, 251, 244, 0.95);
}

.menuHeadMainInner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
}

.menuHeadBrand {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
  min-width: 280px;
}

.menuHeadBrandLogo {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 25%, #fbefdb 0%, #e3c899 72%);
  border: 1px solid #b78d57;
  box-shadow: inset 0 0 0 2px rgba(255, 243, 220, 0.55);
}

.menuHeadBrandLogo img {
  display: block;
  width: 34px;
  height: 34px;
}

.menuHeadBrandTitle {
  display: block;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 1.65rem;
  line-height: 1;
  color: #1f271f;
  letter-spacing: 0.02em;
}

.menuHeadBrandSub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.69rem;
  color: var(--hotel-text-soft);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menuHeadToggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--hotel-border);
  border-radius: 10px;
  background: #fff;
  padding: 9px 8px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menuHeadToggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--hotel-brand-strong);
}

.menuHeadNav {
  margin-left: auto;
}

.menuHeadNav ul,
.menuHeadNav .mod-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.menuHeadNav li {
  position: relative;
}

.menuHeadNav .mod-menu__subheading,
.menuHeadNav .nav-subtitle,
.menuHeadNav .mod-menu__toggle-sub {
  display: none !important;
}

.menuHeadNav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.84rem;
  border-radius: 8px;
  color: #2f2b24;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.menuHeadNav a:hover,
.menuHeadNav .current > a,
.menuHeadNav .active > a {
  background: #efe3d1;
  color: var(--hotel-accent-deep);
}

.menuHeadNav li > ul,
.menuHeadNav li > .nav-child {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 0.15rem);
  min-width: 220px;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  border-radius: 10px;
  border: 1px solid #ddcbb3;
  background: #f9f3e9;
  box-shadow: 0 10px 18px rgba(30, 30, 24, 0.14);
  z-index: 9;
}

.menuHeadNav li:hover > ul,
.menuHeadNav li:hover > .nav-child,
.menuHeadNav li.menuOpenItem > ul,
.menuHeadNav li.menuOpenItem > .nav-child {
  display: block;
}

.menuHeadNav li > ul a,
.menuHeadNav li > .nav-child a {
  width: 100%;
  min-height: 36px;
  border-radius: 6px;
  font-size: 0.73rem;
  padding: 0.42rem 0.6rem;
}

.menuHeadNav li.menuHasChildren > a {
  position: relative;
  padding-right: 1.6rem;
}

.menuHeadNav li.menuHasChildren > a::after {
  content: "▾";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8f6a3f;
  font-size: 0.72rem;
}

.menuSubToggle {
  display: none;
}

@media (min-width: 992px) {
  .menuHead {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    border-bottom: 0;
    border-right: 1px solid rgba(213, 197, 172, 0.85);
    box-shadow: 10px 0 24px rgba(30, 30, 24, 0.12);
    overflow-y: auto;
  }

  .hotelPageWrap {
    padding-left: 320px;
  }

  .menuHeadTopInner {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.55rem;
    padding: 0.8rem 1rem;
  }

  .menuHeadTopLeft,
  .menuHeadTopRight {
    width: 100%;
    justify-content: center;
  }

  .menuHeadBookButton {
    width: 100%;
  }

  .menuHeadMainInner {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
  }

  .menuHeadBrand {
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #dbcab3;
  }

  .menuHeadNav {
    margin-left: 0;
    width: 100%;
  }

  .menuHeadNav ul,
  .menuHeadNav .mod-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.06rem;
    flex-wrap: nowrap;
  }

  .menuHeadNav li > ul,
  .menuHeadNav li > .nav-child {
    position: static;
    min-width: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 0.28rem 0.72rem;
  }

  .menuHeadNav li.menuHasChildren > a {
    padding-right: 1.7rem;
  }

  .menuHeadNav li.menuHasChildren > a::after {
    right: 0.6rem;
  }

  .menuHeadNav a {
    width: 100%;
    min-height: 40px;
    border-radius: 0;
    border-bottom: 1px solid #e2d4c2;
    padding: 0.52rem 0.36rem 0.52rem 0.4rem;
  }

  .menuHeadNav li > ul a,
  .menuHeadNav li > .nav-child a {
    min-height: 34px;
    border-bottom: 1px dashed #e2d4c2;
    font-size: 0.72rem;
    padding: 0.36rem 0.34rem 0.36rem 0.48rem;
  }

  .menuHeadNav a:hover,
  .menuHeadNav .current > a,
  .menuHeadNav .active > a {
    background: transparent;
    color: var(--hotel-accent-deep);
  }
}

.heroHead {
  position: relative;
  min-height: clamp(520px, 78vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.heroHeadBackdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.heroHeadOverlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(110deg, rgba(22, 30, 24, 0.8) 0%, rgba(22, 30, 24, 0.58) 43%, rgba(22, 30, 24, 0.34) 100%),
    radial-gradient(circle at 82% 24%, rgba(255, 235, 199, 0.36) 0%, rgba(255, 235, 199, 0) 42%);
}

.heroHeadInner {
  position: relative;
  z-index: 1;
  color: #fff7ea;
  padding: 2rem 0 5rem;
}

.heroHeadGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr);
  align-items: end;
  gap: 1.3rem;
}

.heroHeadContent {
  max-width: 760px;
}

.heroHeadKicker {
  margin: 0 0 0.8rem;
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f4ddbc;
  font-weight: 700;
}

.heroHeadTitle {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 1.06;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  color: #fff8eb;
}

.heroHeadLead {
  margin: 1rem 0 0;
  max-width: 58ch;
  color: #f6e9d3;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.7;
}

.heroHeadActions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.heroActionPrimary,
.heroActionSecondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.heroActionPrimary {
  background: linear-gradient(135deg, #e6c292, #cb9f6b);
  color: #2e2011;
  border: 1px solid #bb8e59;
  box-shadow: 0 8px 20px rgba(73, 54, 34, 0.27);
}

.heroActionPrimary:hover,
.heroActionPrimary:focus-visible {
  color: #24170b;
}

.heroActionSecondary {
  background: rgba(255, 249, 238, 0.12);
  color: #fff7ea;
  border: 1px solid rgba(255, 229, 188, 0.55);
}

.heroActionSecondary:hover,
.heroActionSecondary:focus-visible {
  color: #fff3dd;
  background: rgba(255, 249, 238, 0.18);
}

.heroHeadSlider {
  max-width: 420px;
  margin-left: auto;
  background: rgba(255, 250, 242, 0.88);
  border: 1px solid rgba(234, 218, 193, 0.9);
  border-radius: 14px;
  padding: 0.9rem;
  box-shadow: 0 14px 24px rgba(30, 26, 21, 0.18);
}

.heroHeadSlider .moduletable {
  margin: 0;
}

.heroScrollHint {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  transform: translateX(-50%);
  color: #f4debc;
  text-transform: lowercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  padding-bottom: 0.65rem;
}

.heroScrollHint::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 18px;
  background: rgba(244, 222, 188, 0.7);
  transform: translateX(-50%);
}

.bookingStrip {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.bookingStripInner {
  background: #fbf7ef;
  border: 1px solid #e4d5c1;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(35, 33, 27, 0.12);
  padding: clamp(0.85rem, 2vw, 1.2rem);
}

.bookingStripInner .moduletable {
  margin: 0;
}

.bookingStripFallback {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.bookingField {
  background: #ffffff;
  border: 1px solid #e2d3bf;
  border-radius: 10px;
  padding: 0.62rem 0.78rem;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bookingLabel {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #8f7554;
  font-weight: 700;
}

.bookingValue {
  font-size: 0.95rem;
  color: #2f2b24;
  font-weight: 600;
}

.bookingAction {
  min-height: 58px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  color: #2f2113;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #e0c08f, #c49861);
  border: 1px solid #b98a56;
}

.bookingAction:hover,
.bookingAction:focus-visible {
  color: #23170d;
}

.overviewBand {
  padding-top: 1.2rem;
}

.overviewBandInner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.overviewBandCard {
  background: #fffdf9;
  border: 1px solid #e6d8c5;
  border-radius: 10px;
  box-shadow: 0 8px 14px rgba(35, 37, 30, 0.08);
  padding: 0.95rem 1.05rem;
  margin: 0;
}

.overviewBandLabel {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--hotel-accent-deep);
  font-weight: 700;
}

.overviewBandValue {
  margin: 0.3rem 0 0;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 1.02rem;
  color: #2e2a25;
}

.storySection {
  padding: 1.45rem 0 1.2rem;
}

.storySectionInner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 1.1rem;
}

.storyMain,
.storyAside {
  background: var(--hotel-bg-card);
  border: 1px solid #e5d8c4;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(35, 37, 30, 0.06);
  padding: clamp(1.1rem, 2.2vw, 2rem);
}

.sectionHead {
  margin-bottom: 1rem;
}

.storyMainVisual {
  margin: 0 0 1.05rem;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid #d6c1a2;
  background: #f6eee2;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(31, 33, 28, 0.11);
}

.storyMainVisual img {
  display: block;
  width: 100%;
  height: clamp(220px, 26vw, 340px);
  object-fit: cover;
  border-radius: 8px;
}

.sectionHeadCentered {
  text-align: center;
}

.sectionKicker {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--hotel-accent-deep);
  font-weight: 700;
}

.sectionTitle {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: clamp(1.34rem, 2.5vw, 2rem);
  color: #2d2b27;
  letter-spacing: 0.01em;
}

.storyVisualGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.storyVisualCard {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #d6c1a2;
  /*background: #f6eee2;*/
  min-height: 120px;
  padding: calc(0.8rem + 4px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
}

.storyVisualCard::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -2;
  background-image: var(--story-bg-image, none);
  background-size: cover;
  background-position: center;
  transform: none;
  border-radius: 8px;
}

.storyVisualCard::after {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(159, 123, 79, 0.16) 0%, rgba(107, 75, 44, 0.56) 100%);
  border-radius: 8px;
}

.storyVisualKicker,
.storyVisualText {
  margin: 0;
  color: #fef7ea;
  display: inline-block;
  align-self: flex-start;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  background: rgba(12, 14, 12, 0.58);
  border: 1px solid rgba(255, 245, 227, 0.36);
  backdrop-filter: blur(2px);
}

.storyVisualKicker {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  font-weight: 700;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
}

.storyVisualText {
  margin-top: 0.26rem;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 1rem;
  line-height: 1.35;
  padding: 0.28rem 0.5rem;
  border-radius: 8px;
}

.offersGrid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.offersGrid .moduletable {
  margin: 0;
  background: #fffdf9;
  border: 1px solid #e7dbc9;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(30, 34, 27, 0.06);
  padding: 1rem;
  height: 100%;
}

.highlightsSection {
  padding: 0.2rem 0 1.5rem;
}

.highlightsGrid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlightsGrid .moduletable {
  background: var(--hotel-bg-card);
  border: 1px solid #e7dbc9;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(30, 34, 27, 0.06);
  padding: 1rem;
  height: 100%;
}

.contentArea {
  padding: 0.6rem 0 3rem;
}

.contentGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

.contentMain,
.contentRight {
  background: #fff;
  border: 1px solid #e7ddcf;
  border-radius: 10px;
  box-shadow: 0 8px 14px rgba(35, 37, 30, 0.05);
}

.contentMain {
  padding: clamp(1rem, 2vw, 1.8rem);
}

.contentRight {
  padding: 1rem;
}

.contentFooterModules {
  margin-top: 1.2rem;
}

.footerMain {
  background: linear-gradient(180deg, #ece2d4 0%, #e6dac9 100%);
  color: #4b4338;
  padding: 2.3rem 0;
  border-top: 1px solid #d8c8b2;
}

.footerTop,
.footerGrid,
.footerBottomNav {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.footerTop {
  display: block;
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(129, 104, 73, 0.22);
  text-align: center;
}

.footerAddress {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(75, 67, 56, 0.86);
}

.footerAddress p {
  margin: 0;
}

.footerAddress p + p {
  margin-top: 0.18rem;
}

.footerGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.footerBottomNav {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(129, 104, 73, 0.2);
}

.footerBottomNav .mod-menu,
.footerBottomNav ul.nav,
.footerBottomNav ul.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footerBottomNav .mod-menu li,
.footerBottomNav ul.nav li,
.footerBottomNav ul.menu li {
  margin: 0;
  padding: 0;
}

.footerBottomNav a {
  color: #6a5438;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
}

.footerBottomNav a:hover,
.footerBottomNav a:focus-visible {
  color: #3f2c1b;
  text-decoration: underline;
}

.footerMain a {
  color: #6b5033;
}

.footerCell {
  font-size: 0.95rem;
  line-height: 1.6;
}

.hotelOfflineMain {
  width: min(880px, calc(100% - 2rem));
  margin: 2rem auto;
  background: #fff;
  border: 1px solid #e7ddcf;
  border-radius: 14px;
  padding: 1.4rem;
}
