:root {
  --green: #2f5d62;
  --green-deep: #183c40;
  --clay: #b07a5b;
  --paper: #eae3d2;
  --paper-light: #f4f0e7;
  --ink: #2a2620;
  --muted: #766f65;
  --line: rgba(42, 38, 32, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --pad: clamp(24px, 5vw, 80px);
  --nav-height: 88px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: white;
  color: var(--ink);
  transform: translateY(-150%);
}

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

.section-pad {
  padding: clamp(84px, 11vw, 168px) var(--pad);
}

.eyebrow,
.room-kicker,
.room-facts,
.fine-print,
.image-note,
.signature,
.guide-next,
.prototype-note {
  font-family: var(--sans);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #e5c7b3;
}

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

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(54px, 8vw, 126px);
}

h2 {
  font-size: clamp(44px, 6vw, 90px);
}

h3 {
  font-size: clamp(30px, 3.3vw, 54px);
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(155px, 220px) 1fr auto;
  align-items: center;
  gap: 36px;
  height: var(--nav-height);
  padding: 0 var(--pad);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.site-nav--overlay {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.site-nav--solid {
  position: relative;
  z-index: 10;
  background: var(--paper-light);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.nav-brand img {
  width: 100%;
  max-width: 205px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.2vw, 38px);
}

.nav-links a,
.footer-links a {
  position: relative;
}

.nav-links a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.nav-links .is-current::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  color: white;
  background: var(--clay);
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-book:hover,
.nav-book:focus-visible {
  background: #966348;
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--green-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 44%;
  animation: hero-scale 2.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 20, 19, 0.78) 0%, rgba(15, 20, 19, 0.2) 54%, rgba(15, 20, 19, 0.08) 100%),
    linear-gradient(0deg, rgba(15, 20, 19, 0.72) 0%, transparent 46%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  bottom: clamp(116px, 15vh, 180px);
  left: var(--pad);
  width: min(720px, calc(100% - 48px));
  animation: hero-in 900ms 160ms ease both;
}

.hero-wordmark {
  width: clamp(250px, 33vw, 520px);
  margin: 0 0 clamp(34px, 5vh, 62px);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(52px, 7.4vw, 116px);
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 34px;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.book-actions,
.guide-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--clay {
  color: white;
  background: var(--clay);
}

.button--clay:hover,
.button--clay:focus-visible {
  background: #966348;
}

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

.button--paper:hover,
.button--paper:focus-visible {
  background: white;
}

.button--dark {
  color: white;
  background: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--green);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  transition: gap 180ms ease, color 180ms ease;
}

.text-action:hover,
.text-action:focus-visible {
  gap: 16px;
  color: var(--clay);
}

.text-action--light {
  color: white;
}

.hero-proof {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  left: var(--pad);
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 92px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

.welcome {
  background: var(--paper-light);
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 10vw;
  align-items: end;
}

.welcome h2 {
  margin-bottom: 0;
}

.welcome-copy {
  max-width: 510px;
}

.welcome-copy p:last-of-type {
  margin-bottom: 34px;
}

.views {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: clamp(52px, 7vw, 120px);
  align-items: start;
  background: var(--paper);
}

.views-media {
  position: sticky;
  top: 28px;
}

.views-media img {
  height: min(73vh, 860px);
  object-fit: cover;
}

.image-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.views-copy {
  padding: clamp(40px, 5vw, 92px) 0 6vh;
}

.views-copy h2 {
  margin-bottom: 34px;
}

.lede {
  max-width: 520px;
  margin-bottom: 48px;
  font-size: 21px;
}

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

.view-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.view-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.view-list span {
  color: var(--clay);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.view-list p {
  margin: 0;
}

.fine-print {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.featured {
  background: var(--paper-light);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(60px, 9vw, 130px);
}

.section-head h2 {
  margin-bottom: 0;
}

.feature-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: end;
}

.feature-image {
  overflow: hidden;
}

.feature-image img,
.feature-small img,
.room-photo img,
.room-tile img {
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}

.feature-image:hover img,
.feature-image:focus-visible img,
.feature-small a:hover img,
.feature-small a:focus-visible img,
.room-photo:hover img,
.room-tile:hover img {
  transform: scale(1.025);
}

.feature-image img {
  aspect-ratio: 1.42;
  object-fit: cover;
}

.room-kicker {
  margin: 24px 0 14px;
  color: var(--clay);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.feature-copy h3 {
  margin-bottom: 28px;
}

.feature-copy > p:not(.room-kicker, .room-facts) {
  max-width: 420px;
}

.room-facts {
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 8vw, 140px);
  margin-top: clamp(100px, 14vw, 200px);
}

.feature-small {
  max-width: 640px;
}

.feature-small--lower {
  margin-top: clamp(72px, 10vw, 160px);
}

.feature-small a {
  display: block;
  overflow: hidden;
}

.feature-small img {
  aspect-ratio: 0.96;
  object-fit: cover;
}

.feature-small h3 {
  margin-bottom: 20px;
}

.feature-small p:last-child {
  max-width: 500px;
}

.about {
  display: grid;
  grid-template-columns: minmax(400px, 0.98fr) minmax(330px, 0.72fr);
  gap: clamp(54px, 10vw, 150px);
  align-items: center;
  color: white;
  background: var(--green);
}

.about-collage {
  position: relative;
  min-height: min(78vw, 850px);
}

.about-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 78%;
  object-fit: cover;
}

.about-light {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 54%;
  object-fit: cover;
  box-shadow: 0 0 0 12px var(--green);
}

.about-copy h2 {
  margin-bottom: 36px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.84);
}

.signature {
  display: block;
  margin-top: 42px;
  color: #e5c7b3;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide {
  position: relative;
  min-height: min(900px, 88vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.guide-image,
.guide-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.guide-image {
  object-fit: cover;
}

.guide-shade {
  background: linear-gradient(90deg, rgba(23, 28, 28, 0.85), rgba(23, 28, 28, 0.18) 70%), linear-gradient(0deg, rgba(23, 28, 28, 0.65), transparent 60%);
}

.guide-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 48px));
  margin: 0 var(--pad) clamp(70px, 9vw, 130px);
}

.guide-content h2 {
  margin-bottom: 28px;
}

.guide-content > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 36px;
  font-size: 20px;
}

.guide-next {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.arrival {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: clamp(56px, 10vw, 160px);
  color: white;
  background: var(--green-deep);
}

.arrival h2 {
  margin-bottom: 0;
}

.arrival-details > p {
  max-width: 540px;
  margin-bottom: 52px;
  font-size: 21px;
}

.arrival-links a {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 180ms ease, padding-left 180ms ease;
}

.arrival-links a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.arrival-links a:hover,
.arrival-links a:focus-visible {
  padding-left: 10px;
  color: #e5c7b3;
}

.arrival-links span,
.arrival-links small {
  font-family: var(--sans);
}

.arrival-links span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arrival-links small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.book {
  text-align: center;
  background: var(--paper);
}

.book h2 {
  margin-bottom: 30px;
}

.book > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 34px;
}

.book-actions {
  justify-content: center;
}

.footer {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) 1fr 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 58px var(--pad) 34px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.6;
}

.footer-brand img {
  max-width: 210px;
}

.footer address {
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.prototype-note {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Stay page */

.stay-page {
  background: var(--paper-light);
}

.stay-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
  min-height: calc(100svh - var(--nav-height));
  overflow: hidden;
}

.stay-hero-copy h1 {
  margin-bottom: 34px;
  font-size: clamp(54px, 7vw, 106px);
}

.stay-hero-copy > p:last-child {
  max-width: 580px;
  color: var(--muted);
  font-size: 19px;
}

.stay-hero-media {
  position: relative;
  min-height: min(70vh, 780px);
}

.stay-hero-main {
  position: absolute;
  inset: 0 0 0 10%;
  width: 90%;
  height: 92%;
  object-fit: cover;
}

.stay-hero-inset {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  height: 38%;
  object-fit: cover;
  box-shadow: 0 0 0 12px var(--paper-light);
}

.room-index {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  overflow-x: auto;
  padding: 18px var(--pad);
  color: white;
  background: rgba(24, 60, 64, 0.96);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.room-index span {
  margin-right: auto;
  color: #e5c7b3;
  white-space: nowrap;
}

.room-index a {
  white-space: nowrap;
}

.room-group {
  scroll-margin-top: 54px;
}

.room-group--tint {
  background: var(--paper);
}

.room-group--dark {
  color: white;
  background: var(--green);
}

.group-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr) minmax(250px, 0.45fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(76px, 11vw, 160px);
}

.group-intro .eyebrow {
  align-self: start;
}

.group-intro h2,
.group-intro > p:last-child {
  margin-bottom: 0;
}

.group-intro > p:last-child {
  color: var(--muted);
}

.room-group--dark .group-intro > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.room-list {
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 14vw, 210px);
}

.room-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: center;
}

.room-row--reverse .room-photo {
  order: 2;
}

.room-row--reverse .room-info {
  order: 1;
}

.room-photo {
  overflow: hidden;
}

.room-photo img {
  aspect-ratio: 1.38;
  object-fit: cover;
}

.room-number {
  margin: 0 0 50px;
  color: var(--clay);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.room-info .room-kicker {
  margin-top: 0;
}

.room-info h3 {
  margin-bottom: 24px;
}

.room-info > p:not(.room-number, .room-kicker, .room-description) {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.room-group--dark .room-info > p:not(.room-number, .room-kicker, .room-description) {
  color: rgba(255, 255, 255, 0.62);
}

.room-description {
  max-width: 480px;
  margin: 28px 0 34px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(58px, 8vw, 120px) clamp(32px, 5vw, 80px);
}

.room-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 64px);
}

.room-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 8vw, 140px);
}

.room-tile {
  overflow: hidden;
}

.room-tile img {
  aspect-ratio: 1.25;
  object-fit: cover;
}

.room-tile--large img {
  aspect-ratio: 1.05;
}

.room-tile--lower {
  margin-top: clamp(70px, 8vw, 120px);
}

.room-tile h3 {
  max-width: 660px;
  margin-bottom: 16px;
  font-size: clamp(27px, 2.7vw, 44px);
  line-height: 1.08;
}

.room-tile > p:not(.room-kicker, .tile-note) {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tile-note {
  max-width: 430px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.availability-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(52px, 9vw, 150px);
  align-items: end;
  background: var(--paper);
}

.availability-copy h2 {
  margin-bottom: 28px;
}

.availability-copy > p:last-child {
  max-width: 670px;
}

.availability-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-scale {
  from { opacity: 0.7; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: section-reveal linear both;
    animation-range: entry 8% cover 32%;
    animation-timeline: view();
  }

  @keyframes section-reveal {
    from { opacity: 0; transform: translateY(36px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1120px) {
  .site-nav {
    grid-template-columns: minmax(140px, 190px) 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    font-family: var(--sans);
  }

  .mobile-menu summary {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 38px;
    right: 0;
    display: flex;
    width: min(300px, calc(100vw - 48px));
    padding: 20px;
    flex-direction: column;
    gap: 16px;
    color: var(--ink);
    background: var(--paper-light);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  }

  .nav-book {
    grid-column: 3;
  }

  .feature-lead,
  .views,
  .about,
  .arrival,
  .stay-hero,
  .room-row {
    gap: 52px;
  }

  .group-intro {
    grid-template-columns: 1fr 2fr;
  }

  .group-intro > p:last-child {
    grid-column: 2;
  }

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

@media (max-width: 760px) {
  :root {
    --pad: 22px;
    --nav-height: 72px;
  }

  body {
    font-size: 16px;
  }

  .section-pad {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  h2 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .site-nav {
    grid-template-columns: minmax(126px, 158px) 1fr;
    gap: 18px;
    height: var(--nav-height);
  }

  .nav-book {
    display: none;
  }

  .mobile-menu {
    grid-column: 2;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 44% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(15, 20, 19, 0.88) 0%, rgba(15, 20, 19, 0.3) 72%, rgba(15, 20, 19, 0.36) 100%);
  }

  .hero-content {
    bottom: 92px;
  }

  .hero-wordmark {
    display: none;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 43px;
  }

  .hero-copy {
    max-width: 340px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding: 0 19px;
  }

  .hero-proof {
    right: 22px;
    bottom: 20px;
    left: 22px;
    justify-content: flex-start;
    gap: 8px 20px;
    flex-wrap: wrap;
    font-size: 8px;
  }

  .scroll-cue {
    display: none;
  }

  .welcome-grid,
  .views,
  .feature-lead,
  .feature-pair,
  .about,
  .arrival,
  .stay-hero,
  .group-intro,
  .room-row,
  .room-grid,
  .room-grid--three,
  .room-grid--two,
  .availability-note,
  .footer {
    grid-template-columns: 1fr;
  }

  .welcome-grid {
    gap: 46px;
  }

  .views {
    gap: 40px;
  }

  .views-media {
    position: relative;
    top: auto;
  }

  .views-media img {
    height: 58vh;
    min-height: 460px;
  }

  .views-copy {
    padding: 12px 0 0;
  }

  .view-list li {
    grid-template-columns: 74px 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 64px;
  }

  .feature-lead {
    gap: 34px;
  }

  .feature-pair {
    gap: 76px;
    margin-top: 96px;
  }

  .feature-small--lower,
  .room-tile--lower {
    margin-top: 0;
  }

  .about-collage {
    min-height: 640px;
  }

  .about-art {
    width: 76%;
    height: 76%;
  }

  .about-light {
    width: 56%;
    height: 48%;
  }

  .guide {
    min-height: 80vh;
  }

  .guide-image {
    object-position: 64% center;
  }

  .guide-content {
    margin-bottom: 56px;
  }

  .arrival {
    gap: 52px;
  }

  .arrival-links a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer {
    gap: 18px;
  }

  .footer-links {
    margin-top: 20px;
  }

  .stay-hero {
    position: relative;
    display: block;
    min-height: calc(100svh - var(--nav-height));
    padding: 0;
    overflow: hidden;
    color: white;
    background: var(--green-deep);
  }

  .stay-hero-copy {
    position: absolute;
    right: 22px;
    bottom: 42px;
    left: 22px;
    z-index: 2;
  }

  .stay-hero-copy h1 {
    margin-bottom: 22px;
    font-size: 47px;
  }

  .stay-hero-copy > p:last-child {
    max-width: 410px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.48;
  }

  .stay-hero-media {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .stay-hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20, 28, 27, 0.92) 0%, rgba(20, 28, 27, 0.22) 72%, rgba(20, 28, 27, 0.1) 100%);
    content: "";
  }

  .stay-hero-main {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .stay-hero-inset {
    display: none;
  }

  .room-index {
    gap: 24px;
  }

  .room-index span {
    display: none;
  }

  .group-intro,
  .group-intro > p:last-child {
    grid-column: auto;
  }

  .group-intro {
    gap: 28px;
    margin-bottom: 72px;
  }

  .room-list {
    gap: 88px;
  }

  .room-row {
    gap: 30px;
  }

  .room-row--reverse .room-photo,
  .room-row--reverse .room-info {
    order: initial;
  }

  .room-number {
    margin-bottom: 26px;
  }

  .room-grid,
  .room-grid--three,
  .room-grid--two {
    gap: 70px;
  }

  .availability-note {
    gap: 46px;
  }
}

/* V2.1 structure updates */

.home-stay {
  background: var(--paper);
}

.home-stay-inner {
  max-width: var(--v2-max);
  margin: 0 auto;
}

.home-stay-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.home-stay-heading h2,
.home-stay-heading > p:last-child {
  margin-bottom: 0;
}

.home-stay-heading h2 {
  font-size: clamp(42px, 5.5vw, 82px);
}

.home-stay-heading > p:last-child {
  color: var(--muted);
}

.home-stay-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}

.home-stay-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.62fr);
  min-width: 0;
  overflow: hidden;
  background: var(--paper-light);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.home-stay-choice--suite {
  color: white;
  background: var(--green);
}

.home-stay-choice:hover,
.home-stay-choice:focus-visible {
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(24, 60, 64, 0.14);
}

.home-stay-choice-media {
  order: 2;
  overflow: hidden;
}

.home-stay-choice-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-stay-choice:hover .home-stay-choice-media img,
.home-stay-choice:focus-visible .home-stay-choice-media img {
  transform: scale(1.035);
}

.home-stay-choice-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 58px);
}

.home-stay-choice-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(31px, 4vw, 60px);
}

.home-stay-choice-copy p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.home-stay-choice--suite .home-stay-choice-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.home-stay-choice--suite .eyebrow {
  color: var(--v2-clay-light);
}

.stay-intro {
  background: var(--paper-light);
}

.stay-intro-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
}

.stay-intro-inner h1,
.stay-intro-inner > p:last-child {
  margin-bottom: 0;
}

.stay-intro-inner h1 {
  font-size: clamp(48px, 6.5vw, 96px);
}

.stay-intro-inner > p:last-child {
  color: var(--muted);
}

.room-variation-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 0.86fr);
  gap: clamp(42px, 9vw, 150px);
  align-items: end;
  color: white;
  background: var(--green);
}

.room-variation-note h2 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(40px, 5.5vw, 82px);
}

.room-variation-note > div:last-child > p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.room-group-marker {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--v2-max);
  margin: 0 auto clamp(30px, 4vw, 52px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--clay);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-group-marker span:last-child {
  color: var(--muted);
  font-weight: 400;
  text-align: right;
}

.directory-section--dark .room-group-marker {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--v2-clay-light);
}

.directory-section--dark .room-group-marker span:last-child {
  color: rgba(255, 255, 255, 0.6);
}

.directory-section[id] {
  scroll-margin-top: 24px;
}

.room-card-gallery {
  position: relative;
  overflow: hidden;
  background: var(--v2-green-soft);
}

.room-card-gallery-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.room-card-gallery-track::-webkit-scrollbar {
  display: none;
}

.room-card-gallery-track img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 1.14;
  object-fit: cover;
  scroll-snap-align: start;
  transform: none !important;
}

.room-gallery-arrow {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: white;
  background: rgba(24, 60, 64, 0.65);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease, background 180ms ease;
  cursor: pointer;
}

.room-gallery-arrow:hover,
.room-gallery-arrow:focus-visible {
  background: var(--clay);
}

.room-card-gallery:hover .room-gallery-arrow,
.room-card-gallery:focus-within .room-gallery-arrow {
  opacity: 1;
}

.room-gallery-prev { left: 14px; }
.room-gallery-next { right: 14px; }

.room-gallery-count {
  position: absolute;
  right: 14px;
  bottom: 12px;
  padding: 4px 7px;
  color: white;
  background: rgba(24, 60, 64, 0.72);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
}

@media (max-width: 1120px) {
  .home-stay-heading,
  .stay-intro-inner {
    grid-template-columns: 1fr 2fr;
  }

  .home-stay-heading > p:last-child,
  .stay-intro-inner > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .home-stay-heading,
  .stay-intro-inner,
  .room-variation-note {
    grid-template-columns: 1fr;
  }

  .home-stay-heading > p:last-child,
  .stay-intro-inner > p:last-child {
    grid-column: auto;
  }

  .home-stay-heading h2 {
    margin-top: 8px;
  }

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

  .home-stay-choice {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.62fr);
  }

  .home-stay-choice-media img {
    min-height: 270px;
  }

  .home-stay-choice-copy {
    padding: 24px 20px;
  }

  .home-stay-choice-copy h3 {
    font-size: clamp(31px, 9vw, 46px);
  }

  .room-variation-note > div:last-child > p {
    font-size: 16px;
  }

  .room-group-marker {
    display: block;
  }

  .room-group-marker span {
    display: block;
  }

  .room-group-marker span:last-child {
    margin-top: 7px;
    text-align: left;
  }

  .room-gallery-arrow {
    width: 32px;
    height: 32px;
    opacity: 1;
  }
}

.simple-page-intro {
  background: var(--paper-light);
}

.simple-page-intro-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr) minmax(260px, 0.6fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
}

.simple-page-intro-inner h1,
.simple-page-intro-inner > p:last-child {
  margin-bottom: 0;
}

.simple-page-intro-inner h1 {
  font-size: clamp(46px, 6vw, 90px);
}

.simple-page-intro-inner > p:last-child {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .simple-page-intro-inner {
    grid-template-columns: 1fr 2fr;
  }

  .simple-page-intro-inner > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .simple-page-intro-inner {
    grid-template-columns: 1fr;
  }

  .simple-page-intro-inner > p:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

/* ================================================================
   V2 art direction: editorial long-scroll + calm utility pages
   ================================================================ */

:root {
  --v2-max: 1500px;
  --v2-green-soft: #dce5de;
  --v2-clay-light: #dcc1ad;
}

body {
  overflow-x: hidden;
}

.v2-nav {
  max-width: var(--v2-max);
  margin: 0 auto;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  vertical-align: 3px;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown[open] summary::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  display: grid;
  min-width: 230px;
  padding: 18px;
  gap: 2px;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 18px 44px rgba(26, 25, 20, 0.18);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 8px;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--clay);
  background: var(--paper);
}

.page-frame {
  max-width: var(--v2-max);
  margin: 0 auto;
}

.home-v2 .hero {
  min-height: max(720px, 100svh);
}

.home-v2 .hero-content {
  max-width: var(--v2-max);
  margin: 0 auto;
}

.home-v2 .hero-content-inner {
  width: min(720px, calc(100% - 48px));
}

.home-v2 .hero-wordmark {
  width: clamp(220px, 28vw, 420px);
}

.home-v2 .hero h1 {
  max-width: 700px;
  font-size: clamp(55px, 7.6vw, 124px);
}

.home-v2 .hero-proof {
  max-width: var(--v2-max);
  margin: 0 auto;
}

.home-v2 .hero-proof span:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.home-section {
  max-width: var(--v2-max);
  margin: 0 auto;
}

.home-section--intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: end;
}

.home-section--intro h2,
.home-section--intro p:last-child {
  margin-bottom: 0;
}

.home-section--intro h2 {
  font-size: clamp(46px, 6.2vw, 98px);
}

.home-section--intro .intro-copy {
  max-width: 500px;
  color: var(--muted);
}

.home-section--intro .intro-copy p:last-child {
  margin-bottom: 30px;
}

.home-chapters {
  padding-top: clamp(70px, 10vw, 140px);
  background: var(--paper);
}

.chapter-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 64px;
}

.chapter-header h2 {
  margin-bottom: 0;
  font-size: clamp(45px, 6.5vw, 100px);
}

.chapter-header p:last-child {
  max-width: 370px;
  margin-bottom: 0;
  color: var(--muted);
}

.chapter-grid {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  gap: clamp(30px, 6vw, 104px);
  align-items: end;
}

.chapter-lead {
  position: relative;
}

.chapter-lead img {
  aspect-ratio: 1.3;
  object-fit: cover;
}

.chapter-lead figcaption,
.chapter-item figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chapter-lead h3 {
  margin: 34px 0 18px;
  font-size: clamp(33px, 4vw, 62px);
}

.chapter-lead p:not(.eyebrow) {
  max-width: 540px;
  color: var(--muted);
}

.chapter-side {
  display: grid;
  gap: 74px;
}

.chapter-item:nth-child(2) {
  margin-left: 20%;
}

.chapter-item img {
  aspect-ratio: 1.05;
  object-fit: cover;
}

.chapter-item h3 {
  margin: 23px 0 0;
  font-size: clamp(25px, 2.5vw, 38px);
}

.chapter-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.home-river {
  position: relative;
  color: white;
  background: var(--green-deep);
}

.home-river-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.54fr);
  gap: clamp(54px, 9vw, 160px);
  align-items: center;
}

.home-river-media {
  position: relative;
}

.home-river-media img {
  aspect-ratio: 0.94;
  object-fit: cover;
}

.home-river-media::after {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 42%;
  height: 36%;
  border: 1px solid rgba(229, 199, 179, 0.55);
  content: "";
  pointer-events: none;
}

.home-river-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(45px, 6.3vw, 100px);
}

.home-river-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.river-notes {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.river-note {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.river-note span {
  color: var(--v2-clay-light);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.river-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: clamp(54px, 10vw, 160px);
  align-items: center;
  background: var(--v2-green-soft);
}

.home-about-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: end;
}

.home-about-media img:first-child {
  aspect-ratio: 0.83;
  object-fit: cover;
}

.home-about-media img:last-child {
  aspect-ratio: 0.74;
  object-fit: cover;
  transform: translateY(54px);
}

.home-about-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(46px, 6vw, 92px);
}

.home-about-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: rgba(42, 38, 32, 0.75);
}

.home-guide {
  background: var(--paper-light);
}

.home-guide-inner {
  display: grid;
  grid-template-columns: minmax(330px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: center;
}

.home-guide-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(47px, 6vw, 92px);
}

.home-guide-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
}

.guide-index-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.guide-index-list a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 180ms ease, color 180ms ease;
}

.guide-index-list a:hover,
.guide-index-list a:focus-visible {
  padding-left: 12px;
  color: var(--clay);
}

.guide-index-list small,
.guide-index-list span:last-child {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-index-list small {
  color: var(--clay);
}

.guide-index-list span:last-child {
  color: var(--muted);
}

.home-arrival {
  color: white;
  background: var(--green);
}

.home-arrival-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 10vw, 160px);
  align-items: end;
}

.home-arrival h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 6.2vw, 94px);
}

.arrival-summary {
  max-width: 580px;
}

.arrival-summary > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.arrival-summary-links {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.arrival-summary-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: padding-left 180ms ease, color 180ms ease;
}

.arrival-summary-links a:hover,
.arrival-summary-links a:focus-visible {
  padding-left: 10px;
  color: var(--v2-clay-light);
}

.home-faq {
  background: var(--paper);
}

.faq-tease {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(46px, 9vw, 150px);
  align-items: start;
}

.faq-tease h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 90px);
}

.faq-tease-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-tease-list a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 2vw, 25px);
  transition: padding-left 180ms ease, color 180ms ease;
}

.faq-tease-list a:hover,
.faq-tease-list a:focus-visible {
  padding-left: 12px;
  color: var(--clay);
}

.faq-tease-list span:last-child {
  font-family: var(--sans);
  font-size: 16px;
}

.home-book {
  padding-top: clamp(92px, 13vw, 190px);
  padding-bottom: clamp(100px, 14vw, 200px);
  text-align: center;
  background: var(--paper-light);
}

.home-book h2 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 108px);
}

.home-book > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 34px;
  color: var(--muted);
}

.home-book-actions {
  justify-content: center;
}

/* V2 inner-page foundations */

.inner-page {
  background: var(--paper-light);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(46px, 8vw, 130px);
  align-items: end;
  min-height: min(730px, calc(100svh - var(--nav-height)));
  padding: clamp(80px, 10vw, 140px) var(--pad);
}

.page-hero h1 {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(48px, 6vw, 96px);
}

.page-hero-copy > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.page-hero-media {
  position: relative;
  min-height: 530px;
}

.page-hero-media img:first-child {
  position: absolute;
  inset: 0 0 8% 12%;
  width: 88%;
  height: 92%;
  object-fit: cover;
}

.page-hero-media img:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 38%;
  height: 35%;
  object-fit: cover;
  box-shadow: 0 0 0 12px var(--paper-light);
}

.subnav {
  position: sticky;
  top: 0;
  z-index: 7;
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 17px var(--pad);
  color: white;
  background: rgba(24, 60, 64, 0.96);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.subnav a:first-child {
  margin-right: auto;
  color: var(--v2-clay-light);
}

.subnav a {
  white-space: nowrap;
}

.directory-section {
  scroll-margin-top: 58px;
}

.directory-section--tint {
  background: var(--paper);
}

.directory-section--dark {
  color: white;
  background: var(--green);
}

.directory-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.33fr) minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
  margin-bottom: clamp(58px, 9vw, 120px);
}

.directory-heading h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 90px);
}

.directory-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.directory-section--dark .directory-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.room-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 84px) clamp(22px, 3vw, 52px);
}

.room-directory-card {
  min-width: 0;
}

.room-directory-card .room-card-image {
  position: relative;
  overflow: hidden;
  background: var(--v2-green-soft);
}

.room-directory-card img {
  aspect-ratio: 1.14;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}

.room-directory-card:hover img,
.room-directory-card:focus-within img {
  transform: scale(1.025);
}

.room-directory-card .room-kicker {
  margin-top: 22px;
}

.room-directory-card h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.3vw, 36px);
  line-height: 1.08;
}

.room-directory-card .room-meta {
  margin-bottom: 14px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.room-directory-card .room-summary {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.directory-section--dark .room-directory-card .room-meta,
.directory-section--dark .room-directory-card .room-summary {
  color: rgba(255, 255, 255, 0.67);
}

.room-pending {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 32px;
  color: var(--muted);
  background: var(--v2-green-soft);
  text-align: center;
}

.room-pending strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.river-page-hero {
  min-height: min(780px, calc(100svh - var(--nav-height)));
  display: grid;
  align-items: end;
  color: white;
  background: var(--green-deep);
}

.river-page-hero-media {
  position: absolute;
  inset: var(--nav-height) 0 auto;
  height: min(780px, calc(100svh - var(--nav-height)));
}

.river-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.river-page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 20, 19, 0.82), rgba(15, 20, 19, 0.12) 78%), linear-gradient(0deg, rgba(15, 20, 19, 0.8), transparent 60%);
  content: "";
}

.river-page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--v2-max), 100%);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(78px, 10vw, 140px);
}

.river-page-hero-content h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(56px, 8vw, 132px);
}

.river-page-hero-content p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: clamp(46px, 9vw, 150px);
  align-items: start;
}

.visual-story--reverse {
  grid-template-columns: minmax(300px, 0.6fr) minmax(0, 0.9fr);
}

.visual-story--reverse .visual-story-media {
  order: 2;
}

.visual-story--reverse .visual-story-copy {
  order: 1;
}

.visual-story-media img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.visual-story-copy {
  padding-top: clamp(10px, 5vw, 76px);
}

.visual-story-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(45px, 6vw, 90px);
}

.visual-story-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  font-size: 19px;
}

.visual-story-copy .story-caption {
  margin-top: 44px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.view-strip figure {
  margin: 0;
}

.view-strip img {
  aspect-ratio: 0.92;
  object-fit: cover;
}

.view-strip figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practical-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: end;
  color: white;
  background: var(--green);
}

.practical-band h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 6vw, 90px);
}

.practical-band-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.practical-links {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.practical-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.practical-links a:hover,
.practical-links a:focus-visible {
  color: var(--v2-clay-light);
}

.info-layout,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  gap: clamp(46px, 10vw, 170px);
  align-items: start;
}

.sticky-label {
  position: sticky;
  top: 106px;
}

.sticky-label h1,
.sticky-label h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.4vw, 84px);
}

.info-stack,
.faq-stack,
.contact-stack {
  display: grid;
  gap: clamp(68px, 10vw, 150px);
}

.info-block h2,
.contact-block h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4.4vw, 66px);
}

.info-block > p,
.contact-block > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.info-list {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.info-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-list strong {
  display: inline-block;
  min-width: 170px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.faq-category {
  border-top: 1px solid var(--line);
}

.faq-category h2 {
  margin: 0;
  padding: 22px 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(20px, 2.3vw, 30px);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--clay);
  font-family: var(--sans);
  font-size: 24px;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  max-width: 660px;
  padding: 0 52px 28px 0;
  color: var(--muted);
}

.contact-channel-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-channel {
  display: grid;
  grid-template-columns: minmax(170px, 0.5fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-channel strong,
.contact-channel small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-channel strong {
  color: var(--clay);
}

.contact-channel small {
  color: var(--muted);
}

.contact-address {
  padding: 30px;
  color: white;
  background: var(--green);
}

.contact-address address {
  margin: 12px 0 0;
  font-style: normal;
}

.contact-note {
  margin-top: 28px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .home-section--intro,
  .chapter-grid,
  .home-river-inner,
  .home-about,
  .home-guide-inner,
  .home-arrival-inner,
  .faq-tease,
  .page-hero,
  .visual-story,
  .visual-story--reverse,
  .practical-band,
  .info-layout,
  .faq-layout,
  .contact-layout {
    gap: 52px;
  }

  .directory-heading {
    grid-template-columns: 1fr 2fr;
  }

  .directory-heading > p:last-child {
    grid-column: 2;
  }

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

@media (max-width: 760px) {
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 12px;
    padding: 4px 14px;
    box-shadow: none;
    background: var(--paper);
  }

  .home-v2 .hero-content {
    margin: 0;
  }

  .home-v2 .hero-content-inner {
    width: auto;
  }

  .home-section--intro,
  .chapter-grid,
  .home-river-inner,
  .home-about,
  .home-guide-inner,
  .home-arrival-inner,
  .faq-tease,
  .page-hero,
  .visual-story,
  .visual-story--reverse,
  .practical-band,
  .info-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .chapter-header {
    display: block;
  }

  .chapter-header p:last-child {
    margin-top: 24px;
  }

  .chapter-side {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .chapter-item:nth-child(2) {
    margin-left: 0;
    margin-top: 44px;
  }

  .home-river-media::after {
    right: -9px;
    bottom: -9px;
  }

  .home-about-media img:last-child {
    transform: translateY(28px);
  }

  .home-guide-inner {
    gap: 50px;
  }

  .page-hero {
    display: block;
    min-height: auto;
    padding: 72px 22px 0;
  }

  .page-hero-copy {
    padding-bottom: 58px;
  }

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

  .page-hero-media img:first-child {
    inset: 0 0 8% 8%;
    width: 92%;
  }

  .page-hero-media img:last-child {
    width: 44%;
    height: 36%;
  }

  .room-directory-grid,
  .view-strip {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .view-strip figure:nth-child(2) {
    margin-left: 16%;
  }

  .visual-story--reverse .visual-story-media,
  .visual-story--reverse .visual-story-copy {
    order: initial;
  }

  .visual-story-copy {
    padding-top: 0;
  }

  .sticky-label {
    position: static;
  }

  .info-stack,
  .faq-stack,
  .contact-stack {
    gap: 84px;
  }

  .info-list p {
    display: grid;
    gap: 6px;
  }

  .contact-channel {
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
  }

  .contact-channel small {
    grid-column: 1 / -1;
  }

  .contact-channel .text-action {
    grid-column: 2;
    grid-row: 1;
  }

  .faq-answer {
    padding-right: 0;
  }
}
/* ================================================================
   V2.2 refinement: restrained imagery + clearer utility hierarchy
   ================================================================ */

/* Home: bring photography back as a quiet visual layer. */
.home-section--intro-visual,
.home-guide--visual,
.home-arrival--visual,
.home-faq--visual,
.home-book--visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-section--intro-visual::after {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 auto;
  width: min(32%, 430px);
  background:
    linear-gradient(90deg, var(--paper-light), rgba(247, 243, 234, 0.18) 58%),
    url("images/nancy-art.jpg") center / cover no-repeat;
  opacity: 0.58;
  content: "";
}

.home-guide--visual .home-guide-copy {
  position: relative;
  padding-top: clamp(150px, 17vw, 240px);
}

.home-guide--visual .home-guide-copy::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(118px, 14vw, 190px);
  background:
    linear-gradient(180deg, rgba(247, 243, 234, 0.02), rgba(247, 243, 234, 0.34)),
    url("images/chongqing-guide.jpg") center 54% / cover no-repeat;
  content: "";
}

.home-arrival--visual::before,
.home-faq--visual::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: min(43%, 690px);
  content: "";
}

.home-arrival--visual::before {
  background:
    linear-gradient(90deg, rgba(24, 60, 64, 0.35), var(--green) 92%),
    url("images/quiet-light.jpg") center / cover no-repeat;
  opacity: 0.55;
}

.home-faq--visual::before {
  background:
    linear-gradient(90deg, rgba(234, 227, 210, 0.25), var(--paper) 92%),
    url("images/liuguang.jpg") center / cover no-repeat;
  opacity: 0.44;
}

.home-book--visual {
  color: white;
  background:
    linear-gradient(90deg, rgba(14, 43, 46, 0.86), rgba(14, 43, 46, 0.56)),
    url("images/river-view.jpg") center 52% / cover no-repeat;
}

.home-book--visual > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

/* Stay: make the essential variation note compact and reassuring. */
.room-variation-shell {
  padding: 0 var(--pad) clamp(34px, 5vw, 72px);
  background: var(--paper-light);
}

.room-variation-note--compact {
  grid-template-columns: minmax(230px, 0.72fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: center;
  padding: clamp(30px, 4vw, 54px) clamp(28px, 5vw, 72px);
}

.room-variation-note--compact h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.room-variation-note--compact > div:last-child > p {
  margin-bottom: 0;
  font-size: 15px;
}

.room-variation-note--compact .practical-links {
  margin-top: 18px;
}

.room-variation-note--compact .practical-links a {
  padding: 13px 0;
}

.room-group-marker {
  margin-top: clamp(64px, 7vw, 104px);
}

/* Functional page openers: compact copy with one faded image plane. */
.simple-page-intro--visual {
  position: relative;
  isolation: isolate;
  min-height: clamp(360px, 42vw, 520px);
  overflow: hidden;
  padding-top: clamp(68px, 8vw, 108px);
  padding-bottom: clamp(68px, 8vw, 108px);
}

.simple-page-intro--visual::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, var(--paper-light) 0%, rgba(247, 243, 234, 0.96) 48%, rgba(247, 243, 234, 0.58) 78%, rgba(247, 243, 234, 0.3));
  content: "";
}

.simple-page-intro-image {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 auto;
  width: min(47%, 760px);
  height: 100%;
  object-fit: cover;
}

.simple-page-intro--guest .simple-page-intro-image { object-position: 54% 46%; }
.simple-page-intro--faq .simple-page-intro-image { object-position: 64% 52%; }
.simple-page-intro--contact .simple-page-intro-image { object-position: 62% 54%; }

.simple-page-intro--visual .simple-page-intro-inner h1 {
  font-size: clamp(43px, 5.4vw, 78px);
}

/* Guide: four equal chapters and a direct second-level index. */
.guide-subnav {
  justify-content: center;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.guide-subnav a,
.guide-subnav a:first-child {
  flex: 1 0 210px;
  max-width: 340px;
  margin-right: 0;
  padding: 18px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  text-align: center;
}

.guide-subnav a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.guide-subnav a:hover,
.guide-subnav a:focus-visible {
  color: var(--v2-clay-light);
  background: rgba(255, 255, 255, 0.06);
}

.guide-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(64px, 8vw, 116px) clamp(28px, 5vw, 76px);
}

.guide-article-card[id] {
  scroll-margin-top: 74px;
}

.guide-article-card .room-card-image img {
  aspect-ratio: 1.55;
}

.guide-article-status {
  display: inline-block;
  margin-top: 4px;
  color: var(--clay);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.practical-band--single-action .practical-links {
  max-width: 480px;
}

/* Guest Information: remove the duplicated first item and enlarge the useful links. */
.guest-subnav {
  justify-content: center;
  gap: clamp(28px, 6vw, 90px);
  font-size: 12px;
}

.guest-subnav a:first-child {
  margin-right: 0;
  color: white;
}

/* FAQs: one uninterrupted, narrower reading column. */
.faq-section {
  padding-top: clamp(70px, 8vw, 116px);
}

.faq-layout--focused {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.86fr);
  gap: clamp(48px, 8vw, 126px);
}

.faq-stack--continuous {
  max-width: 780px;
  gap: 0;
}

.faq-category--continuous {
  border-top: 0;
  scroll-margin-top: 76px;
}

.faq-stack--continuous .faq-item summary {
  padding: 20px 0;
  font-size: clamp(19px, 2vw, 27px);
}

.faq-stack--continuous .faq-answer {
  max-width: 580px;
  padding: 0 44px 22px 0;
}

/* Contact: quiet brand marks, useful icons and an explicit map placeholder. */
#booking-platforms,
#contact-details {
  scroll-margin-top: 24px;
}

.contact-scroll-panel {
  max-height: min(820px, calc(100svh - 132px));
  overflow-y: auto;
  padding-right: 18px;
  scrollbar-color: var(--clay) rgba(24, 60, 64, 0.09);
  scrollbar-width: thin;
}

.contact-scroll-panel::-webkit-scrollbar { width: 5px; }
.contact-scroll-panel::-webkit-scrollbar-track { background: rgba(24, 60, 64, 0.09); }
.contact-scroll-panel::-webkit-scrollbar-thumb { background: var(--clay); }

.contact-channel--branded,
.contact-channel--method {
  grid-template-columns: 142px minmax(0, 1fr) auto;
}

.contact-channel-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.contact-channel-copy > span,
.contact-channel-note {
  color: var(--muted);
  font-size: 14px;
}

.ota-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  min-height: 42px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.ota-mark--trip { color: #2f80ed; }
.ota-mark--booking { color: #003b95; font-size: 15px; }
.ota-mark--ctrip { color: #1677ff; font-family: var(--sans); letter-spacing: 0.06em; }

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
}

.contact-icon svg,
.map-placeholder svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.contact-channel-note {
  max-width: 120px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.contact-address--map {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(260px, 1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: stretch;
}

.map-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.82);
  background-color: rgba(255, 255, 255, 0.05);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  text-align: center;
}

.map-placeholder svg {
  width: 34px;
  margin-bottom: 14px;
}

.map-placeholder span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-placeholder small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--sans);
  font-size: 10px;
}

/* Contact page: supplied OTA marks, Creator Stay hand-off and live map links. */
.ota-logo-img {
  display: block;
  width: 100%;
  height: 30px;
  object-fit: contain;
}

.ota-logo-img--ctrip { height: 26px; }

.contact-platform-message {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.contact-platform-message p {
  max-width: 560px;
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contact-platform-message strong {
  color: var(--green);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-platform-message a {
  color: var(--green);
  font-weight: 700;
  text-decoration-color: rgba(24, 60, 64, 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.contact-platform-message a:hover { color: var(--clay); }

.contact-creator-stay {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(54, 42, 33, 0.9) 0%, rgba(70, 49, 37, 0.75) 52%, rgba(83, 58, 42, 0.48) 100%),
    url("images/river-view.jpg") center 52% / cover no-repeat;
}

.contact-creator-stay-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(240px, 0.72fr) auto;
  gap: clamp(34px, 6vw, 100px);
  align-items: end;
}

.contact-creator-stay .eyebrow { color: #efd4bd; }

.contact-creator-stay h2 {
  margin: 0;
  color: white;
  font-size: clamp(39px, 4.8vw, 72px);
  line-height: 0.94;
}

.contact-creator-stay p:not(.eyebrow) {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.contact-creator-stay-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 196px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-creator-stay-action:hover { color: #efd4bd; }

.map-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 220px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.05);
}

.map-links > svg {
  width: 28px;
  margin-bottom: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.map-links p {
  max-width: 260px;
  margin: 0 0 16px;
  font-size: 16px;
}

.map-links a {
  display: flex;
  justify-content: space-between;
  width: min(100%, 300px);
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
  color: inherit;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.map-links a:hover { color: #f1d6b6; }

.map-links small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  font-size: 10px;
}

@media (max-width: 760px) {
  .home-section--intro-visual {
    padding-bottom: 220px;
  }

  .home-section--intro-visual::after {
    inset: auto 0 0;
    width: 100%;
    height: 210px;
    background:
      linear-gradient(180deg, var(--paper-light), rgba(247, 243, 234, 0.05) 54%),
      url("images/nancy-art.jpg") center 42% / cover no-repeat;
    opacity: 0.72;
  }

  .home-guide--visual .home-guide-copy {
    padding-top: 185px;
  }

  .home-guide--visual .home-guide-copy::before {
    height: 145px;
  }

  .home-arrival--visual::before,
  .home-faq--visual::before {
    width: 100%;
    height: 46%;
  }

  .home-arrival--visual::before {
    background:
      linear-gradient(180deg, rgba(24, 60, 64, 0.4), var(--green) 94%),
      url("images/quiet-light.jpg") center / cover no-repeat;
  }

  .home-faq--visual::before {
    background:
      linear-gradient(180deg, rgba(234, 227, 210, 0.28), var(--paper) 94%),
      url("images/liuguang.jpg") center / cover no-repeat;
  }

  .room-variation-shell {
    padding: 0 14px 44px;
  }

  .room-variation-note--compact {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 24px;
  }

  .room-group-marker {
    margin-top: 70px;
  }

  .simple-page-intro--visual {
    min-height: 470px;
    padding-top: 60px;
    padding-bottom: 210px;
  }

  .simple-page-intro--visual::after {
    background: linear-gradient(180deg, var(--paper-light) 0%, rgba(247, 243, 234, 0.97) 55%, rgba(247, 243, 234, 0.28) 83%, rgba(247, 243, 234, 0.08));
  }

  .simple-page-intro-image {
    inset: auto 0 0;
    width: 100%;
    height: 48%;
  }

  .guide-subnav {
    justify-content: flex-start;
  }

  .guide-subnav a,
  .guide-subnav a:first-child {
    flex-basis: auto;
    max-width: none;
    padding: 16px 20px;
    text-align: left;
  }

  .guide-article-grid {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .guest-subnav {
    justify-content: flex-start;
    gap: 30px;
  }

  .faq-layout--focused {
    grid-template-columns: 1fr;
  }

  .faq-stack--continuous .faq-answer {
    padding-right: 0;
  }

  .contact-scroll-panel {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .contact-channel--branded,
  .contact-channel--method {
    grid-template-columns: 62px minmax(0, 1fr) auto;
    gap: 10px 14px;
  }

  .contact-channel--branded {
    grid-template-columns: 1fr auto;
  }

  .contact-channel--branded .ota-mark {
    grid-column: 1 / -1;
  }

  .ota-mark {
    justify-content: flex-start;
  }

  .contact-channel-note {
    max-width: 90px;
  }

  .contact-address--map {
    grid-template-columns: 1fr;
  }

  .contact-creator-stay-inner { grid-template-columns: 1fr; gap: 26px; }

  .contact-platform-message { gap: 14px; }
}


/* Creator Stay: an editorial collaboration page with a deliberately local-only application preview. */
@media (min-width: 1121px) {
  body .site-nav {
    grid-template-columns: minmax(155px, 220px) 1fr auto;
  }
}

.creator-nav-link {
  position: relative;
  white-space: nowrap;
}

.creator-nav-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.creator-nav-link:hover::after,
.creator-nav-link:focus-visible::after,
.creator-nav-link.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.creator-hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  overflow: hidden;
  color: white;
  background: var(--green-deep);
}

.creator-hero-image,
.creator-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.creator-hero-image {
  object-fit: cover;
  object-position: center 45%;
  animation: hero-scale 2.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.creator-hero-shade {
  background: linear-gradient(90deg, rgba(15, 20, 19, 0.82) 0%, rgba(15, 20, 19, 0.49) 43%, rgba(15, 20, 19, 0.12) 100%), linear-gradient(0deg, rgba(15, 20, 19, 0.7), transparent 47%);
}

.creator-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - var(--nav-height));
  padding: clamp(80px, 12vw, 180px) var(--pad) clamp(76px, 10vw, 130px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  animation: hero-in 900ms 160ms ease both;
}

.creator-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(60px, 8.5vw, 132px);
}

.creator-hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 34px;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
}

.creator-intro-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.33fr) minmax(360px, 1fr) minmax(260px, 0.55fr);
  gap: clamp(32px, 6vw, 104px);
  align-items: end;
}

.creator-intro-grid h2,
.creator-intro-grid p:last-child {
  margin-bottom: 0;
}

.creator-intro-grid > div p {
  color: var(--muted);
}

.creator-intro-grid > div p:last-child {
  margin-bottom: 0;
}

.creator-support {
  background: var(--paper);
}

.creator-section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(330px, 1fr) minmax(250px, 0.48fr);
  gap: clamp(28px, 6vw, 100px);
  align-items: end;
  margin-bottom: clamp(64px, 9vw, 128px);
}

.creator-section-heading h2,
.creator-section-heading p:last-child {
  margin-bottom: 0;
}

.creator-section-heading > p:last-child {
  color: var(--muted);
}

.creator-support-grid,
.creator-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.creator-support-item,
.creator-steps li {
  min-height: 260px;
  padding: clamp(26px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.creator-support-item span,
.creator-steps span {
  display: block;
  margin-bottom: clamp(44px, 7vw, 98px);
  color: var(--clay);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.creator-support-item h3,
.creator-steps h3 {
  margin-bottom: 16px;
  font-size: clamp(27px, 2.6vw, 42px);
  line-height: 1;
}

.creator-support-item p,
.creator-steps p {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
}

.creator-process,
.creator-closing {
  color: white;
  background: var(--green);
}

.creator-section-heading--light h2 {
  color: white;
}

.creator-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-color: rgba(255, 255, 255, 0.28);
}

.creator-steps li {
  min-height: 300px;
  border-color: rgba(255, 255, 255, 0.28);
}

.creator-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.creator-application {
  background: var(--paper-light);
}

.creator-application-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.63fr) minmax(460px, 1fr);
  gap: clamp(46px, 9vw, 154px);
  align-items: start;
}

.creator-application-copy {
  position: sticky;
  top: 38px;
}

.creator-application-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5.2vw, 80px);
}

.creator-application-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
}

.creator-demo-note {
  max-width: 420px;
  margin-top: 42px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.creator-demo-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.creator-demo-note p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.creator-form {
  padding: clamp(24px, 3vw, 44px);
  border: 1px solid var(--line);
  background: white;
}

.creator-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 38px;
}

.creator-progress span {
  height: 3px;
  background: #d7d0c3;
}

.creator-progress .is-active {
  background: var(--clay);
}

.creator-form-step h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: clamp(34px, 3.4vw, 50px);
}

.creator-form-step > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
}

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

.creator-fields label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.creator-fields input,
.creator-fields select,
.creator-fields textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper-light);
  font: 16px/1.4 var(--serif);
}

.creator-fields textarea {
  min-height: 128px;
  resize: vertical;
}

.creator-field-wide {
  grid-column: 1 / -1;
}

.creator-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
}

.creator-back,
.creator-next {
  min-height: 46px;
  border: 1px solid var(--green);
  padding: 0 17px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-back {
  color: var(--green);
  background: transparent;
}

.creator-next {
  margin-left: auto;
  color: white;
  background: var(--green);
}

.creator-form-status {
  color: var(--clay);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.4;
}

.creator-form-complete {
  min-height: 310px;
  padding-top: 18px;
}

.creator-form-complete .button {
  margin-top: 16px;
}

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

.creator-faq-list details {
  border-bottom: 1px solid var(--line);
}

.creator-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 23px 4px;
  color: var(--green);
  cursor: pointer;
  font-size: clamp(23px, 2.6vw, 40px);
  line-height: 1.08;
  list-style: none;
}

.creator-faq-list summary::-webkit-details-marker { display: none; }
.creator-faq-list summary::after { color: var(--clay); content: "+"; font-family: var(--sans); font-size: 27px; font-weight: 400; }
.creator-faq-list details[open] summary::after { content: "–"; }

.creator-faq-list details > div {
  max-width: 720px;
  padding: 0 4px 24px;
  color: var(--muted);
}

.creator-closing {
  background: var(--ink);
}

.creator-closing h2 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(54px, 7vw, 108px);
}

.creator-closing p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
}

@media (max-width: 1120px) {
  .creator-nav-link { display: none; }
  .creator-intro-grid,
  .creator-section-heading { grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr); }
  .creator-section-heading > p:last-child { grid-column: 2; }
  .creator-application-grid { grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1fr); }
  .creator-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .creator-hero,
  .creator-hero-copy { min-height: calc(100svh - var(--nav-height)); }
  .creator-hero-copy { padding-top: 60px; padding-bottom: 74px; }
  .creator-hero-copy h1 { font-size: clamp(56px, 16vw, 82px); }
  .creator-hero-shade { background: linear-gradient(0deg, rgba(15, 20, 19, 0.88), rgba(15, 20, 19, 0.27) 75%, rgba(15, 20, 19, 0.42)); }
  .creator-intro-grid,
  .creator-section-heading,
  .creator-application-grid { grid-template-columns: 1fr; gap: 28px; }
  .creator-section-heading { margin-bottom: 58px; }
  .creator-section-heading > p:last-child { grid-column: auto; }
  .creator-support-grid,
  .creator-steps { grid-template-columns: 1fr; }
  .creator-support-item,
  .creator-steps li { min-height: 0; }
  .creator-support-item span,
  .creator-steps span { margin-bottom: 46px; }
  .creator-application-copy { position: static; }
  .creator-application-copy h2 { font-size: clamp(45px, 14vw, 66px); }
  .creator-fields { grid-template-columns: 1fr; }
  .creator-field-wide { grid-column: auto; }
  .creator-form { padding: 24px 18px; }
  .creator-form-actions { align-items: flex-end; }
  .creator-form-status { max-width: 130px; }
  .creator-faq-list summary { padding: 19px 0; font-size: 25px; }
}


/* Creator Stay PR fidelity: preserves the approved collaboration-page rhythm and proportions. */
.creator-pr,.pr-footer{--pr-river:#2f5d62;--pr-terra:#b07a5b;--pr-rice:#eae3d2;--pr-paper:#fbf9f3;--pr-ink:#2a2620;--pr-muted:#69645c;--pr-line:#d8d1c1;font:15px/1.7 Georgia,"Times New Roman",serif}.creator-pr{background:var(--pr-paper);color:var(--pr-ink)}.creator-pr *{box-sizing:border-box}.pr-wrap{width:min(1120px,calc(100% - 48px));margin:auto}.pr-hero{position:relative;min-height:600px;overflow:hidden;color:#fff;background:var(--pr-ink)}.pr-hero-photo{position:absolute;width:100%;height:100%;object-fit:cover;object-position:center;opacity:.56}.pr-hero-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(18,28,27,.84) 0%,rgba(27,36,34,.56) 48%,rgba(28,29,24,.18) 100%)}.pr-hero-inner{position:relative;display:flex;align-items:center;min-height:600px;padding:88px 0 85px}.pr-hero-copy{max-width:610px}.pr-hero-mark{width:min(330px,72%);margin-bottom:52px}.pr-eyebrow{margin:0 0 16px;color:#ead4c3;font:11px/1.3 Arial,sans-serif;letter-spacing:.16em;text-transform:uppercase}.pr-hero h1{margin:0 0 23px;color:white;font-size:clamp(54px,7vw,88px);font-weight:500;letter-spacing:-.045em;line-height:.9}.pr-hero-copy>p:not(.pr-eyebrow){max-width:480px;margin:0;color:#f0ede4;font-size:20px;line-height:1.35}.pr-button{display:inline-block;margin-top:30px;padding:13px 20px;border:1px solid var(--pr-terra);color:#fff;background:var(--pr-terra);font-size:16px;transition:.2s}.pr-button:hover,.pr-button:focus-visible{border-color:#8f5e44;background:#8f5e44}.pr-section{padding:100px 0}.pr-section-title{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:42px}.pr-section-title h2,.pr-form-side h2{margin:0;color:var(--pr-river);font-size:clamp(38px,4.5vw,59px);font-weight:500;letter-spacing:-.04em;line-height:.95}.pr-section-title>div{max-width:480px;color:var(--pr-muted);font-size:19px;line-height:1.4}.pr-approach{display:grid;grid-template-columns:1.15fr .85fr;gap:74px;padding:39px 0;border-top:1px solid var(--pr-line);border-bottom:1px solid var(--pr-line)}.pr-approach h3{margin:0 0 14px;color:var(--pr-river);font-size:30px;font-weight:500;line-height:1.05}.pr-approach p{margin:0;font-size:18px;line-height:1.42}.pr-approach ul{margin:0;padding:0;list-style:none}.pr-approach li{padding:12px 0;border-top:1px solid var(--pr-line);font-size:16px}.pr-approach li:first-child{padding-top:0;border-top:0}.pr-form-area{background:#f4f0e6}.pr-form-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:82px;align-items:start}.pr-form-side{position:sticky;top:20px}.pr-form-side h2{margin-bottom:18px;font-size:48px}.pr-form-side>p:not(.pr-eyebrow){margin:0;color:var(--pr-muted);font-size:18px;line-height:1.4}.pr-expectations{margin-top:34px;border-top:1px solid var(--pr-line)}.pr-expectations div{padding:13px 0;border-bottom:1px solid var(--pr-line)}.pr-expectations b{display:block;color:var(--pr-river);font-size:17px;font-weight:500;line-height:1.2}.pr-expectations span{display:block;margin-top:4px;color:var(--pr-muted);font-size:14px;line-height:1.3}.pr-form-box{padding:32px;border:1px solid var(--pr-line);background:#fff}.pr-progress{display:flex;gap:6px;margin-bottom:31px}.pr-progress span{height:3px;flex:1;background:#d6cec0}.pr-progress span.active{background:var(--pr-terra)}.pr-form-step h3{margin:0 0 6px;color:var(--pr-river);font-size:31px;font-weight:500;line-height:1.05}.pr-form-step>p{margin:0 0 24px;color:var(--pr-muted);font-size:16px;line-height:1.35}.pr-fields{display:grid;grid-template-columns:1fr 1fr;gap:17px}.pr-field{display:grid;gap:5px}.pr-field-full{grid-column:1/-1}.pr-field label{color:var(--pr-river);font-size:15px;line-height:1.15}.pr-field input,.pr-field select,.pr-field textarea{width:100%;border:1px solid var(--pr-line);border-radius:0;padding:11px 12px;color:var(--pr-ink);background:var(--pr-paper);font:15px/1.4 Georgia,"Times New Roman",serif}.pr-field textarea{height:105px;resize:vertical}.pr-form-actions{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:28px}.pr-form-actions button{padding:11px 15px;border:1px solid var(--pr-river);font:15px Georgia,"Times New Roman",serif;cursor:pointer}.pr-back{color:var(--pr-river);background:transparent}.pr-next{color:#fff;background:var(--pr-river)}.pr-submit-state{padding:5px 0 5px 16px;border-left:3px solid var(--pr-terra)}.pr-submit-state h3{font-size:27px}.pr-faq-list{border-top:1px solid var(--pr-line)}.pr-faq-list details{border-bottom:1px solid var(--pr-line)}.pr-faq-list summary{display:flex;justify-content:space-between;gap:25px;padding:19px 4px;color:var(--pr-river);font-size:23px;line-height:1.1;cursor:pointer;list-style:none}.pr-faq-list summary::-webkit-details-marker{display:none}.pr-faq-list summary::after{content:"+";color:var(--pr-terra);font-size:28px;line-height:.7}.pr-faq-list details[open] summary::after{content:"–"}.pr-faq-list details>div{max-width:760px;padding:0 4px 19px;color:var(--pr-muted);font-size:17px;line-height:1.42}.pr-closing{padding:85px 0;color:#fff;background:var(--pr-ink)}.pr-closing h2{margin:0 0 20px;color:#fff;font-size:clamp(45px,5.5vw,72px);font-weight:500;letter-spacing:-.045em;line-height:.92}.pr-closing p:not(.pr-eyebrow){max-width:540px;margin:0;color:#e8e3d9;font-size:20px;line-height:1.35}.pr-closing .pr-button{margin-top:28px}.pr-footer{padding:23px 0;color:var(--pr-muted);background:var(--pr-paper);font-size:13px}.pr-footer .pr-wrap{display:flex;justify-content:space-between;gap:18px}.creator-stay-page .pr-footer{font-family:Georgia,"Times New Roman",serif}
@media(max-width:760px){.pr-wrap{width:min(100% - 30px,1120px)}.pr-hero,.pr-hero-inner{min-height:540px}.pr-hero-inner{padding:64px 0}.pr-hero-mark{margin-bottom:40px}.pr-hero h1{font-size:58px}.pr-hero-copy>p:not(.pr-eyebrow){font-size:18px}.pr-section{padding:65px 0}.pr-form-grid{grid-template-columns:1fr;gap:30px}.pr-section-title{display:block;margin-bottom:30px}.pr-section-title>div{margin-top:16px;font-size:17px}.pr-approach{grid-template-columns:1fr;gap:30px;padding:28px 0}.pr-form-side{position:static}.pr-form-side h2{font-size:44px}.pr-form-box{padding:23px 18px}.pr-fields{grid-template-columns:1fr}.pr-field-full{grid-column:auto}.pr-footer .pr-wrap{display:block}.pr-footer span{display:block;margin:4px 0}}

/* V2.2 integration: shared Instagram access across every bilingual page. */
.nav-actions {
  display: flex;
  grid-column: 3;
  align-items: center;
  gap: 12px;
}

.nav-instagram,
.mobile-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.nav-instagram {
  width: 32px;
  min-height: 44px;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-instagram svg,
.mobile-instagram svg {
  width: 18px;
  height: 18px;
}

.nav-instagram svg rect,
.nav-instagram svg circle:first-of-type,
.mobile-instagram svg rect,
.mobile-instagram svg circle:first-of-type {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.nav-instagram svg circle:nth-of-type(2),
.mobile-instagram svg circle:nth-of-type(2) {
  fill: currentColor;
}

.nav-instagram:hover,
.nav-instagram:focus-visible {
  color: var(--clay);
  transform: translateY(-1px);
}

.mobile-instagram {
  width: max-content;
  min-height: 44px;
}

@media (max-width: 760px) {
  .nav-actions { display: none; }
}

/* V2.2 mobile contact: preserve a calm three-part reading order. */
@media (max-width: 760px) {
  .contact-channel--method .text-action {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    white-space: nowrap;
  }

  .contact-wechat-id {
    font-family: Arial, Helvetica, sans-serif;
    font-feature-settings: "lnum" 1, "tnum" 1;
    font-variant-numeric: lining-nums tabular-nums;
    letter-spacing: .035em;
    white-space: nowrap;
  }
}


/* Production 404 page */
.release-error-page { min-height: 100vh; background: var(--paper); }
.release-error-main { display: flex; min-height: 100vh; width: min(760px, calc(100% - 40px)); margin: 0 auto; flex-direction: column; align-items: flex-start; justify-content: center; padding: 80px 0; }
.release-error-brand { display: block; width: 120px; margin-bottom: clamp(42px, 8vw, 88px); }
.release-error-brand img { display: block; width: 100%; height: auto; }
.release-error-main h1 { max-width: 720px; margin: 10px 0 18px; font-family: var(--serif); font-size: clamp(52px, 9vw, 112px); font-weight: 400; line-height: .92; }
.release-error-main > p:not(.eyebrow) { max-width: 520px; margin-bottom: 34px; }
