:root {
  --ink: #25313f;
  --muted-ink: #637083;
  --paper: #fffdf7;
  --soft: #eef8ff;
  --sun: #ffd45a;
  --coral: #ff7b6e;
  --sky: #3aa8ff;
  --leaf: #34aa76;
  --deep: #214766;
  --line: rgba(37, 49, 63, 0.12);
  --shadow: 0 18px 52px rgba(40, 116, 154, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "Microsoft YaHei", "Hiragino Sans", system-ui, sans-serif;
  line-height: 1.65;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 8px 24px rgba(47, 102, 139, 0.08);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 10px 30px rgba(47, 102, 139, 0.12);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  opacity: 0.78;
  font-size: 12px;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 3;
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 7px 10px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 700;
}

.language-select select {
  max-width: 110px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
}

.site-header.scrolled .language-select select,
.site-header.open .language-select select {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  background: rgba(255, 212, 90, 0.38);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: #fff3c4;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/correct-1.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  filter: saturate(1.12) brightness(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 249, 224, 0.96) 0%, rgba(255, 249, 224, 0.74) 44%, rgba(255, 249, 224, 0.18) 100%),
    linear-gradient(0deg, rgba(255, 224, 132, 0.34), rgba(83, 185, 255, 0.08) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 110px);
  padding-top: 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sky);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--coral);
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.3;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 22px;
  color: var(--muted-ink);
  font-size: clamp(17px, 2vw, 20px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid rgba(37, 49, 63, 0.18);
  font-weight: 700;
}

.button.primary {
  border-color: var(--sun);
  color: #25313f;
  background: var(--sun);
  box-shadow: 0 12px 26px rgba(255, 174, 0, 0.22);
}

.button.secondary {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.72);
}

.button.dark {
  border-color: var(--deep);
  color: #fff;
  background: var(--deep);
}

.button.guide {
  border-color: rgba(37, 49, 63, 0.18);
  color: var(--deep);
  background: rgba(255, 255, 255, 0.82);
}

.quick-facts {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.quick-facts div {
  min-height: 76px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.82);
}

.quick-facts dt {
  margin-bottom: 4px;
  color: var(--muted-ink);
  font-size: 12px;
}

.quick-facts dd {
  margin: 0;
  font-weight: 800;
}

.section,
.band {
  padding: clamp(38px, 5vw, 64px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  background: #fff7d8;
}

.intro-grid,
.split-grid,
.access-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.intro p:last-child,
.split p,
.access p,
.booking p {
  color: var(--muted-ink);
  font-size: 18px;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 22px;
}

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

.photo-grid img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--soft);
  box-shadow: 0 8px 24px rgba(58, 168, 255, 0.12);
}

.photo-grid .photo-large {
  grid-column: span 2;
  grid-row: span 2;
  height: 388px;
}

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

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.room-media {
  min-height: 200px;
  background-size: cover;
  background-position: center;
}

.room-media.bedroom-one {
  background-image: url("assets/correct-2.jpg");
}

.room-media.bedroom-two {
  background-image: url("assets/correct-3.png");
}

.room-media.bedroom-three {
  background-image: url("assets/correct-4.png");
}

.room-body {
  padding: 18px;
}

.room-body p,
.amenity p {
  color: var(--muted-ink);
}

.room-body span {
  display: inline-block;
  margin-top: 8px;
  color: var(--coral);
  font-weight: 800;
}

.muted {
  background: var(--soft);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.amenity {
  min-height: 154px;
  padding: 20px;
  background: var(--paper);
}

.amenity strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.neighborhood {
  background: linear-gradient(180deg, #fffdf7 0%, #eef8ff 100%);
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.spot-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(37, 49, 63, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
}

.spot-card.sunshine {
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.28), rgba(58, 168, 255, 0.16)),
    #fff;
}

.spot-media {
  position: relative;
}

.spot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft);
}

.spot-media b {
  position: absolute;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 12px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 49, 63, 0.12);
  box-shadow: 0 10px 24px rgba(33, 71, 102, 0.16);
  font-size: 13px;
  line-height: 1.25;
}

.spot-card h3,
.spot-card p,
.spot-card span {
  margin-left: 24px;
  margin-right: 24px;
}

.spot-card span {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spot-card p {
  margin-bottom: 22px;
  color: var(--muted-ink);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
}

.route-grid div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.route-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.route-grid p {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.nearby-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.nearby-list li {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: #fff;
  font-weight: 800;
}

.nearby-list span {
  color: var(--sky);
  white-space: nowrap;
}

.access {
  background: #fff;
}

.access-details {
  margin-top: 20px;
  padding: 20px 22px;
  border-left: 4px solid var(--sun);
  background: var(--soft);
}

.access-details strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.access-details p {
  margin-bottom: 8px;
}

.access-details p:last-child {
  margin-bottom: 0;
}

.access-panel {
  padding: 18px;
  background: var(--soft);
}

.map-embed {
  overflow: hidden;
  border: 1px solid rgba(37, 49, 63, 0.12);
  background: #fff;
  aspect-ratio: 16 / 10;
  box-shadow: 0 10px 28px rgba(33, 71, 102, 0.1);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 16px;
  color: #fff;
  background: var(--deep);
  font-weight: 800;
}

.booking {
  padding: clamp(38px, 5vw, 62px) 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.95), rgba(255, 123, 110, 0.72)),
    #ffd45a;
}

.booking .eyebrow {
  color: var(--deep);
}

.booking p {
  color: rgba(37, 49, 63, 0.78);
}

.booking-grid {
  align-items: center;
}

.booking-actions {
  justify-content: flex-end;
}

.booking-note {
  flex-basis: 100%;
  max-width: 560px;
  margin: 4px 0 0 auto;
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(18px, 4vw, 48px);
  color: rgba(37, 49, 63, 0.72);
  background: #fff7d8;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .language-select span {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    border-color: var(--line);
  }

  .hero {
    min-height: 76vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 249, 224, 0.95), rgba(255, 249, 224, 0.54)),
      linear-gradient(0deg, rgba(255, 224, 132, 0.4), rgba(83, 185, 255, 0.08));
  }

  .hero-content {
    width: min(100% - 36px, 650px);
    margin: 0 auto;
  }

  .quick-facts,
  .room-grid,
  .amenity-grid,
  .photo-grid,
  .spot-grid,
  .route-grid,
  .intro-grid,
  .split-grid,
  .access-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid .photo-large {
    grid-column: span 1;
    grid-row: span 1;
    height: 230px;
  }

  .photo-grid img {
    height: 230px;
  }

  .quick-facts {
    margin-top: 22px;
  }

  .amenity {
    min-height: 140px;
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .booking-note {
    margin-left: 0;
    text-align: left;
  }

  .map-embed {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 39px;
  }

  .hero-actions,
  .booking-actions,
  .site-footer,
  .nearby-list li {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .map-link {
    width: 100%;
  }
}
