:root {
  --brown: #715321;
  --brown-dark: #4f3818;
  --brown-soft: #8a6a38;
  --taupe: #bbae9f;
  --taupe-light: #d8cec5;
  --cream: #f4efe8;
  --cream-2: #ebe2d9;
  --paper: #fbf8f3;
  --ink: #24201b;
  --muted: #70675f;
  --line: rgba(92, 69, 39, 0.18);
  --line-strong: rgba(92, 69, 39, 0.32);
  --white: #fffdf9;
  --success: #3f6f58;
  --danger: #a34747;
  --shadow-sm: 0 14px 40px rgba(67, 49, 27, 0.1);
  --shadow-lg: 0 38px 100px rgba(67, 49, 27, 0.18);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1240px;
  --serif: "Noto Serif TC", "Songti TC", "PMingLiU", Georgia, serif;
  --sans: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(113, 83, 33, 0.22);
}

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

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

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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.015em;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(88px, 10vw, 154px);
}

.surface-section {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.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;
}

.is-hidden {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--brown-dark);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 70;
  color: rgba(255, 253, 249, 0.9);
  background: var(--brown-dark);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 243, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(251, 248, 243, 0.97);
  border-color: var(--line);
  box-shadow: 0 8px 34px rgba(59, 42, 21, 0.06);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(86, 62, 27, 0.12);
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.06rem;
  letter-spacing: 0.15em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--brown);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: #4f473f;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--brown);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 20px;
  border: 1px solid var(--brown);
  border-radius: 999px;
  color: var(--white);
  background: var(--brown);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--brown-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.eyebrow,
.section-label,
.card-kicker {
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--brown);
  box-shadow: 0 15px 32px rgba(113, 83, 33, 0.22);
}

.btn-primary:hover {
  background: var(--brown-dark);
  box-shadow: 0 18px 38px rgba(79, 56, 24, 0.28);
}

.btn-secondary {
  color: var(--brown-dark);
  border-color: var(--line-strong);
  background: rgba(255, 253, 249, 0.45);
}

.btn-secondary:hover {
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(187, 174, 159, 0.22), transparent 32%),
    linear-gradient(150deg, #fbf8f3 0%, #f2ebe3 56%, #e8ded4 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0.2px);
}

.hero-orb-one {
  width: 440px;
  height: 440px;
  right: -180px;
  top: -140px;
  border: 1px solid rgba(113, 83, 33, 0.18);
}

.hero-orb-two {
  width: 280px;
  height: 280px;
  left: -160px;
  bottom: 90px;
  background: rgba(113, 83, 33, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.hero-copy {
  padding-bottom: 62px;
}

.hero-copy h1 {
  max-width: 850px;
  margin: 20px 0 28px;
  color: var(--brown-dark);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.line-official-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.line-official-button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.line-official-button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.line-official-button img {
  width: auto;
  max-width: none;
}

.hero-art {
  position: relative;
  align-self: stretch;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 52% 48% 43% 57% / 52% 42% 58% 48%;
}

.hero-art::before {
  width: 88%;
  height: 76%;
  background: var(--brown);
  transform: rotate(-7deg);
  opacity: 0.94;
}

.hero-art::after {
  width: 72%;
  height: 62%;
  right: -2%;
  bottom: 8%;
  border: 1px solid rgba(255, 253, 249, 0.5);
  transform: rotate(9deg);
}

.hero-art-frame {
  position: relative;
  z-index: 1;
  width: min(92%, 570px);
  padding: clamp(18px, 3vw, 32px);
  border-radius: 46% 46% 38px 38px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.hero-art-frame img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 45% 45% 24px 24px;
  object-fit: cover;
}

.hero-art-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 8px 4px;
  color: var(--brown);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.hero-facts > div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 20px clamp(14px, 2vw, 30px);
  border-right: 1px solid var(--line);
}

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

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

.hero-facts span {
  color: var(--brown);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 600;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: clamp(32px, 8vw, 120px);
}

.section-label {
  padding-top: 12px;
}

.editorial-copy {
  max-width: 920px;
}

.display-quote {
  margin-bottom: 32px;
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1.45;
}

.editorial-copy > p:last-child {
  max-width: 720px;
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading h2 {
  margin: 10px 0 18px;
  color: var(--brown-dark);
}

.split-heading {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.split-heading h2 {
  margin-bottom: 0;
}

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

.stay-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.64);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stay-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(113, 83, 33, 0.07);
}

.stay-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.stay-card-featured {
  color: var(--white);
  background: var(--brown);
  border-color: var(--brown);
}

.stay-card-featured p,
.stay-card-featured .card-kicker,
.stay-card-featured .card-note {
  color: rgba(255, 253, 249, 0.78);
}

.stay-card-featured h3,
.stay-card-featured a,
.stay-card-featured .card-index {
  color: var(--white);
}

.stay-card-featured .stay-icon {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.card-index {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.stay-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--brown);
}

.stay-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stay-card h3 {
  margin: 8px 0 16px;
  color: var(--brown-dark);
}

.stay-card p {
  margin-bottom: 20px;
}

.stay-card .card-note {
  font-size: 0.84rem;
}

.stay-card > a {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-bottom: 1px solid currentColor;
}

.amenities-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.amenities-intro {
  position: sticky;
  top: 140px;
}

.amenities-intro h2 {
  margin: 12px 0 22px;
  color: var(--brown-dark);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brown);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.amenity-list {
  border-top: 1px solid var(--line-strong);
}

.amenity-list > div {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}

.amenity-list span {
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.amenity-list strong {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 600;
}

.amenity-list small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

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

.policy-card {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 249, 0.62);
}

.policy-card span {
  color: var(--brown);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.policy-card h3 {
  margin: 36px 0 15px;
  color: var(--brown-dark);
}

.policy-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(54px, 9vw, 130px);
}

.care-visual {
  position: relative;
}

.care-visual::before {
  content: "";
  position: absolute;
  inset: 9% -8% -9% 12%;
  border-radius: 50% 50% 38% 62%;
  background: var(--cream-2);
}

.care-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.care-copy h2 {
  margin: 12px 0 38px;
  color: var(--brown-dark);
}

.care-points {
  border-top: 1px solid var(--line-strong);
}

.care-points > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.care-points strong {
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.care-points p {
  margin-bottom: 0;
}

.inquiry {
  color: var(--white);
  background: var(--brown-dark);
}

.inquiry .eyebrow {
  color: #d8c09d;
}

.inquiry h2 {
  color: var(--white);
}

.inquiry p {
  color: rgba(255, 253, 249, 0.7);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.inquiry-copy {
  position: sticky;
  top: 140px;
}

.inquiry-copy > h2 {
  margin: 12px 0 20px;
}

.contact-panel {
  margin-top: 38px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}

.contact-label {
  display: block;
  margin-bottom: 5px;
  color: #d8c09d;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-panel strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.3rem;
}

.contact-panel p {
  margin-bottom: 18px;
  font-size: 0.88rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
}

.contact-card span {
  color: #d8c09d;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.site-footer {
  color: rgba(255, 253, 249, 0.72);
  background: #2d2112;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.72fr);
  gap: 54px;
  padding-block: 70px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy small {
  color: var(--white);
}

.footer-brand-block > p {
  max-width: 340px;
  margin: 20px 0 0;
  color: rgba(255, 253, 249, 0.55);
  font-size: 0.88rem;
}

.footer-grid > div:not(.footer-brand-block) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
}

.footer-grid > div > strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.floating-line {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  min-width: 138px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border-radius: 999px;
  color: white;
  background: #06c755;
  box-shadow: 0 15px 40px rgba(6, 199, 85, 0.28);
  transition: transform 0.2s ease;
}

.floating-line:hover {
  transform: translateY(-3px);
}

.floating-line span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.floating-line strong {
  font-size: 0.82rem;
}

.noscript {
  position: fixed;
  inset: auto 0 0;
  z-index: 100;
  padding: 12px;
  color: white;
  background: var(--danger);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

/* Policy page */
.policy-page {
  background: var(--paper);
}

.policy-hero {
  padding: clamp(76px, 9vw, 130px) 0 clamp(70px, 8vw, 110px);
  background: linear-gradient(145deg, var(--cream) 0%, #e8ddd3 100%);
  border-bottom: 1px solid var(--line);
}

.policy-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
}

.policy-hero h1 {
  margin: 12px 0 24px;
  color: var(--brown-dark);
}

.policy-hero p:not(.eyebrow) {
  max-width: 700px;
  font-size: 1.05rem;
}

.policy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.policy-seal {
  justify-self: end;
  width: min(100%, 360px);
}

.policy-seal img {
  width: 100%;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.policy-toc {
  position: sticky;
  top: 124px;
  display: flex;
  flex-direction: column;
  padding: 26px 0;
  border-block: 1px solid var(--line-strong);
}

.policy-toc span {
  margin-bottom: 18px;
  color: var(--brown);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.policy-toc a {
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.policy-toc a:hover {
  color: var(--brown);
}

.policy-sections {
  min-width: 0;
}

.policy-group {
  margin-bottom: 100px;
  scroll-margin-top: 120px;
}

.policy-group-heading {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-strong);
}

.policy-group-heading > span {
  padding-top: 8px;
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.policy-group-heading p {
  margin-bottom: 3px;
  color: var(--brown);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.policy-group-heading h2 {
  margin: 0;
  color: var(--brown-dark);
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.policy-item {
  margin-bottom: 18px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.policy-item-accent {
  background: var(--cream);
}

.policy-item h3 {
  margin-bottom: 22px;
  color: var(--brown-dark);
  font-size: 1.35rem;
}

.policy-item h3 small {
  display: block;
  margin-top: 5px;
  color: var(--brown);
  font-family: var(--sans);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.bilingual-grid > div + div {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.bilingual-grid p,
.bilingual-grid li {
  color: #625b54;
  font-size: 0.93rem;
}

.bilingual-grid [lang="en"] p,
.bilingual-grid [lang="en"] li {
  color: #7a7168;
  font-size: 0.86rem;
}

.bilingual-grid ul {
  margin: 0;
  padding-left: 1.25em;
}

.bilingual-grid li + li {
  margin-top: 8px;
}

.policy-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--brown);
}

.policy-final-cta .eyebrow,
.policy-final-cta p {
  color: rgba(255, 253, 249, 0.72);
}

.policy-final-cta h2 {
  margin: 8px 0 8px;
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.policy-final-cta p:last-child {
  margin-bottom: 0;
}

.policy-final-cta .btn-primary {
  flex: 0 0 auto;
  color: var(--brown-dark);
  background: var(--white);
  box-shadow: none;
}

.policy-footer-bottom > div {
  display: flex;
  gap: 20px;
}

/* Booking and error pages */
.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: linear-gradient(145deg, var(--cream), #e5d9ce);
}

.simple-card {
  width: min(100%, 760px);
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--shadow-lg);
  text-align: center;
  backdrop-filter: blur(12px);
}

.simple-card img {
  width: 132px;
  height: 132px;
  margin: 0 auto 30px;
  border-radius: 50%;
}

.simple-card h1 {
  margin-bottom: 18px;
  color: var(--brown-dark);
  font-size: clamp(2.3rem, 6vw, 4.6rem);
}

.simple-card p {
  max-width: 600px;
  margin-inline: auto;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 0.88fr;
    gap: 50px;
  }

  .hero-art {
    min-height: 560px;
  }

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

  .stay-card:last-child {
    grid-column: 1 / -1;
    min-height: 390px;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 88px;
  }

  .announcement-inner {
    min-height: 44px;
    justify-content: space-between;
    text-align: left;
  }

  .announcement-inner span {
    max-width: 74%;
  }

  .nav-shell {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 248, 243, 0.98);
    box-shadow: 0 20px 38px rgba(53, 37, 18, 0.08);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 13px 4px !important;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
    border-bottom: 0 !important;
    text-align: center;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-grid,
  .amenities-layout,
  .care-grid,
  .inquiry-grid,
  .policy-hero-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .hero-art {
    min-height: auto;
    padding: 26px 0 72px;
  }

  .hero-art-frame {
    width: min(86%, 540px);
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-facts > div:nth-child(2) {
    border-right: 0;
  }

  .hero-facts > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .hero-facts > div:first-child,
  .hero-facts > div:nth-child(3) {
    padding-left: 0;
  }

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

  .section-label {
    padding-top: 0;
  }

  .amenities-intro,
  .inquiry-copy,
  .policy-toc {
    position: static;
  }

  .amenity-list > div {
    grid-template-columns: 50px 1fr;
  }

  .amenity-list small {
    grid-column: 2;
    text-align: left;
  }

  .care-visual {
    width: min(78%, 500px);
    margin-inline: auto;
  }

  .policy-toc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
    margin-bottom: 38px;
  }

  .policy-toc span {
    grid-column: 1 / -1;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-pad {
    padding-block: 76px;
  }

  .announcement {
    font-size: 0.68rem;
  }

  .announcement-inner {
    gap: 10px;
  }

  .announcement-inner span {
    max-width: 72%;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 15vw, 4.6rem);
  }

  .hero-actions,
  .policy-hero-actions,
  .simple-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .line-official-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art::before {
    width: 96%;
  }

  .hero-art-frame {
    width: 90%;
    border-radius: 42% 42% 28px 28px;
  }

  .hero-art-caption {
    flex-direction: column;
    gap: 2px;
  }

  .hero-facts > div {
    min-height: 92px;
    padding-right: 8px;
  }

  .stay-grid,
  .policy-grid,
  .bilingual-grid {
    grid-template-columns: 1fr;
  }

  .stay-card:last-child {
    grid-column: auto;
  }

  .stay-card {
    min-height: 420px;
  }

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

  .policy-card {
    min-height: 220px;
  }

  .care-points > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }


  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand-block,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom,
  .policy-final-cta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
  }

  .floating-line {
    right: 14px;
    bottom: 14px;
    min-width: auto;
  }

  .floating-line span {
    display: none;
  }

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

  .policy-seal {
    justify-self: center;
    width: min(68%, 300px);
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

  .policy-group {
    margin-bottom: 72px;
  }

  .policy-group-heading {
    gap: 14px;
  }

  .policy-item {
    padding: 24px 20px;
  }

  .bilingual-grid > div + div {
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .policy-final-cta .btn {
    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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
