:root {
  --navy: #002763;
  --navy-dark: #011b36;
  --text: #002763;
  --line: #dfe6ee;
  --paper: #fffdf8;
  --accent: #f05a4f;
  --booking: #f05a4f;
  --booking-hover: #d94b42;
  --gold: #dba63b;
  --shadow: 0 16px 36px rgba(11, 38, 68, .12);
  --font-serif: "Shippori Mincho";
  --font-sans: "Zen Kaku Gothic New";
  --header-anchor-offset: 40px;
  --heading-section-size: clamp(30px, 3.4vw, 42px);
  --heading-section-line: 1.32;
  --heading-section-letter: .05em;
  --heading-subsection-size: clamp(20px, 2.2vw, 26px);
  --kicker-letter: .18em;
  --section-title-gap: 10px;
  --section-padding-y: 66px;

  --img-hero: none;
  --img-house: url("../img/section/house-exterior.jpeg");
  --img-night: url("../img/section/starry_sky_1.webp");
  --img-reviews-bg: url("../img/section/reviews-bg.avif");
  --img-room: url("../img/room.avif");
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-anchor-offset);
  scroll-behavior: smooth;
  background: var(--navy);
}

[id] {
  scroll-margin-top: var(--header-anchor-offset);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--navy);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.75;
}

body::before {
  position: fixed;
  z-index: 280;
  top: 0;
  right: 0;
  left: 0;
  display: none;
  height: env(safe-area-inset-top, 0px);
  background: var(--navy);
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  z-index: 19;
  inset: 80px 0 0;
  background: rgba(255, 255, 255, .94);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .56s ease;
}

body.is-language-fading::after {
  opacity: 1;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

main {
  background: var(--paper);
}

.loading-screen {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--paper);
  opacity: 1;
  visibility: visible;
  transition: opacity .72s ease, visibility .72s ease;
}

.loading-screen::before {
  position: absolute;
  inset: 0;
  background: var(--navy);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  animation: loading-panel-rise .92s cubic-bezier(.72, 0, .24, 1) .92s forwards;
}

.loading-screen__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.loading-screen__logo {
  display: block;
  width: clamp(184px, 38vw, 304px);
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  animation: loading-logo-in .72s ease .16s forwards;
}

.loading-screen__line {
  display: block;
  width: min(160px, 42vw);
  height: 1px;
  background: var(--accent);
  opacity: .9;
  transform: scaleX(0);
  transform-origin: center;
  animation: loading-line .88s cubic-bezier(.2, .8, .2, 1) .44s forwards;
}

body.is-loaded .loading-screen {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-loaded .loading-screen__inner {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .38s ease, transform .38s ease;
}

@keyframes loading-logo-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-line {
  to {
    transform: scaleX(1);
  }
}

@keyframes loading-panel-rise {
  to {
    transform: scaleY(1);
  }
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 1.3vw, 18px);
  min-height: 80px;
  padding: 12px 28px;
  color: #fff;
  background: var(--navy);
  box-shadow: none;
  transition: transform .42s cubic-bezier(.22, .61, .36, 1), opacity .34s ease, box-shadow .28s ease, background .2s ease;
}

.site-header::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--navy);
  box-shadow: 0 2px 18px rgba(0, 0, 0, .18);
  content: "";
  pointer-events: none;
  transition: opacity .34s ease, transform .42s cubic-bezier(.22, .61, .36, 1), background .2s ease, box-shadow .28s ease;
}

.site-header > * {
  position: relative;
  z-index: 2;
}

.site-header.is-open::before {
  background: var(--navy);
}

body.is-header-hidden-near-footer .site-header {
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

body.is-header-hidden-near-footer .site-header::before,
body.is-header-hidden-near-footer .site-header::after {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

body.is-header-hidden-near-footer .site-header .brand,
body.is-header-hidden-near-footer .site-header .global-nav,
body.is-header-hidden-near-footer .site-header .header-actions .lang,
body.is-header-hidden-near-footer .site-header .nav-toggle {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

body.is-header-hidden-near-footer .site-header .booking-button.small {
  pointer-events: auto;
}

.header-left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: clamp(24px, calc(8vw - 82px), 60px);
}

.brand {
  display: block;
  width: max-content;
  justify-self: start;
  transition: opacity .34s ease, transform .42s cubic-bezier(.22, .61, .36, 1);
}

.brand__logo {
  display: block;
  width: clamp(172px, 14vw, 214px);
  height: auto;
}

.global-nav {
  display: flex;
  min-width: 0;
  justify-content: flex-end;
  gap: clamp(12px, 1.35vw, 28px);
  font-family: var(--font-serif);
  white-space: nowrap;
  transition: opacity .34s ease, transform .42s cubic-bezier(.22, .61, .36, 1);
}

.global-nav__link {
  position: relative;
  display: grid;
  gap: 1px;
  padding-bottom: 6px;
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
}

.global-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity .2s ease, transform .24s ease;
}

.global-nav__link:hover::after,
.global-nav__link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.global-nav__link span {
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 400;
}

html[lang="ja"] .global-nav__link span {
  display: none;
}

html[lang="en"] .global-nav__link {
  font-size: 16px;
}

html[lang="en"] .global-nav {
  gap: clamp(22px, 2.4vw, 40px);
}

.header-actions {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.lang {
  position: relative;
  color: inherit;
  font-family: var(--font-sans);
  transition: opacity .34s ease, transform .42s cubic-bezier(.22, .61, .36, 1);
}

.lang-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 118px;
  min-height: 40px;
  padding: 6px 8px 6px 12px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 7px;
  color: inherit;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  overflow: hidden;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.lang-trigger:hover,
.lang-trigger:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .13);
}

.lang-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 31px);
  flex: 0 0 68px;
  width: 68px;
  height: 28px;
  padding: 3px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .14);
  isolation: isolate;
}

.lang-switch::before {
  position: absolute;
  z-index: 0;
  top: 3px;
  left: 3px;
  width: 31px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 5px 14px rgba(1, 27, 54, .18);
  content: "";
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}

.lang[data-current-lang="en"] .lang-switch::before {
  transform: translateX(31px);
}

.lang.is-switching .lang-switch::before {
  transition-duration: .38s;
}

.lang-code {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1;
  transition: color .22s ease;
}

.lang[data-current-lang="ja"] .lang-code-ja,
.lang[data-current-lang="en"] .lang-code-en {
  color: var(--navy);
}

.lang-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

[data-i18n] {
  transition: opacity .46s ease;
}

body.is-language-fading [data-i18n] {
  opacity: 0;
}

.booking-button {
  display: inline-grid;
  grid-template-columns: 18px 1fr 18px;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  background: var(--booking);
  box-shadow: 0 8px 20px rgba(240, 90, 79, .28);
  font-family: var(--font-sans);
  font-weight: 800;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.booking-button:hover {
  background: var(--booking-hover);
  box-shadow: 0 10px 24px rgba(217, 75, 66, .3);
  transform: translateY(-1px);
}

.booking-button [data-i18n] {
  text-align: center;
  white-space: nowrap;
}

.booking-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  flex: 0 0 auto;
}

img.booking-icon {
  height: auto;
  object-fit: contain;
}

.booking-icon-jump {
  width: 18px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.booking-button.small {
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  gap: 8px;
  width: 212px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.2;
}

.booking-button.small .booking-icon,
.booking-button.small .booking-icon-jump {
  width: 20px;
}

html[lang="en"] .booking-button.small {
  font-size: 16px;
  letter-spacing: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 7px;
  background: rgba(255, 255, 255, .06);
  transition: opacity .34s ease, transform .42s cubic-bezier(.22, .61, .36, 1), background .2s ease, border-color .2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .13);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: opacity .2s ease, transform .3s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8.4vw, 96px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: var(--heading-section-size);
  line-height: var(--heading-section-line);
  letter-spacing: var(--heading-section-letter);
}

h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}

.section {
  padding: var(--section-padding-y) 0;
}

.section-kicker {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--kicker-letter);
  line-height: 1.75;
}

.section-title-group {
  display: flex;
  flex-direction: column;
  gap: var(--section-title-gap);
}

.section-title-group .section-kicker,
.section-title-group h2 {
  margin: 0;
}

.pc-line-break {
  display: none;
}

@media (min-width: 681px) {
  .pc-line-break {
    display: inline;
  }
}

.english {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
}

.english-light {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-family: var(--font-serif);
  font-weight: 700;
}

.asset {
  background-image: var(--asset-image), var(--asset-fallback);
  background-position: center;
  background-size: cover;
}

/* フォールバックは画像が読込中／未取得の間に一瞬見えるだけなので、
   画像と馴染む単色（dominant color 相当）にしてチラつきを抑える。
   background-image に渡されるため linear-gradient で単色を表現する。 */
.asset-hero {
  --asset-image: var(--img-hero);
  --asset-fallback: linear-gradient(#1a3a5c, #1a3a5c);
}

.asset-house {
  --asset-image: var(--img-house);
  --asset-fallback: linear-gradient(#4a3828, #4a3828);
  background-position: center 58%;
}

.asset-night {
  --asset-image: var(--img-night);
  --asset-fallback: linear-gradient(#0a1730, #0a1730);
}

.asset-room {
  --asset-image: var(--img-room);
  --asset-fallback: linear-gradient(#8b6a44, #8b6a44);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 80px);
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--asset-fallback);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #1a3a5c;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.6s ease, transform 6.5s ease;
}

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

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 31, 60, .08), rgba(1, 16, 33, .36)),
    radial-gradient(circle at center, rgba(255, 255, 255, .04), transparent 58%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(880px, calc(100% - 40px));
  padding-top: 18px;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .42);
}

.hero-copy__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
}

.hero-copy__lead-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-copy__eyebrow {
  margin: 0;
  font-weight: 700;
  letter-spacing: .18em;
}

.hero-copy__title {
  margin: 0;
}

.hero-copy__lead {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
}

.hero-copy__sub {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
}

.hero-button {
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  gap: 12px;
  width: min(300px, 100%);
  min-height: 60px;
  padding: 0 28px;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: .03em;
  line-height: 1.15;
}

.hero-button .booking-icon,
.hero-button .booking-icon-jump {
  width: 20px;
}

.intro {
  background: linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.intro-grid > * {
  min-width: 0;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.photo-card,
.activity-card,
.review-card,
.map-placeholder {
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: #fff;
  box-shadow: var(--shadow);
}

.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .62s ease, transform .62s cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-i18n] {
    transition: none;
  }

  .reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.photo-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 350px;
  aspect-ratio: 1.38;
}

.stay-overview {
  padding-bottom: 36px;
}

.stay-overview .photo-card {
  min-height: 392px;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(11, 38, 68, .1);
}

.intro-text p:not(.section-kicker):not(.english) {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.intro-text .section-kicker {
  text-transform: uppercase;
}

.intro-text .english {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.65;
  letter-spacing: .06em;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 28px auto 0;
  padding: 0;
  background: transparent;
  list-style: none;
}

.feature-row__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 136px;
  padding: 28px 24px 30px;
  text-align: center;
}

.feature-row__item + .feature-row__item::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.feature-row__value {
  display: block;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.05;
}

.feature-row__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 28px;
  padding: 4px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 4px 10px rgba(6, 43, 82, .14);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
}

.stay-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.stay-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(11, 38, 68, .07);
}

.stay-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.82;
  object-fit: cover;
}

.stay-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 28px 28px;
  text-align: center;
}

.stay-card__title {
  margin: 0;
  font-size: clamp(16px, 1.45vw, 18px);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  border: 1px solid #c7d4e1;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 700;
}

.stay-card__text,
.activity-card p,
.review-card__text,
.access p {
  margin: 0;
  color: #52677e;
  font-size: 14px;
}

.stay-card__text {
  text-align: left;
}

.experience {
  background: #fff;
}

.experience-block {
  display: grid;
  gap: 34px;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.section-head .section-title-group {
  align-items: center;
}

.section-head > p:not(.section-kicker):not(.english) {
  margin: 0;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  gap: 28px;
  justify-content: center;
}

.activity-card {
  justify-self: center;
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.activity-visual {
  position: relative;
  display: grid;
  height: 208px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f7f9f8;
}

.activity-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.activity-visual span[aria-hidden="true"] {
  font-size: 38px;
  line-height: 1;
}

.coming-soon {
  position: absolute;
  top: 18px;
  right: 16px;
  min-width: 108px;
  padding: 3px 14px 4px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
}

.activity-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 176px;
  padding: 24px 24px 26px;
}

.activity-season {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.activity-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: .03em;
}

.activity-card p {
  line-height: 1.85;
}

.night-section {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: #fff;
  background-color: var(--navy-dark);
}

.night-section.asset-night {
  background-image: none;
}

.night-section.asset-night::after {
  position: absolute;
  z-index: 0;
  top: -15%;
  right: 0;
  left: 0;
  height: 130%;
  content: "";
  background-image: var(--asset-image), var(--asset-fallback);
  background-position: center;
  background-size: cover;
  transform: translateY(var(--night-image-shift, 0px));
  transition: transform .08s linear;
  will-change: transform;
}

.night-section::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 19, 38, .92), rgba(2, 19, 38, .56), rgba(2, 19, 38, .22));
}

.night-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  gap: 28px 42px;
  align-items: center;
  min-height: 550px;
  padding-block: 64px;
}

.night-overlay h2,
.night-overlay .section-kicker,
.night-overlay p {
  color: #fff;
}

.night-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.night-copy h2,
.night-copy p {
  margin: 0;
}

.night-button {
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  gap: 10px;
  width: min(300px, 100%);
  min-height: 60px;
  padding: 0 14px;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: .03em;
  line-height: 1.15;
}

.night-button .booking-icon,
.night-button .booking-icon-jump {
  width: 20px;
}

.night-action {
  grid-column: 1 / -1;
  justify-self: start;
}

.night-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.night-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-inline: 8px;
  border-right: 1px solid #a8cfe0;
  text-align: center;
}

.night-stats div:last-child {
  border-right: none;
}

.night-stat-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.night-stats strong {
  display: flex;
  align-items: center;
  min-height: calc(2em * 1.3);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  line-height: 1.3;
}

.night-stats span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  opacity: .8;
}

@media (min-width: 1321px) {
  .night-overlay {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .night-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .night-stats {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .night-action {
    grid-column: 1;
    grid-row: 2;
  }
}

.spots {
  background: #fff;
}

.spots-container {
  display: grid;
  gap: 24px;
}

.spots-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 780px;
}

.spots-lead {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.9;
}

.spot-filter-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spot-category-tabs {
  position: relative;
}

.spot-category-select {
  display: none;
}

.spot-category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

@media screen and (min-width: 1280px) {
  .spot-category-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.spot-category-tab {
  display: inline-grid;
  grid-template-columns: 28px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 4px;
  min-height: 52px;
  padding: 0 8px;
  border: 1px solid rgba(6, 43, 82, .12);
  border-radius: 6px;
  color: var(--navy);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 24px rgba(6, 43, 82, .04);
  font: inherit;
  font-family: var(--font-serif);
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.spot-category-tab--no-icon {
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 4px;
  padding-inline: 6px;
}

.spot-category-tab__label {
  min-width: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spot-category-tab__icon {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
}

.spot-category-tab__icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.spot-category-tab__count {
  display: inline-grid;
  min-width: 32px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(6, 43, 82, .08);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-family: var(--font-serif);
  font-size: 13px;
}

.spot-category-tab.is-active {
  border-color: color-mix(in srgb, var(--spot-color, #002763) 34%, #fff);
  color: var(--spot-color, #002763);
  background: color-mix(in srgb, var(--spot-color, #002763) 8%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--spot-color, #002763) 10%, transparent), 0 14px 28px rgba(6, 43, 82, .06);
}

.spot-preference-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  box-sizing: border-box;
  max-height: var(--spot-preference-filter-height, 0);
  padding-top: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height .42s cubic-bezier(.22, 1, .36, 1), padding-top .42s cubic-bezier(.22, 1, .36, 1), opacity .24s ease, transform .34s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.spot-preference-filter[hidden] {
  display: none;
}

.spot-preference-filter.is-visible {
  padding-top: 12px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.spot-preference-filter.is-closing {
  pointer-events: none;
}

.spot-preference-filter__title {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}

.spot-preference-filter__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spot-preference-filter__button {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-sizing: border-box;
  min-width: max-content;
  min-height: 38px;
  padding: 0 44px 0 22px;
  border: 1px solid rgba(6, 43, 82, .16);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.spot-preference-filter__button.is-active {
  border-color: #b8c7df;
  color: #003775;
  background: #dce6f5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .44);
}

.spot-preference-filter__icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
  transform: translateY(1px);
}

.spot-preference-filter__icon--bag {
  -webkit-mask-image: url("../img/icons/icon-takeout.svg");
  mask-image: url("../img/icons/icon-takeout.svg");
}

.spot-preference-filter__icon--heart {
  -webkit-mask-image: url("../img/icons/icon-family.svg");
  mask-image: url("../img/icons/icon-family.svg");
}

.spot-preference-filter__label {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(1px);
}

.spot-preference-filter__remove {
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: inherit;
  font-size: 0;
  opacity: 0;
  transform: translateY(calc(-50% + 1px));
  transition: opacity .2s ease;
}

.spot-preference-filter__remove::before,
.spot-preference-filter__remove::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform-origin: center;
}

.spot-preference-filter__remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.spot-preference-filter__remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.spot-preference-filter__button.is-active .spot-preference-filter__remove {
  opacity: 1;
}

.spots-grid {
  display: grid;
  grid-template-columns: minmax(260px, 46%) minmax(0, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
  align-items: start;
}

.spots-map-panel {
  min-width: 0;
}

.map-placeholder {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  color: var(--navy);
  text-align: center;
  background:
    linear-gradient(120deg, rgba(221, 232, 219, .72), rgba(236, 244, 248, .86)),
    repeating-linear-gradient(35deg, transparent 0 28px, rgba(6, 43, 82, .08) 28px 30px);
}

.map-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 30px;
  margin-bottom: 6px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
}

.map-placeholder strong {
  display: block;
  font-size: 18px;
}

.map-placeholder.compact {
  min-height: 260px;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.map-embed {
  align-self: stretch;
  padding: 0;
  background: #fff;
}

.spots-map-embed {
  min-height: 590px;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(6, 43, 82, .08);
}

#map {
  width: 100%;
  height: 590px;
  min-height: 590px;
}

#map .gm-style-iw-d {
  width: 100% !important;
  max-height: none !important;
  overflow: visible !important;
}

#map .gm-style-iw.gm-style-iw-c {
  width: min(78vw, 360px) !important;
  max-width: min(78vw, 360px) !important;
  box-sizing: border-box;
  max-height: 540px !important;
  overflow: visible !important;
  padding: 10px !important;
}

@media (min-width: 681px) and (max-width: 900px) {
  #map .gm-style-iw.gm-style-iw-c {
    width: clamp(260px, 38vw, 320px) !important;
    max-width: clamp(260px, 38vw, 320px) !important;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  #map .gm-style-iw.gm-style-iw-c {
    width: clamp(320px, calc(60vw - 250px), 360px) !important;
    max-width: clamp(320px, calc(60vw - 250px), 360px) !important;
  }
}

#map .gm-style-iw.gm-style-iw-c:focus,
#map .gm-style-iw.gm-style-iw-c:focus-visible {
  outline: none !important;
}

#map .gm-style-iw-chr {
  display: none !important;
}

#map .gm-ui-hover-effect {
  display: none !important;
}

#map .gm-style-cc {
  display: none !important;
}

.map-error {
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 13px;
  text-align: center;
  background: #f9fbfd;
}

.map-marker {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.map-home-marker {
  width: 50px;
  height: 50px;
}

.map-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(78vw, 340px);
  border-radius: 8px;
  color: var(--navy);
  font-family: var(--font-serif);
  text-align: left;
}

@media (min-width: 681px) and (max-width: 900px) {
  .map-card {
    width: clamp(240px, calc(38vw - 20px), 300px);
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .map-card {
    width: clamp(300px, calc(60vw - 270px), 340px);
  }
}

.map-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  background: #dfe6ee;
}

.map-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card__close {
  position: absolute;
  z-index: 2;
  top: -10px;
  right: -10px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 36px;
  padding-top: 2px;
  padding-right: 13px;
  border: 0;
  border-radius: 0 8px 0 8px;
  color: #7c8490;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.map-card__close:hover,
.map-card__close:focus-visible {
  color: var(--accent);
  background: #fff;
}

.map-card__close--floating {
  top: -8px;
  right: -8px;
  border-radius: 999px;
}

.map-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.map-card__category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--map-card-color, #002763);
  font-size: 11px;
  font-weight: 800;
}

.map-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.map-card__en,
.map-card__sub {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.35;
}

.map-card__details {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
  padding-top: 9px;
  border-top: 1px dashed #cfd8e2;
}

.map-card__detail-item,
.map-card__detail-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  font-size: 13px;
  line-height: 22px;
  overflow-wrap: anywhere;
}

.map-card__detail-item {
  margin: 0;
  color: var(--navy);
}

.map-card__detail-item--hours {
  align-items: flex-start;
  font-size: 14px;
}

.map-card__detail-link {
  color: #006dff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-weight: 400;
  text-decoration: none;
}

.map-card__detail-link:hover,
.map-card__detail-link:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.map-card__detail-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: calc((22px - 18px) / 2);
  color: #111827;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.map-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 38px;
  margin: 14px auto 0;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.map-card__link:hover,
.map-card__link:focus-visible {
  color: #fff;
  background: var(--accent);
}

.map-card__external-icon {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.map-card__link:hover .map-card__external-icon,
.map-card__link:focus-visible .map-card__external-icon {
  filter: brightness(0) invert(1);
}

.spot-explorer {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  height: 590px;
  min-width: 0;
}

.spot-explorer__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.spot-explorer__head > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spot-explorer__eyebrow {
  margin: 0;
  color: #5f7285;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.spot-explorer h3 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.25;
}

.spot-explorer__head p:last-child {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.7;
}

.spot-card-scroll {
  position: relative;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-color: rgba(6, 43, 82, .22) transparent;
  scrollbar-width: thin;
}

.spot-card-scroll::after {
  position: sticky;
  bottom: 0;
  display: block;
  height: 34px;
  margin-top: -34px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 80%);
  content: "";
  pointer-events: none;
}

.spot-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-bottom: 52px;
}

.spot-card-more {
  display: flex;
  justify-content: center;
  padding: 18px 0 0;
}

.spot-card-more__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 304px);
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--accent);
  background: #fff;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.spot-card-more__button:hover {
  color: #fff;
  background: var(--accent);
}

.spot-card-more__icon {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.spot-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  min-width: 0;
  max-height: 152px;
  overflow: hidden;
  border: 2px solid rgba(6, 43, 82, .08);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(6, 43, 82, .06);
  transition: max-height .58s cubic-bezier(.22, 1, .36, 1), border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.spot-card.is-active {
  border-color: color-mix(in srgb, var(--spot-color, #002763) 58%, #dfe8ef);
  background: color-mix(in srgb, var(--spot-color, #002763) 5%, #fff);
  box-shadow: 0 16px 30px rgba(6, 43, 82, .1);
}

.spot-card.is-expanded {
  max-height: var(--spot-card-expanded-height, 520px);
}

.spot-card.is-measuring {
  max-height: none;
  transition: none;
}

.spot-card--no-image {
  grid-template-columns: 1fr;
}

.spot-card__image-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: calc(100% + 4px);
  margin: -2px 0 -2px -2px;
  overflow: hidden;
  background: transparent;
}

.spot-card__image {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}

.spot-card.is-expanded .spot-card__image {
  transform: none;
}

.spot-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  padding: 12px 16px;
}

.spot-card__body[data-spot-toggle] {
  cursor: pointer;
}

.spot-card__body[data-spot-toggle]:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--spot-color, #002763) 64%, #fff);
  outline-offset: -4px;
}

.spot-card.is-expanded .spot-card__body {
  overflow: visible;
  padding-bottom: 12px;
}

.spot-card__title {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.spot-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.spot-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--spot-color, #002763);
  font-size: 12px;
  font-weight: 800;
}

.spot-card__text {
  display: -webkit-box;
  overflow: hidden;
  max-height: 63px;
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.spot-card__text {
  opacity: .88;
  transform: translateY(-2px);
  transition: max-height .58s cubic-bezier(.22, 1, .36, 1), opacity .32s ease, transform .42s cubic-bezier(.22, 1, .36, 1);
}

.spot-card__text--list {
  display: -webkit-box;
  padding-left: 1.2em;
}

.spot-card__text--list li::marker {
  color: #44734d;
}

.spot-card.is-expanded .spot-card__text,
.spot-card.is-collapsing .spot-card__text {
  display: block;
  max-height: var(--spot-text-expanded-height, 420px);
  -webkit-line-clamp: unset;
}

.spot-card.is-expanded .spot-card__text,
.spot-card.is-collapsing .spot-card__text {
  opacity: 1;
  transform: translateY(0);
}

.spot-card.is-measuring .spot-card__text {
  display: block;
  max-height: none;
  transition: none;
  -webkit-line-clamp: unset;
}

.spot-card__toggle {
  display: none;
}

.spot-card__details {
  display: none;
}

.reviews {
  padding: 70px 0 74px;
  background: #f9f0e6 var(--img-reviews-bg) center top / contain repeat;
}

.reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.reviews__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.reviews__head .section-kicker {
  margin-bottom: 0;
}

.reviews__head h2 {
  margin-bottom: 0;
}

.reviews__lead {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.8;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(976px, 100%);
  margin-inline: auto;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 31px 22px 28px;
  border: 0;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 24px rgba(98, 70, 34, .09);
}

.review-card__title {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
}

.review-card__meta {
  margin: 0;
  color: #738BA5;
  font-size: 15px;
  line-height: 1.35;
}

.review-card__text {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.75;
}

.cta-band {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  margin-bottom: 0;
  color: var(--navy);
  background:
    linear-gradient(
      90deg,
      rgba(255, 253, 248, .98) 0%,
      rgba(255, 253, 248, .94) 27%,
      rgba(255, 253, 248, .62) 43%,
      rgba(255, 253, 248, .14) 59%,
      rgba(255, 253, 248, 0) 76%
    ) center right / cover no-repeat,
    url("../img/room.avif") center right / cover no-repeat,
    linear-gradient(135deg, #f5ead8, #8c5a2d) center right / cover no-repeat #f9f0e3;
}

.cta-band::before {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  grid-template-rows: minmax(0, 1fr) auto;
  padding-top: 58px;
  padding-bottom: 52px;
}

.cta-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(48%, 620px);
  padding: 0;
  align-self: center;
}

.cta-copy h2 {
  position: relative;
  margin: 0;
  padding-bottom: 14px;
}

.cta-copy h2::after {
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 20px;
  background: var(--gold);
  content: "";
}

.cta-copy p {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  letter-spacing: .08em;
  line-height: 1.85;
}

.cta-copy__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.cta-contact-text {
  margin: 0;
  color: currentColor;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .08em;
  white-space: nowrap;
}

.cta-contact-text a {
  color: currentColor;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-contact-text a:hover {
  opacity: .72;
}

.cta-button {
  grid-template-columns: 20px minmax(0, 1fr) 20px;
  gap: 10px;
  width: min(300px, 100%);
  min-height: 60px;
  padding: 0 14px;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: .03em;
  line-height: 1.15;
  box-shadow: 0 16px 32px rgba(240, 90, 79, .34);
}

.cta-button .booking-icon,
.cta-button .booking-icon-jump {
  width: 20px;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0 0 4px;
  list-style: none;
}

.cta-features__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 0;
  text-align: center;
}

.cta-features svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.cta-features h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
}

html[lang="en"] .cta-features h3 {
  white-space: normal;
}

.cta-features p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.55;
}

.access {
  padding: 86px 0 92px;
  background: #fff;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(340px, 560px) minmax(280px, 520px);
  gap: 58px;
  align-items: start;
}

.access-copy {
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding-left: 48px;
}

.access-copy__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.access-copy__details {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.access .section-kicker {
  margin: 0;
  color: var(--navy);
}

.access h2 {
  margin: 0;
}

.access-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.access .access-label {
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: .14em;
}

.access-detail p:not(.access-label) {
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
}

.privacy-page {
  background: #fff;
}

.privacy-policy {
  padding-top: 132px;
  background: linear-gradient(180deg, #fff 0%, #f9fbfd 100%);
}

.privacy-policy__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: min(100% - 40px, 920px);
}

.privacy-policy__title {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.35;
}

.privacy-policy__body {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.privacy-policy__section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.privacy-policy__section h2 {
  color: var(--navy);
  font-size: var(--heading-subsection-size);
  line-height: 1.45;
}

.privacy-policy__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.95;
}

.privacy-policy__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding-left: 1.4em;
}

.privacy-policy__definition {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.privacy-policy__definition div {
  display: grid;
  grid-template-columns: 8em minmax(0, 1fr);
  gap: 12px;
}

.privacy-policy__definition dt {
  color: var(--navy);
  font-weight: 700;
}

.privacy-policy__definition dd {
  margin: 0;
}

.privacy-policy a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 72px 0 48px;
  color: #fff;
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 72px;
  align-items: start;
}

/* ---- Left block ---- */
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand-block .brand {
  align-self: flex-start;
}

.footer-desc {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.75;
  opacity: .78;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.65;
  font-style: normal;
  opacity: .78;
}

.footer-address-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  opacity: .9;
}

/* ---- Center nav ---- */
.footer-nav {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  font-size: 16px;
  list-style: none;
}

.footer-nav__list a {
  opacity: .78;
  transition: opacity .2s;
}

.footer-nav__list a:hover,
.footer-nav__list a:focus-visible {
  opacity: 1;
}

/* ---- Right social icons ---- */
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-inline-lang {
  display: none;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 8px;
  opacity: .78;
  transition: opacity .2s, border-color .2s;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  opacity: 1;
  border-color: rgba(255, 255, 255, .9);
}

.copyright {
  margin: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 12px;
  opacity: .85;
}

.hero-copy__title,
.hero-copy__lead,
h1,
h2,
h3,
.section-kicker,
.english,
.english-light,
.booking-button,
.feature-row__value,
.feature-row__label,
.stay-card__title,
.activity-season,
.activity-card h3,
.night-stats strong,
.spot-category-tab,
.spot-category-tab__count,
.spot-preference-filter__title,
.spot-preference-filter__button,
.map-placeholder span,
.map-placeholder strong,
.map-card__category,
.map-card__title,
.spot-explorer h3,
.spot-card__title,
.spot-card__tags span,
.reviews__head h2,
.review-card__title,
.cta-copy h2,
.cta-features h3,
.access .section-kicker,
.access h2,
.access .access-label,
.footer-nav__list,
.copyright {
  font-family: var(--font-serif);
  font-weight: 600;
}

.intro-text p:not(.section-kicker):not(.english),
.stay-card__text,
.activity-card p,
.night-copy p:not(.section-kicker),
.spots-lead,
.map-card__detail-item,
.map-card__detail-link,
.spot-explorer__eyebrow,
.spot-explorer__head p:last-child,
.spot-card__text,
.reviews__lead,
.review-card__meta,
.review-card__text,
.cta-copy p:not(.section-kicker),
.cta-features p,
.access-detail p:not(.access-label),
.footer-desc,
.footer-address {
  font-family: var(--font-sans);
  font-weight: 400;
}

@media (max-width: 1320px) {
  .cta-features__item {
    flex-direction: column;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    justify-content: space-between;
    overflow: visible;
  }

  .site-header::after {
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    right: 0;
    height: 0;
    background: var(--navy);
    box-shadow: 0 14px 24px rgba(0, 0, 0, .16);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: height .34s cubic-bezier(.2, .8, .2, 1), opacity .2s ease, transform .42s cubic-bezier(.22, .61, .36, 1), border-color .2s ease;
  }

  .site-header.is-open::after {
    border-top: 1px solid rgba(255, 255, 255, .14);
    height: clamp(86px, 11vw, 96px);
    opacity: 1;
  }

  .nav-toggle {
    display: block;
    grid-column: 4;
    grid-row: 1;
    z-index: 2;
  }

  .brand {
    z-index: 2;
  }

  .header-left {
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
  }

  .header-right {
    display: contents;
  }

  .header-actions {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    align-items: center;
    justify-self: end;
    gap: 10px;
    z-index: 2;
  }

  .header-actions .lang {
    z-index: auto;
  }

  .global-nav {
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-height: 0;
    padding: 0;
    border-top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    justify-content: stretch;
    gap: 0;
    white-space: normal;
    pointer-events: none;
    transition:
      max-height .34s cubic-bezier(.2, .8, .2, 1),
      padding .34s cubic-bezier(.2, .8, .2, 1),
      opacity .24s ease,
      transform .34s cubic-bezier(.2, .8, .2, 1);
  }

  html[lang="en"] .global-nav {
    gap: 0;
  }

  .site-header.is-open .global-nav {
    max-height: clamp(86px, 11vw, 96px);
    padding-top: clamp(10px, 1.5vw, 16px);
    padding-bottom: clamp(10px, 1.5vw, 16px);
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .global-nav__link {
    width: 100%;
    justify-self: center;
    min-height: 54px;
    place-content: center;
    padding: 10px 12px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, .14);
    font-size: clamp(12px, 1.35vw, 15px);
    line-height: 1.35;
  }

  .global-nav__link:first-child {
    border-left: 0;
  }

  .global-nav__link span {
    font-size: clamp(9px, 1vw, 10px);
  }

  .header-actions .booking-button {
    position: static;
    display: inline-grid;
    grid-template-columns: 20px minmax(0, 1fr) 20px;
    width: 212px;
    max-height: none;
    min-height: 40px;
    margin: 0;
    padding: 0 14px;
    overflow: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  .site-header.is-open .header-actions .booking-button {
    max-height: none;
    min-height: 40px;
    margin: 0;
    padding: 0 14px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .intro-grid,
  .night-overlay {
    grid-template-columns: 1fr;
  }

  .night-copy {
    max-width: min(38vw, 480px);
  }

  .access-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 58px);
  }

  .spot-category-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .night-section,
  .night-overlay {
    min-height: 500px;
  }

  .access-copy {
    padding-left: 0;
  }

  .cta-band {
    min-height: 760px;
  }

  .cta-content {
    padding-top: 38px;
    padding-bottom: 46px;
  }

  .cta-copy {
    gap: 16px;
    width: min(58%, 560px);
  }

  .cta-copy h2 {
    padding-bottom: 8px;
  }

  .cta-copy h2::after {
    margin-top: 14px;
  }

  .cta-copy p {
    font-size: 15px;
    line-height: 1.65;
  }

  .cta-button {
    margin: 0;
  }

  .cta-features__item {
    padding-inline: 0;
  }
}

@media (min-width: 681px) and (max-width: 1100px) {
  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-row__item + .feature-row__item::before {
    display: none;
  }

  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 340px));
  }

  .spot-card {
    --spot-card-image-size: clamp(84px, calc(29.23vw - 115px), 148px);
    grid-template-columns: var(--spot-card-image-size) minmax(0, 1fr);
    max-height: clamp(122px, calc(13.7vw + 28.7px), 152px);
  }

  .spot-card--no-image {
    grid-template-columns: minmax(0, 1fr);
  }

  .spot-card__image-wrap {
    align-self: center;
    height: var(--spot-card-image-size);
    aspect-ratio: 1 / 1;
  }

  .spot-card__image {
    height: 100%;
  }

  .spot-card__text {
    max-height: 42px;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --header-anchor-offset: calc(34px + env(safe-area-inset-top, 0px));
    --heading-section-size: clamp(28px, 8vw, 34px);
    --heading-section-letter: .045em;
    --section-title-gap: 9px;
    --section-padding-y: 52px;
    --sp-cta-width: min(320px, calc(100vw - 32px));
    --sp-fixed-cta-bottom: max(16px, env(safe-area-inset-bottom));
    --sp-fixed-cta-space: calc(92px + env(safe-area-inset-bottom));
  }

  body::before {
    display: block;
  }

  body::after {
    inset: calc(70px + env(safe-area-inset-top, 0px)) 0 0;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  body.is-drawer-open {
    overflow: hidden;
  }

  .site-header {
    z-index: 300;
    top: 0;
    grid-template-columns: auto 1fr auto;
    gap: 6px;
    height: calc(70px + env(safe-area-inset-top, 0px));
    min-height: calc(70px + env(safe-area-inset-top, 0px));
    padding: calc(12px + env(safe-area-inset-top, 0px)) 12px 12px;
    background: var(--navy);
    overflow: visible;
  }

  .site-header::after,
  .site-header.is-open::after {
    display: none;
  }

  .site-header::before {
    position: absolute;
    z-index: 310;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--navy);
    content: "";
    pointer-events: none;
    transition: opacity .34s ease, transform .42s cubic-bezier(.22, .61, .36, 1);
  }

  .site-header .brand {
    position: relative;
    z-index: 320;
  }

  .header-left {
    grid-column: 1;
    grid-row: 1;
    z-index: 320;
  }

  .header-right {
    display: contents;
  }

  .brand__logo {
    width: 136px;
  }

  .header-actions {
    display: contents;
  }

  .header-actions .lang {
    position: relative;
    z-index: 320;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 6px;
  }

  .lang-trigger {
    width: 90px;
    min-height: 40px;
    padding: 6px 7px;
  }

  .lang-switch {
    grid-template-columns: repeat(2, 23px);
    flex-basis: 52px;
    width: 52px;
    height: 26px;
  }

  .lang-switch::before {
    width: 23px;
    height: 20px;
  }

  .lang[data-current-lang="en"] .lang-switch::before {
    transform: translateX(23px);
  }

  .lang-code {
    font-size: 11px;
  }

  .lang-icon {
    width: 17px;
    height: 17px;
  }

  .nav-toggle {
    position: relative;
    z-index: 320;
    grid-column: 3;
    grid-row: 1;
    width: 42px;
    height: 40px;
    border-color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .06);
  }

  .global-nav {
    position: fixed;
    z-index: 220;
    top: calc(70px + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    width: auto;
    height: calc(100dvh - 70px - env(safe-area-inset-top, 0px));
    min-height: calc(100vh - 70px - env(safe-area-inset-top, 0px));
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
    max-height: none;
    padding: 22px 16px 104px;
    overflow-y: auto;
    background: var(--navy);
    opacity: 1;
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform .45s ease;
  }

  html[lang="en"] .global-nav {
    gap: 0;
  }

  .site-header.is-open .global-nav {
    max-height: none;
    padding-top: 22px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .global-nav__link {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    min-height: 92px;
    padding: 18px 0;
    border-top: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
  }

  .global-nav__link::after {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: #fff;
    content: "›";
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
  }

  .global-nav__link span {
    grid-column: 1;
    margin-top: 2px;
    font-size: 16px;
    opacity: .9;
  }

  html[lang="en"] .global-nav__link {
    font-size: 19px;
  }

  .header-actions .booking-button {
    position: fixed;
    z-index: 360;
    top: auto;
    left: 50%;
    right: auto;
    bottom: var(--sp-fixed-cta-bottom);
    display: inline-grid;
    grid-template-columns: 20px minmax(0, 1fr) 20px;
    width: var(--sp-cta-width);
    max-height: none;
    min-height: 60px;
    margin: 0;
    padding: 0 28px;
    overflow: visible;
    background: #e95a4a;
    opacity: 0;
    transform: translate(-50%, calc(100% + 18px));
    pointer-events: none;
    border-radius: 8px;
    font-size: 20px;
    transition: opacity .32s ease, transform .32s cubic-bezier(.2, .8, .2, 1), background .2s ease, box-shadow .2s ease;
  }

  .header-actions .booking-button .booking-icon,
  .header-actions .booking-button .booking-icon-jump {
    width: 20px;
  }

  body.is-bottom-cta-visible .header-actions .booking-button {
    opacity: 1;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .site-header.is-open .header-actions .booking-button {
    max-height: none;
    min-height: 60px;
    margin: 0;
    padding: 0 28px;
    opacity: 1;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .site-footer {
    position: relative;
    z-index: 0;
    padding-bottom: var(--sp-fixed-cta-space);
  }

  .footer-inline-lang .lang-trigger {
    width: 98px;
  }

  .footer-inline-lang {
    display: block;
  }

  .hero {
    min-height: calc(100svh - 70px - env(safe-area-inset-top, 0px));
  }

  .hero-copy {
    width: min(100% - 28px, 880px);
  }

  h1 {
    font-size: 52px;
  }

  .hero-copy__lead {
    font-size: 21px;
  }

  .section {
    padding: var(--section-padding-y) 0;
  }

  .reviews {
    padding: 54px 0 58px;
  }

  .reviews__inner {
    gap: 32px;
  }

  .reviews__head {
    gap: 10px;
  }

  .reviews__lead {
    font-size: 14px;
    letter-spacing: .04em;
    text-align: left;
  }

  .review-card {
    padding: 26px 22px;
  }

  .access {
    padding: 58px 0 64px;
  }

  .privacy-policy {
    padding-top: 106px;
  }

  .privacy-policy__inner {
    gap: 36px;
    width: min(100% - 28px, 920px);
  }

  .privacy-policy__body {
    gap: 28px;
  }

  .privacy-policy__definition div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .intro-grid,
  .spots-grid,
  .access-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .access-copy {
    gap: 34px;
  }

  .access-copy__details {
    gap: 22px;
  }

  .photo-card {
    min-height: 280px;
  }

  .spots-map-panel {
    position: absolute;
    width: 1px;
    height: 1px;
    min-width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .spot-card__map-slot .spots-map-panel {
    position: static;
    width: 100%;
    height: auto;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .night-overlay,
  .stay-cards,
  .activity-grid,
  .review-grid,
  .night-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .night-overlay {
    width: calc(100% - 56px);
    max-width: 420px;
    grid-template-columns: minmax(0, 1fr);
  }

  .night-copy {
    align-items: stretch;
    min-width: 0;
    max-width: 100%;
  }

  .night-copy h2,
  .night-copy p {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .cta-action {
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .cta-contact-text {
    max-width: 100%;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .night-action .night-button,
  .night-action .cta-contact-text {
    width: var(--sp-cta-width);
    max-width: 100%;
  }

  .night-action .cta-contact-text {
    text-align: left;
  }

  .spot-card-grid {
    width: min(100%, 420px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    overflow-anchor: none;
  }

  .night-stats div {
    border-right: none;
  }

  .spot-category-tabs {
    display: block;
    position: relative;
    z-index: 10;
  }

  .spot-category-tabs.is-open {
    z-index: 30;
  }

  .spot-category-select {
    position: relative;
    display: grid;
    grid-template-columns: 28px minmax(0, max-content) 32px;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-height: 52px;
    width: 100%;
    padding: 0 48px;
    border: 1px solid rgba(6, 43, 82, .28);
    border-radius: 6px;
    color: var(--navy);
    background: #fff;
    box-shadow: 0 8px 20px rgba(6, 43, 82, .08);
    font: inherit;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }

  .spot-category-select--no-icon {
    grid-template-columns: minmax(0, max-content) 32px;
  }

  .spot-category-tabs.is-open .spot-category-select {
    border-bottom-color: transparent;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 8px 20px rgba(6, 43, 82, .08);
  }

  .spot-category-select__category-icon {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
  }

  .spot-category-select__category-icon img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .spot-category-select__label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .spot-category-select__count {
    display: inline-grid;
    min-width: 32px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(6, 43, 82, .08);
    border-radius: 999px;
    color: var(--navy);
    background: #fff;
    font-size: 13px;
  }

  .spot-category-select__icon {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform .2s ease;
  }

  .spot-category-tabs.is-open .spot-category-select__icon {
    transform: translateY(-35%) rotate(225deg);
  }

  .spot-category-list {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 1;
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 0;
    border: 1px solid rgba(6, 43, 82, .28);
    border-top-color: rgba(6, 43, 82, .1);
    border-radius: 0 0 6px 6px;
    background: #fff;
    box-shadow: 0 14px 28px rgba(6, 43, 82, .08);
  }

  .spot-category-tabs.is-open .spot-category-list {
    display: flex;
  }

  .spot-category-tab {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 32px;
    align-items: center;
    min-height: 50px;
    padding: 4px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .spot-category-tab--no-icon {
    grid-template-columns: minmax(0, 1fr) 32px;
  }

  .spot-category-tab.is-active {
    display: none;
  }

  .spot-category-tab__label {
    text-align: left;
  }

  .spot-category-tab__count {
    display: inline-grid;
    justify-self: end;
  }

  .spot-preference-filter {
    align-items: flex-start;
    gap: 8px;
  }

  .spot-preference-filter.is-visible {
    max-height: none;
    overflow: visible;
  }

  .spot-preference-filter__title {
    flex: 0 0 100%;
  }

  .spot-preference-filter__buttons {
    gap: 8px;
  }

  .spot-preference-filter__button {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 34px 0 14px;
    font-size: 12px;
  }

  .spot-preference-filter__label {
    white-space: nowrap;
  }

  @media (min-width: 480px) {
    .spot-preference-filter__buttons {
      display: grid;
      width: 100%;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spot-preference-filter__button {
      width: 100%;
      padding: 0 30px 0 12px;
      gap: 6px;
    }
  }

  .spot-explorer__head {
    display: grid;
  }

  .spot-card {
    grid-template-columns: 1fr;
    max-height: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  }

  .spot-card.is-expanded {
    max-height: none;
  }

  .spot-card__image-wrap {
    grid-row: auto;
    width: 100%;
    height: auto;
    max-height: 0;
    min-height: 0;
    margin-top: -8px;
    border-radius: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: max-height .78s cubic-bezier(.22, 1, .36, 1), margin-top .78s cubic-bezier(.22, 1, .36, 1), opacity .58s ease, transform .62s cubic-bezier(.22, 1, .36, 1);
  }

  .spot-card.is-expanded .spot-card__image-wrap {
    max-height: 640px;
    margin-top: 0;
    opacity: 1;
    transform: translateY(0);
  }

  .spot-card__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }

  .spot-explorer {
    height: auto;
  }

  .spot-card-scroll {
    overflow: visible;
    padding-right: 0;
  }

  .spot-card-scroll::after {
    display: none;
  }

  .spot-card__text {
    max-height: 90px;
    font-size: 15px;
    transform: none;
    -webkit-line-clamp: 4;
  }

  .spot-card.is-collapsing .spot-card__text {
    display: -webkit-box;
    max-height: 90px;
    opacity: .88;
    transform: none;
    -webkit-line-clamp: 4;
  }

  .spot-card__body {
    gap: 8px;
    padding: 14px 16px 16px;
  }

  .spot-card__toggle {
    display: inline-flex;
    order: 3;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    justify-self: end;
    margin: 0 16px 16px;
    min-height: 26px;
    padding: 0;
    border: 0;
    color: var(--navy);
    background: transparent;
    font: inherit;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .06em;
    cursor: pointer;
    transition: color .2s ease;
  }

  .spot-card__toggle:hover,
  .spot-card__toggle:focus-visible {
    color: var(--accent);
  }

  .spot-card__toggle:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--spot-color, #002763) 58%, #fff);
    outline-offset: 4px;
  }

  .spot-card__toggle[aria-expanded="true"] .spot-card__toggle-label--open {
    display: none;
  }

  .spot-card__toggle[aria-expanded="true"] {
    justify-self: center;
    width: 44px;
    min-height: 36px;
    margin-top: -4px;
  }

  .spot-card__toggle-icon {
    position: relative;
    display: inline-grid;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: var(--navy);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
  }

  .spot-card__toggle-icon::before {
    width: 5px;
    height: 5px;
    border-right: 1.2px solid #fff;
    border-bottom: 1.2px solid #fff;
    content: "";
    transform: translateY(-1px) rotate(45deg);
  }

  .spot-card__toggle[aria-expanded="true"] .spot-card__toggle-icon {
    transform: rotate(180deg);
  }

  .spot-card__details {
    display: grid;
    grid-template-rows: 0fr;
    order: 2;
    overflow: hidden;
    opacity: 0;
    transition: grid-template-rows .64s cubic-bezier(.22, 1, .36, 1), opacity .34s ease;
  }

  .spot-card__details-inner {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
  }

  .spot-card.is-expanded .spot-card__details {
    grid-template-rows: 1fr;
    opacity: 1;
  }

  .spot-card.is-measuring .spot-card__details {
    grid-template-rows: 1fr;
    opacity: 1;
  }

  .spot-card__detail-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
  }

  .spot-card__detail-item,
  .spot-card__detail-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: var(--navy);
    font-size: 13px;
    line-height: 22px;
    overflow-wrap: anywhere;
  }

  .spot-card__detail-link {
    color: #006dff;
    text-decoration: none;
  }

  .spot-card__detail-item--hours {
    align-items: flex-start;
    font-size: 14px;
  }

  .spot-card__detail-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: calc((22px - 18px) / 2);
    color: #111827;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .spot-card__map-slot {
    display: none;
    width: calc(100% - 32px);
    height: 250px;
    margin-inline: 16px;
    border-radius: 6px;
    overflow: hidden;
  }

  .spot-card__map-slot:has(.spots-map-panel) {
    display: block;
  }

  .spot-card__map-slot .spots-map-embed {
    width: 100%;
    min-height: 250px;
    border-radius: 6px;
    box-shadow: none;
  }

  .spot-card__map-slot #map {
    height: 250px;
    min-height: 250px;
  }

  .spot-card__map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    margin: 0 16px 16px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    color: var(--accent);
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }

  .spot-card__map-link:hover,
  .spot-card__map-link:focus-visible {
    color: #fff;
    background: var(--accent);
  }

  .spot-card__external-icon {
    display: block;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .spot-card__map-link:hover .spot-card__external-icon,
  .spot-card__map-link:focus-visible .spot-card__external-icon {
    filter: brightness(0) invert(1);
  }

  .feature-row__item {
    min-height: 112px;
    padding: 20px 6px;
  }

  .feature-row__item + .feature-row__item::before {
    display: none;
  }

  .feature-row__label {
    min-width: 60px;
    min-height: 26px;
    padding: 4px 10px;
    font-size: 12px;
  }

  .feature-row__value {
    font-size: clamp(19px, 5.2vw, 26px);
  }

  .stay-cards {
    gap: 16px;
  }

  .stay-card__body {
    padding: 22px 20px 24px;
  }

  .night-overlay {
    min-height: 420px;
    padding-block: 56px;
  }

  .cta-band {
    min-height: auto;
    background:
      linear-gradient(
        90deg,
        rgba(255, 253, 248, .98) 0%,
        rgba(255, 253, 248, .9) 68%,
        rgba(255, 253, 248, .42) 100%
      ) 68% center / cover no-repeat,
      url("../img/room.avif") 68% center / cover no-repeat,
      linear-gradient(135deg, #f5ead8, #8c5a2d) 68% center / cover no-repeat #f9f0e3;
  }

  .cta-content {
    min-height: 0;
    padding-top: 38px;
    padding-bottom: 56px;
  }

  .cta-copy {
    gap: 18px;
    width: 100%;
  }

  .cta-copy p {
    font-size: 15px;
  }

  .cta-features {
    grid-template-columns: 1fr;
    gap: 20px;
    width: var(--sp-cta-width);
    max-width: 100%;
    margin-inline: auto;
    padding: 0;
  }

  .cta-features__item {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
    text-align: center;
  }

  .cta-features svg {
    width: 40px;
    height: 40px;
  }

  .cta-features h3 {
    text-align: center;
  }

  .cta-features p {
    text-align: center;
  }

  .cta-band .cta-button,
  .cta-band .cta-contact-text {
    width: var(--sp-cta-width);
    max-width: 100%;
  }

  .cta-band .cta-contact-text {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: start;
    text-align: left;
  }

  .footer-brand-block {
    align-items: flex-start;
  }

  .footer-address {
    justify-content: flex-start;
  }

  .footer-nav {
    gap: 28px;
  }

  .footer-nav__list {
    align-items: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header::before,
  .site-header::after,
  body::after,
  .loading-screen,
  .loading-screen__inner,
  .site-header .brand,
  .site-header .global-nav,
  .site-header .header-actions .lang,
  .site-header .nav-toggle,
  .hero-slide,
  .spot-card__text,
  .spot-card__toggle,
  .spot-card__toggle-icon,
  .spot-card__image-wrap,
  .spot-card__details {
    transition: none;
  }

  .loading-screen::before,
  .loading-screen__logo,
  .loading-screen__line {
    animation: none;
  }

  .loading-screen__logo {
    opacity: 1;
    transform: none;
  }

  .loading-screen__line {
    transform: scaleX(1);
  }

  .night-overlay {
    transform: none;
    transition: none;
  }
}
