@charset "UTF-8";

:root {
  --ink: #14293a;
  --ink-2: #1e3a4e;
  --paper: #f3efe4;
  --paper-2: #e5dfd0;
  --accent: #4d8a94;
  --line: rgba(20, 41, 58, 0.28);
  --line-soft: rgba(20, 41, 58, 0.14);
  --light-line: rgba(243, 239, 228, 0.28);
  --paper-text: #f8f5eb;
  --max: 1360px;
  --nav-width: 78px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.85;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure,
p,
h1,
h2,
h3,
dl,
dd,
dt {
  margin: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.num {
  font-family: "Marcellus", "Times New Roman", serif;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: 0.03em;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  pointer-events: none;
}

.site-logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 250px;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  color: var(--paper-text);
  background: var(--ink);
  pointer-events: auto;
}

.logo-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  line-height: 1;
}

.logo-type,
.footer-brand > span:last-child {
  display: grid;
  gap: 0;
  line-height: 1.3;
}

.logo-type strong,
.footer-brand strong {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.logo-type small,
.footer-brand small {
  margin-top: 2px;
  font-size: 8px;
  letter-spacing: 0.15em;
  opacity: 0.66;
}

.side-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--nav-width);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 116px 0 22px;
  color: var(--paper-text);
  background: rgba(20, 41, 58, 0.94);
  border-left: 1px solid rgba(243, 239, 228, 0.26);
  pointer-events: auto;
  writing-mode: vertical-rl;
}

.side-nav a {
  position: relative;
  padding: 2px 0;
  font-size: 11px;
  letter-spacing: 0.13em;
  line-height: 1;
  opacity: 0.84;
  transition: opacity 180ms ease, color 180ms ease;
}

.side-nav a:not(.reservation-link)::after {
  position: absolute;
  top: -8px;
  right: -7px;
  width: 1px;
  height: 0;
  content: "";
  background: var(--accent);
  transition: height 180ms ease;
}

.side-nav a:hover,
.side-nav a:focus-visible {
  color: #b7d8d9;
  opacity: 1;
}

.side-nav a:hover::after,
.side-nav a:focus-visible::after {
  height: 100%;
}

.side-nav .reservation-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 9px 12px;
  color: var(--ink);
  background: var(--accent);
  border: 1px solid var(--accent);
  font-weight: 700;
  opacity: 1;
  letter-spacing: 0.15em;
}

.side-nav .reservation-link:hover {
  color: var(--paper-text);
  background: transparent;
}

.mobile-header,
.mobile-drawer {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  color: var(--paper-text);
  background: var(--ink);
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  transform: scale(1.01);
}

.hero-slide.is-active img {
  animation: hero-ken-burns 6.2s ease-out both;
}

.hero-scrim {
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 19, 26, 0.88) 0%, rgba(10, 19, 26, 0.5) 38%, rgba(10, 19, 26, 0.09) 76%), linear-gradient(0deg, rgba(10, 19, 26, 0.5), transparent 44%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  right: calc(var(--nav-width) + 14vw);
  bottom: clamp(130px, 17vh, 180px);
  left: clamp(28px, 8vw, 130px);
  max-width: 650px;
}

.hero-eyebrow,
.section-kicker {
  color: #acd1d0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-eyebrow {
  margin-bottom: 22px;
}

.hero-copy h1 {
  max-width: 680px;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 3.85vw, 56px);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0.06em;
  word-break: keep-all;
  line-break: strict;
}

.hero-lead {
  max-width: 420px;
  margin-top: 26px;
  color: rgba(248, 245, 235, 0.87);
  font-size: 14px;
  letter-spacing: 0.09em;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 23px;
  margin-top: 27px;
  color: rgba(248, 245, 235, 0.75);
  font-size: 11px;
  letter-spacing: 0.09em;
}

.hero-meta span + span {
  position: relative;
}

.hero-meta span + span::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 1px;
  height: 13px;
  content: "";
  background: rgba(248, 245, 235, 0.45);
  transform: translateY(-50%);
}

.hero-statement {
  position: absolute;
  z-index: 2;
  top: 135px;
  right: calc(var(--nav-width) + 55px);
  bottom: 148px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  color: rgba(248, 245, 235, 0.88);
  writing-mode: vertical-rl;
  pointer-events: none;
}

.hero-statement span:first-child {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(25px, 3vw, 40px);
  letter-spacing: 0.2em;
}

.hero-statement span:last-child {
  margin-top: 72px;
  color: rgba(248, 245, 235, 0.64);
  font-size: 13px;
  letter-spacing: 0.17em;
}

.slider-controls {
  position: absolute;
  z-index: 3;
  right: calc(var(--nav-width) + 8vw);
  bottom: 45px;
  left: clamp(28px, 8vw, 130px);
  display: flex;
  align-items: center;
  gap: 18px;
}

.slider-dots {
  display: flex;
  gap: 9px;
  align-items: center;
}

.slider-dot {
  width: 32px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(248, 245, 235, 0.45);
  cursor: pointer;
  transition: background 200ms ease, width 200ms ease;
}

.slider-dot.is-active {
  width: 48px;
  background: var(--accent);
}

.slider-pause {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: rgba(248, 245, 235, 0.7);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.pause-icon {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.progress-line {
  position: relative;
  width: min(190px, 25vw);
  height: 1px;
  margin-left: auto;
  overflow: hidden;
  background: rgba(248, 245, 235, 0.28);
}

.progress-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--accent);
}

.hero.is-playing .progress-line span {
  animation: progress 6s linear both;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: calc(var(--nav-width) + 8vw);
  bottom: 39px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: rgba(248, 245, 235, 0.62);
  font-size: 10px;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  color: #acd1d0;
  font-size: 17px;
  font-style: normal;
  line-height: 1;
}

.section {
  padding: 60px 0;
}

.section-dark {
  color: var(--paper-text);
  background: var(--ink);
}

.section-paper {
  color: var(--ink);
  background: var(--paper);
}

.section-frame {
  position: relative;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  border: 1px solid var(--line);
}

.section-dark .section-frame {
  border-color: var(--light-line);
}

.section-frame::before {
  position: absolute;
  z-index: 0;
  inset: 15px;
  content: "";
  border: 1px solid var(--line-soft);
  pointer-events: none;
}

.section-dark .section-frame::before {
  border-color: rgba(243, 239, 228, 0.14);
}

.section-rail {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  padding: 54px 20px;
  border-right: 1px solid var(--line);
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  letter-spacing: 0.19em;
}

.section-dark .section-rail {
  border-color: var(--light-line);
}

.section-index {
  color: var(--accent);
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  writing-mode: horizontal-tb;
}

.section-body {
  position: relative;
  z-index: 1;
  padding: 64px clamp(40px, 7vw, 110px) 74px;
}

.about-body + .section-image,
.day-body + .section-image {
  position: relative;
  z-index: 1;
}

.section-image {
  grid-column: 2;
  margin: 0 clamp(40px, 7vw, 110px) 66px;
  height: 390px;
  overflow: hidden;
}

.section-image img {
  object-position: center 55%;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Marcellus", "Zen Kaku Gothic New", sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.section-body h2 {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0.06em;
}

.section-body h2 em,
.pull-statement em,
.hero-copy em {
  color: var(--accent);
  font-style: normal;
}

.section-dark .section-body h2 em,
.section-dark .pull-statement em {
  color: #a8ced0;
}

.pull-statement {
  margin-top: 62px;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.about-copy {
  max-width: 870px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  color: rgba(248, 245, 235, 0.78);
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: 0.05em;
}

.about-copy p {
  max-width: 40ch;
}

.facts-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 870px;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark .facts-row {
  border-color: var(--light-line);
}

.facts-row > div {
  display: grid;
  gap: 6px;
  padding: 24px 20px 22px;
  border-right: 1px solid var(--line);
}

.section-dark .facts-row > div {
  border-color: var(--light-line);
}

.facts-row > div:first-child {
  padding-left: 0;
}

.facts-row > div:last-child {
  border-right: 0;
}

.facts-row strong {
  font-family: "Marcellus", serif;
  font-size: 33px;
  font-weight: 400;
  line-height: 1;
}

.facts-row span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.about-image img {
  object-position: center 47%;
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.heading-note {
  max-width: 315px;
  padding-bottom: 7px;
  color: rgba(20, 41, 58, 0.67);
  font-size: 13px;
  line-height: 1.95;
  letter-spacing: 0.06em;
}

.section-dark .heading-note {
  color: rgba(248, 245, 235, 0.67);
}

.room-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.room-tab {
  position: relative;
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 3px;
  padding: 18px 25px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.room-tab:last-child {
  border-right: 0;
}

.room-tab::after {
  position: absolute;
  right: 24px;
  bottom: -1px;
  left: 24px;
  height: 3px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.room-tab.is-active,
.room-tab:hover {
  background: var(--paper-2);
}

.room-tab.is-active::after {
  transform: scaleX(1);
}

.room-tab span {
  color: rgba(20, 41, 58, 0.68);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.room-tab strong {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
}

.room-tab small {
  color: var(--accent);
  font-family: "Marcellus", sans-serif;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.room-panels {
  margin-top: 45px;
}

.room-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(310px, 0.78fr);
  min-height: 500px;
  border: 1px solid var(--line);
}

.room-photo {
  min-height: 500px;
}

.room-photo img {
  object-position: center center;
}

.room-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(28px, 4vw, 65px);
  background: rgba(229, 223, 208, 0.42);
}

.room-kicker {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.17em;
}

.room-info h3 {
  margin-top: 20px;
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(24px, 2.6vw, 37px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.room-info > p:not(.room-kicker) {
  max-width: 33ch;
  margin-top: 20px;
  color: rgba(20, 41, 58, 0.72);
  font-size: 13px;
  line-height: 2;
}

.room-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 31px;
  border-top: 1px solid var(--line);
}

.room-specs > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 11px;
  border-bottom: 1px solid var(--line-soft);
}

.room-specs > div:nth-child(odd) {
  margin-right: 18px;
}

.room-specs dt {
  color: rgba(20, 41, 58, 0.6);
  font-size: 11px;
  letter-spacing: 0.09em;
}

.room-specs dd {
  font-size: 12px;
  text-align: right;
}

.text-link {
  width: max-content;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  margin-top: 29px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.11em;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 23px;
  color: var(--ink);
}

.baths-section .section-frame,
.access-section .section-frame {
  background: rgba(30, 58, 78, 0.2);
}

.bath-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 60px;
  margin-top: 65px;
}

.bath-large {
  height: 465px;
}

.bath-large img {
  object-position: center 58%;
}

.bath-large figcaption,
.dining-feature figure figcaption {
  margin-top: 13px;
  color: rgba(248, 245, 235, 0.58);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.table-label,
.menu-heading span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.water-table {
  align-self: end;
}

.water-table dl {
  margin-top: 9px;
  border-top: 1px solid var(--light-line);
}

.water-table dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 17px;
  padding: 15px 0 13px;
  border-bottom: 1px solid var(--light-line);
}

.water-table dt {
  color: rgba(248, 245, 235, 0.55);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.water-table dd {
  color: rgba(248, 245, 235, 0.87);
  font-size: 13px;
  line-height: 1.65;
}

.bath-figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 75px;
}

.bath-figures figure {
  min-width: 0;
}

.bath-figures figure img {
  aspect-ratio: 1.16;
}

.bath-figures figcaption {
  display: grid;
  gap: 3px;
  padding-top: 13px;
  border-top: 1px solid var(--light-line);
}

.bath-figures figcaption span {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
  letter-spacing: 0.12em;
}

.bath-figures figcaption small {
  color: rgba(248, 245, 235, 0.57);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.dining-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(350px, 1.07fr);
  gap: 70px;
  margin-top: 66px;
}

.dining-feature figure img {
  height: 530px;
  object-position: center center;
}

.dining-feature figure figcaption {
  color: rgba(20, 41, 58, 0.57);
}

.menu-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.menu-heading small {
  color: rgba(20, 41, 58, 0.55);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.menu-list ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 12px 0 11px;
  border-bottom: 1px solid var(--line-soft);
}

.menu-list li span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.menu-list li p {
  font-family: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.breakfast-note {
  margin-top: 32px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: rgba(20, 41, 58, 0.69);
  font-size: 12px;
  line-height: 2;
}

.breakfast-note strong {
  margin-right: 9px;
  color: var(--accent);
  font-family: "Zen Old Mincho", serif;
  font-size: 17px;
  font-weight: 500;
}

.day-body {
  padding-bottom: 78px;
}

.day-body h2 {
  margin-bottom: 56px;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin-left: 22px;
  padding-left: 73px;
}

.timeline-rail {
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 17px;
  width: 1px;
  background: var(--light-line);
}

.timeline-rail::before,
.timeline-rail::after {
  position: absolute;
  left: -3px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--accent);
}

.timeline-rail::before {
  top: 0;
}

.timeline-rail::after {
  bottom: 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 28px;
  padding: 0 0 31px;
}

.timeline-item::before {
  position: absolute;
  top: 7px;
  left: -60px;
  width: 9px;
  height: 9px;
  content: "";
  border: 1px solid var(--accent);
  background: var(--ink);
}

.timeline-item time {
  color: #a8ced0;
  font-size: 20px;
  letter-spacing: 0.07em;
}

.timeline-item strong {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.09em;
}

.timeline-item p {
  max-width: 40ch;
  margin-top: 5px;
  color: rgba(248, 245, 235, 0.66);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.day-image {
  height: 320px;
}

.day-image img {
  object-position: center 50%;
}

.price-table-wrap {
  margin-top: 66px;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  text-align: right;
}

.price-table caption {
  padding-bottom: 14px;
  color: rgba(20, 41, 58, 0.55);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-align: left;
}

.price-table th,
.price-table td {
  padding: 18px 17px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.price-table thead th {
  color: var(--accent);
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.price-table thead th:first-child,
.price-table tbody th {
  text-align: left;
}

.price-table tbody th {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.price-table td {
  color: var(--ink-2);
}

.rate-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.rate-notes > div {
  padding: 21px 22px 20px 0;
  border-right: 1px solid var(--line);
}

.rate-notes > div + div {
  padding-left: 22px;
}

.rate-notes > div:last-child {
  border-right: 0;
}

.rate-notes span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.rate-notes p {
  margin-top: 9px;
  color: rgba(20, 41, 58, 0.69);
  font-size: 12px;
  line-height: 1.9;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 88px;
  margin-top: 65px;
}

.access-table {
  border-top: 1px solid var(--light-line);
}

.access-table > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  padding: 17px 0 15px;
  border-bottom: 1px solid var(--light-line);
}

.access-table dt {
  color: rgba(248, 245, 235, 0.55);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.access-table dd {
  color: rgba(248, 245, 235, 0.86);
  font-size: 13px;
  line-height: 1.9;
}

.access-cta {
  align-self: center;
  padding: 40px 42px 42px;
  border: 1px solid var(--light-line);
  background: rgba(243, 239, 228, 0.06);
}

.access-cta p {
  color: rgba(248, 245, 235, 0.7);
  font-size: 11px;
  letter-spacing: 0.13em;
}

.phone {
  display: block;
  margin-top: 14px;
  color: #b7d8d9;
  font-family: "Marcellus", serif;
  font-size: clamp(28px, 4vw, 43px);
  letter-spacing: 0.07em;
  line-height: 1.2;
}

.access-cta small {
  display: block;
  margin-top: 8px;
  color: rgba(248, 245, 235, 0.55);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.cta-button {
  width: max-content;
  display: inline-flex;
  gap: 17px;
  align-items: center;
  margin-top: 29px;
  padding: 14px 19px;
  color: var(--ink);
  background: var(--accent);
  border: 1px solid var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  transition: color 180ms ease, background 180ms ease;
}

.cta-button:hover {
  color: var(--paper-text);
  background: transparent;
}

.site-footer {
  padding: 65px clamp(28px, 7vw, 120px) 28px;
  color: var(--paper-text);
  background: var(--ink-2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--light-line);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-top > p {
  color: rgba(248, 245, 235, 0.68);
  font-family: "Zen Old Mincho", serif;
  font-size: 17px;
  letter-spacing: 0.11em;
}

.footer-back {
  justify-self: end;
  color: #b7d8d9;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.footer-back span {
  margin-left: 11px;
  font-size: 17px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  color: rgba(248, 245, 235, 0.47);
  font-size: 9px;
  letter-spacing: 0.1em;
}

@keyframes hero-ken-burns {
  from { transform: scale(1.01); }
  to { transform: scale(1.065); }
}

@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 920px) {
  :root { --nav-width: 0px; }
  .site-logo,
  .side-nav { display: none; }
  .mobile-header {
    position: relative;
    z-index: 3;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    color: var(--paper-text);
    background: var(--ink);
    pointer-events: auto;
  }
  .mobile-logo { display: inline-flex; align-items: center; gap: 10px; }
  .mobile-logo .logo-mark { width: 32px; height: 32px; font-size: 18px; }
  .mobile-logo strong { font-family: "Zen Old Mincho", serif; font-size: 16px; font-weight: 500; letter-spacing: 0.14em; }
  .menu-toggle { display: grid; justify-items: end; gap: 4px; padding: 4px 0 4px 12px; color: var(--paper-text); background: transparent; border: 0; cursor: pointer; }
  .menu-toggle span { width: 26px; height: 1px; display: block; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle b { margin-top: 3px; font-size: 9px; font-weight: 400; letter-spacing: 0.14em; }
  .menu-toggle.is-open span:first-child { transform: translateY(5px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .mobile-drawer { position: fixed; z-index: 2; inset: 68px 0 0; display: block; visibility: hidden; color: var(--paper-text); background: var(--ink); opacity: 0; transform: translateY(-12px); transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease; pointer-events: none; }
  .mobile-drawer.is-open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .drawer-inner { min-height: calc(100vh - 68px); padding: 42px 28px 32px; border-top: 1px solid var(--light-line); }
  .drawer-label { color: #a8ced0; font-family: "Marcellus", sans-serif; font-size: 10px; letter-spacing: 0.16em; }
  .mobile-drawer nav { display: grid; gap: 0; margin-top: 35px; }
  .mobile-drawer nav a { padding: 14px 0; border-bottom: 1px solid var(--light-line); font-family: "Zen Old Mincho", serif; font-size: 23px; letter-spacing: 0.1em; }
  .drawer-cta { display: inline-flex; gap: 20px; margin-top: 34px; padding: 13px 17px; color: var(--ink); background: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; }
  .hero { min-height: 100svh; height: 100svh; }
  .hero-copy { right: 90px; bottom: 145px; left: 30px; }
  .hero-copy h1 { font-size: clamp(34px, 8vw, 56px); }
  .hero-statement { top: 138px; right: 28px; bottom: 170px; gap: 15px; }
  .hero-statement span:first-child { font-size: 24px; }
  .hero-statement span:last-child { margin-top: 42px; font-size: 10px; }
  .slider-controls { right: 30px; bottom: 46px; left: 30px; }
  .hero-scroll { display: none; }
  .section { padding: 58px 0; }
  .section-frame { width: calc(100% - 24px); grid-template-columns: 50px minmax(0, 1fr); }
  .section-rail { padding: 39px 12px; font-size: 13px; }
  .section-body { padding: 63px 29px 72px; }
  .section-image { margin: 0 29px 64px; height: 260px; }
  .heading-row { display: block; }
  .heading-note { max-width: 460px; margin-top: 24px; }
  .room-tab { min-height: 102px; padding: 14px 12px; }
  .room-tab::after { right: 12px; left: 12px; }
  .room-tab strong { font-size: 24px; }
  .room-panel { grid-template-columns: 1fr; }
  .room-photo { min-height: 340px; height: 340px; }
  .room-info { padding: 39px 29px 42px; }
  .bath-intro-grid,
  .dining-feature,
  .access-grid { grid-template-columns: 1fr; gap: 42px; }
  .bath-large { height: 360px; }
  .bath-figures { gap: 12px; }
  .dining-feature figure img { height: 390px; }
  .access-grid { gap: 45px; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top > p { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .hero-copy { right: 66px; bottom: 132px; left: 23px; }
  .hero-eyebrow { margin-bottom: 16px; font-size: 9px; letter-spacing: 0.13em; }
  .hero-copy h1 { font-size: 35px; line-height: 1.32; letter-spacing: 0.03em; }
  .hero-lead { max-width: 255px; margin-top: 18px; font-size: 12px; line-height: 1.9; }
  .hero-meta { display: grid; gap: 4px; margin-top: 17px; font-size: 10px; }
  .hero-meta span + span::before { display: none; }
  .hero-statement { top: 127px; right: 13px; bottom: 232px; gap: 8px; }
  .hero-statement span:first-child { font-size: 18px; }
  .hero-statement span:last-child { margin-top: 27px; font-size: 8px; }
  .slider-controls { right: 23px; bottom: 37px; left: 23px; gap: 12px; }
  .slider-dot { width: 22px; }
  .slider-dot.is-active { width: 35px; }
  .slider-pause { font-size: 9px; }
  .progress-line { width: 90px; }
  .section { padding: 42px 0; }
  .section-frame { width: calc(100% - 14px); grid-template-columns: 43px minmax(0, 1fr); }
  .section-frame::before { inset: 9px; }
  .section-rail { padding: 27px 8px; font-size: 11px; letter-spacing: 0.12em; }
  .section-index { font-size: 10px; }
  .section-body { padding: 49px 18px 58px; }
  .section-body h2 { font-size: 32px; line-height: 1.4; }
  .section-kicker { margin-bottom: 14px; font-size: 8px; letter-spacing: 0.12em; }
  .pull-statement { margin-top: 40px; font-size: 23px; }
  .about-copy { display: block; margin-top: 32px; font-size: 12px; line-height: 2.05; }
  .about-copy p + p { margin-top: 19px; }
  .facts-row { margin-top: 42px; }
  .facts-row > div { padding: 17px 8px 16px; }
  .facts-row > div:first-child { padding-left: 0; }
  .facts-row strong { font-size: 24px; }
  .facts-row span { font-size: 9px; }
  .section-image { margin: 0 18px 50px; height: 210px; }
  .room-tabs { margin-top: 39px; }
  .room-tab { min-height: 90px; padding: 11px 7px; }
  .room-tab span { font-size: 8px; letter-spacing: 0.05em; }
  .room-tab strong { font-size: 20px; letter-spacing: 0.06em; }
  .room-tab small { font-size: 7px; }
  .room-tab::after { right: 7px; left: 7px; }
  .room-panels { margin-top: 28px; }
  .room-photo { min-height: 235px; height: 235px; }
  .room-info { padding: 29px 20px 32px; }
  .room-info h3 { margin-top: 12px; font-size: 25px; }
  .room-info > p:not(.room-kicker) { margin-top: 14px; font-size: 12px; }
  .room-specs { margin-top: 22px; }
  .room-specs > div { padding: 9px 0; }
  .room-specs dt,
  .room-specs dd { font-size: 10px; }
  .text-link { margin-top: 22px; font-size: 10px; }
  .bath-intro-grid,
  .dining-feature,
  .access-grid { gap: 30px; margin-top: 43px; }
  .bath-large { height: 260px; }
  .bath-large figcaption,
  .dining-feature figure figcaption { font-size: 8px; }
  .water-table dl > div { grid-template-columns: 72px 1fr; padding: 11px 0; }
  .water-table dt,
  .water-table dd { font-size: 10px; }
  .bath-figures { grid-template-columns: 1fr; gap: 28px; margin-top: 43px; }
  .bath-figures figure img { aspect-ratio: 1.45; }
  .bath-figures figcaption { padding-top: 9px; }
  .bath-figures figcaption span { font-size: 18px; }
  .bath-figures figcaption small { font-size: 9px; }
  .dining-feature figure img { height: 245px; }
  .menu-heading small { font-size: 8px; }
  .menu-list li { grid-template-columns: 52px 1fr; gap: 8px; padding: 10px 0; }
  .menu-list li span { font-size: 9px; }
  .menu-list li p { font-size: 12px; }
  .breakfast-note { margin-top: 23px; font-size: 10px; }
  .day-body { padding-bottom: 48px; }
  .timeline { margin-left: 0; padding-left: 45px; }
  .timeline-rail { left: 10px; }
  .timeline-item { grid-template-columns: 1fr; gap: 2px; padding-bottom: 27px; }
  .timeline-item::before { left: -39px; }
  .timeline-item time { font-size: 16px; }
  .timeline-item strong { font-size: 17px; }
  .timeline-item p { font-size: 10px; }
  .day-image { height: 200px; }
  .price-table-wrap { margin-top: 42px; }
  .price-table th,
  .price-table td { padding: 13px 10px; font-size: 10px; }
  .price-table tbody th { font-size: 12px; }
  .rate-notes { display: block; margin-top: 33px; }
  .rate-notes > div,
  .rate-notes > div + div { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .rate-notes > div:last-child { border-bottom: 0; }
  .rate-notes p { margin-top: 5px; font-size: 10px; }
  .access-table > div { grid-template-columns: 78px 1fr; gap: 12px; padding: 12px 0; }
  .access-table dt,
  .access-table dd { font-size: 10px; }
  .access-cta { padding: 27px 20px 29px; }
  .access-cta p { font-size: 9px; }
  .phone { font-size: 29px; }
  .access-cta small { font-size: 8px; }
  .cta-button { width: 100%; justify-content: space-between; margin-top: 23px; padding: 12px 14px; font-size: 10px; }
  .site-footer { padding: 42px 22px 21px; }
  .footer-top { display: block; padding-bottom: 33px; }
  .footer-back { display: block; margin-top: 28px; }
  .footer-bottom { display: grid; gap: 6px; padding-top: 16px; font-size: 8px; }
}

.room-panel[hidden] {
  display: none;
}
