/* ============================================================
   KOULING Hotels — Global Styles
   Design tokens restored from the .ardot canvas (exact values)
   ============================================================ */

:root {
  /* Colors */
  --cream:      #F7F4EF;   /* page background */
  --ink:        #2B2B2B;   /* primary text / dark section */
  --gold:       #C9A36A;   /* accent */
  --gold-dark:  #3A2E1A;   /* accent text on gold */
  --footer-bg:  #1F1F1F;   /* footer background */
  --card-dark:  #353535;   /* dark section cards */
  --chip:       #EDE8DF;   /* light chip / hover */
  --muted:      #6B675F;   /* secondary text on light */
  --muted-dark: #B8B3AA;   /* secondary text on dark */
  --muted-faint:#8A857D;   /* faint text (footer meta) */
  --white:      #FFFFFF;

  /* Typography */
  --font-sans: "Sarasa Gothic SC", "Inter", -apple-system, "Segoe UI",
               "PingFang SC", "Microsoft YaHei", sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-pill: 20px;
  --r-circle: 22px;
  --r-circle-lg: 24px;

  /* Spacing */
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 36px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 96px;

  --container-pad: 96px;
  --container-max: 1440px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(43,43,43,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: var(--r-md);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}
.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.main-nav a:hover { color: var(--gold-dark); }
.main-nav a.is-active { color: var(--gold); font-weight: 700; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--chip);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.lang-switch .caret { font-size: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { opacity: 0.9; }
.btn-gold { background: var(--gold); color: #1A1A1A; }
.btn-gold:hover { opacity: 0.92; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ---------- Hero (homepage) ---------- */
.hero {
  position: relative;
  height: 680px;
  background: #2B2B2B;
  background-image: linear-gradient(rgba(26,26,26,0.94), rgba(26,26,26,0.94));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
.hero-sub {
  font-size: 22px;
  color: #E8E4DC;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

/* ---------- Section header ---------- */
.section {
  padding: var(--space-11) 0;
}
.section-header {
  margin-bottom: var(--space-8);
}
.section-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
}
.section-sub {
  font-size: 18px;
  color: var(--muted);
  margin-top: var(--space-2);
}

/* ---------- Hotel cards (homepage) ---------- */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.hotel-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hotel-card-media {
  height: 300px;
  background: var(--chip);
  background-size: cover;
  background-position: center;
  position: relative;
}
.hotel-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.hotel-card-name {
  font-size: 24px;
  font-weight: 700;
}
.hotel-card-loc {
  font-size: 15px;
  color: var(--muted);
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  background: var(--chip);
  color: var(--ink);
}
.tag-gold {
  background: var(--gold);
  color: #1A1A1A;
  font-weight: 700;
}
.hotel-card .btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ---------- Dark section (Why KOULING) ---------- */
.section-dark {
  background: var(--ink);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: var(--muted-dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.why-card {
  background: var(--card-dark);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-circle);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
}
.why-icon svg { width: 20px; height: 20px; }
.why-card h3 { font-size: 20px; font-weight: 700; color: var(--white); }
.why-card p { font-size: 15px; color: var(--muted-dark); }

/* ---------- Guide cards (homepage) ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.guide-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(43,43,43,0.12);
}
.guide-media {
  height: 180px;
  background: var(--chip);
  background-size: cover;
  background-position: center;
}
.guide-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide-body h3 { font-size: 18px; font-weight: 700; }
.guide-body p { font-size: 14px; color: var(--muted); }

/* ---------- Booking bar (homepage) ---------- */
.section-book {
  background: var(--gold);
  padding: var(--space-11) 0;
}
.section-book .section-title { color: #1A1A1A; }
.section-book .book-sub { color: rgba(26, 26, 26, 0.78); }
.book-bar {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.book-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.book-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}
.book-field .value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.book-field .caret { font-size: 14px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: var(--space-9) 0;
}
.footer-top {
  display: flex;
  gap: var(--space-9);
  padding-bottom: var(--space-8);
}
.footer-brand {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}
.footer-tagline {
  font-size: 15px;
  color: var(--muted-dark);
}
.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--muted-dark);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .copy { font-size: 13px; color: var(--muted-faint); }
.footer-legal {
  display: flex;
  gap: var(--space-4);
}
.footer-legal a { font-size: 13px; color: var(--muted-faint); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   HOTEL DETAIL PAGE
   ============================================================ */
.hotel-hero {
  position: relative;
  height: 560px;
  background: #2B2B2B;
  background-image: linear-gradient(rgba(26,26,26,0.88), rgba(26,26,26,0.88));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hotel-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
}
.breadcrumb {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold);
}
.hotel-hero-name {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
}
.hotel-hero-loc {
  font-size: 20px;
  color: #E8E4DC;
}

/* Key selling points */
.usp-bar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-8) 0;
}
.usp-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.usp-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-circle-lg);
  background: var(--chip);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.usp-icon svg { width: 24px; height: 24px; }
.usp-item span { font-size: 16px; font-weight: 700; color: var(--ink); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 16px;
  height: 480px;
}
.gallery-main {
  border-radius: var(--r-lg);
  background: var(--chip);
  background-size: cover;
  background-position: center;
}
.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gallery-side .gallery-thumb {
  flex: 1;
  border-radius: var(--r-lg);
  background: var(--chip);
  background-size: cover;
  background-position: center;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.about-col h3 { font-size: 20px; font-weight: 700; margin-bottom: var(--space-2); }
.about-col p { font-size: 15px; color: var(--muted); }

/* Rooms */
.section-rooms { background: var(--white); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.room-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.room-media {
  height: 200px;
  background: var(--chip);
  background-size: cover;
  background-position: center;
}
.room-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.room-body h3 { font-size: 20px; font-weight: 700; }
.room-meta { font-size: 14px; color: var(--muted); }
.room-amen { font-size: 13px; color: var(--muted-faint); }
.room-price { font-size: 16px; font-weight: 700; color: var(--gold); }

/* Location */
.section-location { background: var(--ink); }
.section-location .section-title { color: var(--white); }
.loc-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}
.loc-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.loc-node {
  padding: 20px 36px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
}
.loc-node-hotel { background: var(--gold); color: #1A1A1A; }
.loc-node-metro {
  background: #3A3A3A;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.loc-line {
  width: 2px;
  height: 48px;
  background: var(--gold);
}
.loc-tag {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: #3A3A3A;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
}
.loc-times {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.loc-times h4 { font-size: 20px; font-weight: 700; color: var(--white); }
.transit-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #3A3A3A;
}
.transit-row .place { font-size: 15px; color: var(--muted-dark); }
.transit-row .time { font-size: 15px; font-weight: 600; color: var(--white); }

/* Book CTA (detail) */
.book-cta {
  background: var(--gold);
  padding: 72px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.book-cta h2 { font-size: 36px; font-weight: 700; color: #1A1A1A; }
.book-cta p { font-size: 16px; color: var(--gold-dark); }

/* ============================================================
   MOBILE (mobile-first adaptation shown at ≤768px)
   ============================================================ */
.mobile-view {
  display: none;
}

/* ---------- Responsive breakpoints ---------- */
@media (max-width: 1100px) {
  :root { --container-pad: 48px; }
  .hero-title { font-size: 56px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .hotel-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
  .gallery-main { height: 360px; }
  .gallery-side { flex-direction: row; }
  .gallery-side .gallery-thumb { height: 200px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --container-pad: 20px; }

  .main-nav { display: none; }
  .header-inner { height: 60px; }
  .brand-name { font-size: 16px; letter-spacing: 1px; }
  .mobile-menu-toggle { display: flex; }
  /* Keep language switch visible on mobile (smaller) */
  .lang-switch { padding: 6px 10px; font-size: 13px; }
  .header-actions { gap: 10px; }
  /* Hide the header BOOK NOW on mobile — the sticky bottom bar covers it */
  .header-actions .btn-dark { display: none; }

  .hero { height: 480px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .hero-ctas .btn { width: 100%; }

  .section { padding: 48px 0; }
  .section-title { font-size: 28px; }
  .section-sub { font-size: 16px; }

  .why-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }

  .book-bar { flex-direction: column; align-items: stretch; }
  .book-field { width: 100%; }

  .footer-top { flex-direction: column; gap: 32px; }

  .hotel-hero { height: 420px; }
  .hotel-hero-name { font-size: 34px; }
  .hotel-hero-loc { font-size: 16px; }
  .usp-bar { flex-wrap: wrap; }
  .usp-item { flex: 1 1 40%; }
  .gallery-side { flex-direction: column; }
  .gallery-side .gallery-thumb { height: 160px; }

  /* Sticky bottom booking bar */
  .sticky-book {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--ink);
    padding: 16px 20px;
  }
  .sticky-book .btn {
    width: 100%;
    height: 48px;
    font-size: 15px;
  }
  body.has-sticky-bar { padding-bottom: 80px; }
}

/* Sticky bottom booking bar — hidden on desktop, shown ≤768px */
.sticky-book {
  display: none;
}

/* Mobile menu toggle (hidden on desktop) */
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--chip);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* ---------- Placeholder media (fills stand-in for real photos) ---------- */
.placeholder-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8E2D6, #D8D0C0);
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 16px;
}

/* ============================================================
   PAGE INTRO (shared: list / guide / booking)
   ============================================================ */
.page-intro {
  padding: var(--space-8) 0 var(--space-5);
}
.page-intro .breadcrumb { display: block; margin-bottom: 16px; }
.page-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--ink);
}
.page-sub {
  font-size: 18px;
  color: var(--muted);
  margin-top: var(--space-2);
  max-width: 560px;
}

/* ============================================================
   HOTELS LIST PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: var(--space-7);
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  background: var(--chip);
  color: var(--ink);
  cursor: pointer;
  border: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.filter-chip.is-active {
  background: var(--ink);
  color: var(--white);
}
.filter-chip:hover:not(.is-active) { background: #E0D9CC; }

.hotel-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding-bottom: var(--space-10);
}
.hotel-row {
  display: flex;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.hotel-row-media {
  width: 440px;
  min-height: 340px;
  flex-shrink: 0;
  background: var(--chip);
  background-size: cover;
  background-position: center;
}
.hotel-row-body {
  flex: 1;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.hotel-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hotel-row-name {
  font-size: 26px;
  font-weight: 700;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--r-sm);
  background: var(--chip);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.hotel-row-loc { font-size: 15px; color: var(--muted); }
.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}
.amenity-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.hotel-row-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: var(--space-3);
}
.hotel-row-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

/* ============================================================
   GUIDE PAGE
   ============================================================ */
.guide-hero {
  position: relative;
  height: 420px;
  background: #2B2B2B;
  background-image: linear-gradient(rgba(26,26,26,1), rgba(26,26,26,1));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.guide-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
}
.guide-hero .hero-eyebrow { color: var(--gold); }
.guide-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
}
.guide-hero-sub {
  font-size: 20px;
  color: #E8E4DC;
}
.guide-grid-all {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding-bottom: var(--space-10);
}
.guide-card { height: 100%; }
.guide-card .guide-media { height: 160px; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-section {
  padding: var(--space-8) 0 var(--space-10);
}
.ota-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.ota-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ota-card-media {
  height: 220px;
  background: var(--chip);
  background-size: cover;
  background-position: center;
}
.ota-card-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.ota-card-name { font-size: 22px; font-weight: 700; }
.ota-card-loc { font-size: 14px; color: var(--muted); }
.ota-divider {
  height: 1px;
  background: var(--chip);
  margin: 4px 0;
}
.ota-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted-faint);
  text-transform: uppercase;
}
.ota-btns {
  display: flex;
  gap: var(--space-2);
}
.ota-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: var(--r-sm);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.ota-btn:active { transform: scale(0.97); }
.ota-btn-primary { background: var(--ink); color: var(--white); }
.ota-btn-primary:hover { opacity: 0.9; }
.ota-btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-weight: 600;
}
.ota-btn-secondary:hover { background: var(--chip); }

.contact-bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--chip);
  border-radius: var(--r-lg);
}
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 26px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  flex-shrink: 0;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-text { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.contact-text h3 { font-size: 20px; font-weight: 700; }
.contact-text p { font-size: 15px; color: var(--muted); }

/* ============================================================
   LANGUAGE DROPDOWN
   ============================================================ */
.lang-dropdown { position: relative; }
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 30px rgba(43,43,43,0.16);
  padding: 12px;
  display: none;
  z-index: 300;
}
.lang-dropdown.open .lang-dropdown-menu { display: block; }
.lang-dropdown-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted-faint);
  padding: 4px 12px 8px;
  text-transform: uppercase;
}
.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}
.lang-option:hover { background: var(--chip); }
.lang-option.is-current { background: var(--chip); font-weight: 600; }
.lang-option .lang-code { font-size: 12px; color: var(--muted-faint); }
.lang-option.is-current .lang-code { color: var(--gold); font-weight: 600; }

/* ============================================================
   ABOUT / OFFERS / CONTACT PAGES
   ============================================================ */
/* About stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-8) 0;
}
.stat-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  text-align: center;
}
.stat-value {
  font-size: 44px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
/* About values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.value-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.value-card h3 { font-size: 20px; font-weight: 700; }
.value-card p { font-size: 15px; color: var(--muted); }
/* About lead paragraph */
.about-lead {
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 760px;
}
.about-body {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.about-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* Offers empty state */
.offers-empty {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--space-9);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  max-width: 720px;
  margin: 0 auto;
}
.offers-empty p { font-size: 16px; color: var(--muted); }

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-11);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.contact-info-item .contact-icon { width: 44px; height: 44px; border-radius: 22px; }
.contact-info-item .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted-faint);
  text-transform: uppercase;
}
.contact-info-item .val { font-size: 16px; color: var(--ink); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.contact-form label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  border: 1.5px solid var(--chip);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* ============================================================
   PRIVACY / TERMS / FAQ PAGES
   ============================================================ */
.legal-page {
  max-width: 760px;
  padding-bottom: var(--space-11);
}
.legal-page .updated {
  font-size: 13px;
  color: var(--muted-faint);
  margin-top: 8px;
}
.legal-section {
  margin-top: var(--space-7);
}
.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.legal-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}
.legal-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: var(--space-4);
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-bottom: var(--space-11);
  max-width: 760px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item[open] summary .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 768px) {
  .stats-band { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}


/* ============================================================
   REAL PHOTOS — OTA 图片接入（替代占位灰块）
   ============================================================ */
.hotel-card-media img,
.hotel-row-media img,
.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 详情页 hero：真实照片 + 暗色遮罩 */
.hotel-hero {
  background-size: cover;
  background-position: center;
}
.hotel-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(26, 26, 26, 0.55), rgba(26, 26, 26, 0.74));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hotel-hero .breadcrumb,
.hotel-hero .hotel-hero-loc { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45); }

/* 身份证限制提示 / 入住政策行 */
.id-notice {
  background: #FBF3E4;
  border: 1px solid var(--gold);
  border-radius: var(--r-md);
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: var(--space-5);
}
.policy-line {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: calc(var(--space-5) * -1);
  margin-bottom: var(--space-5);
}

/* 设施画廊 */
.section-facilities { background: var(--white); }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.facility-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 240px;
  margin: 0;
  background: var(--chip);
}
.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.facility-card:hover img { transform: scale(1.04); }
.facility-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.78));
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .facilities-grid { grid-template-columns: 1fr; }
  .facility-card { height: 200px; }
  .usp-bar { flex-direction: column; align-items: center; gap: var(--space-4); }
  .policy-line { margin-top: 0; }
}

/* ============================================================
   GUIDE IMAGES — 攻略配图
   ============================================================ */
.guide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.guide-hero-image {
  margin: 0 0 var(--space-6);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--chip);
}
.guide-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.guide-hero-image .placeholder-media {
  height: 320px;
  border-radius: 0;
}

/* ============================================================
   WHY STAY HERE — 购买理由模块
   ============================================================ */
.section-whystay { background: var(--white); }
.whystay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.whystay-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 28px 28px 30px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whystay-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(43, 43, 43, 0.08);
}
.whystay-num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
}
.whystay-card h3 {
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 10px;
  color: var(--ink);
}
.whystay-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
@media (max-width: 820px) {
  .whystay-grid { grid-template-columns: 1fr; }
  .whystay-card { padding: 22px 22px 24px; }
}

/* ============================================================
   GUIDE ARTICLE BODY — 攻略正文排版
   ============================================================ */
.guide-body-content { font-size: 17px; line-height: 1.85; color: #3A3733; }
.guide-body-content p { margin: 0 0 20px; }

.guide-lead {
  font-size: 20px;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 500;
  padding-bottom: 28px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
}
.guide-h2 {
  font-size: 26px;
  line-height: 1.35;
  color: var(--ink);
  margin: 48px 0 16px;
  font-weight: 600;
}
.guide-block, .guide-day, .guide-spot, .guide-tips { margin-bottom: 8px; }

/* 要点列表 */
.guide-list { list-style: none; padding: 0; margin: 0 0 24px; }
.guide-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.07);
  font-size: 16px;
  line-height: 1.7;
}
.guide-list li:last-child { border-bottom: none; }
.guide-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 21px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.guide-list strong { color: var(--ink); font-weight: 600; }
.guide-list-check li::before {
  width: 5px; height: 9px;
  border-radius: 0;
  background: transparent;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  top: 16px;
}

/* 行程时间轴 */
.guide-timeline { list-style: none; padding: 0; margin: 24px 0 32px; }
.tl-row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(43, 43, 43, 0.12);
}
.tl-row:last-child { border-bottom: none; }
.tl-time {
  flex: 0 0 62px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
}
.tl-body { flex: 1; }
.tl-label { display: block; font-size: 16px; font-weight: 600; color: var(--ink); }
.tl-note { display: block; font-size: 15px; color: var(--muted); margin-top: 3px; line-height: 1.65; }

/* 景点信息卡 */
.spot-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(43, 43, 43, 0.08);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 24px 0;
}
.fact { background: var(--cream); padding: 16px 18px; }
.fact dt {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.fact dd { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink); }

/* 住宿转化卡 */
.guide-stay {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 32px 34px;
  margin: 44px 0 12px;
}
.stay-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.guide-stay h3 { font-size: 24px; margin: 10px 0 8px; color: #fff; }
.stay-meta { font-size: 15px; color: rgba(247, 244, 239, 0.72); margin: 0 0 14px; }
.stay-text { font-size: 16px; line-height: 1.75; color: rgba(247, 244, 239, 0.92); margin: 0 0 22px; }
.stay-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.guide-stay .btn-outline-dark {
  border-color: rgba(247, 244, 239, 0.4);
  color: var(--cream);
  background: transparent;
}

@media (max-width: 640px) {
  .guide-h2 { font-size: 22px; margin-top: 36px; }
  .guide-lead { font-size: 18px; }
  .spot-facts { grid-template-columns: 1fr; }
  .tl-row { gap: 14px; }
  .tl-time { flex: 0 0 52px; font-size: 14px; }
  .guide-stay { padding: 24px 22px; }
}

/* ============================================================
   HOMEPAGE — 交通对照表 / 住客信任 / 预订入口
   ============================================================ */
.section-transit { background: var(--white); }
.transit-table {
  max-width: 860px;
  margin: 0 auto;
  border-top: 2px solid var(--ink);
}
.transit-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.1);
  font-size: 16px;
}
.transit-row-head {
  border-bottom: 1px solid rgba(43, 43, 43, 0.22);
  padding: 12px 4px;
}
.transit-row-head span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.tr-place { color: var(--ink); font-weight: 500; }
.transit-row-head .tr-place { color: var(--muted); font-weight: 700; }
.tr-hotel { text-align: center; }
.transit-row-head .tr-hotel { color: var(--gold); }
.tr-time {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--ink);
}
.transit-cta { text-align: center; margin-top: 40px; }

/* 住客信任 */
.section-trust { background: var(--cream); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: 860px;
  margin: 0 auto;
}
.trust-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.trust-score { display: flex; align-items: baseline; flex-shrink: 0; }
.trust-num { font-size: 44px; font-weight: 700; color: var(--gold); line-height: 1; }
.trust-max { font-size: 18px; color: var(--muted); margin-left: 2px; }
.trust-card figcaption { display: flex; flex-direction: column; gap: 4px; }
.trust-card strong { font-size: 16px; color: var(--ink); }
.trust-meta { font-size: 14px; color: var(--muted); }
.trust-link { font-size: 14px; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; margin-top: 4px; }

/* 预订入口 */
.book-sub { text-align: center; color: var(--muted); margin: 0 0 36px; font-size: 17px; }
.book-hotels { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.book-hotel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  flex-wrap: wrap;
}
.bh-info { display: flex; flex-direction: column; gap: 4px; }
.bh-info strong { font-size: 17px; color: var(--ink); }
.bh-info span { font-size: 15px; color: var(--muted); }
.bh-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .transit-row { grid-template-columns: 1.6fr 1fr 1fr; font-size: 15px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 22px 20px; gap: 16px; }
  .trust-num { font-size: 36px; }
  .book-hotel { flex-direction: column; align-items: flex-start; }
  .bh-actions { width: 100%; }
}

/* Booking page — OTA 卡片评分行 */
.ota-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ota-rating { display: flex; align-items: baseline; gap: 3px; margin: 10px 0 0; }
.ota-score { font-size: 24px; font-weight: 700; color: var(--gold); line-height: 1; }
.ota-score-max { font-size: 14px; color: var(--muted); }
.ota-reviews { font-size: 14px; color: var(--muted); margin-left: 8px; }
.ota-btn-primary { text-align: center; }

/* Booking page — OTA 卡片评分行 */
.ota-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ota-rating { display: flex; align-items: baseline; gap: 3px; margin: 10px 0 0; }
.ota-score { font-size: 24px; font-weight: 700; color: var(--gold); line-height: 1; }
.ota-score-max { font-size: 14px; color: var(--muted); }
.ota-reviews { font-size: 14px; color: var(--muted); margin-left: 8px; }
.ota-btn-primary { text-align: center; }

/* 页面元信息行（阅读时长等） */
.page-meta {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 10px 0 0;
}

/* 页面元信息行（阅读时长等） */
.page-meta {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 10px 0 0;
}

/* 攻略正文语言提示（中文版正文暂为英文） */
.guide-lang-notice {
  background: #FBF3E4;
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm, 6px);
  padding: 14px 18px;
  font-size: 15px;
  color: #6B675F;
  margin-bottom: 32px;
}

/* 攻略正文语言提示（中文版正文暂为英文） */
.guide-lang-notice {
  background: #FBF3E4;
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm, 6px);
  padding: 14px 18px;
  font-size: 15px;
  color: #6B675F;
  margin-bottom: 32px;
}
