:root {
  --bg: #f5eedf;
  --bg-strong: #fbf5e8;
  --surface: rgba(247, 240, 228, 0.74);
  --surface-strong: rgba(249, 243, 232, 0.88);
  --text: #4f443b;
  --muted: #7f7265;
  --line: rgba(97, 82, 67, 0.06);
  --accent: #726155;
  --accent-deep: #4f443b;
  --shadow: 0 14px 30px rgba(79, 68, 59, 0.05);
  --blur-wordmark: rgba(111, 97, 86, 0.24);
  --max-width: 1180px;
  --sans: "Avenir Next", "Segoe UI", "Noto Sans KR", "Noto Sans TC", "PingFang TC", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", "Noto Serif TC", "Noto Serif KR", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  background:
    radial-gradient(circle at top left, rgba(203, 184, 156, 0.22), transparent 30%),
    linear-gradient(180deg, #f7f1e6 0%, var(--bg) 42%, #fbf7ef 100%);
}

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

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

.shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(245, 238, 223, 0.92);
  border-bottom: 1px solid rgba(92, 76, 60, 0.04);
}

.site-header-inner {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  min-height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.brand-lockup {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
}

.brand-kicker {
  font-size: 11px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.brand-logo {
  width: auto;
  height: 32px;
  max-width: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a.active {
  color: var(--accent-deep);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown-menu a.active {
  color: var(--accent-deep);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 136px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(249, 243, 232, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  display: none;
  gap: 4px;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  border-radius: 999px;
  padding: 9px 12px;
  text-align: center;
}

.lang-switcher {
  position: relative;
}

.lang-toggle,
.lang-option {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.86rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 240, 228, 0.76);
}

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

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 92px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(249, 243, 232, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  display: none;
}

.lang-switcher.open .lang-menu {
  display: grid;
  gap: 4px;
}

.lang-option {
  width: 100%;
  text-align: center;
  border-radius: 999px;
  padding: 9px 10px;
}

.lang-option.active {
  background: var(--accent-deep);
  color: #fffaf5;
}

main {
  padding: 28px 0 40px;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.hero-home {
  grid-template-columns: 1fr;
}

.panel,
.hero-copy,
.hero-media,
.highlight-card,
.location-card,
.room-card,
.booking-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 34px;
  padding: 52px 46px;
}

.hero-home .hero-copy {
  padding: 68px 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(249, 243, 232, 0.82);
  border: 1px solid rgba(129, 98, 74, 0.08);
  color: var(--accent-deep);
  font-family: var(--sans);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  margin-top: 20px;
  font-size: clamp(2.9rem, 5vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.hero-copy p,
.intro-copy,
.section-copy,
.card-copy,
.small-copy {
  color: var(--muted);
  line-height: 1.8;
  font-family: var(--sans);
}

.hero-copy p {
  margin-top: 18px;
  max-width: 52rem;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent-deep);
  color: #fffaf6;
}

.button.secondary {
  background: rgba(249, 243, 232, 0.82);
  border-color: rgba(92, 76, 60, 0.06);
}

.hero-media {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(79, 68, 59, 0.08), rgba(79, 68, 59, 0.18)),
    linear-gradient(135deg, #f5eedf 0%, #eee4d1 42%, #e4d6bf 100%);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.18);
}

.hero-media::before {
  width: 240px;
  height: 240px;
  right: -40px;
  top: 56px;
}

.hero-media::after {
  width: 120px;
  height: 120px;
  left: 24px;
  bottom: 26px;
}

.hero-brand-mark {
  position: absolute;
  inset: 34px 34px auto auto;
  width: min(270px, 46%);
  opacity: 0.92;
}

.hero-brand-mark img {
  width: 100%;
  height: auto;
}

.hero-wordmark {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 138px;
  display: flex;
  justify-content: center;
  opacity: 0.42;
  filter: blur(8px);
  mix-blend-mode: multiply;
}

.hero-wordmark img {
  width: min(520px, 92%);
  height: auto;
}

.hero-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(248, 242, 231, 0.82);
  border: 1px solid rgba(92, 76, 60, 0.05);
}

.hero-overlay h2 {
  font-size: 1.6rem;
}

.hero-overlay p {
  margin-top: 10px;
}

.stats-grid,
.highlights-grid,
.location-grid,
.room-grid,
.booking-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel,
.highlight-card,
.location-card,
.room-card,
.booking-card {
  border-radius: 28px;
  padding: 24px;
}

.stat-label,
.card-kicker {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-value {
  display: block;
  margin-top: 10px;
  font-size: 2.2rem;
}

.stat-body {
  margin-top: 8px;
}

.section {
  margin-top: 32px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.section-heading-stack {
  flex-direction: column;
  align-items: start;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.section-heading .section-copy {
  max-width: 34rem;
}

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

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

.location-card,
.room-card {
  overflow: hidden;
}

.room-card,
.common-space-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: start;
}

.card-media {
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #eadfd2 0%, #c6ab91 100%);
}

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

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.88rem;
  background: rgba(249, 243, 232, 0.82);
  border: 1px solid rgba(92, 76, 60, 0.05);
}

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

.room-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.booking-room-card {
  display: block;
}

.booking-room-card .room-cover {
  aspect-ratio: 1.45 / 1;
  margin-bottom: 20px;
}

.booking-page-intro {
  max-width: 900px;
}

.booking-location-section + .booking-location-section {
  margin-top: 72px;
}

.booking-location-heading .section-copy {
  max-width: 46rem;
}

.room-cover {
  aspect-ratio: 1.28 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: #ddd2c6;
}

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

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

.booking-card h3,
.location-card h3,
.room-card h3,
.highlight-card h3 {
  margin-top: 12px;
  font-size: 1.55rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.detail-grid-locations,
.detail-grid-compact,
.detail-grid-single {
  grid-template-columns: 1fr;
}

.detail-card {
  border-radius: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.detail-card h3 {
  margin-top: 12px;
  font-size: 1.3rem;
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-family: var(--sans);
  line-height: 1.8;
}

.feature-list li + li {
  margin-top: 4px;
}

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

.common-space-card {
  border-radius: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.common-space-media {
  aspect-ratio: 1.38 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #ddd2c6;
}

.common-space-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common-space-card h3 {
  margin-top: 10px;
  font-size: 1.3rem;
}

.room-body,
.common-space-body {
  min-width: 0;
}

.booking-card .button-row {
  margin-top: 20px;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.page-hero .hero-media {
  min-height: 420px;
}

.site-footer {
  padding: 12px 0 28px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .brand-logo {
    height: 27px;
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .hero,
  .page-hero,
  .stats-grid,
  .highlights-grid,
  .location-grid,
  .detail-grid,
  .room-grid,
  .room-list-grid,
  .booking-room-grid,
  .booking-grid,
  .common-space-grid {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    padding: 8px 0;
    align-items: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .header-right {
    width: 100%;
    flex-direction: column;
    align-items: start;
  }

  .brand-lockup {
    position: static;
    transform: none;
  }

  .hero-copy,
  .panel,
  .highlight-card,
  .location-card,
  .room-card,
  .booking-card {
    padding: 22px;
  }

  .room-card,
  .common-space-card {
    grid-template-columns: 1fr;
  }

  .hero-home .hero-copy {
    padding: 34px 24px;
  }

  .hero-media {
    min-height: 340px;
  }

  .hero-brand-mark {
    width: min(200px, 46%);
    inset: 22px 22px auto auto;
  }

  .hero-wordmark {
    left: 20px;
    right: 20px;
    bottom: 116px;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }
}

/* Refined hospitality layout */
:root {
  --max-width: 1240px;
  --shadow: 0 22px 55px rgba(79, 68, 59, 0.075);
}

.site-header {
  background: rgba(245, 238, 223, 0.88);
  border-bottom-color: rgba(92, 76, 60, 0.08);
}

.site-header-inner {
  min-height: 76px;
  justify-content: flex-start;
}

.brand-lockup {
  position: static;
  transform: none;
  margin-right: auto;
}

.brand-logo {
  height: 38px;
}

.header-right {
  gap: 24px;
}

.nav-links {
  gap: 28px;
  font-size: 0.9rem;
  letter-spacing: 0.035em;
}

.nav-links a,
.nav-dropdown-toggle {
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover,
.nav-dropdown-toggle:hover {
  color: var(--accent-deep);
}

.nav-book-link {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fffaf6 !important;
}

.lang-toggle {
  width: 42px;
  height: 42px;
  background: rgba(255, 250, 242, 0.64);
}

main {
  padding: 34px 0 72px;
}

.hero-home {
  display: block;
}

.hero-home .hero-copy {
  padding: 64px 20px 64px 6px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-home h1 {
  max-width: 8.6em;
  margin-top: 18px;
  font-size: clamp(3.25rem, 5.1vw, 5.8rem);
  line-height: 0.94;
}

.hero-art-content > p {
  max-width: 38rem;
  margin-top: 18px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.78;
}

.home-hero-media {
  min-height: 690px;
  isolation: isolate;
  border-radius: 38px;
  background: var(--bg-strong);
}

.home-hero-main {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: center;
}

.home-hero-media::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(247, 241, 230, 0.1) 0%, rgba(247, 241, 230, 0) 58%);
}

.home-hero-media::after {
  display: none;
}

.home-hero-inset {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  width: 36%;
  aspect-ratio: 1.05 / 1;
  overflow: hidden;
  border: 8px solid rgba(249, 243, 232, 0.94);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(42, 33, 27, 0.2);
}

.home-hero-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-media .hero-overlay {
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: 420px;
  padding: 24px 26px;
  background: rgba(248, 242, 231, 0.9);
  backdrop-filter: blur(16px);
}

.hero-art-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: clamp(32px, 5vw, 72px);
  width: min(43%, 520px);
  transform: translateY(-50%);
}

.hero-art-logo {
  width: min(360px, 94%);
  height: auto;
  margin-bottom: 34px;
}

.hero-art-content .eyebrow {
  background: rgba(251, 245, 232, 0.74);
}

.hero-art-content .button.secondary {
  background: rgba(251, 245, 232, 0.86);
}

.stats-ribbon {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
  padding: 28px 0;
  border-top: 1px solid rgba(92, 76, 60, 0.12);
  border-bottom: 1px solid rgba(92, 76, 60, 0.12);
}

.stat-item {
  min-width: 0;
  padding: 0 30px;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(92, 76, 60, 0.12);
}

.stat-item strong {
  display: inline-block;
  margin-right: 9px;
  font-size: 2.45rem;
  font-weight: 500;
  line-height: 1;
}

.stat-item > span {
  font-family: var(--sans);
  color: var(--accent-deep);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-item p {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.65;
}

.section-spacious {
  margin-top: 92px;
}

.section-heading {
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-top: 12px;
  max-width: 16em;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.section-heading .section-copy {
  max-width: 35rem;
  padding-bottom: 4px;
}

.eyebrow {
  background: rgba(249, 243, 232, 0.64);
  border-color: rgba(129, 98, 74, 0.12);
}

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

.location-card {
  padding: 0;
  border-radius: 32px;
  background: rgba(249, 243, 232, 0.76);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 65px rgba(79, 68, 59, 0.11);
}

.location-card .card-media {
  position: relative;
  aspect-ratio: 1.35 / 1;
  margin: 0;
  border-radius: 31px 31px 0 0;
}

.location-card .card-media::after,
.booking-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(48, 38, 31, 0.26));
}

.location-label {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #fffaf6;
  background: rgba(65, 52, 43, 0.62);
  backdrop-filter: blur(10px);
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card-body {
  padding: 30px;
}

.location-card h3 {
  margin-top: 9px;
  font-size: 2.15rem;
  font-weight: 500;
}

.location-card .card-copy {
  margin-top: 12px;
}

.button {
  min-height: 48px;
  padding: 0 21px;
  font-weight: 500;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary:hover {
  background: #3f362f;
  box-shadow: 0 10px 24px rgba(79, 68, 59, 0.16);
}

.button.secondary:hover {
  background: rgba(255, 250, 242, 0.96);
}

.button:focus-visible,
.nav-links a:focus-visible,
.nav-dropdown-toggle:focus-visible,
.lang-toggle:focus-visible,
.lang-option:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
}

.highlights-grid {
  gap: 20px;
}

.highlight-card {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: rgba(249, 243, 232, 0.6);
}

.highlight-card:nth-child(2) {
  transform: translateY(22px);
}

.highlight-number {
  margin-bottom: auto;
  color: rgba(79, 68, 59, 0.38);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.highlight-card h3 {
  font-weight: 500;
}

.highlight-card .card-copy {
  margin-top: 12px;
}

.booking-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.booking-card-featured {
  min-height: 430px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-card-featured h3 {
  max-width: 10em;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 500;
}

.booking-card-featured .card-copy {
  max-width: 32rem;
  margin-top: 18px;
}

.booking-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.booking-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-intro {
  max-width: 850px;
  padding: 76px 0 38px;
}

.page-intro h1 {
  margin-top: 18px;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
}

.page-intro .section-copy {
  max-width: 44rem;
  margin-top: 24px;
  font-size: 1.04rem;
}

.page-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  gap: 26px;
}

.page-hero .hero-copy {
  padding: 54px 46px;
}

.page-hero .hero-media {
  min-height: 600px;
}

.page-hero .hero-media > img {
  filter: saturate(0.86) contrast(0.96);
}

.detail-card,
.common-space-card,
.room-card {
  background: rgba(249, 243, 232, 0.68);
}

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

.common-space-card {
  grid-template-columns: 1fr;
}

.common-space-media {
  aspect-ratio: 1.45 / 1;
}

.room-card {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  padding: 16px;
  gap: 16px;
}

.room-cover {
  height: 100%;
  min-height: 390px;
  aspect-ratio: auto;
}

.room-body {
  padding: 24px 22px 22px;
}

.room-body .card-copy {
  margin-top: 12px;
}

.site-footer {
  padding: 20px 0 38px;
  border-top: 1px solid rgba(92, 76, 60, 0.1);
  text-align: center;
  letter-spacing: 0.035em;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .site-header-inner {
    min-height: auto;
    padding: 12px 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .brand-logo {
    height: 32px;
  }

  .header-right {
    width: auto;
    margin-left: auto;
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    gap: 16px;
  }

  .hero-home,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-home .hero-copy {
    padding: 48px 8px 24px;
  }

  .home-hero-media,
  .home-hero-main {
    min-height: 650px;
  }

  .hero-art-content {
    width: min(48%, 450px);
  }

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

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

  .room-card {
    grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 700px) {
  .shell,
  .site-header-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .site-header-inner {
    gap: 10px;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .nav-links {
    gap: 13px;
    font-size: 0.8rem;
  }

  .nav-book-link {
    min-height: 34px;
    padding: 0 13px;
  }

  .lang-toggle {
    width: 36px;
    height: 36px;
  }

  main {
    padding-top: 16px;
  }

  .hero-home h1 {
    font-size: clamp(2.7rem, 12vw, 4.25rem);
  }

  .home-hero-media,
  .home-hero-main {
    min-height: 700px;
  }

  .home-hero-main {
    object-position: 66% center;
  }

  .home-hero-media::before {
    background: linear-gradient(180deg, rgba(247, 241, 230, 0.02) 25%, rgba(247, 241, 230, 0.32) 62%, rgba(247, 241, 230, 0.96) 100%);
  }

  .hero-art-content {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    padding: 24px;
    transform: none;
    border: 1px solid rgba(92, 76, 60, 0.08);
    border-radius: 24px;
    background: rgba(248, 242, 231, 0.88);
    backdrop-filter: blur(16px);
  }

  .hero-art-logo {
    width: min(230px, 80%);
    margin-bottom: 22px;
  }

  .hero-art-content > p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .home-hero-inset {
    width: 39%;
    top: 16px;
    right: 16px;
    border-width: 5px;
    border-radius: 18px;
  }

  .home-hero-media .hero-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .stats-ribbon {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }

  .stat-item {
    padding: 22px 8px;
  }

  .stat-item + .stat-item {
    border-left: 0;
    border-top: 1px solid rgba(92, 76, 60, 0.12);
  }

  .section-spacious {
    margin-top: 68px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .location-grid,
  .detail-grid-compact,
  .booking-grid,
  .room-card {
    grid-template-columns: 1fr;
  }

  .location-card .card-media {
    aspect-ratio: 1.18 / 1;
  }

  .highlight-card:nth-child(2) {
    transform: none;
  }

  .booking-card-featured {
    min-height: 380px;
    padding: 34px 26px;
  }

  .booking-photo {
    min-height: 330px;
  }

  .page-intro {
    padding-top: 50px;
  }

  .page-hero .hero-copy {
    padding: 34px 24px;
  }

  .page-hero .hero-media {
    min-height: 440px;
  }

  .room-cover {
    min-height: 300px;
  }

  .room-body {
    padding: 16px 8px 10px;
  }
}

/* Compact room comparison cards on the booking page */
.booking-room-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.booking-room-card.room-card {
  display: block;
  padding: 16px;
}

.booking-room-card .room-cover {
  position: relative;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
}

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

.room-number-badge {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(248, 242, 231, 0.92);
  box-shadow: 0 8px 20px rgba(59, 49, 40, 0.16);
  backdrop-filter: blur(10px);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.booking-room-card .room-body {
  padding: 4px 2px 2px;
}

.booking-room-card h3 {
  margin-top: 8px;
  font-size: 1.28rem;
}

.booking-room-card .card-copy {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.booking-room-card .chip-row {
  gap: 6px;
  margin-top: 10px;
}

.booking-room-card .chip {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.78rem;
}

.booking-room-card .button-row {
  margin-top: 16px;
}

.booking-room-card .button {
  width: 100%;
  min-height: 42px;
}

@media (max-width: 1080px) {
  .booking-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .booking-room-grid {
    grid-template-columns: 1fr;
  }

  .booking-room-card .room-cover {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

/* Mobile-first homepage: keep the full architectural illustration visible */
@media (max-width: 700px) {
  .site-header-inner {
    min-height: 58px;
    padding: 8px 0;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .brand-logo {
    height: 28px;
  }

  .header-right {
    width: auto;
    margin-left: auto;
    flex: 0 1 auto;
    justify-content: flex-end;
    gap: 7px;
  }

  .nav-links {
    gap: 10px;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .nav-links > a:first-child {
    display: none;
  }

  .nav-book-link {
    min-height: 34px;
    padding: 0 12px;
  }

  .lang-toggle {
    width: 34px;
    height: 34px;
  }

  main {
    padding-top: 12px;
  }

  .home-hero-media {
    display: grid;
    gap: 14px;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-hero-main {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(92, 76, 60, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 38px rgba(79, 68, 59, 0.09);
  }

  .home-hero-media::before {
    display: none;
  }

  .hero-art-content {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 24px 22px;
    transform: none;
    border-radius: 26px;
    background: rgba(248, 242, 231, 0.94);
    box-shadow: 0 18px 38px rgba(79, 68, 59, 0.07);
    backdrop-filter: blur(12px);
  }

  .hero-art-logo {
    width: min(205px, 68%);
    margin-bottom: 18px;
  }

  .hero-art-content .eyebrow {
    min-height: 30px;
    font-size: 0.69rem;
  }

  .hero-home h1 {
    margin-top: 15px;
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 1.05;
    text-wrap: balance;
  }

  .hero-art-content > p {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .hero-art-content .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 20px;
  }

  .hero-art-content .button {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.84rem;
    text-align: center;
  }

  .stats-ribbon {
    margin-top: 28px;
  }

  .section-spacious {
    margin-top: 56px;
  }

  .location-card .card-media {
    aspect-ratio: 16 / 10;
  }
}
