/* roulang page: index */
:root {
  --color-primary: #6B4F39;
  --color-primary-dark: #5A4130;
  --color-secondary: #7C9A92;
  --color-accent: #B08D57;
  --color-bg: #F6F3ED;
  --color-bg-deep: #EDE8DF;
  --color-surface: #FFFFFF;
  --color-text: #2A2622;
  --color-text-secondary: #6F675E;
  --color-border: rgba(42, 38, 34, 0.08);
  --color-border-light: rgba(42, 38, 34, 0.05);
  --color-success: #5B8C5A;
  --color-warning: #C08A3E;
  --radius-card: 14px;
  --radius-btn: 8px;
  --radius-badge: 999px;
  --shadow-card: 0 1px 3px rgba(42, 38, 34, 0.08), 0 4px 14px rgba(42, 38, 34, 0.05);
  --shadow-hover: 0 6px 20px rgba(42, 38, 34, 0.12);
  --font-serif: "Noto Serif SC", "Songti SC", "SimSun", serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --sidebar-width: 260px;
  --container-max: 1220px;
  --spacing-section: 84px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--color-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-primary-dark); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: var(--font-sans); font-size: 15px; }
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ========== Sidebar Nav ========== */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--color-bg-deep);
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  padding: 28px 20px 24px;
  z-index: 100;
  transition: transform .3s ease;
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  padding: 8px 6px 24px;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-logo i { font-size: 26px; color: var(--color-accent); }
.sidebar-nav { flex: 1; padding-top: 24px; }
.sidebar-nav ul { list-style: none; }
.sidebar-nav li { margin-bottom: 4px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background .2s, border-color .2s, color .2s;
}
.sidebar-nav a i { width: 20px; text-align: center; color: var(--color-text-secondary); }
.sidebar-nav a:hover {
  background: rgba(107, 79, 57, 0.08);
  border-left-color: var(--color-primary);
  color: var(--color-primary);
}
.sidebar-nav a.active {
  background: rgba(107, 79, 57, 0.08);
  border-left-color: var(--color-primary);
  color: var(--color-primary);
}
.sidebar-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 600;
  margin-top: 16px;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.sidebar-cta:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}

/* ========== Mobile Header / Drawer ========== */
.mobile-header {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(246, 243, 237, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
}
.mobile-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-logo i { color: var(--color-accent); }
.hamburger {
  background: none;
  border: none;
  width: 40px; height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(107, 79, 57, 0.06); }
.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}
.drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42, 38, 34, 0.4);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0; left: 0;
  width: 280px;
  height: 100vh;
  background: var(--color-bg-deep);
  z-index: 99;
  transform: translateX(-100%);
  transition: transform .3s ease;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.drawer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.drawer-logo i { color: var(--color-accent); }
.drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .2s;
}
.drawer-close:hover { background: rgba(107, 79, 57, 0.08); }
.drawer-nav { margin-top: 24px; flex: 1; }
.drawer-nav ul { list-style: none; }
.drawer-nav li { margin-bottom: 4px; }
.drawer-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--color-text);
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background .2s, border-color .2s;
}
.drawer-nav a:hover {
  background: rgba(107, 79, 57, 0.08);
  border-left-color: var(--color-primary);
  color: var(--color-primary);
}
.drawer-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: background .2s;
}
.drawer-cta:hover { background: var(--color-primary-dark); color: #fff; }

/* ========== Main layout ========== */
.main-wrap {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

/* ========== Hero ========== */
.hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(107,79,57,0.04) 0%, rgba(247,243,237,0) 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 8px;
}
.hero-tag {
  display: inline-block;
  background: rgba(107, 79, 57, 0.1);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: var(--radius-badge);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero-subtitle {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: #fff;
  padding: 11px 26px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--color-primary);
  transition: background .2s, box-shadow .2s, transform .2s;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(107, 79, 57, 0.25);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-primary);
  padding: 11px 26px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--color-primary);
  transition: background .2s, color .2s;
}
.btn-secondary:hover {
  background: rgba(107, 79, 57, 0.06);
  color: var(--color-primary-dark);
}
.btn-secondary:active { background: rgba(107, 79, 57, 0.12); }
.hero-cover {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.hero-cover img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.hero-cover .cover-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(107,79,57,0.15) 0%, rgba(42,38,34,0.55) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.cover-overlay .cover-title {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.cover-overlay .cover-points {
  list-style: none;
  padding: 0;
}
.cover-overlay .cover-points li {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  padding: 3px 0;
}
.cover-overlay .cover-watermark {
  position: absolute;
  top: 20px; right: 20px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 14px;
  border-radius: var(--radius-badge);
}

/* ========== Stats ========== */
.stats-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.stat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.stat-card .stat-label {
  font-size: 13px;
  color: var(--color-text-secondary);
  display: block;
  margin-bottom: 8px;
}
.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-card .stat-trend {
  position: absolute;
  bottom: 16px; right: 18px;
  background: rgba(91, 140, 90, 0.12);
  color: var(--color-success);
  font-size: 12px;
  padding: 2px 10px;
  border-radius: var(--radius-badge);
  font-weight: 500;
}

/* ========== Section base ========== */
.section {
  padding: var(--spacing-section) 0;
}
.section-header {
  margin-bottom: 42px;
  max-width: 720px;
}
.section-header .section-title {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 700;
}
.section-header .section-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========== Service Matrix ========== */
.service-matrix {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.matrix-table thead th {
  background: rgba(124, 154, 146, 0.1);
  color: var(--color-primary-dark);
  font-weight: 600;
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.matrix-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text);
  line-height: 1.6;
}
.matrix-table tbody tr:last-child td { border-bottom: none; }
.matrix-table tbody tr {
  transition: background .15s;
}
.matrix-table tbody tr:hover {
  background: rgba(124, 154, 146, 0.08);
}
.matrix-table .service-name {
  font-weight: 600;
  color: var(--color-text);
}
.badge {
  display: inline-block;
  background: rgba(107, 79, 57, 0.12);
  color: var(--color-primary);
  font-size: 12px;
  padding: 2px 10px;
  border-radius: var(--radius-badge);
  font-weight: 500;
  margin-left: 6px;
}
.badge-hot {
  background: rgba(176, 141, 87, 0.18);
  color: #8a6a3a;
}
.badge-booked {
  background: rgba(192, 138, 62, 0.12);
  color: var(--color-warning);
}
.table-wrap { overflow-x: auto; }

/* ========== Comparison ========== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.compare-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s;
}
.compare-card:hover { box-shadow: var(--shadow-hover); }
.compare-card .compare-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-badge);
  margin-bottom: 18px;
}
.compare-card.bad { background: rgba(255, 255, 255, 0.6); }
.compare-card.bad .compare-badge {
  background: rgba(42, 38, 34, 0.08);
  color: var(--color-text-secondary);
}
.compare-card.good .compare-badge {
  background: rgba(91, 140, 90, 0.14);
  color: var(--color-success);
}
.compare-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 18px;
}
.compare-list {
  list-style: none;
  padding: 0;
  margin-bottom: 22px;
}
.compare-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.65;
}
.compare-card.bad .compare-list li::before {
  content: '\f00d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-warning);
  font-size: 14px;
}
.compare-card.good .compare-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-size: 14px;
}
.compare-summary {
  border-top: 1px solid var(--color-border-light);
  padding-top: 16px;
  font-size: 14px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.compare-summary a {
  color: var(--color-primary);
  font-weight: 600;
  white-space: nowrap;
}
.compare-summary a:hover { text-decoration: underline; }

/* ========== Testimonials ========== */
.testimonials {
  background: var(--color-bg-deep);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.testimonial-large {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.testimonial-large .quote-icon {
  font-size: 42px;
  color: var(--color-accent);
  opacity: 0.3;
  margin-bottom: 8px;
}
.testimonial-large p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author .avatar-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.testimonial-author .author-name {
  font-weight: 600;
  font-size: 14px;
}
.testimonial-author .author-meta {
  font-size: 12px;
  color: var(--color-text-secondary);
}
.testimonial-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-small {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.testimonial-small p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text);
}

/* ========== News / Culture ========== */
.news-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
}
.news-list {
  list-style: none;
  padding: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.news-list li {
  border-bottom: 1px solid var(--color-border-light);
  transition: background .15s;
}
.news-list li:last-child { border-bottom: none; }
.news-list li:hover { background: rgba(124, 154, 146, 0.06); }
.news-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.news-list a:hover { color: var(--color-primary); }
.news-list a .news-date {
  color: var(--color-text-secondary);
  font-size: 13px;
  white-space: nowrap;
  font-weight: 400;
}
.news-list a .news-title { flex: 1; }
.news-list a i {
  color: var(--color-accent);
  font-size: 13px;
  opacity: 0;
  transition: opacity .2s, transform .2s;
}
.news-list a:hover i {
  opacity: 1;
  transform: translateX(2px);
}
.news-sidebar .sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}
.news-sidebar .sidebar-card h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--color-text);
}
.news-sidebar .sidebar-card img {
  border-radius: 8px;
  margin-bottom: 14px;
  height: 140px;
  width: 100%;
  object-fit: cover;
}
.news-sidebar .sidebar-card p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.65;
}
.news-sidebar .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.news-sidebar .tag-cloud a {
  background: rgba(107, 79, 57, 0.08);
  color: var(--color-primary);
  font-size: 13px;
  padding: 4px 14px;
  border-radius: var(--radius-badge);
  transition: background .2s;
}
.news-sidebar .tag-cloud a:hover {
  background: rgba(107, 79, 57, 0.16);
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  font-size: 20px;
  color: var(--color-primary);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .2s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 14px;
  margin: 0 24px;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ========== Booking Form ========== */
.booking-section {
  background: var(--color-bg-deep);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}
.booking-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.booking-form-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--color-text);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 42px;
  border: 1px solid #D8D2C8;
  border-radius: var(--radius-btn);
  padding: 0 14px;
  font-size: 14px;
  color: var(--color-text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group textarea {
  height: 90px;
  padding: 10px 14px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(107, 79, 57, 0.18);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(42, 38, 34, 0.3);
}
.form-submit {
  width: 100%;
  padding: 14px 20px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.form-submit:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 12px rgba(107, 79, 57, 0.25);
  transform: translateY(-1px);
}
.form-submit:active { transform: translateY(0); }
.form-success-tip {
  display: none;
  margin-top: 14px;
  background: rgba(91, 140, 90, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(91, 140, 90, 0.3);
  border-radius: var(--radius-btn);
  padding: 10px 14px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}
.booking-info-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 32px 30px;
  box-shadow: var(--shadow-card);
}
.booking-info-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--color-text);
}
.info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--color-text);
}
.info-row i {
  color: var(--color-accent);
  width: 18px;
  margin-top: 2px;
}
.info-row .info-label {
  color: var(--color-text-secondary);
  flex-shrink: 0;
}
.commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 20px;
}
.commitment-list li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--color-text);
}
.commitment-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-size: 14px;
}

/* ========== CTA Banner ========== */
.cta-banner {
  background: linear-gradient(135deg, rgba(107,79,57,0.95) 0%, rgba(90,65,48,0.97) 100%);
  border-radius: var(--radius-card);
  padding: 48px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '\f6d5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -20px; bottom: -30px;
  font-size: 160px;
  color: rgba(255,255,255,0.05);
}
.cta-banner h2 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 28px;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.cta-banner .btn-primary:hover {
  background: var(--color-bg);
  color: var(--color-primary-dark);
}

/* ========== Footer ========== */
.footer {
  background: #3E2E23;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand i { color: var(--color-accent); }
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.footer-links h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  transition: color .2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-copyright {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  :root { --sidebar-width: 220px; }
  .hero-inner { gap: 36px; }
  .hero { padding: 56px 0 40px; }
  .hero-content h1 { font-size: 34px; }
  .hero-cover img { height: 320px; }
  .stats-row { gap: 14px; }
  .stat-card { padding: 16px 18px; }
  .stat-card .stat-number { font-size: 32px; }
  .section { padding: 64px 0; }
}
@media (max-width: 768px) {
  .sidebar { display: none; }
  .main-wrap { margin-left: 0; }
  .mobile-header { display: flex; }
  .main-wrap { padding-top: 70px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero { padding: 40px 0 36px; }
  .hero-content h1 { font-size: 30px; }
  .hero-cover img { height: 260px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 14px 16px; }
  .stat-card .stat-number { font-size: 28px; }
  .section { padding: 48px 0; }
  .section-header .section-title { font-size: 24px; }
  .compare-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .news-layout { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; gap: 28px; }
}
@media (max-width: 520px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero-inner { gap: 24px; }
  .hero-content h1 { font-size: 26px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .stats-row { gap: 10px; }
  .stat-card { padding: 12px 14px; }
  .stat-card .stat-number { font-size: 24px; }
  .stat-card .stat-label { font-size: 12px; }
  .stat-card .stat-trend { position: static; display: inline-block; margin-top: 6px; }
  .section-header .section-title { font-size: 22px; }
  .matrix-table { min-width: 720px; }
  .booking-form-card, .booking-info-card { padding: 22px; }
  .form-group input, .form-group select, .form-group textarea { height: 40px; }
  .cta-banner { padding: 32px 24px; }
}
