:root {
  --ink: #17211f;
  --muted: #5f6965;
  --line: #d9dfda;
  --paper: #f7f7f2;
  --white: #ffffff;
  --mint: #d7efe2;
  --green: #2d6b55;
  --coral: #d86f53;
  --sun: #f3c957;
  --aqua: #7bc8bf;
  --shadow: 0 18px 50px rgba(23, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 247, 242, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(156px, 16vw, 206px);
  height: auto;
}

.brand:hover .brand-logo {
  transform: translateY(-1px);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 26px);
  font-size: 14px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-label {
  color: var(--muted);
  font-size: 12px;
}

.language-select {
  min-width: 132px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-section {
  position: relative;
  display: grid;
  min-height: calc(100svh - 67px);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 15, 0.66), rgba(8, 17, 15, 0.24), rgba(8, 17, 15, 0.04)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(820px, calc(100% - 36px));
  margin: 0 0 clamp(34px, 8vh, 82px) clamp(18px, 7vw, 92px);
  color: var(--white);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-facts div {
  min-height: 96px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--sun);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split-section > div > p:not(.eyebrow),
.about-section > div > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.intro-band {
  background: var(--white);
}

.feature-grid,
.room-grid,
.route-grid,
.ota-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.route-card,
.guide-cards article,
.roadmap article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-code,
.route-time,
.roadmap span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.feature-card p,
.route-card p,
.guide-cards p,
.roadmap p,
.facility-list p {
  color: var(--muted);
}

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

.room-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.room-family {
  background-image: url("https://images.unsplash.com/photo-1560448075-bb485b067938?auto=format&fit=crop&w=1000&q=80");
}

.room-couple {
  background-image: url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1000&q=80");
}

.room-long {
  background-image: url("https://images.unsplash.com/photo-1554995207-c18c203602cb?auto=format&fit=crop&w=1000&q=80");
}

.room-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 9px;
  color: var(--green);
  background: var(--mint);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.room-body ul {
  padding-left: 18px;
  color: var(--muted);
}

.text-link {
  color: var(--green);
  font-weight: 900;
}

.split-section,
.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.facility-list {
  display: grid;
  gap: 14px;
}

.facility-list article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.access-section {
  background: #e9f5f1;
}

.risk-note {
  max-width: 920px;
  margin-top: 22px;
  padding: 20px;
  background: #fff8e4;
  border: 1px solid #ead48a;
  border-radius: 8px;
}

.risk-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 20px;
}

.guide-feature {
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-feature > div:not(.guide-image) {
  padding: 26px;
}

.guide-image {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(23, 33, 31, 0), rgba(23, 33, 31, 0.3)),
    url("https://images.unsplash.com/photo-1528164344705-47542687000d?auto=format&fit=crop&w=1200&q=80") center / cover;
}

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

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

.booking-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.ota-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.ota-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 16px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font: inherit;
}

.ota-button:hover {
  color: var(--ink);
  background: var(--sun);
}

.ota-button.pending {
  cursor: not-allowed;
  opacity: 0.72;
}

.ota-button.pending:hover {
  color: var(--white);
  background: transparent;
}

.roadmap {
  display: grid;
  gap: 14px;
}

.chat-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  min-height: 48px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
}

.chat-panel {
  position: fixed;
  right: 20px;
  bottom: 82px;
  z-index: 31;
  width: min(390px, calc(100vw - 40px));
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.chat-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.chat-header small {
  display: block;
  color: var(--muted);
}

.icon-button {
  width: 34px;
  height: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.chat-body {
  padding: 18px;
}

.chat-prompts {
  display: grid;
  gap: 8px;
}

.chat-prompts button {
  padding: 11px;
  text-align: left;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.chat-warning {
  padding: 12px;
  color: var(--muted);
  background: #fff8e4;
  border-radius: 8px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .header-actions {
    justify-content: space-between;
  }

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

  .guide-layout,
  .split-section,
  .about-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-section {
    min-height: 760px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(8, 17, 15, 0.28), rgba(8, 17, 15, 0.78)),
      url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1100&q=80") center / cover;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 28px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-facts,
  .feature-grid.three,
  .room-grid,
  .route-grid,
  .guide-cards,
  .ota-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    font-size: 13px;
  }
}
