:root {
  --bg: #f5f0fb;
  --bg-deep: #e8ddf6;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --surface-muted: #faf6ff;
  --ink: #241c35;
  --ink-soft: #6f6587;
  --line: rgba(36, 28, 53, 0.08);
  --line-strong: rgba(36, 28, 53, 0.16);
  --brand: #9d76d6;
  --brand-strong: #7654ad;
  --brand-soft: #f1e9ff;
  --accent: #bb9aee;
  --navy: #2b1f3d;
  --success: #1f6e38;
  --error: #a33232;
  --shadow: 0 20px 56px rgba(55, 33, 88, 0.12);
  --shadow-soft: 0 12px 28px rgba(55, 33, 88, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", "PingFang SC", "Hiragino Sans GB", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(187, 154, 238, 0.16), transparent 22%),
    linear-gradient(180deg, #fcf8ff 0%, var(--bg) 54%, #efe7fa 100%);
  overflow-x: clip;
}

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

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

p {
  margin-bottom: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 248, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.brand-block {
  display: grid;
  gap: 2px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.topbar-subtitle {
  font-size: 0.68rem;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  padding: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.lang-link {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.lang-link.active {
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.mini-action {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--brand-strong);
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(241, 233, 255, 0.28), rgba(241, 233, 255, 0.52));
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Songti SC", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.hero-text,
.section-lead,
.muted,
.card-copy,
input,
select,
textarea,
th,
td {
  color: var(--ink-soft);
}

.hero-text,
.section-lead {
  font-size: 1rem;
  line-height: 1.78;
}

.hero-grid,
.detail-grid,
.admin-grid,
.footer-grid,
.value-grid,
.destination-grid,
.offer-grid,
.feature-facts,
.summary-metrics,
.hero-mini-metrics {
  display: grid;
  gap: 24px;
}

.hero-banner {
  padding: 26px 0 0;
}

.banner-carousel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.banner-slide img {
  height: 420px;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  padding: 42px;
  display: grid;
  align-content: end;
  gap: 14px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(31, 20, 49, 0.8) 0%, rgba(31, 20, 49, 0.54) 42%, rgba(31, 20, 49, 0.18) 100%),
    linear-gradient(180deg, rgba(31, 20, 49, 0.08) 0%, rgba(31, 20, 49, 0.66) 100%);
}

.banner-overlay .eyebrow,
.banner-overlay .section-lead,
.banner-overlay h2 {
  color: #fff;
}

.banner-overlay h2 {
  max-width: 620px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.98;
}

.banner-overlay .section-lead {
  max-width: 620px;
}

.banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-dots {
  position: absolute;
  left: 42px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.banner-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.banner-dot.active {
  width: 30px;
  background: #fff;
}

.landing-hero {
  padding: 34px 0 42px;
}

.landing-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
}

.hero-search-shell {
  margin-top: 26px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(157, 118, 214, 0.12);
  box-shadow: var(--shadow);
}

.search-chip {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface-muted);
}

.search-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.search-chip select,
.search-chip input {
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  box-shadow: none;
}

.search-chip select:focus,
.search-chip input:focus {
  outline: none;
}

.search-button {
  width: 100%;
}

.button,
button {
  appearance: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.button {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--brand-strong));
  box-shadow: 0 14px 30px rgba(118, 84, 173, 0.24);
}

.ghost {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(157, 118, 214, 0.18);
}

.button.is-loading,
button.is-loading {
  opacity: 0.86;
  pointer-events: none;
}

.search-summary {
  margin-top: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(157, 118, 214, 0.14);
}

.search-summary strong {
  color: var(--ink);
}

.search-summary span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.compact-notice {
  margin-top: 14px;
}

.hero-spotlight,
.detail-card,
.form-card,
.table-section,
.value-card,
.offer-card,
.link-card,
.hotel-hero-panel {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-spotlight {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100%;
}

.hero-spotlight img {
  height: 100%;
  min-height: 360px;
}

.hero-spotlight-copy {
  padding: 22px;
}

.spotlight-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 800;
}

.hero-spotlight-copy p {
  margin-top: 8px;
}

.hero-spotlight .actions {
  margin-top: 16px;
}

.spotlight-meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--brand-strong);
  font-weight: 700;
}

.landing-strip {
  padding-top: 0;
}

.manifesto-band {
  padding-top: 0;
}

.manifesto-shell {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(187, 154, 238, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.manifesto-copy {
  max-width: 560px;
}

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

.manifesto-card {
  min-height: 132px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(157, 118, 214, 0.14);
}

.manifesto-card strong {
  display: block;
  color: var(--ink);
  font-family: "Fraunces", "Songti SC", serif;
  font-size: 1.3rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.manifesto-card-wide {
  grid-column: 1 / -1;
  min-height: 112px;
}

.landing-cats {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.landing-cats a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.text-link {
  color: var(--brand-strong);
  font-weight: 800;
}

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

.value-card {
  padding: 24px;
  border-radius: 20px;
}

.value-card p {
  margin-top: 8px;
  line-height: 1.75;
}

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

.destination-card {
  min-height: 160px;
  padding: 18px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 38, 0.02), rgba(10, 20, 38, 0.62));
}

.destination-card span {
  position: relative;
  z-index: 1;
  font-size: 1.45rem;
  font-weight: 700;
}

.destination-shanghai {
  background:
    linear-gradient(180deg, rgba(10, 20, 38, 0.04), rgba(10, 20, 38, 0.62)),
    url("https://images.unsplash.com/photo-1548919973-5cef591cdbc9?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.destination-hangzhou {
  background:
    linear-gradient(180deg, rgba(10, 20, 38, 0.04), rgba(10, 20, 38, 0.62)),
    url("https://images.unsplash.com/photo-1519046904884-53103b34b206?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.destination-suzhou {
  background:
    linear-gradient(180deg, rgba(10, 20, 38, 0.04), rgba(10, 20, 38, 0.62)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.destination-sanya {
  background:
    linear-gradient(180deg, rgba(10, 20, 38, 0.04), rgba(10, 20, 38, 0.62)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80") center/cover;
}

.feature-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.feature-stage-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-stage-media img {
  height: 520px;
}

.feature-facts {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-bullets {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.mini-bullets span {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.mini-bullets span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-facts article,
.hero-mini-metrics article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.feature-facts strong,
.hero-mini-metrics strong,
.room-side strong,
.checkout-amount,
.metric-card strong {
  display: block;
  font-family: "Fraunces", "Songti SC", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-facts strong,
.hero-mini-metrics strong,
.metric-card strong {
  font-size: 1.6rem;
  color: var(--ink);
}

.feature-facts span,
.hero-mini-metrics span,
.metric-card span {
  display: block;
  margin-top: 6px;
  line-height: 1.65;
  color: var(--ink-soft);
}

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

.offer-card {
  overflow: hidden;
}

.offer-card img {
  height: 260px;
}

.card-body {
  padding: 20px;
}

.card-copy {
  line-height: 1.7;
}

.card-tags {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-meta,
.split-line,
.checkout-bar,
.policy-item,
.link-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-meta {
  margin-top: 16px;
  font-weight: 700;
  color: var(--brand-strong);
}

.card-meta a {
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.hotel-page {
  padding-top: 28px;
  padding-bottom: 132px;
}

.hotel-hero-panel {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  overflow: hidden;
}

.hotel-hero-media .detail-image {
  height: 100%;
  min-height: 540px;
  margin: 0;
  border-radius: 0;
}

.hotel-hero-copy {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(187, 154, 238, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 244, 255, 0.98));
}

.hotel-summary {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.compact-summary {
  margin-top: 0;
  font-size: 0.96rem;
  line-height: 1.72;
}

.tag-list {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-mini-metrics {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.compact-button {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.92rem;
}

.detail-card,
.form-card,
.table-section {
  padding: 24px;
  min-width: 0;
}

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

.booking-stage {
  margin-top: 22px;
}

.booking-workbench {
  align-items: start;
  min-width: 0;
}

.booking-main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.slim-title {
  margin-bottom: 4px;
}

.mini-heading {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.mini-heading strong {
  color: var(--ink);
  font-size: 1rem;
}

.mini-heading span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.compact-block {
  padding: 16px;
  border-radius: 18px;
  background: rgba(250, 246, 255, 0.9);
  border: 1px solid var(--line);
  min-width: 0;
}

.room-choice-list {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.room-option {
  position: relative;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.room-option:hover {
  transform: translateY(-1px);
  border-color: rgba(157, 118, 214, 0.22);
}

.room-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.room-option-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(157, 118, 214, 0.28);
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

.room-option-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.room-option-main strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.room-option-main span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
}

.room-option-price {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.room-option-price strong {
  color: var(--brand-strong);
  font-size: 1.18rem;
  line-height: 1;
}

.room-option-price span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.room-option:has(input:checked),
.room-option.is-selected {
  border-color: rgba(157, 118, 214, 0.42);
  box-shadow: 0 10px 22px rgba(118, 84, 173, 0.12);
}

.room-option:has(input:checked) .room-option-check,
.room-option.is-selected .room-option-check {
  border-color: var(--accent);
  background: var(--accent);
}

.room-card {
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.room-main p {
  line-height: 1.72;
}

.tag-list.small {
  margin-top: 10px;
}

.room-side {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 4px;
}

.room-side strong {
  font-size: 1.8rem;
  color: var(--brand-strong);
  line-height: 1;
}

.policy-block {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.compact-policy {
  margin-top: 0;
  margin-bottom: 12px;
}

.policy-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(250, 246, 255, 0.92);
  border: 1px solid var(--line);
}

.inline-copy {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(250, 246, 255, 0.92);
  border: 1px solid var(--line);
}

.inline-copy p:last-child {
  margin-top: 8px;
  line-height: 1.78;
}

.facility-grid {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.facility-item {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.product-upsell {
  margin-top: 0;
}

.product-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
}

.product-tile {
  overflow: hidden;
  flex: 0 0 280px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  min-width: 0;
}

.product-tile img {
  height: 100%;
  min-height: 138px;
}

.product-tile-body {
  padding: 12px 12px 12px 0;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.product-tile-category {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.product-tile h3 {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.18;
}

.product-copy {
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-tile-footer {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-meta strong {
  color: var(--brand-strong);
  font-size: 1rem;
}

.product-meta span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.product-qty {
  margin-top: 0;
}

.inline-qty {
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
}

.inline-qty select {
  min-height: 36px;
  min-width: 72px;
  padding: 0 10px;
  margin-top: 0;
}

.booking-note {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(241, 233, 255, 0.76);
  border: 1px solid var(--line);
}

.booking-note span,
.booking-note strong {
  display: block;
}

.booking-note span {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.booking-note strong {
  line-height: 1.6;
}

.summary-shell,
.payment-shell {
  display: grid;
  gap: 24px;
}

.summary-hero,
.summary-cards,
.payment-shell {
  display: grid;
  gap: 16px;
}

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

.summary-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.summary-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.summary-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  line-height: 1.55;
}

.summary-product-list {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.summary-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.summary-product-row span {
  color: var(--ink-soft);
}

.summary-product-row strong {
  color: var(--ink);
}

.payment-shell {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.price-box,
.status-pill {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-weight: 700;
}

.qr-shell {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.crypto-grid {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.crypto-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(245, 248, 252, 0.92);
  border: 1px solid var(--line);
}

.crypto-head {
  margin-bottom: 12px;
}

.crypto-head strong {
  color: var(--ink);
  font-size: 1rem;
}

.crypto-head span {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.crypto-qr {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.crypto-address-block {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.crypto-address-block span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.crypto-address-block code {
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.55;
  word-break: break-all;
}

.qr-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(157, 118, 214, 0.14) 10%, transparent 10%, transparent 20%, rgba(157, 118, 214, 0.14) 20%, rgba(157, 118, 214, 0.14) 30%, transparent 30%, transparent 40%, rgba(157, 118, 214, 0.14) 40%, rgba(157, 118, 214, 0.14) 50%, transparent 50%, transparent 60%, rgba(157, 118, 214, 0.14) 60%, rgba(157, 118, 214, 0.14) 70%, transparent 70%, transparent 80%, rgba(157, 118, 214, 0.14) 80%),
    linear-gradient(rgba(157, 118, 214, 0.14) 10%, transparent 10%, transparent 20%, rgba(157, 118, 214, 0.14) 20%, rgba(157, 118, 214, 0.14) 30%, transparent 30%, transparent 40%, rgba(157, 118, 214, 0.14) 40%, rgba(157, 118, 214, 0.14) 50%, transparent 50%, transparent 60%, rgba(157, 118, 214, 0.14) 60%, rgba(157, 118, 214, 0.14) 70%, transparent 70%, transparent 80%, rgba(157, 118, 214, 0.14) 80%),
    #fff;
  border: 1px solid var(--line);
}

.form-header p:last-child {
  margin-top: 8px;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.compact-form-grid {
  margin-top: 14px;
  gap: 12px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(157, 118, 214, 0.16);
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
}

.booking-submit {
  min-width: 128px;
}

.hotel-folders {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.booking-bottom-shell {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 0 max(12px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(245, 240, 251, 0), rgba(245, 240, 251, 0.92) 28%, rgba(245, 240, 251, 0.98) 100%);
}

.booking-bottom-bar {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(55, 33, 88, 0.14);
}

.booking-bottom-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.booking-bottom-copy span,
.booking-bottom-total span,
.booking-bottom-copy em {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-style: normal;
}

.booking-bottom-copy strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-bottom-copy p {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.booking-bottom-action {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.booking-bottom-total {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.booking-bottom-total strong {
  color: var(--brand-strong);
  font-size: 1.26rem;
  line-height: 1;
}

.info-folder {
  border-radius: 16px;
  background: rgba(245, 248, 252, 0.88);
  border: 1px solid var(--line);
  overflow: hidden;
}

.folder-heading {
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.folder-body {
  padding: 16px 18px 18px;
}

.folder-body p {
  color: var(--ink-soft);
  line-height: 1.72;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.full,
.full-span {
  grid-column: 1 / -1;
}

.notice {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.notice.success {
  background: rgba(31, 110, 56, 0.12);
  color: var(--success);
}

.notice.error {
  background: rgba(163, 50, 50, 0.12);
  color: var(--error);
}

.summary-list {
  margin-top: 20px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-row {
  padding: 12px 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row strong {
  max-width: 64%;
  text-align: right;
}

.checkout-bar {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: var(--brand-soft);
}

.checkout-amount {
  margin-top: 6px;
  font-size: 1.8rem;
  color: var(--brand-strong);
}

.summary-canvas {
  margin-bottom: 24px;
}

.summary-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-dashboard {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.admin-sidebar-card,
.admin-panel,
.admin-auth-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.admin-sidebar-card {
  padding: 22px;
}

.admin-nav {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.admin-nav a {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  background: var(--surface-muted);
  color: var(--ink);
  font-weight: 700;
}

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

.admin-content {
  display: grid;
  gap: 24px;
}

.admin-panel {
  padding: 24px;
}

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

.admin-create-form {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.admin-create-form button {
  align-self: end;
}

.admin-card-list {
  display: grid;
  gap: 16px;
}

.admin-edit-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.admin-card-head {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-card-head strong {
  color: var(--ink);
  font-size: 1rem;
}

.admin-image-preview {
  margin: 0 0 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(250, 246, 255, 0.82);
}

.admin-image-preview img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.admin-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.small-button {
  min-height: 36px;
  padding: 0 14px;
}

.admin-auth-shell {
  min-height: calc(100vh - 180px);
  display: grid;
  align-items: center;
}

.admin-auth-card {
  width: min(420px, 100%);
  margin: 0 auto;
  padding: 28px;
}

.admin-auth-form {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

body.admin-page .floating-whatsapp,
body.admin-auth-page .floating-whatsapp {
  display: none;
}

.metric-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  font-size: 1.6rem;
}

.helper-text,
.admin-intro {
  margin-top: 8px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.admin-grid {
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
}

.admin-stack {
  display: grid;
  gap: 24px;
}

.table-headline {
  margin-bottom: 18px;
}

.pill-muted {
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
}

.generated-link {
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  word-break: break-all;
}

.generated-link a,
.inline-link {
  color: var(--brand-strong);
  font-weight: 700;
}

.link-list {
  display: grid;
  gap: 12px;
}

.link-card {
  padding: 18px;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.table-title,
.table-sub {
  display: block;
}

.table-title {
  color: var(--ink);
  font-weight: 700;
}

.table-sub {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.text-button {
  background: transparent;
  padding: 0;
  font-weight: 700;
}

.danger {
  color: var(--error);
}

.empty-state {
  padding: 24px 18px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px dashed var(--line-strong);
}

.site-footer {
  padding: 18px 0 28px;
}

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

.footer-brand {
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #27d366, #128c7e);
  color: #fff;
  box-shadow: 0 16px 36px rgba(18, 140, 126, 0.28);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-mark {
  width: 28px;
  height: 28px;
  display: block;
}

@media (max-width: 980px) {
  .landing-hero-grid,
  .manifesto-shell,
  .feature-stage,
  .hotel-hero-panel,
  .admin-dashboard,
  .admin-grid,
  .payment-shell,
  .value-grid,
  .destination-grid,
  .offer-grid,
  .product-grid,
  .summary-metrics,
  .feature-facts,
  .hero-mini-metrics {
    grid-template-columns: 1fr;
  }

  .hero-search-shell {
    grid-template-columns: 1fr;
  }

  .manifesto-quotes {
    grid-template-columns: 1fr;
  }

  .admin-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-sidebar {
    position: static;
  }

  .banner-slide img,
  .feature-stage-media img,
  .hotel-hero-media .detail-image {
    height: 360px;
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 20px, 100%);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .topbar-tools {
    gap: 8px;
  }

  .brand {
    font-size: 1rem;
  }

  .topbar-subtitle {
    font-size: 0.6rem;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .lang-link {
    min-height: 30px;
    padding: 0 10px;
  }

  .section {
    padding: 50px 0;
  }

  .landing-hero {
    padding: 22px 0 30px;
  }

  .hero-banner {
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  h3 {
    font-size: 1.32rem;
  }

  .hero-spotlight img {
    min-height: 260px;
  }

  .banner-carousel {
    min-height: 370px;
  }

  .banner-slide img {
    height: 370px;
  }

  .banner-overlay {
    padding: 26px 20px 54px;
  }

  .banner-dots {
    left: 20px;
    bottom: 18px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .destination-card {
    min-height: 120px;
  }

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-side {
    justify-items: start;
  }

  .hero-actions,
  .mini-heading,
  .booking-bottom-action {
    flex-direction: column;
    align-items: start;
  }

  .section-title,
  .form-grid,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .summary-cards {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .form-card,
  .table-section,
  .value-card {
    padding: 20px;
  }

  .hotel-page {
    padding-bottom: 156px;
  }

  .checkout-bar,
  .policy-item,
  .link-card-actions {
    flex-direction: column;
    align-items: start;
  }

  .summary-row {
    flex-direction: column;
    gap: 6px;
  }

  .summary-row strong {
    max-width: none;
    text-align: left;
  }

  .room-option {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .room-option-price {
    grid-column: 2 / 3;
    justify-items: start;
  }

  .product-strip {
    gap: 10px;
  }

  .product-tile {
    flex-basis: 84vw;
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .product-tile img {
    min-height: 124px;
  }

  .booking-bottom-bar {
    padding: 12px 14px;
    gap: 12px;
  }

  .booking-bottom-copy strong {
    white-space: normal;
  }

  .booking-bottom-total {
    justify-items: start;
  }

  .booking-submit {
    width: 100%;
  }
}
