@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&family=Noto+Sans+KR:wght@400;500;600&family=Noto+Sans+TC:wght@400;500;600&family=Noto+Serif+JP:wght@400;500&family=Noto+Serif+KR:wght@400;500&family=Noto+Serif+TC:wght@400;500&display=swap");

:root {
  --paper: #f5f0e8;
  --ink: #28231f;
  --muted: #766d63;
  --line: #ded4c8;
  --dark: #211f1c;
  --white: #fffaf3;
  --accent: #a27143;
  --soft-shadow: 0 22px 54px rgba(60, 48, 36, 0.1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --header-height: 86px;
  --display-font: "Noto Serif JP", "Noto Serif TC", "Noto Serif KR", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --ui-font: "Noto Sans JP", "Noto Sans TC", "Noto Sans KR", "Yu Gothic", "Microsoft JhengHei", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ui-font);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
select,
input {
  font: inherit;
}

button,
a,
select,
input {
  outline-color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 10px 38px;
  background: rgba(243, 238, 230, 0.96);
  backdrop-filter: blur(12px);
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 3.35rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.back-link {
  color: var(--ink);
  font-family: var(--ui-font);
  font-weight: 500;
  text-decoration: none;
}

.menu-button,
.menu-text,
.search-button,
.drawer-close {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-button {
  display: grid;
  gap: 7px;
  width: 34px;
  height: 34px;
  padding: 5px 0;
}

.menu-button span {
  display: block;
  height: 1px;
  background: var(--ink);
}

.menu-text {
  font-size: 1.05rem;
  font-weight: 500;
}

.search-button {
  position: relative;
  width: 34px;
  height: 34px;
}

.search-button::before {
  content: "";
  position: absolute;
  inset: 4px 8px 8px 4px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 5px;
  width: 12px;
  height: 1.5px;
  background: var(--ink);
  transform: rotate(45deg);
}

.language-wrap {
  position: relative;
  z-index: 40;
}

.native-language-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.language-trigger {
  width: 168px;
  min-height: 48px;
  padding: 0 42px 0 18px;
  border: 1px solid rgba(40, 35, 31, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 243, 0.72);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--ui-font);
  font-weight: 500;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.language-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.language-wrap.is-open .language-trigger,
.language-trigger:hover {
  border-color: rgba(162, 113, 67, 0.58);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(60, 48, 36, 0.08);
}

.language-wrap.is-open .language-trigger::after {
  transform: translateY(-35%) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: 190px;
  padding: 7px;
  border: 1px solid rgba(40, 35, 31, 0.12);
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.98);
  box-shadow: 0 22px 50px rgba(60, 48, 36, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-wrap.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu button {
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--ui-font);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.language-menu button:hover,
.language-menu button[aria-selected="true"] {
  background: #efe6dc;
  color: #7a4f2b;
}

.reserve-button,
.availability-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid var(--dark);
  border-radius: var(--radius-pill);
  background: var(--dark);
  color: var(--white);
  font-family: var(--ui-font);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.reserve-button:hover,
.availability-button:hover,
.room-card button:hover,
.ota-actions a:hover {
  background: #3a332c;
  border-color: #3a332c;
  box-shadow: 0 10px 24px rgba(33, 31, 28, 0.14);
  transform: translateY(-1px);
}

.reserve-button {
  padding: 0 44px;
}

.menu-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(20, 19, 17, 0.45);
}

.menu-drawer.is-open {
  display: block;
}

.drawer-panel {
  width: min(420px, 88vw);
  height: 100%;
  padding: 30px;
  background: var(--paper);
  box-shadow: 18px 0 48px rgba(0, 0, 0, 0.16);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.drawer-brand {
  font-family: var(--display-font);
  font-size: 2.4rem;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.drawer-nav {
  display: grid;
  gap: 6px;
}

.drawer-nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 1.26rem;
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.drawer-nav a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.hero {
  position: relative;
  width: calc(100% - 48px);
  height: calc(100vh - var(--header-height) - 16px);
  min-height: 620px;
  max-height: 760px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #151515;
}

.slide {
  position: absolute;
  inset: 0;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 650ms ease, transform 1200ms ease;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0.32)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 42%);
}

.hero-copy {
  position: absolute;
  top: 92px;
  left: 8%;
  width: min(600px, 62%);
  max-height: calc(100% - 160px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-family: var(--ui-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 4.15rem;
  font-weight: 400;
  line-height: 1.18;
  text-wrap: balance;
}

.hero-copy p:last-child {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 250, 242, 0.72);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.22);
  color: var(--white);
  font-family: var(--ui-font);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slide-arrow:hover {
  background: rgba(20, 20, 20, 0.55);
}

.slide-arrow-left {
  left: 28px;
}

.slide-arrow-right {
  right: 28px;
}

.slide-count {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  color: var(--white);
  font-family: var(--ui-font);
  font-size: 0.95rem;
}

.booking-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr auto;
  width: min(1180px, calc(100% - 48px));
  margin: -44px auto 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.booking-field {
  display: grid;
  align-content: center;
  min-height: 104px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease;
}

.booking-field:hover {
  background: rgba(255, 250, 243, 0.72);
}

.booking-field span {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--ui-font);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.booking-field select,
.booking-field input {
  width: 100%;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 500;
  cursor: pointer;
}

.date-field,
.select-field {
  cursor: pointer;
}

.date-field input,
.select-field select {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: rgba(245, 240, 232, 0.72);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.date-field:hover input,
.date-field:focus-within input,
.select-field:hover select,
.select-field:focus-within select {
  border-color: rgba(162, 113, 67, 0.45);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(60, 48, 36, 0.08);
}

.date-field input:focus,
.select-field select:focus {
  outline: 0;
}

.select-field select {
  appearance: none;
  padding-right: 42px;
}

.select-field {
  position: relative;
}

.select-field::after {
  content: "";
  position: absolute;
  right: 38px;
  bottom: 40px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(45deg);
  pointer-events: none;
}

.date-field input::-webkit-calendar-picker-indicator {
  width: 20px;
  height: 20px;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.76;
}

.date-field input::-webkit-calendar-picker-indicator:hover {
  background: #efe6dc;
  opacity: 1;
}

.stepper {
  display: grid;
  grid-template-columns: 38px 52px 38px;
  align-items: center;
  gap: 8px;
}

.stepper button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f7f1e9;
  color: var(--ink);
  cursor: pointer;
}

.stepper output {
  text-align: center;
  font-size: 1.2rem;
}

.availability-button {
  min-width: 220px;
  min-height: 70px;
  align-self: center;
  margin: 14px;
  padding: 0 30px;
}

.booking-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  padding: 0 24px;
  color: var(--accent);
  font-family: var(--ui-font);
  font-size: 0.95rem;
  line-height: 0;
  opacity: 0;
  transition: padding 180ms ease, line-height 180ms ease, opacity 180ms ease;
}

.booking-status.has-message {
  min-height: 48px;
  padding: 14px 24px 16px;
  border-top: 1px solid var(--line);
  line-height: 1.5;
  opacity: 1;
}

.property-entry {
  display: grid;
  gap: 26px;
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.76);
  box-shadow: 0 22px 54px rgba(60, 48, 36, 0.09);
}

.property-entry-head {
  display: grid;
  gap: 10px;
}

.property-entry-head h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.22;
}

.property-entry-head p:last-child {
  max-width: 760px;
  margin: 0;
  color: #5c554e;
  font-size: 1.05rem;
}

.property-entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.property-entry-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(40, 35, 31, 0.12);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.property-entry-card:hover {
  border-color: rgba(162, 113, 67, 0.54);
  box-shadow: 0 16px 36px rgba(60, 48, 36, 0.1);
  transform: translateY(-2px);
}

.property-entry-card span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.property-entry-card strong {
  font-family: var(--display-font);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.25;
}

.property-entry-card small {
  color: #5c554e;
  font-size: 0.9rem;
  line-height: 1.6;
}

.property-entry-card em {
  align-self: end;
  justify-self: start;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: #efe6dc;
  color: #7a4f2b;
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 700;
}

.guide-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 0;
  padding: 30px 34px;
  border: 1px solid rgba(162, 113, 67, 0.26);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 250, 243, 0.92), rgba(239, 230, 220, 0.72));
  box-shadow: 0 22px 54px rgba(60, 48, 36, 0.09);
}

.guide-promo h2 {
  margin: 4px 0 8px;
  font-family: var(--display-font);
  font-size: clamp(1.85rem, 3.5vw, 3.05rem);
  font-weight: 400;
  line-height: 1.22;
}

.guide-promo p:last-child {
  max-width: 680px;
  margin: 0;
  color: #5c554e;
  font-size: 1.05rem;
}

.guide-promo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 190px;
  padding: 0 28px;
  border: 1px solid var(--dark);
  border-radius: var(--radius-pill);
  background: var(--dark);
  color: var(--white);
  font-family: var(--ui-font);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(33, 31, 28, 0.14);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.guide-promo-link:hover {
  background: #3a332c;
  border-color: #3a332c;
  transform: translateY(-1px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: 90px;
  width: min(1180px, calc(100% - 48px));
  margin: 70px auto 92px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.intro-section h2,
.section-heading h2,
.service-copy h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.28;
}

.intro-body {
  display: grid;
  gap: 22px;
  margin: 36px 0 0;
}

.intro-body p {
  margin: 0;
  color: #4d4741;
  font-size: 1.16rem;
  line-height: 2;
}

.guide-cta-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(162, 113, 67, 0.44);
  border-radius: var(--radius-pill);
  background: rgba(255, 250, 243, 0.74);
  color: #7a4f2b;
  font-family: var(--ui-font);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(60, 48, 36, 0.07);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.guide-cta-link:hover {
  border-color: rgba(162, 113, 67, 0.72);
  background: var(--white);
  transform: translateY(-1px);
}

.properties-section,
.service-section,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

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

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.property-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.property-card:hover {
  border-color: #cbbcaf;
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.property-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.property-card div {
  min-height: 178px;
  padding: 24px;
}

.property-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: var(--ui-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.property-card h3 {
  margin: 0 0 14px;
  font-family: var(--display-font);
  font-size: 1.7rem;
  font-weight: 400;
}

.property-card span {
  color: #4f4942;
  line-height: 1.75;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 90px;
  margin-top: 100px;
  padding: 88px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 52px minmax(130px, 190px) 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.service-list li:first-child {
  padding-top: 0;
}

.service-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-list span {
  color: var(--accent);
  font-family: var(--ui-font);
  font-size: 0.82rem;
  font-weight: 600;
}

.service-list strong {
  font-size: 1.25rem;
  font-weight: 500;
}

.service-list p {
  margin: 0;
  color: #4f4942;
  line-height: 1.85;
}

.site-footer {
  display: grid;
  gap: 34px;
  min-height: 210px;
  padding: 48px 0;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 2.2rem;
  text-decoration: none;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 500;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-panel p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 500;
}

.contact-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.contact-logos a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  text-decoration: none;
}

.contact-logos a:hover {
  transform: translateY(-2px);
}

.contact-icon {
  display: block;
  width: 40px;
  height: 40px;
}

.contact-icon-wide {
  width: 46px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rooms-page {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.rooms-hero {
  padding: 82px 0 62px;
  border-bottom: 1px solid var(--line);
}

.rooms-hero h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 1.08;
}

.stay-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.stay-summary span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-family: var(--ui-font);
  font-weight: 500;
}

.room-list-section {
  padding: 72px 0 90px;
}

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

.room-card {
  display: grid;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.room-card:hover {
  border-color: #cbbcaf;
  box-shadow: var(--soft-shadow);
  transform: translateY(-3px);
}

.room-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: var(--ui-font);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.room-card h3 {
  margin: 0 0 20px;
  font-family: var(--display-font);
  font-size: 2rem;
  font-weight: 400;
}

.room-card span {
  color: #4f4942;
}

.room-card button,
.ota-actions a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--dark);
  border-radius: var(--radius-pill);
  background: var(--dark);
  color: var(--white);
  font-family: var(--ui-font);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ota-actions {
  display: grid;
  gap: 10px;
  align-self: end;
  margin-top: 34px;
}

.ota-actions a:nth-child(2) {
  background: #3f362f;
  border-color: #3f362f;
}

.ota-actions a:nth-child(3) {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.guide-page {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.guide-hero {
  padding: 82px 0 56px;
  border-bottom: 1px solid var(--line);
}

.guide-hero h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 1.08;
}

.guide-hero > p:last-of-type {
  max-width: 680px;
  margin: 26px 0 0;
  color: #4f4942;
  font-size: 1.08rem;
  line-height: 1.9;
}

.property-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.property-switcher button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--ui-font);
  font-weight: 500;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.property-switcher button:hover,
.property-switcher button[aria-pressed="true"] {
  border-color: rgba(162, 113, 67, 0.48);
  background: #efe6dc;
  color: #7a4f2b;
  transform: translateY(-1px);
}

.guide-layout,
.guide-details {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
  gap: 24px;
  margin-top: 36px;
}

.guide-details {
  margin-bottom: 88px;
}

.guide-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(60, 48, 36, 0.06);
}

.guide-panel-head {
  margin-bottom: 22px;
}

.guide-panel h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 400;
}

.guide-panel-head span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 500;
}

.map-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid rgba(162, 113, 67, 0.42);
  border-radius: var(--radius-pill);
  background: #f8f2eb;
  color: #7a4f2b;
  font-family: var(--ui-font);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.map-open-link:hover {
  border-color: rgba(162, 113, 67, 0.72);
  background: var(--white);
  transform: translateY(-1px);
}

.guide-map-panel iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: var(--radius-sm);
  background: #eee7dc;
}

.guide-booking-block,
.guide-checkin-block {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.media-grid {
  display: grid;
  gap: 16px;
}

.media-item {
  display: grid;
  gap: 10px;
}

.media-item > span {
  justify-self: start;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  background: #f8f2eb;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #eee7dc;
}

.media-card img,
.media-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-card {
  width: min(100%, 360px);
  margin-inline: auto;
  background: #171514;
}

.video-card video {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #171514;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.86);
  color: var(--ink);
  transform: translate(-50%, -50%);
}

.guide-step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
}

.guide-step-list li {
  padding: 14px 0 14px 10px;
  border-bottom: 1px solid var(--line);
  color: #4f4942;
  line-height: 1.8;
}

.guide-step-list li:last-child {
  border-bottom: 0;
}

.nearby-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nearby-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #f8f2eb;
  font-weight: 500;
}

.guide-ota-links {
  display: grid;
  gap: 12px;
}

.guide-ota-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--dark);
  border-radius: var(--radius-pill);
  background: var(--dark);
  color: var(--white);
  font-family: var(--ui-font);
  font-weight: 600;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.guide-ota-links a:hover {
  background: #3a332c;
  border-color: #3a332c;
  box-shadow: 0 10px 24px rgba(33, 31, 28, 0.14);
  transform: translateY(-1px);
}

.guide-ota-links a:nth-child(2) {
  background: #3f362f;
  border-color: #3f362f;
}

.guide-ota-links a:nth-child(3) {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding-inline: 18px;
  }

  .brand {
    justify-self: center;
    font-size: 2.55rem;
  }

  .menu-text,
  .search-button {
    display: none;
  }

  .header-right {
    gap: 8px;
  }

  .language-trigger {
    width: 128px;
    min-height: 46px;
    padding: 0 34px 0 14px;
    font-size: 0.9rem;
  }

  .language-trigger::after {
    right: 14px;
  }

  .language-menu {
    width: 168px;
  }

  .reserve-button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.95rem;
  }

  .hero {
    width: calc(100% - 24px);
    height: 70vh;
    min-height: 560px;
  }

  .hero-copy {
    top: 72px;
    left: 28px;
    width: min(520px, calc(100% - 56px));
  }

  .hero-copy h1 {
    font-size: 3.05rem;
  }

  .slide-arrow {
    width: 48px;
    height: 48px;
    font-size: 2.1rem;
  }

  .slide-arrow-left {
    left: 16px;
  }

  .slide-arrow-right {
    right: 16px;
  }

  .booking-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
  }

  .booking-field {
    min-height: 92px;
  }

  .availability-button {
    grid-column: 1 / -1;
    min-height: 64px;
  }

  .property-entry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guide-promo {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
    padding: 26px;
  }

  .guide-promo-link {
    width: 100%;
  }

  .intro-section,
  .service-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-section h2,
  .section-heading h2,
  .service-copy h2 {
    font-size: 2.35rem;
  }

  .section-heading {
    display: block;
  }

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

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

  .guide-hero {
    padding-top: 58px;
  }

  .guide-layout,
  .guide-details {
    grid-template-columns: 1fr;
  }

  .guide-map-panel iframe {
    min-height: 300px;
  }

  .property-switcher {
    gap: 10px;
  }

  .service-list li {
    grid-template-columns: 44px 1fr;
  }

  .service-list p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 8px;
    padding-inline: 9px;
  }

  .header-left,
  .header-right {
    gap: 6px;
  }

  .menu-button {
    width: 28px;
    height: 28px;
    gap: 5px;
  }

  .brand {
    font-size: 1.82rem;
  }

  .language-trigger {
    width: 92px;
    min-height: 36px;
    padding: 0 24px 0 10px;
    font-size: 0.76rem;
  }

  .language-trigger::after {
    right: 10px;
    width: 7px;
    height: 7px;
  }

  .language-menu {
    width: 142px;
  }

  .language-menu button {
    min-height: 40px;
    font-size: 0.9rem;
  }

  .reserve-button {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 540px;
  }

  .hero-copy {
    top: 58px;
    left: 22px;
    width: calc(100% - 44px);
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .hero-copy p:last-child {
    font-size: 1rem;
  }

  .slide-arrow {
    top: auto;
    bottom: 24px;
  }

  .slide-count {
    left: 50%;
    right: auto;
    bottom: 38px;
    transform: translateX(-50%);
  }

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

  .booking-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .property-entry {
    width: calc(100% - 28px);
    margin-top: 22px;
    padding: 22px;
    border-radius: 18px;
  }

  .property-entry-grid {
    grid-template-columns: 1fr;
  }

  .property-entry-card {
    min-height: 0;
    padding: 20px;
  }

  .property-entry-card strong {
    font-size: 1.55rem;
  }

  .guide-promo {
    width: calc(100% - 28px);
    margin-top: 22px;
    padding: 22px;
    border-radius: 18px;
  }

  .guide-promo h2 {
    font-size: 1.86rem;
  }

  .guide-promo p:last-child {
    font-size: 0.98rem;
  }

  .guide-promo-link {
    min-height: 54px;
    font-size: 0.98rem;
  }

  .site-footer {
    align-items: stretch;
  }

  .footer-main,
  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-logos {
    justify-content: flex-start;
  }

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

  .guide-page {
    width: calc(100% - 28px);
  }

  .guide-hero {
    padding: 42px 0 38px;
  }

  .guide-hero h1 {
    font-size: 2.45rem;
  }

  .guide-panel {
    padding: 22px;
  }

  .guide-map-panel iframe {
    min-height: 260px;
  }

  .property-switcher button {
    width: 100%;
    justify-content: center;
  }

  .media-card img {
    aspect-ratio: 4 / 3;
  }
}
