:root {
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-latin: "Jost", sans-serif;
  --font-num: "Bebas Neue", sans-serif;
  --color-text: #223334;
  --color-muted: #808788;
  --color-inverse: #ffffff;
  --surface-default: #ffffff;
  --surface-warm: #eeebe9;
  --surface-soft: #fcf6f4;
  --brand-primary: #1c2a4e;
  --brand-secondary: #7e736c;
  --shadow-floating: 8px 8px 24px rgb(0 0 0 / 10%);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-soft: cubic-bezier(0.23, 1, 0.32, 1);
  --radius: 8px;
  --radius-pill: 9999px;
  --container: 1200px;
  --gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  color: var(--color-text);
  background: var(--surface-default);
  font-family: var(--font-ja);
  font-synthesis: none;
  letter-spacing: 0;
}

body {
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

body:lang(en) {
  font-family: var(--font-latin);
}

body:lang(ko) {
  word-break: keep-all;
}

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

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

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

a:hover {
  color: var(--brand-secondary);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brand-secondary);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 22px;
}

p {
  color: var(--color-text);
}

.num {
  font-family: var(--font-num);
  font-size: 44px;
  line-height: 1;
  font-weight: 400;
}

.site-header {
  position: fixed;
  top: 24px;
  right: 24px;
  left: 24px;
  z-index: 100;
  width: auto;
  margin: 0;
  background: rgb(255 255 255 / 94%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-floating);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  width: 100%;
  min-height: 56px;
  margin: 0 auto;
  padding: 6px 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-primary);
  font-weight: 700;
}

.brand__mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--color-inverse);
  background: var(--brand-primary);
  border-radius: var(--radius);
  font-family: var(--font-latin);
  font-weight: 700;
}

.brand__text {
  max-width: 220px;
  line-height: 1.35;
  font-size: 15px;
}

.primary-nav,
.header-actions,
.footer-nav,
.footer-languages {
  display: flex;
  align-items: center;
}

.primary-nav {
  justify-content: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
}

.primary-nav a[aria-current="page"] {
  color: var(--brand-secondary);
}

.header-actions {
  gap: 14px;
}

.mobile-menu {
  position: relative;
  display: none;
}

.language-switch {
  position: fixed;
  top: 88px;
  right: 24px;
  z-index: 99;
  display: block;
  margin-top: 18px;
  padding: 4px;
  background: var(--surface-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-floating);
  font-size: 12px;
}

.language-switch__current,
.language-switch__panel a {
  display: flex;
  min-width: 70px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--color-muted);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.language-switch__current {
  color: var(--color-inverse);
  background: var(--brand-secondary);
  cursor: pointer;
  list-style: none;
}

.language-switch__current::-webkit-details-marker {
  display: none;
}

.language-switch__current::marker {
  content: "";
}

.language-switch__current::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.language-switch[open] .language-switch__current::after {
  transform: translateY(2px) rotate(225deg);
}

.language-switch__panel {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.language-switch__panel a:hover,
.language-switch__panel a:focus-visible {
  color: var(--brand-primary);
  background: var(--surface-warm);
}

.mobile-menu__summary {
  display: inline-flex;
  width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--brand-primary);
  background: var(--surface-warm);
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  list-style: none;
  transition: color 200ms ease, background-color 200ms ease;
}

.mobile-menu__summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__summary:hover {
  color: var(--color-inverse);
  background: var(--brand-secondary);
}

.mobile-menu__icon {
  display: grid;
  width: 18px;
  gap: 4px;
}

.mobile-menu__icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentcolor;
  border-radius: var(--radius-pill);
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-menu[open] .mobile-menu__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] .mobile-menu__icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] .mobile-menu__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 110;
  display: grid;
  width: min(88vw, 360px);
  gap: 20px;
  padding: 22px;
  background: var(--surface-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-floating);
}

.mobile-menu__nav {
  display: grid;
  gap: 8px;
}

.mobile-menu__nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  color: var(--brand-primary);
  background: var(--surface-soft);
  border-radius: var(--radius);
  font-weight: 700;
}

.mobile-menu__nav a[aria-current="page"] {
  color: var(--color-inverse);
  background: var(--brand-primary);
}

.mobile-menu__booking {
  width: 100%;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  line-height: 1;
  transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease, transform 400ms var(--ease-out);
}

.button--primary {
  color: var(--color-inverse);
  background: var(--brand-primary);
}

.button--primary:hover {
  color: var(--color-inverse);
  background: var(--brand-secondary);
}

.button--ghost {
  color: var(--color-inverse);
  box-shadow: inset 0 0 0 1px var(--color-inverse);
}

.button--ghost:hover {
  color: var(--brand-primary);
  background: var(--surface-default);
}

.container {
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.narrow {
  max-width: 840px;
}

.section {
  padding: 112px 0;
  background: var(--surface-default);
}

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

.section--soft {
  background: var(--surface-soft);
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--brand-secondary);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--brand-primary);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(28 42 78 / 18%) 0%, rgb(28 42 78 / 86%) 100%);
}

.hero--home::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -96px;
  left: -12%;
  z-index: 2;
  height: 168px;
  background: var(--surface-warm);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  animation: hero-drift 18s var(--ease-soft) infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  margin: 0 auto;
  padding: 120px var(--gutter) 156px;
  color: var(--color-inverse);
}

.hero__content--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 412px;
  gap: 48px;
  align-items: end;
}

.hero__copy {
  min-width: 0;
}

.hero__content h1 {
  max-width: 760px;
  color: var(--color-inverse);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.18;
}

.hero__content .section-kicker {
  max-width: none;
  margin-top: 0;
  color: var(--surface-warm);
  font-size: 13px;
}

.hero__content p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--color-inverse);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trip {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-width: 0;
  height: 120px;
  overflow: hidden;
  color: var(--color-text);
  background: var(--surface-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-floating);
  transition: filter 200ms ease, transform 400ms var(--ease-out);
}

.hero-trip__image,
.hero-trip__image img {
  width: 100%;
  height: 100%;
}

.hero-trip__image {
  grid-row: 1 / 4;
  grid-column: 1;
}

.hero-trip__image img {
  object-fit: cover;
}

.hero-trip span,
.hero-trip strong,
.hero-trip small {
  grid-column: 2;
  margin-left: 24px;
  line-height: 1.1;
}

.hero-trip span {
  align-self: end;
  color: var(--brand-secondary);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 700;
}

.hero-trip strong {
  margin-top: 8px;
  color: var(--brand-primary);
  font-family: var(--font-latin);
  font-size: 28px;
  line-height: 1;
}

.hero-trip small {
  margin-top: 12px;
  color: var(--brand-secondary);
  font-size: 13px;
  font-weight: 700;
}

.hero-trip:hover {
  color: var(--color-text);
  filter: drop-shadow(8px 8px 16px rgb(0 0 0 / 16%));
  transform: scale(1.02);
}

.booking-panel {
  position: relative;
  z-index: 4;
  margin-top: -88px;
  padding: 0 var(--gutter);
}

.booking-panel__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.4fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--surface-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-floating);
}

.booking-panel h2 {
  font-size: 24px;
}

.booking-panel__fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-warm);
}

.booking-panel__fields div {
  min-width: 0;
  padding: 14px 16px;
  background: var(--surface-soft);
}

.booking-panel__fields dt {
  color: var(--color-muted);
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.booking-panel__fields dd {
  margin: 6px 0 0;
  color: var(--brand-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
}

.fact-grid div,
.info-band div,
.room-specs div,
.rules-summary div,
.access-list div {
  padding: 20px;
  background: var(--surface-default);
  border-radius: var(--radius);
}

.fact-grid dt,
.room-specs span,
.rules-summary dt,
.access-list dt,
.info-band span {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.fact-grid dd,
.room-specs strong,
.rules-summary dd,
.access-list dd,
.info-band strong {
  display: block;
  margin: 8px 0 0;
  color: var(--brand-primary);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.split--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split > div:first-child,
.feature-row > div:first-child {
  display: grid;
  gap: 18px;
}

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

.section-heading h2 + p {
  margin-top: 14px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.section-heading--split > div {
  max-width: 760px;
}

.text-link {
  color: var(--brand-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.round-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--brand-primary);
  font-weight: 700;
}

.round-link span,
.circle-arrow {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--color-inverse);
  background: var(--brand-primary);
  border-radius: var(--radius-pill);
  font-family: var(--font-latin);
  line-height: 1;
  transition: background-color 175ms ease;
}

.round-link:hover span,
.room-card:hover .circle-arrow {
  background: var(--brand-secondary);
}

.rooms-preview-section,
.rooms-overview-section {
  background: var(--surface-default);
}

.rooms-preview-section .section-heading {
  margin-bottom: 48px;
}

.room-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.room-anchor-nav a {
  padding: 10px 14px;
  color: var(--brand-primary);
  background: var(--surface-warm);
  border-radius: var(--radius);
  font-weight: 700;
}

.room-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.room-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  background: var(--surface-default);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgb(34 51 52 / 8%);
  transition: filter 200ms ease, transform 400ms var(--ease-out);
}

.room-card:hover {
  filter: drop-shadow(8px 8px 18px rgb(0 0 0 / 12%));
  transform: scale(1.02);
}

.room-card__speech {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 40px);
  padding: 8px 14px;
  color: var(--brand-secondary);
  background: var(--surface-default);
  border: 1px solid var(--brand-secondary);
  border-radius: 0 var(--radius-pill) var(--radius-pill);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.room-card__media-link {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.room-card__image,
.room-card__image img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
}

.room-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}

.room-card:hover .room-card__image img {
  transform: scale(1.05);
}

.room-card__body {
  padding: 26px 32px 30px;
  display: grid;
  gap: 14px;
}

.room-card__topline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.room-card__topline .section-kicker {
  margin-bottom: 0;
}

.room-card__badge {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: var(--brand-primary);
  background: var(--surface-warm);
  border-radius: var(--radius);
  font-family: var(--font-num);
  font-size: 20px;
  line-height: 1;
}

.room-card__title-link {
  color: var(--color-text);
}

.room-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 6px 0 0;
}

.room-card__facts div {
  min-width: 0;
  padding: 12px;
  background: var(--surface-soft);
  border-radius: var(--radius);
}

.room-card__facts dt {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}

.room-card__facts dd {
  margin: 4px 0 0;
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.room-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}

.room-card__body a {
  color: var(--brand-primary);
  font-weight: 700;
}

.room-card__actions .button {
  color: var(--color-inverse);
}

.room-card__actions .button:hover {
  color: var(--color-inverse);
}

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

.story-section__head {
  margin-bottom: 64px;
}

.story-section__head h2 {
  max-width: 720px;
}

.story-list {
  display: grid;
  gap: 64px;
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.story-item {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  min-width: 0;
  overflow: hidden;
  background: var(--surface-default);
  border-radius: var(--radius);
}

.story-item--reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
}

.story-item--reverse .story-item__copy {
  order: 2;
}

.story-item--reverse .story-item__media {
  order: 1;
}

.story-item__copy {
  display: grid;
  gap: 22px;
  align-content: center;
  min-width: 0;
  padding: 64px 0 64px 64px;
}

.story-item--reverse .story-item__copy {
  padding: 64px 64px 64px 0;
}

.story-item__speech {
  width: fit-content;
  max-width: 100%;
  padding: 9px 14px;
  color: var(--brand-secondary);
  border: 1px solid var(--surface-warm);
  border-radius: 0 var(--radius-pill) var(--radius-pill);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.story-item__copy h3 {
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.28;
}

.story-item__copy p:not(.story-item__speech) {
  line-height: 1.9;
}

.story-item__media,
.story-item__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.story-item__media {
  min-width: 0;
  overflow: hidden;
}

.story-item__media img {
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

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

.faq-teaser-section {
  background: var(--surface-default);
}

.faq-teaser {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.faq-teaser__header {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 24px;
}

.faq-teaser__header .round-link {
  margin-top: 16px;
}

.faq-teaser__list {
  display: grid;
  border-top: 1px solid var(--surface-warm);
}

.faq-teaser__item {
  border-bottom: 1px solid var(--surface-warm);
}

.faq-teaser__item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 32px;
  gap: 18px;
  align-items: center;
  padding: 34px 0;
  cursor: pointer;
  color: var(--brand-primary);
  font-weight: 700;
  list-style: none;
  transition: color 175ms ease;
}

.faq-teaser__item summary::-webkit-details-marker {
  display: none;
}

.faq-teaser__mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--color-inverse);
  background: var(--brand-secondary);
  border-radius: var(--radius-pill);
  font-family: var(--font-latin);
  line-height: 1;
}

.faq-teaser__item i {
  position: relative;
  width: 20px;
  height: 20px;
  justify-self: end;
  color: var(--brand-primary);
}

.faq-teaser__item i::before,
.faq-teaser__item i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 2px;
  margin: auto;
  background: currentcolor;
  transition: transform 400ms var(--ease-out);
}

.faq-teaser__item i::after {
  transform: rotate(90deg);
}

.faq-teaser__item[open] i::after {
  transform: rotate(0deg);
}

.faq-teaser__item p {
  padding: 0 52px 34px 50px;
  color: var(--color-text);
  line-height: 1.9;
}

.stay-guide-section {
  background: var(--surface-soft);
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.guide-card {
  position: relative;
  min-width: 0;
}

.guide-card__link {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.guide-card__label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 6px 10px;
  color: var(--color-inverse);
  background: var(--brand-secondary);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.guide-card__image {
  overflow: hidden;
  border-radius: var(--radius);
}

.guide-card__image,
.guide-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.guide-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}

.guide-card:hover .guide-card__image img {
  transform: scale(1.05);
}

.guide-card h3 {
  font-size: 18px;
  line-height: 1.55;
}

.guide-card p {
  color: var(--brand-secondary);
  font-family: var(--font-latin);
  font-size: 13px;
  font-weight: 700;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.amenity-chips,
.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.amenity-chips li,
.amenity-list li {
  padding: 9px 14px;
  color: var(--brand-primary);
  background: var(--surface-default);
  border-radius: var(--radius-pill);
  font-weight: 500;
}

.amenity-list li {
  background: var(--surface-warm);
}

.access-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.access-list--large {
  grid-template-columns: repeat(2, 1fr);
}

.page-hero {
  padding: 156px 0 72px;
  background: var(--surface-warm);
}

.page-hero__inner {
  display: grid;
  gap: 18px;
}

.page-hero p {
  max-width: 760px;
}

.rooms-stack {
  display: grid;
  background: var(--surface-default);
}

.room-section {
  padding: 80px 0;
  background: var(--surface-default);
  scroll-margin-top: 124px;
  min-height: 100px;
}

.room-section:target {
  background: var(--surface-warm);
}

.room-section:nth-child(even) {
  background: var(--surface-soft);
}

.room-section__header,
.room-section__grid,
.room-specs {
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.room-section__header {
  display: grid;
  max-width: 920px;
  gap: 14px;
  margin-bottom: 32px;
}

.room-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.room-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 36px;
  align-items: start;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

.gallery-image,
.gallery-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--surface-warm);
}

.gallery-image {
  min-width: 0;
  overflow: hidden;
}

.gallery-image img {
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-image--large {
  grid-column: 1 / -1;
}

.gallery-image--large,
.gallery-image--large img {
  aspect-ratio: 16 / 9;
}

.room-details {
  min-width: 0;
  max-width: 100%;
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--surface-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-floating);
}

.note {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
  background: var(--surface-soft);
  border-radius: var(--radius);
}

.faq-list summary {
  cursor: pointer;
  color: var(--brand-primary);
  font-weight: 700;
}

.faq-list p {
  margin-top: 14px;
}

.rules-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 44px;
  align-items: start;
}

.rules-summary {
  position: sticky;
  top: 104px;
}

.rules-summary dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.rules-list {
  display: grid;
  gap: 22px;
}

.rules-list article {
  padding-bottom: 22px;
  box-shadow: 0 1px 0 rgb(34 51 52 / 14%);
}

.rules-list p {
  margin-top: 10px;
}

.site-footer {
  padding: 56px 0;
  color: var(--color-inverse);
  background: var(--brand-primary);
}

.site-footer__inner {
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.site-footer p,
.site-footer a {
  color: var(--color-inverse);
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
}

.footer-copy {
  margin-top: 10px;
}

.footer-small {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-nav,
.footer-languages {
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-languages {
  grid-column: 1 / -1;
  justify-content: flex-start;
  font-size: 13px;
}

.image-placeholder {
  min-height: 240px;
  display: grid;
  place-items: center;
  color: var(--color-muted);
  background: var(--surface-warm);
  border-radius: var(--radius);
}

@keyframes hero-drift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.001ms;
    animation-duration: 0.001ms;
  }
}

@media (max-width: 1180px) {
  .site-header {
    top: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .primary-nav {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .mobile-menu {
    display: block;
  }

  .language-switch {
    top: 80px;
    right: 16px;
    font-size: 11px;
  }

  .language-switch__current,
  .language-switch__panel a {
    min-width: 64px;
    min-height: 30px;
    padding: 0 8px;
  }
}

@media (max-width: 1023px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .hero__content--split,
  .booking-panel__inner,
  .story-item,
  .story-item--reverse,
  .faq-teaser {
    grid-template-columns: 1fr;
  }

  .hero-trip {
    max-width: 420px;
  }

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

  .split,
  .split--reverse,
  .feature-row,
  .section-heading--split,
  .room-section__grid,
  .rules-layout {
    grid-template-columns: 1fr;
  }

  .room-card-grid,
  .fact-grid,
  .room-specs,
  .guide-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-details,
  .rules-summary,
  .faq-teaser__header {
    position: static;
  }

  .story-item__copy,
  .story-item--reverse .story-item__copy {
    order: 2;
    padding: 40px;
  }

  .story-item__media,
  .story-item--reverse .story-item__media {
    order: 1;
  }

  .story-item__media,
  .story-item__media img {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 20px;
  }

  .site-header {
    top: 12px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
    gap: 8px;
    padding: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand__text {
    max-width: 142px;
    font-size: 13px;
  }

  .header-actions {
    display: flex;
    width: auto;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
  }

  .header-booking {
    display: none;
  }

  .language-switch {
    top: 84px;
    right: 12px;
    left: auto;
    z-index: 99;
    padding: 4px;
  }

  .language-switch__current,
  .language-switch__panel a {
    min-width: 52px;
    min-height: 34px;
    justify-content: center;
    overflow: hidden;
    padding: 0 8px;
    text-overflow: ellipsis;
  }

  .language-switch__label {
    font-size: 0;
  }

  .language-switch__label::after {
    content: attr(data-mobile-label);
    font-size: 11px;
    line-height: 1;
  }

  .mobile-menu__summary {
    width: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 13px;
  }

  .mobile-menu__panel {
    right: -8px;
    width: min(calc(100vw - 24px), 360px);
    max-height: calc(100vh - 104px);
    overflow-y: auto;
  }

  .hero {
    min-height: 760px;
  }

  .hero--home::after {
    right: -24%;
    bottom: -58px;
    left: -24%;
    height: 104px;
  }

  .hero__content {
    padding: 132px var(--gutter) 96px;
  }

  .hero__content--split {
    gap: 28px;
  }

  .hero__content h1 {
    font-size: 36px;
  }

  .hero__content p {
    font-size: 16px;
  }

  .hero-trip {
    grid-template-columns: 38% minmax(0, 1fr);
    width: 100%;
    height: 112px;
  }

  .hero-trip span,
  .hero-trip strong,
  .hero-trip small {
    margin-left: 16px;
  }

  .hero-trip strong {
    font-size: 24px;
  }

  .booking-panel {
    margin-top: 0;
    padding: 0;
  }

  .booking-panel__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px var(--gutter);
    border-radius: 0;
    box-shadow: none;
    align-items: stretch;
  }

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

  .section,
  .room-section {
    padding: 64px 0;
  }

  .page-hero {
    padding: 116px 0 52px;
  }

  .room-card-grid,
  .fact-grid,
  .room-specs,
  .access-list--large,
  .info-band,
  .guide-list {
    grid-template-columns: 1fr;
  }

  .room-card-grid {
    gap: 28px;
  }

  .room-card__body {
    padding: 24px;
  }

  .story-section__head {
    margin-bottom: 36px;
  }

  .story-list {
    gap: 28px;
  }

  .story-item__copy,
  .story-item--reverse .story-item__copy {
    padding: 32px 24px;
  }

  .story-item__media,
  .story-item__media img {
    min-height: 300px;
  }

  .faq-teaser {
    gap: 32px;
  }

  .faq-teaser__item summary {
    grid-template-columns: auto minmax(0, 1fr) 24px;
    gap: 12px;
    padding: 26px 0;
  }

  .faq-teaser__item p {
    padding: 0 0 28px 44px;
  }

  .guide-list {
    grid-template-columns: repeat(3, minmax(260px, 82vw));
    gap: 24px;
    margin-right: calc(var(--gutter) * -1);
    margin-left: calc(var(--gutter) * -1);
    padding: 0 var(--gutter) 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .guide-list::-webkit-scrollbar {
    display: none;
  }

  .guide-card {
    scroll-snap-align: start;
  }

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

  .room-card__actions .button {
    width: 100%;
  }

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

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