:root {
  --cream: #f3efe8;
  --paper: #fffdf8;
  --warm: #ece2d5;
  --terracotta: #c56a3a;
  --dark: #5b4636;
  --ink: #221f1b;
  --muted: #746b62;
  --line: #ded4c8;
  --shadow: 0 22px 60px rgba(58, 46, 35, .10);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--dark);
  background: var(--cream);
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
  line-height: 1.82;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: radial-gradient(rgba(91, 70, 54, .08) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: -1;
}

a { color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(243, 239, 232, .86);
  border-bottom: 1px solid rgba(91, 70, 54, .12);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.brand span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.brand strong {
  color: var(--dark);
  font-size: 21px;
  line-height: 1.2;
}

.links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: #5f574f;
  font-size: 14px;
}

.links a {
  text-decoration: none;
  white-space: nowrap;
}

.links a:hover { color: var(--terracotta); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  color: var(--dark);
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 253, 248, .22);
  text-decoration: none;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
  color: var(--paper);
  background: var(--dark);
}

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: 64px 0;
}

.hero.full {
  color: #fffaf2;
  background-image:
    linear-gradient(90deg, rgba(34, 31, 27, .50), rgba(34, 31, 27, .12)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero.split .wrap {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(340px, .92fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero.full .eyebrow { color: rgba(255, 250, 242, .82); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 26px;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: 0;
}

h2 {
  color: var(--dark);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.hero.full h1,
.hero.full h2 { color: #fffaf2; }

.lead {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
}

.hero.full .lead {
  color: rgba(255, 250, 242, .88);
  text-shadow: 0 10px 30px rgba(0, 0, 0, .20);
}

.portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(91, 70, 54, .16);
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(82px, 10vw, 145px) 0;
}

.section.paper { background: rgba(255, 253, 248, .52); }
.section.warm { background: var(--warm); }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.prose {
  max-width: 680px;
  color: #504940;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  line-height: 2.05;
}

.prose p { margin-bottom: 22px; }

.image-panel {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(91, 70, 54, .14);
  box-shadow: var(--shadow);
}

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

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

.feature-card {
  display: grid;
  grid-template-rows: 320px auto;
  overflow: hidden;
  min-height: 560px;
  background: var(--paper);
  border: 1px solid rgba(91, 70, 54, .14);
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(58, 46, 35, .07);
}

.feature-card .content {
  padding: 28px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 31px;
  font-weight: 500;
}

.feature-card p {
  color: var(--muted);
  font-size: 16px;
}

.quiet-card {
  padding: 28px;
  background: rgba(255, 253, 248, .66);
  border: 1px solid rgba(91, 70, 54, .14);
}

.quiet-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 24px;
  font-weight: 500;
}

.quiet-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.photo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.life-shot {
  min-height: 320px;
  display: grid;
  align-items: end;
  padding: 26px;
  color: #fffaf2;
  background-image:
    linear-gradient(180deg, transparent 20%, rgba(34, 31, 27, .58)),
    var(--shot);
  background-position: center;
  background-size: cover;
}

.life-shot strong {
  font-size: 27px;
  font-weight: 400;
}

.cta {
  padding: clamp(86px, 11vw, 150px) 0;
  text-align: center;
  color: #fffaf2;
  background: var(--dark);
}

.cta h2 {
  color: #fffaf2;
  margin-bottom: 28px;
}

.cta p {
  max-width: 650px;
  margin: 0 auto 34px;
  color: rgba(255, 250, 242, .80);
  font-size: 18px;
}

.cta .button {
  color: #fffaf2;
}

footer {
  padding: 32px 0 46px;
  color: var(--muted);
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

@media (max-width: 980px) {
  .links a:not(.button) { display: none; }
  .hero.split .wrap,
  .two-col,
  .card-grid {
    grid-template-columns: 1fr;
  }
  .quad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 32px, var(--max)); }
  .nav { min-height: 68px; }
  .links .button { display: none; }
  .brand strong { font-size: 18px; }
  .hero {
    min-height: 78svh;
    padding: 52px 0;
  }
  .hero.full {
    background-position: center;
  }
  .portrait {
    aspect-ratio: 1 / 1.2;
  }
  .quad-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 82vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 14px;
  }
  .feature-card {
    grid-template-rows: 250px auto;
    min-height: 470px;
  }
  .photo-strip {
    grid-auto-columns: minmax(270px, 82vw);
  }
  .footer-row {
    flex-direction: column;
  }
}

/* 寓見 · 櫻桃專案首頁 */
.cherry-page {
  background: #f7f3ec;
  color: #332c26;
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
}

.cherry-page::before { opacity: .16; }

.cherry-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(210px, 240px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 0 30px;
  background: rgba(250, 247, 241, .90);
  border-bottom: 1px solid rgba(91, 70, 54, .10);
  backdrop-filter: blur(18px);
}

.cherry-wordmark {
  grid-column: 1;
  display: grid;
  gap: 3px;
  color: #332c26;
  text-decoration: none;
}

.cherry-wordmark strong {
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
}

.cherry-wordmark span {
  color: #6b625a;
  font-size: 13px;
  letter-spacing: .04em;
}

.cherry-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 54px);
  color: #4e4740;
  font-size: 15px;
  font-weight: 400;
}

.cherry-language {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  white-space: nowrap;
}

.cherry-language button {
  appearance: none;
  padding: 2px 0 4px;
  color: #746b62;
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.cherry-language button.is-active {
  color: #bd623b;
  border-bottom-color: #bd623b;
}

.cherry-nav a,
.cherry-outline,
.cherry-primary {
  text-decoration: none;
}

.cherry-outline {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 25px;
  color: #5b4636;
  border: 1px solid rgba(91, 70, 54, .70);
  border-radius: 999px;
  font-size: 14px;
}

.cherry-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding-left: max(32px, calc((100vw - 1180px) / 2 + 245px));
  background:
    linear-gradient(90deg, rgba(250, 247, 241, .82) 0%, rgba(250, 247, 241, .46) 38%, rgba(250, 247, 241, .06) 68%),
    url("cherry-home-hero.jpg");
  background-image:
    linear-gradient(90deg, rgba(250, 247, 241, .82) 0%, rgba(250, 247, 241, .46) 38%, rgba(250, 247, 241, .06) 68%),
    url("cherry-home-hero.jpg");
  background-position: center;
  background-size: cover;
}

.cherry-hero {
  background-image:
    linear-gradient(90deg, rgba(250, 247, 241, .82) 0%, rgba(250, 247, 241, .46) 38%, rgba(250, 247, 241, .06) 68%),
    url("cherry-home-hero.jpg");
}

.cherry-hero-copy {
  max-width: 455px;
  color: #332c26;
}

.cherry-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1.2;
}

.cherry-sub {
  margin: 0 0 18px;
  color: #4f4740;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 18px;
}

.cherry-hero-copy > p:last-of-type {
  margin-bottom: 26px;
  font-size: 24px;
  font-weight: 300;
}

.cherry-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 13px 30px;
  color: #fffaf2;
  background: #bd623b;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(146, 77, 44, .20);
}

.cherry-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.cherry-story {
  padding: 70px 0 76px;
  background: linear-gradient(90deg, #fffdf8, #f6f0e9);
}

.cherry-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  gap: 76px;
  align-items: center;
}

.cherry-line {
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 24px;
  background: #bd623b;
}

.cherry-story h2,
.cherry-center-title,
.cherry-stay h2 {
  color: #332c26;
  font-size: clamp(28px, 3.1vw, 38px);
  font-weight: 400;
  line-height: 1.75;
}

.cherry-story p {
  color: #4f4740;
  font-size: 17px;
  line-height: 2.1;
}

.cherry-story-photo {
  height: 310px;
  margin: 0;
  overflow: hidden;
}

.cherry-story-photo img { object-position: center 42%; }

.cherry-rooms {
  padding: 52px 0 66px;
  background: #fbf8f3;
}

.cherry-center-title {
  margin: 0 0 30px;
  text-align: center;
}

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

.cherry-card {
  overflow: hidden;
  color: #332c26;
  background: rgba(255, 253, 248, .88);
  border: 1px solid rgba(91, 70, 54, .16);
  border-radius: 6px;
  text-decoration: none;
}

.cherry-card img {
  height: 178px;
}

.cherry-card div {
  position: relative;
  min-height: 92px;
  padding: 16px 48px 18px 18px;
}

.cherry-card h3 {
  margin: 0 0 4px;
  font-size: 23px;
  font-weight: 400;
}

.cherry-card p {
  margin: 0;
  color: #6e665f;
  font-size: 14px;
}

.cherry-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: #5b4636;
  font-size: 24px;
}

.cherry-life {
  padding: 0 0 58px;
  background: #fbf8f3;
}

.cherry-life-grid figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 253, 248, .86);
  border: 1px solid rgba(91, 70, 54, .13);
  border-radius: 6px;
  text-align: center;
}

.cherry-life-grid img {
  height: 165px;
}

.cherry-life-grid figcaption {
  padding: 14px 12px 17px;
  color: #4f4740;
  font-size: 18px;
}

.cherry-stay {
  min-height: 245px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  background: linear-gradient(90deg, #e7d9ca, #f8f4ee);
}

.cherry-stay-photo {
  background:
    linear-gradient(90deg, transparent, rgba(248, 244, 238, .56)),
    url("cherry-home-bed.webp") center / cover;
}

.cherry-stay-copy {
  align-self: center;
  max-width: 430px;
  padding: 36px 48px;
}

.cherry-stay h2 {
  margin: 0 0 4px;
}

.cherry-stay p {
  margin-bottom: 20px;
  color: #4f4740;
  line-height: 1.8;
}

.cherry-footer {
  min-height: 78px;
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px max(30px, calc((100vw - 1120px) / 2));
  color: #4f4740;
  background: #fbf8f3;
}

.cherry-footer div {
  display: grid;
  gap: 2px;
}

.cherry-footer strong {
  font-size: 22px;
  font-weight: 400;
}

.cherry-footer span,
.cherry-footer small {
  color: #746b62;
  font-size: 12px;
}

.cherry-footer p {
  margin: 0;
  color: #5d554e;
}

.cherry-footer nav {
  display: flex;
  gap: 12px;
}

.cherry-footer nav a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fffaf2;
  background: #3d352f;
  border-radius: 999px;
  font-size: 11px;
  text-decoration: none;
}

.cherry-hero-panel {
  max-width: 720px;
  color: #332c26;
}

.cherry-hero-panel p {
  margin: 0 0 14px;
  color: #4f4740;
}

.cherry-hero-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 4.1vw, 56px);
  font-weight: 400;
  line-height: 1.2;
}

.cherry-hero-panel > span {
  display: block;
  margin-bottom: 28px;
  color: #4f4740;
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-size: 18px;
}

.cherry-mark {
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 24px;
  background: #bd623b;
}

.cherry-story {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  gap: 76px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.cherry-story figure {
  height: 310px;
  margin: 0;
  overflow: hidden;
}

.cherry-story figure img,
.cherry-space-image img,
.cherry-card img,
.cherry-life-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cherry-space {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: 72px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 68px;
}

.cherry-space-copy h2 {
  margin: 0 0 18px;
  color: #332c26;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.75;
}

.cherry-space-copy p {
  color: #4f4740;
  font-size: 17px;
  line-height: 2;
}

.cherry-space-image {
  height: 360px;
  overflow: hidden;
}

.cherry-section-title {
  margin: 0 0 30px;
  color: #332c26;
  text-align: center;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.75;
}

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

.cherry-card-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.cherry-lifestyle {
  padding: 0 0 58px;
  background: #fbf8f3;
}

.cherry-lifestyle .cherry-life-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.cherry-stay {
  align-items: center;
  padding: 70px max(30px, calc((100vw - 1120px) / 2));
}

.cherry-stay .large {
  justify-self: end;
}

.cherry-final {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr);
  background: linear-gradient(90deg, #e7d9ca, #f8f4ee);
}

.cherry-final-image {
  background:
    linear-gradient(90deg, transparent, rgba(248, 244, 238, .30)),
    url("cherry-home-bed.webp") center / cover;
}

.cherry-final-copy {
  align-self: center;
  max-width: 430px;
  padding: 46px 52px;
}

.cherry-final-copy h2 {
  margin: 0 0 10px;
  color: #332c26;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 400;
}

.cherry-final-copy p {
  color: #4f4740;
  line-height: 1.9;
}

.room-page {
  overflow-x: hidden;
}

.room-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 78px;
}

.room-kicker {
  margin: 0 0 16px;
  color: #bd623b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
}

.room-hero h1 {
  margin: 0 0 22px;
  color: #332c26;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.room-lead {
  max-width: 540px;
  margin: 0 0 18px;
  color: #4f4740;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300;
  line-height: 2;
}

.room-note {
  max-width: 560px;
  margin: 0 0 30px;
  color: #746b62;
  font-size: 17px;
  font-weight: 300;
  line-height: 2;
}

.room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.room-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 26px;
  color: #5b4636;
  text-decoration: none;
  border: 1px solid rgba(91, 70, 54, .34);
  border-radius: 999px;
  background: rgba(255, 253, 248, .44);
}

.room-hero-photo {
  height: min(600px, 62vw);
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: #efe7dc;
}

.room-story {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 82px);
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0;
}

.room-story h2,
.room-detail-intro h2,
.room-nearby-copy h2,
.room-final h2 {
  margin: 0 0 18px;
  color: #332c26;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.65;
}

.room-story p,
.room-detail-intro p,
.room-nearby-copy p {
  color: #4f4740;
  font-size: 17px;
  line-height: 2;
}

.room-story-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.room-story-images figure {
  height: 380px;
  margin: 0;
  overflow: hidden;
}

.room-gallery-section {
  padding: 62px 0 72px;
  background: #fbf8f3;
}

.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.room-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 253, 248, .86);
  border: 1px solid rgba(91, 70, 54, .13);
}

.room-gallery-grid img {
  height: 260px;
}

.room-gallery-grid figcaption {
  padding: 15px 16px 18px;
  color: #4f4740;
  font-size: 17px;
}

.room-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.room-center-title {
  margin: 0 0 30px;
  color: #332c26;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.room-quality,
.room-price {
  padding: 68px 0 76px;
}

.room-quality {
  background: linear-gradient(90deg, #fffdf8, #f6f0e9);
}

.room-price {
  background: #fbf8f3;
}

.room-quality-grid,
.room-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.room-quality-grid article,
.room-price-grid article,
.room-service-list article {
  min-height: 184px;
  padding: 26px;
  background: rgba(255, 253, 248, .74);
  border: 1px solid rgba(91, 70, 54, .14);
}

.room-quality-grid h3,
.room-price-grid h3,
.room-service-list h3 {
  margin: 0 0 10px;
  color: #332c26;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
}

.room-quality-grid p,
.room-price-grid p,
.room-service-list p {
  margin: 0;
  color: #6b625a;
  line-height: 1.9;
}

.room-price-grid strong {
  display: block;
  margin-top: 18px;
  color: #bd623b;
  font-size: 18px;
  font-weight: 500;
}

.room-details {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 82px);
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

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

.room-detail-grid article {
  min-height: 190px;
  padding: 26px;
  background: rgba(255, 253, 248, .72);
  border: 1px solid rgba(91, 70, 54, .14);
}

.room-detail-grid h3 {
  margin: 0 0 10px;
  color: #332c26;
  font-size: 22px;
  font-weight: 400;
}

.room-detail-grid p {
  margin: 0;
  color: #6b625a;
  line-height: 1.9;
}

.room-nearby {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, .94fr);
  min-height: 420px;
  background: linear-gradient(90deg, #e7d9ca, #f8f4ee);
}

.room-nearby-photo {
  margin: 0;
  min-height: 420px;
}

.room-nearby-copy {
  align-self: center;
  max-width: 520px;
  padding: 56px;
}

.room-nearby-copy .large {
  margin-top: 12px;
}

.room-stay {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  background: #efe5da;
}

.room-stay-photo {
  min-height: 320px;
  background:
    linear-gradient(90deg, rgba(91, 70, 54, .08), rgba(91, 70, 54, 0)),
    url("../cherry/room-bed-sofa.webp") center / cover;
  filter: saturate(.9) contrast(.95) brightness(1.02);
}

.room-stay-copy {
  align-self: center;
  padding: 58px;
}

.room-stay h2,
.room-service h2 {
  margin: 0 0 12px;
  color: #332c26;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.55;
}

.room-stay p,
.room-section-intro {
  color: #4f4740;
  font-size: 17px;
  line-height: 2;
}

.room-stay p {
  margin-bottom: 24px;
}

.room-service {
  padding: 78px 0 84px;
  background: linear-gradient(90deg, #fffdf8, #f6f0e9);
}

.room-service-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 82px);
}

.room-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.room-final {
  padding: clamp(86px, 10vw, 130px) 24px;
  text-align: center;
  background: #fbf8f3;
}

.room-final h2 {
  max-width: 850px;
  margin: 0 auto 28px;
}

@media (max-width: 980px) {
  .cherry-header {
    grid-template-columns: 1fr auto;
  }
  .cherry-nav { display: none; }
  .cherry-wordmark {
    justify-self: start;
  }
  .cherry-language {
    grid-column: auto;
    width: auto;
    gap: 10px;
    justify-content: flex-end;
  }
  .cherry-language button {
    font-size: 13px;
    letter-spacing: .04em;
  }
  .cherry-story-grid,
  .cherry-story,
  .cherry-space,
  .cherry-final,
  .cherry-stay,
  .room-hero,
  .room-story,
  .room-details,
  .room-nearby {
    grid-template-columns: 1fr;
  }
  .cherry-room-grid,
  .cherry-card-grid,
  .cherry-life-grid,
  .room-gallery-grid,
  .room-quality-grid,
  .room-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .room-price-grid,
  .room-stay,
  .room-service-grid {
    grid-template-columns: 1fr;
  }
  .cherry-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cherry-header {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 12px 18px 10px;
  }
  .cherry-wordmark strong { font-size: 21px; }
  .cherry-language {
    gap: 8px;
    justify-self: start;
  }
  .cherry-language button {
    font-size: 12px;
    letter-spacing: .04em;
  }
  .cherry-hero {
    min-height: 520px;
    padding: 80px 22px 50px;
    background-position: center;
  }
  .cherry-room-grid,
  .cherry-card-grid,
  .cherry-life-grid,
  .room-gallery-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 78vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 12px;
  }
  .cherry-story-photo { height: 250px; }
  .cherry-stay-copy { padding: 36px 24px; }
  .room-hero {
    padding: 62px 0 54px;
  }
  .room-hero h1 {
    font-size: clamp(31px, 8.7vw, 38px);
    line-height: 1.35;
  }
  .room-hero-photo {
    height: 410px;
    min-height: 410px;
  }
  .room-story-images,
  .room-detail-grid,
  .room-quality-grid,
  .room-price-grid,
  .room-service-list {
    grid-template-columns: 1fr;
  }
  .room-gallery-grid img {
    height: 220px;
  }
  .room-nearby-copy {
    padding: 42px 24px;
  }
  .room-stay-copy {
    padding: 42px 24px;
  }
  .room-service {
    padding: 66px 0 72px;
  }
}
