:root {
  --ink: #302d29;
  --muted: #91887e;
  --sand: #b28e62;
  --sand-deep: #b28e62;
  --paper: #f0eeea;
  --line: #dcd6ce;
  --page: 1000px;
}
.s_content * {
  text-wrap-mode: wrap !important;
  word-break: break-word
}

.s_content video,
.s_content img {
  display: inline-block;
  max-width: 100%;
  height: auto !important
}

.s_content img {
  height: auto !important
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
input,
select,
textarea {
  outline: none;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  background: rgba(248, 246, 242, 0.76);
  box-shadow: 0 12px 30px rgba(52, 42, 30, 0.16);
  transition: transform 220ms ease, background-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.site-header.is-floating {
	top: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	transform: none;
  background: rgba(248, 246, 242, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 30px rgba(52, 42, 30, 0.16);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
  backdrop-filter: blur(15px) saturate(1.08);
}

.site-header.is-floating .header-inner {
  width: 80%;
  padding-right: 0;
  padding-left: 0;
}

.site-header.is-header-hidden {
  transform: translateY(-100%);
}

.site-header.is-floating.is-header-hidden {
	transform: translateY(-100%);
}

.header-inner {
  width: 80%;
  margin: 0 auto;
  padding: 6px 0;
  display: flex;
  align-items: center;
  transition: width 260ms ease, padding 260ms ease;
}

.brand {
  width: 96px;
  flex: 0 0 96px;
  display: flex;
  align-items: center;
}

.brand img {
  max-height: 60px;
  object-fit: contain;
  filter: contrast(1.12);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: stretch;
}

.main-nav a {
  min-width: 115px;
  padding: 18px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  transition: background-color 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  background: var(--sand-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 38px;
  margin-left: auto;
  border: 1px solid var(--sand);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: var(--sand-deep);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.site-wrap {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
}

.home-hero,
.inner-hero {
  position: relative;
  overflow: hidden;
}

.home-hero {
  padding: 266px 0 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #25211d;
}

.hero-slide {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
  object-position: center 52%;
  opacity: 0;
  filter: saturate(0.82) contrast(1.05) brightness(0.86);
  transform: scale(1.08);
  transition: opacity 1800ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 1800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  filter: saturate(0.9) contrast(1.05) brightness(0.92);
  animation: hero-slide-drift 5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(19, 16, 13, 0.34) 0%, rgba(19, 16, 13, 0.08) 48%, rgba(19, 16, 13, 0.24) 100%),
    linear-gradient(180deg, rgba(19, 16, 13, 0.06) 0%, rgba(19, 16, 13, 0.01) 42%, rgba(19, 16, 13, 0.32) 100%);
}

.hero-welcome {
  position: relative;
  top: auto;
  left: auto;
  z-index: 6;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  color: #fff;
  text-align: center;
  pointer-events: none;
  animation: hero-welcome-enter 1100ms 220ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.stroke-text {
  position: relative;
  display: grid;
  place-items: center;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(30px, 4.5vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.stroke-text__stroke,
.stroke-text__fill {
  grid-area: 1 / 1;
}

.stroke-text__stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.88);
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 850ms ease, transform 1000ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.stroke-text__fill {
  color: transparent;
  background: linear-gradient(115deg, #fff 16%, #f2d8af 46%, #c39f67 78%, #fff 98%);
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  clip-path: inset(0 100% 0 0);
  filter: drop-shadow(0 8px 22px rgba(17, 13, 9, 0.2));
  transform: translateY(16px);
  transition: clip-path 1200ms 260ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 1000ms 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.stroke-text.is-visible .stroke-text__stroke,
.stroke-text.is-visible .stroke-text__fill {
  opacity: 1;
  transform: translateY(0);
}

.stroke-text.is-visible .stroke-text__fill {
  clip-path: inset(0);
  animation: stroke-text-shimmer 7s 1500ms ease-in-out infinite;
}

.hero-welcome small {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.42em;
  opacity: 0;
  transform: translateY(10px);
  animation: hero-welcome-caption 800ms 900ms ease both;
}

.inner-hero {
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 /400;
  min-height: 150px;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96) brightness(1.02);
}

.booking-page .booking-hero .hero-image {
  animation: booking-hero-drift 16s ease-in-out infinite alternate;
  transform: scale(1.035);
  transform-origin: center 54%;
  will-change: transform;
}

.home-hero .hero-image {
  object-position: center 52%;
  animation: home-hero-breathe 18s ease-in-out infinite alternate;
  transform: scale(1.02);
  transform-origin: center center;
}

.reservation-panel {
  --page: 1400px;
  position: relative;
  bottom: auto;
  left: auto;
  bottom: -2px;
  z-index: 4;
  width: min(var(--page), calc(100% - 28px));
  height: auto;
  margin: 144px auto 0;
  padding: 28px 44px 34px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  background: #fff;
  border-radius: 11px 11px 0 0;
}

.home-reveal {
  animation: home-panel-enter 900ms 220ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.home-copy {
  animation: home-copy-enter 700ms 460ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.home-field {
  opacity: 0;
  animation: home-field-enter 600ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.home-field:nth-child(1) {
  animation-delay: 580ms;
}

.home-field:nth-child(2) {
  animation-delay: 650ms;
}

.home-field:nth-child(3) {
  animation-delay: 720ms;
}

.home-field:nth-child(4) {
  animation-delay: 790ms;
}

.section-title {
  margin: 0;
  color: #3d3a36;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.section-title small {
  display: block;
  margin-top: 8px;
  color: #d9d9d9;
  font-size: 20px;
  font-weight: 400;
}

.reservation-note {
  margin: 15px 0 0;
  color: #a6a19a;
  font-size: 13px;
  line-height: 1.8;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 104px;
  gap: 12px;
  align-items: end;
}

.home-hero .reservation-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 32px;
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #77716b;
  font-size: 12px;
}

.field input,
.field select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ded8cf;
  border-radius: 0;
  background: #fff;
  font-size: 13px;
}

.form-submit,
.room-button,
.read-more {
  height: 40px;
  border: 0;
  border-radius: 24px;
  color: #fff;
  background: var(--sand);
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.form-submit:hover,
.room-button:hover,
.read-more:hover {
  background: var(--sand-deep);
  transform: translateY(-2px);
}

.home-hero .reservation-form .form-submit {
  grid-column: 1;
  width: 225px;
  border-radius: 2px;
}

.form-message {
  grid-column: 2 / -1;
  min-height: 23px;
  margin: -3px 0 0;
  color: var(--sand-deep);
  font-size: 12px;
}

.form-submit.is-loading,
.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.home-features {
  padding: 0;
  background: #fff;
}

.content-width {
  width: 1200px;
  margin: 0 auto;
}

.home-features .content-width,
.feature-tiles {
  height: auto;
}

.feature-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.home-features .feature-tiles {
  grid-template-columns: repeat(3, 1fr);
}

.feature-tile {
  padding: 22px 16px 24px;
  text-align: center;
  background: #fff;
}

.feature-tile img {
  width: 48px;
  height: 48px;
  margin: 0 auto 7px;
  object-fit: contain;
  opacity: 0.82;
}

.feature-tile h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.feature-tile p {
  margin: 4px 0 0;
  color: #a59e96;
  font-size: 12px;
}

.home-quote,
.home-recommendation,
.home-about,
.home-news,
.home-contact {
  position: relative;
  overflow: hidden;
}

.home-quote {
  display: grid;
  place-items: center;
  padding: 118px 24px;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-quote::after,
.home-about::after,
.home-contact::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(34, 29, 24, 0.36);
  content: "";
}

.warp-text {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  min-height: 72px;
  margin: 0;
  opacity: 1;
  transform: translateY(0);
}

.warp-text__fallback {
  display: grid;
  min-height: 72px;
  padding: 12px 20px;
  place-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
}

.warp-text.is-motion-ready {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.warp-text.is-motion-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-recommendation {
  padding: 118px 0 84px;
  background: var(--paper);
}

.home-recommendation>.content-width,
.home-about>.content-width,
.home-news>.content-width,
.home-contact>.content-width {
  position: relative;
  z-index: 2;
  height: auto;
}

.center-heading {
  position: static;
  width: 100%;
  margin: 0 0 38px;
  text-align: center;
}

.home-heading-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.center-heading strong {
  display: block;
  font-size: 25px;
  line-height: 1.4;
}

.center-heading span {
  display: block;
  margin-top: 2px;
  color: #d9d9d9;
  font-size: 19px;
}

.recommendation-grid {
  position: static;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 436px minmax(0, 1fr);
  grid-template-rows: repeat(2, 241px);
  gap: 24px 18px;
}

.recommendation-feature,
.recommendation-side {
  position: absolute;
  overflow: hidden;
  background: #fff;
}

.recommendation-feature {
  position: relative;
  grid-row: 1 / span 2;
  width: auto;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.recommendation-feature>.recommendation-media {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.recommendation-feature .recommendation-copy {
  height: 100%;
}

.recommendation-copy {
  min-height: 0;
  padding: 24px 31px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.recommendation-copy h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
}

.recommendation-copy p {
  margin: 12px 0 0;
  color: #8a837c;
  font-size: 14px;
  line-height: 1.8;
}

.price {
  margin-top: 12px;
  color: var(--sand);
  font-size: 39px;
}

.price small {
  font-size: 15px;
}

.recommendation-copy .room-button {
  width: 204px;
  margin-top: 13px;
  flex-shrink: 0;
}

.recommendation-side {
  position: relative;
  left: auto;
  width: auto;
  height: 241px;
  min-height: 0;
  display: grid;
  grid-template-columns: 302px 1fr;
}

.recommendation-side>.recommendation-media {
  width: 302px;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.recommendation-side .recommendation-copy {
  height: 100%;
  padding: 27px 24px;
  text-align: center;
}

.recommendation-side .recommendation-copy h3 {
  font-size: 19px;
}

.recommendation-side .price {
  margin-top: 10px;
}

.recommendation-side .room-button {
  width: 158px;
  margin-top: 11px;
}

.recommendation-side.reverse {
  grid-template-columns: 1fr 302px;
}

.recommendation-side.reverse>.recommendation-media {
  grid-column: 2;
}

.recommendation-side.reverse .recommendation-copy {
  grid-column: 1;
  grid-row: 1;
}

@media (max-width: 1040px) and (min-width: 781px) {
  .site-header.is-floating .main-nav a {
    width: 88px;
    font-size: 13px;
  }

  .home-recommendation>.content-width {
    width: calc(100% - 64px);
  }

  .recommendation-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 18px;
  }

  .recommendation-feature {
    grid-row: auto;
    height: 250px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .recommendation-side,
  .recommendation-side.reverse {
    height: 220px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommendation-side>.recommendation-media {
    width: 100%;
  }
}

.home-about {
  position: relative;
  min-height: 600px;
  padding: 88px 0 104px;
}

.home-about::after {
  background: rgba(30, 27, 24, 0.45);
}

.about-home-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  min-height: 408px;
  margin: 0 auto;
  color: #fff;
}

.home-about-hover-bg {
  opacity: 0;
  transition: opacity 520ms ease;
}

.home-about:hover .home-about-hover-bg,
.home-about:focus-within .home-about-hover-bg {
  opacity: 1;
}

.about-word {
  position: absolute;
  bottom: -7px;
  left: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 122px;
  font-weight: 700;
  line-height: 1;
}

.about-copy-home {
  position: relative;
  width: min(410px, 100%);
  margin-left: auto;
  padding-top: 2px;
  text-align: right;
}

.about-copy-home h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
}

.about-copy-home .english {
  margin: 3px 0 0;
  color: #d9d9d9;
  font-size: 19px;
}

.about-copy-home p {
  margin: 57px 0 0;
  font-size: 13px;
  line-height: 2;
}

.about-link-button {
  min-width: 150px;
  margin: 25px 0 0 auto;
  padding: 12px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.about-link-button:hover {
  color: #fff;
  border-color: var(--sand);
  background: var(--sand);
  transform: translateY(-3px);
}

.contact-line {
  display: inline-block;
}

.contact-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.7em);
}

.contact-line.is-visible .contact-char {
  animation: contact-char-in 700ms var(--char-delay) cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.home-news {
  padding: 92px 0;
  background: #f4f2ee;
}

.news-columns {
  position: static;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  height: auto;
  padding: 27px 30px 20px;
  background: #fff;
}

.news-card .home-heading-reveal {
  transition-delay: 160ms;
}

.news-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #dedbd6;
}

.news-heading h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
}

.news-heading h2 span {
  color: #c7c3be;
  font-size: 15px;
}

.news-heading a {
  color: var(--sand-deep);
  font-size: 13px;
}

.news-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.news-list li {
  min-height: 47px;
  padding: 8px 0;
  display: grid;
  grid-template-columns: 1fr 86px;
  gap: 12px;
  border-bottom: 1px solid #e5e2de;
}

.news-list a {
  color: #6c675f;
  font-size: 13px;
  transition: color 180ms ease;
}

.news-list a:hover {
  color: var(--sand-deep);
}

.news-list time {
  color: #b2ada6;
  font-size: 12px;
  text-align: right;
}

.home-contact {
  min-height: 600px;
  padding: 112px 0 106px;
  background-color: #302a23;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.home-contact::after {
  background: rgba(34, 29, 24, 0.32);
}

.contact-panel {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  min-height: 382px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 448px) minmax(260px, 1fr);
  gap: 10%;
  align-items: center;
}

.contact-card {
  width: 100%;
  min-height: 270px;
  padding: 50px 44px 34px;
  text-align: left;
  background: #fff;
  border-left: 3px solid var(--sand);
}

.contact-card h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
}

.contact-card .english {
  margin: 9px 0 0;
  color: #d9d9d9;
  font-size: 19px;
}

.contact-card p {
  margin: 19px 0 0;
  color: #77716a;
  font-size: 13px;
  line-height: 2;
}

.contact-aside {
  width: 100%;
  min-height: 270px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  text-align: right;
}

.contact-aside .vertical-copy {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  writing-mode: vertical-rl;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.field textarea {
  width: 100%;
  min-height: 100px;
  padding: 10px 12px;
  border: 1px solid #ded8cf;
  border-radius: 0;
  background: #fff;
  font-size: 13px;
  line-height: 1.7;
  resize: vertical;
}

.booking-note-field {
  grid-column: 1 / -1;
}

.site-footer {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  background: #fff;
  font-size: 11px;
  text-align: center;
}

.inner-main {
  position: relative;
  padding: 0 0 78px;
  background: #fff;
}

.page-title {
  margin: 0;
  padding: 42px 0 26px;
  text-align: center;
}

.page-title strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
}

.page-title span {
  display: block;
  color: #c6c0b8;
  font-size: 17px;
}

.subnav {
  width: 100%;
  margin-bottom: 44px;
  display: flex;
  justify-content: center;
  background: #fbfaf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.subnav a {
  min-width: 168px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7e776e;
  line-height: 1.6;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease;
}

.subnav a:hover,
.subnav a.is-active {
  color: #fff;
  background: var(--sand);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrap::after {
  position: absolute;
  right: -30px;
  bottom: 0;
  width: 107px;
  background: #fff;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  content: "";
}

.about-copy .eyebrow,
.contact-page-copy .eyebrow {
  margin: 0 0 13px;
  color: var(--sand-deep);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.about-copy h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
}

.about-copy h2 span {
  color: #d2cdc7;
  font-size: 18px;
}

.about-copy p {
  margin: 20px 0 0;
  color: #807970;
  font-size: 13px;
  line-height: 2;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--sand-deep);
  font-size: 13px;
  border-bottom: 1px solid var(--sand);
}

.inner-main .feature-tiles {
  height: auto;
  margin-top: 50px;
}

.inner-main .feature-tile {
  min-height: 142px;
}

.pattern-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: #fbfaf8;
}

.pattern-section .about-image-wrap::after {
  background: #fbfaf8 !important;
}

.pattern-section>.content-width {
  position: relative;
  z-index: 1;
}

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

.room-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.room-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(78, 66, 48, 0.12);
}

.room-media,
.recommendation-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8e3db;
}

.room-media {
  width: 100%;
  height: 210px;
}

.pixelated-image-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pixelated-image-card__default,
.pixelated-image-card__active,
.pixelated-image-card__pixels {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pixelated-image-card__active {
  z-index: 2;
  display: none;
}

.pixelated-image-card__pixels {
  z-index: 3;
  pointer-events: none;
}

.pixelated-image-card__pixel {
  position: absolute;
  display: none;
  background: rgba(255, 255, 255, 0.24) !important;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(5px) saturate(1.08);
  backdrop-filter: blur(5px) saturate(1.08);
}

.room-media>img,
.recommendation-media>img,
.pixelated-image-card__default img,
.pixelated-image-card__active img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.room-media.pixelated-image-card,
.recommendation-media.pixelated-image-card {
  width: 100%;
  max-width: none;
  color: #f6e9d5;
  border: 0;
  border-radius: 0;
}

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

.room-item .room-body {
  min-height: 160px;
  padding: 17px 17px 18px;
}

.room-item h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.room-item p {
  min-height: 45px;
  margin: 9px 0 0;
  color: #8a837b;
  font-size: 12px;
  line-height: 1.7;
}

.room-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
}

.room-price {
  color: var(--sand-deep);
  font-size: 20px;
}

.room-price small {
  color: #aaa29a;
  font-size: 11px;
}

.room-button {
  width: 92px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.article-list {
  width: 840px;
  margin: 0 auto;
}

.article-row {
  padding: 20px 0 22px;
  display: grid;
  grid-template-columns: 1fr 105px;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.article-row h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.article-row p {
  margin: 8px 0 0;
  color: #918a82;
  font-size: 12px;
}

.article-row time {
  color: #b6b0a9;
  font-size: 12px;
  text-align: right;
}

.article-row a:hover h2 {
  color: var(--sand-deep);
}

.article-pagination {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.article-pagination a,
.article-pagination span {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #aaa29a;
  border: 1px solid var(--line);
}

.article-pagination .is-current,
.article-pagination a:hover {
  color: #fff;
  background: var(--sand);
  border-color: var(--sand);
}

.booking-shell {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.booking-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  padding: 0;
  background: #fbfaf8;
  border: 1px solid var(--line);
}

.booking-panel-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 950ms 100ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.booking-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.88);
  transform: scale(1.08);
  transition: transform 1200ms 150ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.booking-panel-visual span {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.booking-panel-content {
  padding: 34px 40px 39px;
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 550ms 600ms ease, transform 650ms 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.booking-panel--reveal.is-visible .booking-panel-visual {
  clip-path: inset(0);
}

.booking-panel--reveal.is-visible .booking-panel-visual img {
  transform: scale(1.015);
}

.booking-panel--reveal.is-visible .booking-panel-content {
  opacity: 1;
  transform: translateX(0);
}

.booking-panel .reservation-form {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}

.booking-panel .form-submit {
  width: 140px;
}

.booking-panel .form-message {
  grid-column: 1 / -1;
}

.booking-page .inner-main {
  overflow: hidden;
}

.booking-page .inner-main>.content-width {
  position: relative;
  z-index: 1;
}

.booking-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.booking-ambient-tree,
.booking-ambient-window {
  position: absolute;
  display: block;
  opacity: 0.07;
  will-change: transform;
}

.booking-ambient-tree {
  top: 160px;
  left: max(-160px, calc(50% - 830px));
  width: 430px;
  height: 610px;
  background: url("/assets/images/inner-hero.png") 20% center / auto 100% no-repeat;
  filter: grayscale(1) contrast(1.2);
  transform: rotate(-5deg);
  animation: booking-tree-drift 12s ease-in-out infinite alternate;
}

.booking-ambient-window {
  top: 80px;
  right: max(-88px, calc(50% - 760px));
  width: 310px;
  height: 570px;
  border: 17px solid #a99d8f;
  border-bottom: 0;
  transform: rotate(9deg);
  animation: booking-window-drift 15s ease-in-out infinite alternate;
}

.booking-ambient-window::before,
.booking-ambient-window::after {
  position: absolute;
  background: #a99d8f;
  content: "";
}

.booking-ambient-window::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 13px;
  transform: translateX(-50%);
}

.booking-ambient-window::after {
  top: 34%;
  right: 0;
  left: 0;
  height: 13px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-page-copy {
  padding: 15px 0;
}

.contact-page-copy h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}

.contact-page-copy .english {
  margin: 5px 0 22px;
  color: #d0c8bd;
  font-size: 17px;
}

.contact-page-copy p {
  margin: 0 0 14px;
  color: #7d766e;
  font-size: 13px;
  line-height: 2;
}

.contact-page-card {
  padding: 30px;
  background: #fbfaf8;
  border: 1px solid var(--line);
}

.contact-page-card .map-frame {
  height: 310px;
  margin-top: 0;
}

.map-frame {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.22);
}

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

.detail-shell,
.article-detail {
  width: 940px;
  margin: 0 auto;
}

.detail-heading {
  padding: 42px 0 28px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.detail-heading h1 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
}

.detail-heading p {
  margin: 8px 0 0;
  color: #b7b0a9;
  font-size: 12px;
}

.room-detail {
  padding: 38px 0 10px;
}

.room-detail-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}

.room-detail-top>img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.room-detail-info h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

.room-detail-info .detail-price {
  margin-top: 13px;
  color: var(--sand-deep);
  font-size: 30px;
}

.detail-price small {
  color: #aaa29a;
  font-size: 12px;
}

.room-detail-info p {
  margin: 14px 0 0;
  color: #7f786f;
  font-size: 13px;
  line-height: 2;
}

.detail-info-grid {
  margin-top: 22px;
  padding-top: 19px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  border-top: 1px solid var(--line);
  color: #888077;
  font-size: 12px;
}

.detail-actions {
  margin-top: 22px;
}

.detail-actions .room-button {
  width: 128px;
}

.detail-copy {
  padding: 38px 0 20px;
  color: #7e776f;
  font-size: 13px;
  line-height: 2.1;
}

.detail-copy h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
}

.detail-copy p {
  margin: 0 0 14px;
}

.detail-copy ul {
  margin: 13px 0 0;
  padding-left: 18px;
}

.detail-copy li {
  margin: 4px 0;
}

.article-detail .detail-heading {
  padding-bottom: 20px;
}

.article-detail-body {
  padding: 35px 0 45px;
  color: #777068;
  font-size: 13px;
  line-height: 2.15;
}

.article-detail-body p {
  margin: 0 0 18px;
}

.article-detail-body .lead {
  color: #5c564f;
  font-size: 16px;
}

.article-detail-body blockquote {
  margin: 24px 0;
  padding: 15px 20px;
  color: #9b8a78;
  border-left: 3px solid var(--sand);
  background: #fbfaf8;
}

.back-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--sand-deep);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(195, 159, 103, 0.65);
  color: var(--sand-deep);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-3px);
}

@keyframes home-hero-breathe {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.055);
  }
}

@keyframes booking-hero-drift {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.075) translate3d(-1.1%, -0.6%, 0);
  }
}

@keyframes booking-tree-drift {
  0% {
    transform: rotate(-5deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(-5deg) translate3d(13px, -18px, 0);
  }
}

@keyframes booking-window-drift {
  0% {
    transform: rotate(9deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(9deg) translate3d(-10px, 16px, 0);
  }
}

@keyframes hero-slide-drift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.02) translate3d(-0.7%, -0.4%, 0);
  }
}

@keyframes hero-welcome-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-welcome-caption {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stroke-text-shimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes contact-char-in {
  from {
    opacity: 0;
    transform: translateY(0.7em);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-panel-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-panel-enter-mobile {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-copy-enter {
  from {
    opacity: 0;
    transform: translateY(13px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-field-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 780px) {
  :root {
    --page: 100%;
  }

  .site-header.is-floating {
    top: 0;
    left: 0;
    width: 100%;
    border: 0;
    transform: none;
  }

  .site-header.is-floating.is-header-hidden {
    transform: translateY(-100%);
  }

  .site-header.is-floating .header-inner {
    width: calc(100% - 28px);
    padding: 6px 0;
  }

  .header-inner {
    position: relative;
    width: calc(100% - 28px);
    padding: 6px 0;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 14px 32px rgba(40, 30, 20, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    visibility: hidden;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.75, 0.2, 1), visibility 0s linear 220ms;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0s;
  }

  .main-nav a {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 12px 18px;
    opacity: 0;
    transform: translateY(-5px);
    transition: background-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 220ms ease;
  }

  .main-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav.is-open a:nth-child(2) {
    transition-delay: 30ms;
  }

  .main-nav.is-open a:nth-child(3) {
    transition-delay: 60ms;
  }

  .main-nav.is-open a:nth-child(4) {
    transition-delay: 90ms;
  }

  .main-nav.is-open a:nth-child(5) {
    transition-delay: 120ms;
  }

  .main-nav.is-open a:nth-child(6) {
    transition-delay: 150ms;
  }

  .nav-toggle {
    display: block;
    transition: background-color 180ms ease, border-color 180ms ease;
  }

  .nav-toggle span {
    position: relative;
  }

  .nav-toggle span::before,
  .nav-toggle span::after {
    position: absolute;
    left: 0;
    margin: 0;
  }

  .nav-toggle span::before {
    top: -6px;
    transform: none;
  }

  .nav-toggle span::after {
    top: 6px;
    transform: none;
  }

  .nav-toggle.is-open {
    background: var(--sand);
    border-color: var(--sand);
  }

  .nav-toggle.is-open span {
    background: transparent;
  }

  .nav-toggle.is-open span::before,
  .nav-toggle.is-open span::after {
    background: #fff;
  }

  .nav-toggle.is-open span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle.is-open span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .home-hero {
    height: auto;
    padding: 82px 0 0;
  }

  .hero-welcome {
    top: auto;
    width: calc(100% - 28px);
  }

  .stroke-text {
    font-size: clamp(20px, 13vw, 20px);
    letter-spacing: 0.12em;
  }

  .hero-welcome small {
    margin-top: 12px;
    font-size: 9px;
    letter-spacing: 0.28em;
  }

  .home-hero .hero-image {
    animation: none;
    transform: scale(1.02);
  }

  .home-features {
    height: auto;
  }

  .home-features .feature-tile {
    padding: 17px 8px 12px;
  }

  .home-features .feature-tile img {
    width: 42px;
    height: 42px;
  }

  .home-features .feature-tile p {
    max-height: 24px;
    overflow: hidden;
  }

  .home-quote {
    height: auto;
    padding: 78px 18px;
  }

  .warp-text,
  .warp-text__fallback {
    min-height: 58px;
  }

  .warp-text__fallback {
    padding: 8px 10px;
    font-size: 22px;
  }

  .home-recommendation,
  .home-about,
  .home-news,
  .home-contact {
    height: auto;
    min-height: 0;
  }

  .reservation-panel {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    height: auto;
    margin: 92px 14px 0;
    padding: 22px 18px;
    display: block;
    transform: none;
  }

  .home-reveal {
    animation-name: home-panel-enter-mobile;
  }

  .home-hero .reservation-form {
    margin-top: 22px;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .home-hero .reservation-form .form-submit {
    width: 100%;
  }

  .form-message {
    margin-top: 4px;
  }

  .content-width,
  .booking-shell,
  .detail-shell,
  .article-detail {
    width: calc(100% - 28px);
  }

  .center-heading,
  .recommendation-grid,
  .news-columns,
  .contact-card,
  .contact-aside {
    position: static;
  }

  .home-recommendation {
    padding: 36px 0 42px;
  }

  .center-heading {
    position: static;
    margin-bottom: 26px;
  }

  .recommendation-grid {
    height: auto;
    display: block;
  }

  .recommendation-feature,
  .recommendation-side,
  .recommendation-side:nth-child(2),
  .recommendation-side:nth-child(3) {
    position: static;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .recommendation-feature>.recommendation-media,
  .recommendation-side>.recommendation-media {
    width: 100%;
    height: auto;
    aspect-ratio: 1.25;
  }

  .recommendation-feature {
    display: block;
    grid-row: auto;
  }

  .recommendation-copy,
  .recommendation-side .recommendation-copy {
    padding: 20px 14px;
  }

  .recommendation-feature .recommendation-copy {
    min-height: 0;
  }

  .recommendation-grid .recommendation-side:last-child {
    margin-bottom: 0;
  }

  .about-home-content {
    width: calc(100% - 28px);
    min-height: 0;
    margin: 0 auto;
    padding-bottom: 84px;
  }

  .home-about {
    min-height: 0;
  }

  .about-word {
    top: auto;
    bottom: 20px;
    left: 0;
    font-size: 68px;
  }

  .about-copy-home {
    top: auto;
    right: auto;
    width: min(414px, 100%);
  }

  .about-copy-home p {
    margin-top: 38px;
  }

  .news-columns {
    width: 100%;
    display: block;
  }

  .home-news {
    padding: 56px 0;
  }

  .news-card {
    height: auto;
    min-height: 0;
    margin-bottom: 22px;
    padding: 27px 30px 20px;
    background: #fff;
  }

  .news-card:last-child {
    margin-bottom: 0;
  }

  .home-contact {
    padding: 52px 0 70px;
  }

  .contact-panel {
    width: calc(100% - 28px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-card {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 40px 22px 30px;
  }

  .contact-aside {
    min-height: 0;
    padding: 0 8px;
    justify-content: flex-start;
    text-align: left;
  }

  .contact-aside .vertical-copy {
    justify-content: flex-start;
    writing-mode: horizontal-tb;
    font-size: 14px;
  }

  .inner-hero {
    height: auto;
  }

  .inner-main {
    padding-bottom: 52px;
  }

  .page-title {
    padding: 32px 0 22px;
  }

  .subnav {
    margin-bottom: 28px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .subnav a {
    min-width: 132px;
    padding: 17px 12px;
    white-space: nowrap;
  }

  .about-layout,
  .contact-page-grid,
  .room-detail-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-image-wrap {
    height: 240px;
  }

  .inner-main .feature-tiles {
    grid-template-columns: 1fr 1fr;
    height: auto;
    margin-top: 32px;
  }

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

  .booking-panel-visual {
    min-height: 210px;
  }

  .booking-panel-content {
    padding: 30px 22px;
  }

  .booking-ambient {
    display: none;
  }

  .pattern-section {
    padding: 48px 0;
  }

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

  .room-item .room-image {
    height: 220px;
  }

  .article-list {
    width: 100%;
  }

  .article-row {
    grid-template-columns: 1fr 82px;
    gap: 10px;
  }

  .booking-panel {
    padding: 23px 18px 26px;
  }

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

  .booking-panel .form-message {
    grid-column: 1;
  }

  .room-detail-top>img {
    width: 100%;
    height: auto;
    max-height: 360px;
  }

  .detail-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-page-card {
    padding: 20px;
  }

  .map-frame,
  .contact-page-card .map-frame {
    height: 210px;
  }

  .site-footer {
    min-height: 56px;
    padding: 10px 18px;
  }
}
