:root {
  --ink: #403d34;
  --khaki: #968970;
  --cream: #f4f0e8;
  --orange: #ef9e55;
  --serif:
    "Noto Serif TC", "Source Han Serif TC", "PingFang TC", "Microsoft JhengHei",
    serif;
  --header-h: 92px;
  --section-vh: calc(100vh - var(--header-h));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scroll-snap-type: y proximity;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  background: #f7f2e9;
  overflow-x: hidden;
}
body.menuOpen {
  overflow: hidden;
}
body.modalOpen {
  overflow-y: scroll;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
/* Header and navigation */
.siteHeader {
  position: absolute;
  z-index: 90;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 14px 3.2vw;
  color: #fff;
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition:
    0.45s background,
    0.45s box-shadow,
    0.38s opacity,
    0.38s transform;
}
.siteHeader.navHidden {
  opacity: 0;
  transform: translateY(calc(-100% - 12px));
}
.siteHeader > * {
  pointer-events: auto;
}
.brand {
  width: 65px;
  height: 68px;
  display: flex;
  align-items: center;
}
.brand img {
  max-height: 100%;
  width: auto;
  filter: brightness(0) invert(1);
}
.bookBtn {
  margin-left: auto;
  width: 174px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(246, 242, 233, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  letter-spacing: 0.22em;
  cursor: pointer;
  color: #393a34;
}
.bookCalendar {
  width: 25px;
  height: 25px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bookCalendar circle {
  fill: currentColor;
  stroke: none;
}
.mobileNavText {
  display: none;
}
.menuBtn {
  display: none;
}
.mainNav {
  position: absolute;
  right: 5.35vw;
  top: 122px;
  width: 174px;
}
.navInner {
  display: flex;
  flex-direction: column;
  gap: 29px;
  align-items: flex-start;
}
.navItem {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.34em;
  white-space: nowrap;
  cursor: pointer;
}
.navPass {
  margin-top: 12px;
  letter-spacing: 0.52em;
}
.hasSub {
  position: relative;
}
.subToggle {
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}
.subToggle i {
  display: none;
}
.subMenu {
  position: absolute;
  right: calc(100% + 24px);
  top: -7px;
  width: 156px;
  padding: 0;
  overflow: hidden;
  background: rgba(244, 243, 240, 0.88);
  color: #3f3d38;
  box-shadow: 0 8px 24px rgba(17, 16, 13, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0s linear 0.28s;
}
.subMenu::after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  width: 24px;
  height: 100%;
}
.subMenu a {
  display: flex;
  min-height: 46px;
  padding: 8px 10px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(78, 74, 65, 0.14);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    letter-spacing 0.24s ease;
}
.subMenu a:last-child {
  border-bottom: 0;
}
.subMenu a:hover,
.subMenu a:focus-visible {
  background: #95886f;
  color: #fff;
  letter-spacing: 0.34em;
  outline: 0;
}
.hasSub:hover .subMenu,
.hasSub:focus-within .subMenu {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}
.siteHeader.sticky {
  position: fixed;
  background: rgba(142, 130, 106, 0.96);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
}
.siteHeader.sticky .mainNav {
  position: static;
  width: auto;
  margin-left: auto;
  margin-right: 24px;
}
.siteHeader.sticky .navInner {
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.siteHeader.sticky .navItem {
  font-size: 15px;
}
.siteHeader.sticky .navPass {
  margin: 0;
}
.siteHeader.sticky .bookBtn {
  order: 3;
}
.siteHeader.sticky .subMenu {
  top: calc(100% + 18px);
  right: auto;
  left: 50%;
  transform: translate(-50%, 8px);
}
.siteHeader.sticky .subMenu::after {
  top: -18px;
  right: auto;
  left: 0;
  width: 100%;
  height: 18px;
}
.siteHeader.sticky .hasSub:hover .subMenu,
.siteHeader.sticky .hasSub:focus-within .subMenu {
  transform: translate(-50%, 0);
}
/* Footer */
.footer {
  position: relative;
  background: #8f8170;
  color: #f7f3ea;
  padding: 68px 6vw 72px;
}
.footerInner {
  max-width: 1720px;
  margin: auto;
  display: grid;
  grid-template-columns: 170px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 70px;
  align-items: start;
}
.footerBrand {
  grid-row: 1 / 3;
  align-self: center;
}
.footerDesktopLogo {
  width: 105px;
  filter: brightness(0) invert(1);
}
.footerMobileBrand {
  display: none;
}
.socials {
  display: flex;
  gap: 35px;
  margin: 0 0 30px;
}
.socials a {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}
.socials svg {
  width: 22px;
  height: 22px;
  color: #fff;
  fill: currentColor;
}
.socials .lineIcon {
  width: 28px;
  height: 25px;
}
.socials .lineIcon path {
  fill: #fff;
}
.socials .lineIcon text {
  fill: #8f8170;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: -0.35px;
}
.footerInfo {
  display: grid;
  grid-column: 2;
  grid-template-columns: 1.15fr 1fr;
  gap: 75px;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.18em;
}
.footerColumn {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footerLocation {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}
.footerInfo b {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.footerInfo p {
  margin: 0;
  opacity: 0.96;
}
/* CR-153：Footer 的政策連結（鈺景政策 PDF／觀光署契約 PDF，各自留空不顯示，
   見 $footerPolicy）。跟 .footerInfo 同一欄、排在它下面，字級刻意比正文小
   一階——這是輔助性的法規連結，不是館別資訊本身 */
.footerPolicyLinks {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 36px;
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.85;
}
.footerPolicyLinks a {
  text-decoration: underline;
}
.footerInfo p a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 15px;
  height: 20px;
  margin-left: 5px;
  color: transparent;
  vertical-align: -4px;
}
.footerInfo p a:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 50% 0;
  background: #fff;
  transform: rotate(-45deg);
}
.footerInfo p a:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8f8170;
}
/* 業主指示：住址文字本身也要可點擊導航，不只是旁邊那顆圖釘小圖示。
   `.footerInfo p a` 是圖釘圖示專用樣式（文字設 transparent、固定 15x20px
   當圖形畫布），地址文字這個連結要蓋掉那組樣式改回正常文字連結——用
   `.footerInfo p a.footerAddressLink`（跟原規則同樣兩個元素＋一個 class，
   再疊一個 class）拉高特異度，單純的 `.footerAddressLink` 會輸給原規則 */
.footerInfo p a.footerAddressLink {
  display: inline;
  position: static;
  overflow: visible;
  width: auto;
  height: auto;
  margin-left: 0;
  color: inherit;
  vertical-align: baseline;
}
.footerInfo p a.footerAddressLink:before,
.footerInfo p a.footerAddressLink:after {
  content: none;
}
/* 業主指示「後面還是要有一個圖釘圖示」——住址文字後面保留一顆純裝飾用
   的圖釘（不是獨立連結，跟文字同一個 <a>，避免同一個地址出現兩個各自
   獨立、做同一件事的可點擊目標）。形狀沿用上面 `.footerInfo p a:before/
   :after` 同一套「旋轉圓角方形＋圓點」畫法，尺寸縮小配合行內文字高度 */
.footerPinIcon {
  display: inline-block;
  position: relative;
  width: 11px;
  height: 14px;
  margin-left: 5px;
  vertical-align: -2px;
}
.footerPinIcon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50% 50% 50% 0;
  background: #fff;
  transform: rotate(-45deg);
}
.footerPinIcon:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #8f8170;
}
.footerInfo p a.footerAddressLink:hover {
  text-decoration: underline;
}
/* Booking modal */
.bookingModal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}
.bookingModal.open {
  opacity: 1;
  visibility: visible;
}
.modalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 9, 0.74);
}
.bookingPanel {
  position: relative;
  width: min(760px, 90vw);
  background: #f4f0e8;
  padding: 34px 38px 40px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  transform: translateY(15px);
  transition: 0.35s;
}
.bookingModal.open .bookingPanel {
  transform: none;
}
.bookingPanel h2 {
  text-align: center;
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.28em;
}
.bookingPanel > small {
  display: none;
  text-align: center;
  color: #c6c0b5;
  font-size: 18px;
  letter-spacing: 0.14em;
}
.modalClose {
  position: absolute;
  right: 25px;
  top: 21px;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
}
.modalClose i {
  position: absolute;
  left: 5px;
  top: 21px;
  width: 34px;
  border-top: 1px solid #6f6b64;
}
.modalClose i:first-child {
  transform: rotate(26deg);
}
.modalClose i:last-child {
  transform: rotate(-26deg);
}
.bookingPanel form {
  border-top: 1px solid #d5cec2;
  margin-top: 28px;
  padding-top: 25px;
}
.hotelOptions {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 28px;
}
.hotelOptions label {
  font-size: 16px;
  cursor: pointer;
}
.hotelOptions input {
  position: absolute;
  opacity: 0;
}
.hotelOptions i {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1.5px solid;
  border-radius: 50%;
  vertical-align: -4px;
  margin-right: 7px;
}
.hotelOptions input:checked + i {
  box-shadow: inset 0 0 0 4px #f4f0e8;
  background: #403b2c;
}
.field {
  display: block;
}
.field > span,
.people > span {
  display: block;
  color: #aa9d89;
  font-weight: 600;
  margin-bottom: 8px;
}
.field div {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #97938b;
}
.field input,
.field select {
  width: 100%;
  height: 42px;
  border: 0;
  background: transparent;
  outline: 0;
  color: #747474;
}
.field select {
  border-bottom: 1px solid #97938b;
  padding-right: 34px;
  padding-left: 0;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #777 50%) calc(100% - 14px) 18px/6px
      6px no-repeat,
    linear-gradient(135deg, #777 50%, transparent 50%) calc(100% - 8px) 18px/6px
      6px no-repeat;
}
.people .field select option {
  padding-block: 7px;
}
.dateRangeControl {
  display: flex !important;
  align-items: center;
  gap: 0;
}
.dateRangeControl input {
  flex: 1;
  min-width: 0;
  padding: 0;
  color: #747474;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
}
.datePickerBtn {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: #747474;
  cursor: pointer;
}
.datePickerBtn svg {
  width: 27px;
  height: 27px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.datePickerBtn .dateCheck {
  stroke-width: 2.2;
}
.flatpickr-calendar {
  z-index: 200 !important;
  width: 328px;
  max-width: calc(100vw - 20px);
  padding: 9px 10px 14px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(39, 50, 62, 0.18);
  font-family: var(--serif);
}
.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days,
.flatpickr-weekdays,
.flatpickr-dayContainer,
.dayContainer {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.flatpickr-day {
  flex: 0 0 14.285714%;
  max-width: 14.285714%;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}
.flatpickr-months,
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year,
.flatpickr-weekdays,
.flatpickr-weekday {
  background: #fff;
  color: #667382;
}
.flatpickr-current-month {
  padding-top: 3px;
  font-size: 16px;
  font-weight: 700;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 700;
}
.flatpickr-weekday {
  font-size: 13px;
  font-weight: 600;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: #91a0af;
  color: #91a0af;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.flatpickr-disabled {
  color: #d3dbe3;
}
.flatpickr-day.today {
  border-color: #aab8c6;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  border-color: #3b8fc6;
  background: #3b8fc6;
  color: #fff;
}
.flatpickr-day.inRange {
  border-color: #e2f0f9;
  background: #e2f0f9;
  box-shadow:
    -5px 0 0 #e2f0f9,
    5px 0 0 #e2f0f9;
}
.people {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.people > span {
  grid-column: 1/-1;
  margin-bottom: -5px;
}
.bookingPeopleNote {
  margin: 14px 0 0;
  color: #948875;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.bookingPeopleNote a {
  color: #b8783f;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.searchBtn {
  width: 100%;
  height: 60px;
  border: 0;
  background: #403b2c;
  color: #fff;
  margin-top: 30px;
  font-size: 17px;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.searchBtn i {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid;
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
  vertical-align: -2px;
}
.searchBtn i:after {
  content: "";
  position: absolute;
  width: 7px;
  border-top: 1px solid;
  right: -5px;
  bottom: -3px;
  transform: rotate(45deg);
}
/* Shared reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    1s opacity,
    0.9s transform;
}
.reveal.delay {
  transition-delay: 0.16s;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
/* Tablet and mobile */
@media (max-width: 900px) {
  :root {
    --header-h: 62px;
  }
  .siteHeader {
    height: var(--header-h);
    padding: 7px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .brand {
    width: 40px;
    height: 46px;
  }
  .bookBtn {
    position: absolute;
    right: 70px;
    left: auto;
    transform: none;
    width: 128px;
    height: 32px;
    gap: 13px;
    font-size: 14px;
    letter-spacing: 0.16em;
  }
  .bookBtn .bookCalendar {
    width: 20px;
    height: 20px;
  }
  .menuBtn {
    display: block;
    position: absolute;
    top: 7px;
    right: 0;
    margin: 0;
    width: 54px;
    height: 48px;
    border: 0;
    background: none;
  }
  .menuBtn:before {
    content: "";
    position: absolute;
    top: -7px;
    bottom: -7px;
    left: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.34);
  }
  .menuBtn:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.75);
    outline-offset: 2px;
  }
  .menuBtn span {
    position: absolute;
    right: auto;
    left: 15px;
    width: 24px;
    border-top: 1px solid #fff;
    transition: 0.3s;
  }
  .menuBtn span:first-child {
    top: 20px;
    transform: none;
  }
  .menuBtn span:last-child {
    top: 25px;
    transform: none;
  }
  .menuOpen .menuBtn span:first-child {
    top: 23px;
    transform: rotate(18deg);
  }
  .menuOpen .menuBtn span:last-child {
    top: 23px;
    transform: rotate(-18deg);
  }
  .mainNav,
  .siteHeader.sticky .mainNav {
    position: absolute;
    z-index: 95;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    margin: 0;
    background: #94866d;
    color: #fff;
    overflow: auto;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      0.35s opacity,
      0.35s transform,
      visibility 0s linear 0.35s;
  }
  .siteHeader.sticky {
    overflow: visible;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .menuOpen .mainNav,
  .siteHeader.menuOpen .mainNav,
  .siteHeader.sticky.menuOpen .mainNav {
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .navInner,
  .siteHeader.sticky .navInner {
    display: block;
  }
  .desktopNavText {
    display: inline;
  }
  .mobileNavText {
    display: none;
  }
  .navItem,
  .siteHeader.sticky .navItem {
    display: block;
    width: 100%;
    min-height: 62px;
    padding: 20px 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.22em;
  }
  .navPass,
  .siteHeader.sticky .navPass {
    margin: 0;
    letter-spacing: 0.22em;
  }
  .hasSub,
  .siteHeader.sticky .hasSub {
    min-height: 0;
    padding: 0;
  }
  .subToggle {
    display: flex;
    width: 100%;
    min-height: 80px;
    padding: 20px 17px;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.22em;
  }
  .subToggle i {
    display: block;
    width: 13px;
    height: 13px;
    margin-right: 7px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(135deg);
    transition: 0.3s;
  }
  .hasSub.open .subToggle i {
    transform: rotate(-45deg);
  }
  .subMenu,
  .siteHeader.sticky .subMenu {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 0 24px;
    background: #f0eeeb;
    color: #464646;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
  }
  .hasSub:hover .subMenu,
  .siteHeader.sticky .hasSub:hover .subMenu,
  .siteHeader.sticky .hasSub.open:hover .subMenu {
    top: auto;
    right: auto;
    left: auto;
    transform: none;
  }
  .hasSub.open .subMenu {
    max-height: 360px;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .subMenu a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.28em;
    padding: 17px 0;
  }
  .footer {
    padding: 48px 24px 62px;
  }
  .footerInner {
    display: block;
    text-align: center;
  }
  .footerDesktopLogo {
    display: none;
  }
  .footerMobileBrand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto;
    color: #fff;
    text-align: left;
  }
  .footerMobileBrand > img {
    width: 92px;
    height: 102px;
    object-fit: contain;
    filter: none;
  }
  .footerMobileBrand > div {
    display: flex;
    flex-direction: column;
  }
  .footerMobileBrand strong {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.1;
  }
  .footerMobileBrand small {
    margin: 5px 0 1px;
    font-size: 7px;
    letter-spacing: 0.18em;
    white-space: nowrap;
  }
  .footerMobileBrand span {
    font-size: 23px;
    letter-spacing: 0.16em;
    line-height: 1.15;
  }
  .socials {
    justify-content: space-between;
    gap: 0;
    margin: 42px auto 40px;
    max-width: 355px;
  }
  .socials a {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .footerInfo {
    display: block;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.16em;
  }
  .footerColumn {
    display: block;
  }
  .footerColumn + .footerColumn {
    margin-top: 30px;
  }
  .footerLocation {
    display: block;
    margin-bottom: 20px;
    white-space: normal;
  }
  .footerInfo b {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.22em;
  }
  .footerInfo p {
    font-size: 15px;
    white-space: nowrap;
  }
  .footerPolicyLinks {
    justify-content: center;
    margin-top: 30px;
    font-size: 13px;
  }
  .bookingPanel {
    width: 84vw;
    padding: 58px 32px 54px;
  }
  .bookingPanel h2 {
    font-size: 30px;
  }
  .bookingPanel > small {
    display: block;
  }
  .hotelOptions {
    grid-template-columns: 1fr 1fr;
    gap: 18px 14px;
  }
  .hotelOptions label {
    font-size: 17px;
  }
  .bookingPeopleNote {
    margin: 14px 0 0;
    color: #948875;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }
  .bookingPeopleNote a {
    color: #b8783f;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .searchBtn {
    height: 68px;
    font-size: 19px;
  }
}
/* Small mobile */
@media (max-width: 480px) {
  .bookingPanel {
    max-height: 82vh;
    overflow: auto;
    padding: 52px 27px 44px;
  }
  .bookingPanel h2 {
    font-size: 25px;
  }
  .hotelOptions label {
    font-size: 15px;
  }
  .field input,
  .field select {
    font-size: 14px;
  }
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* Desktop homepage header alignment */
@media (min-width: 901px) {
  .siteHeader {
    height: 112px;
    padding: 24px 3.25vw;
    align-items: flex-start;
  }
  .brand {
    width: 58px;
    height: 64px;
  }
  .bookBtn {
    position: absolute;
    right: 5.45vw;
    top: 32px;
    width: 174px;
    height: 52px;
    color: #393a34;
  }
  .mainNav {
    right: 5.45vw;
    top: 164px;
    width: 174px;
  }
  .navInner {
    align-items: center;
    gap: 38px;
  }
  .navItem {
    font-size: 16px;
    letter-spacing: 0.31em;
    text-align: center;
  }
  .navPass {
    margin-top: 2px;
    letter-spacing: 0.48em;
  }
  .siteHeader.sticky {
    height: 88px;
    padding: 12px 3.25vw;
    align-items: center;
  }
  .siteHeader.sticky .brand {
    height: 58px;
  }
  .siteHeader.sticky .bookBtn {
    position: static;
  }
}
/* Shared inner-page header variant */
@media (min-width: 901px) {
  .innerPage .siteHeader,
  .innerPage .siteHeader.sticky {
    position: fixed;
    height: 88px;
    padding: 12px 3.25vw;
    align-items: center;
    background: rgba(142, 130, 106, 0.96);
    color: #fff;
    box-shadow: 0 4px 18px rgba(61, 54, 45, 0.08);
    backdrop-filter: none;
  }
  .innerPage .siteHeader .brand,
  .innerPage .siteHeader.sticky .brand {
    width: 58px;
    height: 58px;
  }
  .innerPage .siteHeader .mainNav,
  .innerPage .siteHeader.sticky .mainNav {
    position: static;
    width: auto;
    margin-left: auto;
    margin-right: 0;
  }
  .innerPage .siteHeader .navInner,
  .innerPage .siteHeader.sticky .navInner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .innerPage .siteHeader .navItem,
  .innerPage .siteHeader.sticky .navItem {
    font-size: 15px;
  }
  .innerPage .siteHeader .navPass,
  .innerPage .siteHeader.sticky .navPass {
    margin: 0;
  }
  .innerPage .siteHeader .bookBtn {
    display: none;
  }
  .innerPage .siteHeader .subMenu,
  .innerPage .siteHeader.sticky .subMenu {
    top: calc(100% + 18px);
    right: auto;
    left: 50%;
    transform: translate(-50%, 8px);
  }
  .innerPage .siteHeader .hasSub:hover .subMenu,
  .innerPage .siteHeader .hasSub:focus-within .subMenu {
    transform: translate(-50%, 0);
  }
}
@media (max-width: 900px) {
  .siteHeader,
  .siteHeader.sticky {
    position: fixed;
  }
  .siteHeader.navHidden {
    opacity: 0;
    transform: translateY(calc(-100% - 8px));
    pointer-events: none;
  }
  .innerPage .siteHeader,
  .innerPage .siteHeader.sticky {
    position: fixed;
    height: var(--header-h);
    padding: 7px 14px;
    background: rgba(142, 130, 106, 0.96);
    color: #fff;
    box-shadow: 0 4px 18px rgba(61, 54, 45, 0.08);
  }
  .innerPage .siteHeader .brand,
  .innerPage .siteHeader.sticky .brand {
    width: 40px;
    height: 46px;
  }
  .innerPage .siteHeader .bookBtn,
  .innerPage .siteHeader.sticky .bookBtn {
    display: flex;
    position: absolute;
    top: auto;
    right: 70px;
    left: auto;
    width: 128px;
    height: 32px;
    margin: 0;
    gap: 13px;
    border-radius: 999px;
    background: #f1eee8;
    color: #746d64;
    font-size: 14px;
    letter-spacing: 0.16em;
  }
  .innerPage .siteHeader .bookCalendar {
    width: 20px;
    height: 20px;
  }
}
/* Shared primary navigation hover */
.siteHeader .navInner > a.navItem,
.siteHeader .navInner > .hasSub > .subToggle {
  transition: color 0.22s ease;
}

.siteHeader .navInner > a.navItem:hover,
.siteHeader .navInner > a.navItem:focus-visible,
.siteHeader .navInner > .hasSub > .subToggle:hover,
.siteHeader .navInner > .hasSub > .subToggle:focus-visible {
  color: #f4dbbf;
}
