/* ==========================================================================
   Khu du lịch sinh thái Cao Minh — hệ thống giao diện
   Mobile-first. Bản thiết kế gốc cố định 1440px đã được dựng lại co giãn.
   ========================================================================== */

/* ---------- 1. Biến ---------- */
:root {
  /* Màu — lấy từ bảng màu bản thiết kế */
  --paper:      #FFFDF7;   /* nền chính */
  --sand:       #F5F1E8;   /* nền phụ */
  --sand-deep:  #EDE6D6;
  --ink:        #16211B;   /* chữ đậm nhất, nền tối */
  --forest:     #1C3A2B;   /* xanh rừng */
  --text:       #243228;
  --muted:      #5C6259;   /* đã làm tối hơn bản gốc #6E7269 để đạt tương phản 4.5:1 */
  --line:       rgba(28, 58, 43, .14);
  --line-soft:  rgba(28, 58, 43, .08);
  --brick:      #B44E28;   /* nhấn — tối hơn #C25A32 một chút cho đủ tương phản trên nền giấy */
  --brick-deep: #8F3F20;
  --gold:       #E9C39B;
  --gold-deep:  #C79A6A;
  --ok:         #2C6E49;
  --warn:       #A86A16;
  --danger:     #A3301C;

  /* Chữ */
  --serif: 'Lora', 'Times New Roman', serif;
  --sans:  'Be Vietnam Pro', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono:  ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Nhịp — đo trực tiếp từ bản export thiết kế (khổ 1098px) */
  --gut: 20px;          /* lề nội dung trên điện thoại */
  --gut-head: 20px;     /* lề của header */
  --maxw: 1210px;       /* 1098 + 2×56 : giữ đúng bề rộng nội dung của thiết kế */
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(22,33,27,.05), 0 8px 24px rgba(22,33,27,.07);
  --shadow-lg: 0 18px 48px rgba(22,33,27,.16);
  --header-h: 58px;
}
@media (min-width: 700px) { :root { --gut: 40px; --gut-head: 32px; --header-h: 64px; } }
@media (min-width: 1000px) { :root { --gut: 56px; --gut-head: 40px; --header-h: 72px; } }

/* ---------- 2. Nền tảng ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0; background: var(--paper); color: var(--text);
  font: 400 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
picture > source { display: none; } /* không để <source> thành một ô lưới khi picture là display:contents */
a { color: var(--brick); text-decoration: none; }
a:hover { color: var(--brick-deep); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
/* Cỡ chữ lấy đúng bản thiết kế: h1 34px, h2 30px, h3 19px ở khổ máy tính.
   Trên điện thoại thu nhỏ vừa phải chứ không phóng to như trước. */
h1 { font-size: clamp(26px, 4.2vw, 32px); }
h2 { font-size: clamp(23px, 3.4vw, 30px); }
h3 { font-size: clamp(17.5px, 2vw, 19px); }
h4 { font-size: 16px; }
p  { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
small { font-size: .85em; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--brick); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--gold); color: var(--ink); }

/* ---------- 3. Bố cục ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.shell { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut-head); }
.wrap-narrow { max-width: 760px; }
.wrap-mid { max-width: 980px; }
.section { padding-block: clamp(40px, 5vw, 64px); }
.section-tight { padding-block: clamp(26px, 3.4vw, 40px); }
.section-sand { background: var(--sand); }
.section-ink { background: var(--ink); color: rgba(245,241,232,.86); }
.section-ink h2, .section-ink h3 { color: var(--paper); }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: clamp(16px, 2.4vw, 28px); }
.g2 { grid-template-columns: 1fr; }
.g3 { grid-template-columns: 1fr; }
.g4 { grid-template-columns: 1fr; }
@media (min-width: 520px) { .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .g2 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .g3 { grid-template-columns: repeat(3, 1fr); } .g4 { grid-template-columns: repeat(4, 1fr); } }
.flex { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.between { justify-content: space-between; }
.center { text-align: center; }
.mt0 { margin-top: 0 } .mb0 { margin-bottom: 0 }

/* ---------- 4. Nhãn & chữ nhỏ ---------- */
.kicker {
  font: 600 11.5px/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase;
  color: var(--brick); margin-bottom: 14px; display: block;
}
.section-ink .kicker { color: var(--gold); }
.lede { font-size: clamp(16.5px, 1.9vw, 19px); line-height: 1.72; color: var(--muted); max-width: 62ch; }
.meta { font-size: 13.5px; color: var(--muted); }
.eyebrow { font: 600 11px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.serif-quote { font: italic 400 clamp(18px, 2.6vw, 26px)/1.6 var(--serif); color: var(--ink); }

/* ---------- 5. Nút ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 99px; border: 1px solid transparent;
  font: 600 15px/1 var(--sans); text-decoration: none; cursor: pointer;
  transition: background .16s, color .16s, border-color .16s, transform .06s;
  min-height: 46px; text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brick); color: #fff; }
.btn-primary:hover { background: var(--brick-deep); color: #fff; }
.btn-dark { background: var(--forest); color: var(--paper); }
.btn-dark:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--forest); background: var(--sand); color: var(--text); }
.btn-light { border-color: rgba(245,241,232,.45); color: var(--paper); background: transparent; }
.btn-light:hover { background: rgba(245,241,232,.14); color: var(--paper); }
.btn-sm { padding: 10px 16px; min-height: 42px; font-size: 13.5px; }
@media (min-width: 700px) { .btn-sm { min-height: 38px; padding: 9px 16px; } }
.btn-lg { padding: 16px 30px; min-height: 54px; font-size: 16px; }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.link-arrow { font: 600 14.5px var(--sans); text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.link-arrow::after { content: '→'; transition: transform .16s; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- 6. Huy hiệu ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font: 600 11px/1 var(--sans); letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 4px; background: var(--sand-deep); color: var(--text);
}
.badge-new    { background: var(--brick); color: #fff; }
.badge-ok     { background: #E3EEE6; color: var(--ok); }
.badge-low    { background: #FBEBD4; color: var(--warn); }
.badge-out    { background: #F3E0DC; color: var(--danger); }
.badge-soon   { background: #E6E9F0; color: #3A4A6B; }
.badge-outline{ background: transparent; border: 1px solid var(--line); color: var(--muted); }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 17px;
  border: 1px solid var(--line); border-radius: 99px; font: 500 13px var(--sans);
  color: var(--text); text-decoration: none; background: var(--paper);
}
.pill[aria-current="true"], .pill.is-on { background: var(--forest); border-color: var(--forest); color: var(--paper); }
/* Vùng bấm trên điện thoại phải đủ lớn cho ngón tay */
@media (max-width: 699px) { .pill { min-height: 42px; } }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }

/* ---------- 7. Thẻ ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.card-link { text-decoration: none; color: inherit; }
.card-link:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: rgba(28,58,43,.24); color: inherit; }
.card-media { position: relative; aspect-ratio: 4 / 3; background: var(--sand-deep); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-link:hover .card-media img { transform: scale(1.035); }
.card-media-tall { aspect-ratio: 3 / 4; }
.card-media-wide { aspect-ratio: 16 / 9; }
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.card-body h3 { margin: 0; font-size: clamp(18px, 2vw, 21px); }
.card-body p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.card-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: baseline; justify-content: space-between; gap: 8px 10px; flex-wrap: wrap; }
.price { font: 600 clamp(17px, 4.2vw, 20px)/1.15 var(--sans); color: var(--ink); }
.price small { white-space: nowrap; }
.price small { font: 400 12.5px var(--sans); color: var(--muted); margin-left: 3px; }
.price-old { text-decoration: line-through; color: var(--muted); font-weight: 400; font-size: 15px; }
.card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: rgba(22,33,27,.82); color: var(--paper); backdrop-filter: blur(6px);
}

/* Hàng lưu trú nằm ngang — đúng bố cục bản thiết kế */
.stayrow {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 18px;
}
@media (min-width: 720px) { .stayrow { grid-template-columns: 300px minmax(0, 1fr); } }
.stayrow-media { position: relative; background: var(--sand-deep); display: block; text-decoration: none; }
.stayrow-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (min-width: 720px) { .stayrow-media img { aspect-ratio: auto; min-height: 100%; } }
.stayrow-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 720px) { .stayrow-body { padding: 26px 28px; } }
.stayrow-top { display: flex; gap: 16px; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; }
@media (min-width: 720px) { .stayrow-top { display: grid; grid-template-columns: minmax(0, 1fr) auto; } } /* giá luôn nằm cột phải, không rớt xuống dưới */
.stayrow-price span { display: block; }
.stayrow-tiers { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.stayrow-top h3 { margin: 0 0 5px; font-size: clamp(19px, 2.2vw, 23px); }
.stayrow-meta { font-size: 13px; color: var(--muted); margin: 0; }
.stayrow-price { text-align: left; flex: none; }
@media (min-width: 560px) { .stayrow-price { text-align: right; } }
.stayrow-price b { display: block; font: 600 clamp(21px, 2.6vw, 26px)/1.1 var(--sans); color: var(--ink); }
.stayrow-price span { font-size: 12.5px; color: var(--muted); }
.stayrow-desc { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin: 0; }
.stayrow-foot { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: auto; padding-top: 6px; }
.stayrow-note { font-size: 13.5px; font-weight: 500; }
.stayrow-note.ok { color: var(--brick); }
.stayrow-note.out { color: var(--muted); }

/* ---------- 8. Thanh trên cùng + đầu trang ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--paper); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.topbar {
  background: var(--ink); color: rgba(245,241,232,.82);
  font: 400 12.5px/1 var(--sans);
}
.topbar .shell { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 16px; align-items: center; min-width: 0; }
.topbar-left span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-right { display: flex; gap: 16px; align-items: center; white-space: nowrap; }
.topbar-sep { color: rgba(245,241,232,.32); }
.lang { display: flex; gap: 4px; align-items: center; }
.lang-on {
  width: 26px; height: 26px; border-radius: 50%; background: var(--paper); color: var(--ink);
  display: grid; place-items: center; font-weight: 600; font-size: 11.5px;
}
.lang a { padding: 0 6px; }
@media (max-width: 900px) { .topbar-left .hide-sm { display: none; } }

.notice-bar { padding: 11px 0; font: 500 13.5px/1.5 var(--sans); text-align: center; }
.notice-info  { background: #E9EFE9; color: #1F4030; }
.notice-warn  { background: #FBEFD8; color: #77510C; }
.notice-alert { background: #F6E0DB; color: #7E2415; }
.notice-bar a { color: inherit; }

/* ---- Header một hàng: logo · menu · nút. Dưới 1200px chuyển sang nút Menu ---- */
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 60; }
.hdr { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--header-h); max-width: 1380px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); flex: none; }
.brand-mark { width: 46px; height: 46px; border-radius: 50%; flex: none; display: block; object-fit: cover; }
.brand-text { display: block; }
.brand-name { display: block; font: 600 16px/1.1 var(--serif); letter-spacing: .015em; white-space: nowrap; }
.brand-sub {
  display: block; font: 400 9.5px/1.3 var(--sans); letter-spacing: .15em;
  color: var(--muted); margin-top: 3px; text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 380px) { .brand-sub { display: none; } }

.hdr-nav { display: none; }
@media (min-width: 1240px) {
  .hdr { gap: 28px; }
  .hdr-nav { display: block; flex: 1; min-width: 0; margin-left: 8px; }
}
.nav { display: flex; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }
.nav > li { position: relative; }
.nav-top {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 8px;
  font: 500 13.5px var(--sans); color: var(--text); text-decoration: none; white-space: nowrap;
}
.nav-top:hover { color: var(--brick-deep); background: var(--sand); }
.nav-top[aria-current="page"] { color: var(--brick-deep, var(--brick)); background: var(--sand); font-weight: 600; box-shadow: inset 0 -2px 0 var(--brick); border-radius: 8px 8px 0 0; }
.nav-sub a[aria-current="page"] { color: var(--brick); font-weight: 600; }
.nav-top .badge { padding: 4px 6px; font-size: 9.5px; }
.nav-sub {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px; padding: 8px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .15s, transform .15s, visibility .15s; z-index: 5;
}
.nav > li:hover .nav-sub, .nav > li:focus-within .nav-sub { opacity: 1; visibility: visible; transform: none; }
.nav-sub a { display: block; padding: 9px 12px; border-radius: 7px; font: 400 14px var(--sans); color: var(--text); text-decoration: none; }
.nav-sub a:hover { background: var(--sand); color: var(--brick-deep); }

.nav-actions { display: flex; gap: 8px; align-items: center; flex: none; }
.btn-pill { padding: 9px 16px; min-height: 38px; font: 500 13.5px/1 var(--sans); }
.hdr-zalo { display: none; }
@media (min-width: 700px) { .hdr-zalo { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; min-height: 38px;
  background: transparent; border: 1px solid var(--line); border-radius: 99px;
  font: 500 13.5px var(--sans); color: var(--text); cursor: pointer; flex: none;
}
@media (min-width: 1240px) { .nav-toggle { display: none; } }
/* Màn hình hẹp (iPhone SE/mini 375px): nút Menu chỉ còn biểu tượng, nút Đặt chỗ gọn lại để không tràn */
@media (max-width: 430px) {
  .hdr { gap: 10px; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-pill { padding-left: 14px; padding-right: 14px; }
  .nav-toggle { padding: 9px 11px; font-size: 0; gap: 0; }
  .nav-toggle svg { width: 20px; height: 15px; }
}
.hide-mobile { display: none; }
@media (min-width: 700px) { .hide-mobile { display: inline-flex; } }

/* Ngăn kéo menu di động */
.drawer {
  position: fixed; inset: 0; z-index: 200; display: none;
}
.drawer[open], .drawer.is-open { display: block; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(22,33,27,.5); backdrop-filter: blur(2px); }
.drawer-panel {
  position: absolute; inset: 0 0 0 auto; width: min(400px, 88vw); background: var(--paper);
  overflow-y: auto; padding: 18px var(--gut) 40px; box-shadow: var(--shadow-lg);
  animation: slideIn .22s ease;
}
@keyframes slideIn { from { transform: translateX(100%); } }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.drawer-close { background: none; border: 1px solid var(--line); border-radius: 99px; width: 42px; height: 42px; font-size: 20px; cursor: pointer; color: var(--text); }
.drawer nav ul { list-style: none; padding: 0; margin: 0; }
.drawer nav > ul > li { border-bottom: 1px solid var(--line-soft); }
.drawer nav > ul > li > a { display: block; padding: 15px 0; font: 500 17px var(--serif); color: var(--ink); text-decoration: none; }
.drawer nav ul ul { padding: 0 0 12px 2px; }
.drawer nav ul ul a { display: block; padding: 8px 0; font: 400 14.5px var(--sans); color: var(--muted); text-decoration: none; }
.drawer nav ul ul a:hover { color: var(--brick); }
.drawer-cta { display: grid; gap: 10px; margin-top: 26px; }
.drawer-contact { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.drawer-contact a { color: var(--text); }

.page-head { padding-top: clamp(28px, 4vw, 45px); }
.page-head .kicker { margin-bottom: 13px; }
.page-head h1 { margin: 0 0 16px; }
.page-head h1:last-child { margin-bottom: 0; }
.page-head .lede { margin: 0; max-width: 58ch; }
.page-head + .section, .page-head + .section-tight { padding-top: 24px; }

/* ---------- 9. Ảnh lớn (hero) ---------- */
.hero { position: relative; background: var(--forest); color: var(--paper); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; } /* ảnh dọc thì giữ phần trên (mặt người) */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,24,19,.62) 0%, rgba(13,24,19,.48) 45%, rgba(13,24,19,.78) 100%);
}
@media (min-width: 900px) {
  .hero::after { background: linear-gradient(90deg, rgba(13,24,19,.80) 0%, rgba(13,24,19,.56) 48%, rgba(13,24,19,.30) 100%); }
}
.hero-inner { position: relative; z-index: 1; padding-block: clamp(56px, 9vw, 118px); }
.hero-home .hero-inner { min-height: clamp(430px, 62vh, 600px); display: flex; flex-direction: column; justify-content: center; }
.hero h1, .hero h2 { color: var(--paper); line-height: 1.06; }
.hero-home h1 { font-size: clamp(34px, 5.2vw, 54px); }
.hero-page h1 { font-size: clamp(30px, 4.6vw, 46px); }
.hero h1 em, .hero h2 em { font-style: italic; color: var(--gold); }
.hero p { color: rgba(245,241,232,.87); max-width: 54ch; font-size: clamp(15.5px, 1.8vw, 18px); line-height: 1.7; }
.hero .kicker { color: var(--gold); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; margin-bottom: 20px;
  border: 1px solid rgba(245,241,232,.36); border-radius: 99px;
  font: 500 12px var(--sans); letter-spacing: .04em; color: rgba(245,241,232,.94);
}
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.hero-page .hero-inner > * { max-width: 720px; }

/* Thẻ đêm diễn gần nhất nổi trên hero */
.hero-showcard {
  position: relative; z-index: 1; margin-top: 28px;
  background: rgba(22,33,27,.66); backdrop-filter: blur(10px);
  border: 1px solid rgba(245,241,232,.22); border-radius: var(--radius);
  padding: 16px 18px; max-width: 320px; color: var(--paper);
}
@media (min-width: 900px) {
  .hero-home .hero-inner { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 40px; }
  .hero-showcard { margin: 0; align-self: end; }
}
.hero-showcard .eyebrow { color: var(--gold); }
.hero-showcard h3 { color: var(--paper); font-size: 20px; margin: 8px 0 6px; }
.hero-showcard p { font-size: 13.5px; margin: 0; color: rgba(245,241,232,.8); }

/* ---------- 10. Ô tìm chỗ trống ---------- */
.searchbox {
  position: relative; z-index: 5; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 18px; margin-top: -34px;
}
@media (min-width: 900px) { .searchbox { padding: 20px 24px; margin-top: -44px; } }
.searchbox-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; align-items: end; }
@media (min-width: 900px) { .searchbox-grid { grid-template-columns: 1.1fr 1.1fr 1.2fr 1.3fr auto; gap: 18px; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-wide { grid-column: 1 / -1; }
@media (min-width: 900px) { .field-wide { grid-column: auto; } }
.field label, .lbl {
  font: 600 10.5px var(--sans); letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
}
.field input[type="radio"], .field input[type="checkbox"] { width: auto; min-height: 0; }
.field input, .field select, .field textarea, .inp {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px;
  font: 400 15px var(--sans); color: var(--text); background: var(--paper); min-height: 46px;
  font-family: var(--sans);
}
.field textarea, textarea.inp { min-height: 108px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); }
.stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; min-height: 46px; }
.stepper button {
  width: 42px; height: 44px; border: 0; background: var(--sand); color: var(--text);
  font-size: 19px; cursor: pointer; flex: none;
}
.stepper button:hover { background: var(--sand-deep); }
.stepper output, .stepper .val { flex: 1; text-align: center; font: 500 15px var(--sans); }
.segmented { display: flex; gap: 6px; flex-wrap: wrap; }
.segmented input { position: absolute; width: 1px; height: 1px; min-height: 0; padding: 0; margin: 0; opacity: 0; pointer-events: none; }
.segmented label {
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 99px; cursor: pointer;
  font: 500 13.5px var(--sans); text-transform: none; letter-spacing: 0; color: var(--text);
  min-height: 42px; display: inline-flex; align-items: center;
}
.segmented input:checked + label { background: var(--forest); border-color: var(--forest); color: var(--paper); }
.segmented input:focus-visible + label { outline: 3px solid var(--brick); outline-offset: 2px; }

/* ---------- 11. Dải số liệu ---------- */
.stats { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; grid-template-columns: 1fr; }
@media (min-width: 480px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--paper); padding: 22px 20px; }
.stat b { display: block; font: 500 clamp(24px, 3.4vw, 34px)/1 var(--serif); color: var(--forest); margin-bottom: 8px; }
.stat span { font-size: 13.5px; color: var(--muted); line-height: 1.55; display: block; }

/* ---------- 12. Dòng thời gian / các bước ---------- */
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 62px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step-time { font: 600 14px var(--mono); color: var(--brick); padding-top: 2px; }
.step h4 { margin: 0 0 4px; font-family: var(--sans); font-weight: 600; font-size: 16px; }
.step p { margin: 0; font-size: 14.5px; color: var(--muted); }
@media (min-width: 700px) { .step { grid-template-columns: 96px 1fr; gap: 26px; padding: 22px 0; } }

/* ---------- 13. Bảng ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
/* Bảng giá công khai: chỉ đường kẻ mảnh, không khung thẻ — như bản thiết kế */
.table-plain { border: 0; border-radius: 0; background: transparent; }
.table-plain thead th { background: transparent; border-bottom: 1px solid var(--forest); }
.table-plain th, .table-plain td { padding-inline: 20px; }
.table-plain th:first-child, .table-plain td:first-child { padding-left: 0; }
.table-plain th:last-child, .table-plain td:last-child { padding-right: 0; width: 36%; }
.table-plain td.meta { color: var(--muted); font-size: 13.5px; }
.table-plain tbody tr:hover { background: transparent; }
.price-group-title {
  font: 600 11.5px/1.4 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin: 38px 0 10px; padding-bottom: 10px; border-bottom: 2px solid var(--forest);
}
.table-scroll table { min-width: 600px; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; vertical-align: top; }
thead th {
  background: var(--sand); font: 600 10.5px var(--sans); letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap; border-bottom: 1px solid var(--line);
}
tbody tr:last-child td { border-bottom: 0; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
tbody tr:hover { background: rgba(245,241,232,.5); }
.table-note { font-size: 13px; color: var(--muted); padding: 12px 16px; background: var(--sand); border-top: 1px solid var(--line); }

/* ---------- 14. Đêm diễn ---------- */
.showrow {
  display: grid; gap: 14px; padding: 20px 0; border-top: 1px solid var(--line);
  grid-template-columns: 58px 1fr;
}
@media (min-width: 820px) { .showrow { grid-template-columns: 76px 1fr auto; gap: 24px; align-items: center; } }
.showrow:last-child { border-bottom: 1px solid var(--line); }
.showdate { text-align: center; padding-top: 2px; }
.showdate b { display: block; font: 500 clamp(26px, 3vw, 34px)/1 var(--serif); color: var(--ink); }
.showdate span { font: 600 9.5px var(--sans); letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.showinfo h3 { margin: 0 0 5px; font-size: clamp(17px, 2vw, 21px); }
.showinfo p { margin: 0; font-size: 14px; color: var(--muted); }
.showbuy { display: flex; align-items: center; gap: 14px; grid-column: 1 / -1; justify-content: space-between; }
@media (min-width: 820px) { .showbuy { grid-column: auto; flex-direction: column; align-items: flex-end; gap: 8px; justify-content: center; } }

/* ---------- 15. Thư viện ảnh ---------- */
.gallery { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1100px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery figure { margin: 0; }
.gallery img, .gallery button { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; background: var(--sand-deep); }
.gallery button { padding: 0; border: 0; cursor: zoom-in; overflow: hidden; display: block; }
.gallery figcaption { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.strip { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.strip figure { margin: 0; }
.strip img { aspect-ratio: 3/4; object-fit: cover; border-radius: 10px; }
.strip figcaption { font: 500 13.5px var(--sans); margin-top: 8px; color: var(--text); }

/* Xem ảnh phóng to */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(12,18,14,.94); display: grid; place-items: center; padding: 20px; }
.lightbox img { max-height: 88vh; max-width: 100%; object-fit: contain; border-radius: 6px; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(245,241,232,.14); border: 1px solid rgba(245,241,232,.3);
  color: var(--paper); width: 48px; height: 48px; border-radius: 50%; font-size: 22px; cursor: pointer;
}
.lightbox-close { top: 18px; right: 18px; }
.lightbox-nav.prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-cap { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: rgba(245,241,232,.8); font-size: 13.5px; padding-inline: 70px; }

/* ---------- 16. Trích dẫn & chân dung ---------- */
.quoteblock { display: grid; gap: 24px; align-items: center; }
@media (min-width: 860px) { .quoteblock { grid-template-columns: 300px 1fr; gap: 44px; } }
.quoteblock img { border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.quoteblock cite { display: block; font-style: normal; margin-top: 16px; font-size: 14px; color: var(--muted); }

/* ---------- 17. Biểu mẫu ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-hint { font-size: 13px; color: var(--muted); }
.form-error { color: var(--danger); font-size: 13.5px; font-weight: 500; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); }
.checkline input { margin-top: 3px; width: 18px; height: 18px; flex: none; }

.alert { padding: 14px 18px; border-radius: 10px; font-size: 14.5px; border: 1px solid; margin-bottom: 18px; }
.alert-ok    { background: #E9F2EC; border-color: #BFD9C8; color: #1F4A32; }
.alert-warn  { background: #FCF2DF; border-color: #E7D2A6; color: #6E4B0B; }
.alert-error { background: #F8E7E3; border-color: #E5C2BA; color: #7E2415; }
.alert ul { margin: 8px 0 0; padding-left: 1.1em; }

/* ---------- 18. Đặt chỗ ---------- */
.wizard { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; align-items: center; }
/* đường kẻ nối giữa các bước, đúng bản thiết kế */
.wizard-step { flex: 1 1 220px; }
.wizard-step::after {
  content: ''; flex: 1; height: 1px; background: var(--line); margin-left: 10px; min-width: 20px;
}
.wizard-step:last-child::after { display: none; }
@media (max-width: 700px) { .wizard-step::after { display: none; } .wizard-step { flex: 0 1 auto; } }
.wizard-step { display: flex; align-items: center; gap: 9px; font: 500 13.5px var(--sans); color: var(--muted); }
.wizard-step b {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sand-deep); color: var(--muted); font: 600 12.5px var(--sans); flex: none;
}
.wizard-step.is-on { color: var(--ink); }
.wizard-step.is-on b { background: var(--brick); color: #fff; }
.wizard-step:not(.is-on):not(.is-done) b { background: var(--forest); color: var(--paper); }
.wizard-step.is-done b { background: var(--ok); color: #fff; }
.wizard-sep { color: var(--line); }

.booking-layout { display: grid; gap: 26px; align-items: start; }
@media (min-width: 1000px) { .booking-layout { grid-template-columns: minmax(0,1fr) 360px; gap: 40px; } }
.summary { background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
@media (min-width: 1000px) { .summary { position: sticky; top: calc(var(--header-h) + 16px); } }
.summary h3 { font-size: 18px; margin-bottom: 14px; }
.sumline { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; font-size: 14px; border-bottom: 1px dashed var(--line); }
.sumline span:first-child { color: var(--muted); }
.sumline b { font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.sumline.is-discount b { color: var(--ok); }
.sumtotal { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; margin-top: 6px; border-top: 2px solid var(--forest); }
.sumtotal b { font: 600 24px var(--sans); color: var(--ink); }
.deposit-note { background: var(--paper); border: 1px solid var(--line); border-radius: 9px; padding: 12px 14px; font-size: 13.5px; margin-top: 14px; color: var(--muted); }
.deposit-note b { color: var(--ink); }

.optcard {
  display: grid; gap: 14px; grid-template-columns: 84px 1fr; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; background: var(--paper);
  cursor: pointer; transition: border-color .15s, background .15s;
}
@media (min-width: 620px) { .optcard { grid-template-columns: 120px 1fr auto; gap: 18px; padding: 16px; } }
.optcard:hover { border-color: rgba(28,58,43,.32); }
.optcard.is-picked { border-color: var(--forest); background: #FAFCF8; box-shadow: inset 0 0 0 1px var(--forest); }
.optcard.is-off { opacity: .5; pointer-events: none; }
.optcard img { border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.optcard h4 { margin: 0 0 3px; font-family: var(--sans); font-size: 16px; font-weight: 600; }
.optcard p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.optcard-price { text-align: right; grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: baseline; }
@media (min-width: 620px) { .optcard-price { grid-column: auto; display: block; } }
.optcard input[type="radio"], .optcard input[type="checkbox"] { position: absolute; opacity: 0; }

.countdown { font: 600 13.5px var(--mono); color: var(--warn); }

/* ---------- 19. Bài viết ---------- */
.prose { max-width: 68ch; font-size: 17px; line-height: 1.78; }
.prose h2 { font-size: clamp(21px, 2.6vw, 28px); margin-top: 2em; }
.prose h3 { font-size: clamp(18px, 2.1vw, 22px); margin-top: 1.8em; font-family: var(--sans); font-weight: 600; }
.prose blockquote {
  margin: 1.8em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--gold);
  font: italic 400 clamp(18px,2.2vw,21px)/1.6 var(--serif); color: var(--ink);
}
.prose img { border-radius: var(--radius); margin: 1.6em 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .55em; }
.prose a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose table { margin: 1.6em 0; }
.prose > *:first-child { margin-top: 0; }

.article-head { max-width: 800px; padding-top: clamp(28px, 4vw, 45px); }
.article-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.author { display: flex; gap: 11px; align-items: center; margin: 22px 0; }
.author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.author b { display: block; font-size: 14.5px; font-weight: 600; }
.author span { font-size: 13px; color: var(--muted); }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 26px; }
.tag { font-size: 12.5px; color: var(--muted); background: var(--sand); padding: 5px 11px; border-radius: 99px; text-decoration: none; }
.tag:hover { background: var(--sand-deep); color: var(--text); }

.breadcrumb { font-size: 13px; color: var(--muted); padding-block: 14px; }
.breadcrumb ol { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; padding: 0; margin: 0; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brick); }

/* ---------- 20. Hỏi đáp ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 18px 40px 18px 0; position: relative; list-style: none;
  font: 500 16.5px/1.5 var(--sans); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 8px; top: 16px; font-size: 22px; color: var(--brick); font-weight: 300;
  transition: transform .18s;
}
.faq details[open] summary::after { content: '−'; }
.faq details > div { padding: 0 0 20px; font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 68ch; }

/* ---------- 21. Chân trang ---------- */
.site-footer { background: var(--ink); color: rgba(245,241,232,.8); padding-block: clamp(24px, 2.8vw, 34px) 12px; margin-top: auto; font-size: 13px; }
.footer-grid { display: grid; gap: 22px; padding-bottom: 16px; }
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 28px; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; } }
.site-footer h2, .site-footer h3 { color: var(--paper); }
.footer-brand .brand-name { color: var(--paper); font-size: 15px; }
.footer-brand .brand-mark { width: 36px; height: 36px; }
.footer-quote { font: italic 400 13px/1.5 var(--serif); color: rgba(245,241,232,.66); max-width: 360px; margin: 9px 0 10px; }
.footer-contact { list-style: none; padding: 0; margin: 0 0 10px; display: grid; gap: 1px; font: 300 13px/1.45 var(--sans); color: rgba(245,241,232,.78); }
.footer-contact a { color: var(--paper); font-weight: 500; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact span { color: rgba(245,241,232,.5); font-size: 12px; }
.footer-col h3, .footer-col > summary {
  font: 700 11.5px var(--sans); letter-spacing: .14em; text-transform: uppercase;
  color: var(--paper); margin-bottom: 9px; list-style: none;
}
.footer-col > summary::-webkit-details-marker { display: none; }
/* Trên điện thoại: gập được, có dấu +/− và vùng bấm đủ lớn */
@media (max-width: 599px) {
  .footer-col { border-top: 1px solid rgba(245,241,232,.12); }
  .footer-col > summary {
    cursor: pointer; position: relative; padding: 14px 28px 14px 0; margin: 0;
    min-height: 44px; display: flex; align-items: center;
  }
  .footer-col > summary::after {
    content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    font-size: 18px; font-weight: 300; color: rgba(245,241,232,.6);
  }
  .footer-col[open] > summary::after { content: '−'; }
  .footer-col > ul { padding-bottom: 16px; }
}
@media (min-width: 600px) {
  .footer-col > summary { cursor: default; pointer-events: none; }
  /* Từ 600px trở lên luôn hiện danh sách, kể cả khi <details> đang đóng —
     để nếu JS không chạy hoặc lệch trạng thái thì link vẫn không bị giấu. */
  .footer-col > ul { display: grid !important; }
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 3px; }
.footer-col a { color: rgba(245,241,232,.78); text-decoration: none; font: 300 13px/1.45 var(--sans); }
.footer-col a:hover { color: var(--gold); }
.social { display: flex; gap: 8px; }
.social a {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(245,241,232,.26);
  display: grid; place-items: center; color: var(--paper); text-decoration: none; font: 600 10.5px var(--sans);
}
.social a:hover { background: rgba(245,241,232,.14); }

.footer-bottom {
  padding-top: 12px; border-top: 1px solid rgba(245,241,232,.14);
  display: flex; gap: 6px 18px; justify-content: space-between; flex-wrap: wrap;
  font: 300 11.5px/1.5 var(--sans); color: rgba(245,241,232,.5);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 8px 18px; flex-wrap: wrap; }

/* ---------- 22. Thanh gọi nhanh trên điện thoại ---------- */
.quickbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--paper); border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 18px rgba(22,33,27,.09); gap: 8px;
}
.quickbar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 7px 4px; border-radius: 9px; text-decoration: none; color: var(--text);
  font: 600 11.5px var(--sans);
}
.quickbar a.is-primary { background: var(--brick); color: #fff; }
.quickbar svg { width: 19px; height: 19px; }
@media (min-width: 860px) { .quickbar { display: none; } }
body.has-quickbar { padding-bottom: 74px; }
@media (min-width: 860px) { body.has-quickbar { padding-bottom: 0; } }

/* ---------- 23. Tiện ích ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.empty { padding: 44px 24px; text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius); }
.divider-label { display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 13px; margin-block: 26px; }
.divider-label::before, .divider-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 14px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.section-head p { margin: 0; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 9px 15px; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; color: var(--text); font-size: 14px; }
.pagination .is-on { background: var(--forest); color: var(--paper); border-color: var(--forest); }

.info-cards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; grid-template-columns: 1fr; }
@media (min-width: 640px) { .info-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .info-cards { grid-template-columns: repeat(4, 1fr); } }
.info-card { background: var(--paper); padding: 20px; }
.info-card b { display: block; font: 600 15px var(--sans); color: var(--ink); margin-bottom: 6px; }
.info-card span { font-size: 14px; color: var(--muted); line-height: 1.6; }

.split { display: grid; gap: 28px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split-wide-left { grid-template-columns: 1.25fr 1fr; } }
.split img { border-radius: var(--radius); width: 100%; }

.ratio-16-9 { aspect-ratio: 16/9; object-fit: cover; }
.ratio-4-3  { aspect-ratio: 4/3;  object-fit: cover; }
.ratio-3-4  { aspect-ratio: 3/4;  object-fit: cover; }

@media print {
  .site-header, .site-footer, .quickbar, .topbar, .nav-toggle, .hero-cta { display: none !important; }
  body { background: #fff; }
  a[href^="http"]::after { content: ' (' attr(href) ')'; font-size: 11px; color: #666; }
}

/* ==========================================================================
   24. Thành phần dựng theo bản mockup JPEG 10.08 (đo ở khổ 1098px)
   ========================================================================== */

:root { --teal: #2E6D72; --teal-soft: rgba(255,255,255,.09); }

/* ---- 24.1 Ô tìm chỗ trống: các ô có vạch ngăn, nút chạy hết bề ngang ---- */
.searchbar {
  position: relative; z-index: 5; background: var(--paper);
  border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 14px 40px rgba(22,33,27,.12);
  padding: 20px; margin-top: -44px;
}
@media (min-width: 760px) { .searchbar { padding: 26px 28px; } }
.searchbar-fields { display: grid; gap: 18px; grid-template-columns: 1fr; margin-bottom: 18px; }
@media (min-width: 560px) { .searchbar-fields { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .searchbar-fields { gap: 0; grid-template-columns: 1fr 1fr .8fr 1.45fr; } } /* cột Kiểu ở đủ rộng cho 3 nút trên một hàng; 900–1099px giữ lưới 2×2 */
.searchbar-cell { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
@media (min-width: 1100px) {
  .searchbar-cell { padding-inline: 24px; }
  .searchbar-cell:first-child { padding-left: 4px; }
  .searchbar-cell + .searchbar-cell { border-left: 1px solid var(--line); }
}
.searchbar-cell > label, .searchbar-cell > .lbl {
  font: 500 10.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.searchbar-cell input[type="date"] {
  border: 0; padding: 0; min-height: 28px; background: transparent;
  font: 500 16px var(--sans); color: var(--ink); width: 100%;
}
.searchbar .stepper { border: 0; min-height: 28px; justify-content: flex-start; gap: 4px; }
.searchbar .stepper button {
  width: 40px; height: 40px; border-radius: 50%; background: transparent;
  border: 1px solid var(--line); font-size: 16px; color: var(--text); flex: none;
}
/* Trên máy tính nút nhỏ lại cho gọn như bản thiết kế; điện thoại giữ 40px để bấm được */
@media (min-width: 700px) { .searchbar .stepper button { width: 28px; height: 28px; font-size: 15px; } }
.searchbar .stepper button:hover { background: var(--sand); }
.searchbar .stepper .val { flex: none; width: auto; min-width: 78px; font: 500 16px var(--sans); text-align: center; }
.searchbar .segmented { gap: 7px; }
.searchbar .segmented label { padding: 7px 13px; min-height: 34px; font-size: 13.5px; }
.searchbar-go { width: 100%; }
.searchbar-inline { margin-top: 0; box-shadow: var(--shadow); }
/* Ô ngày dùng bộ chọn sẵn của trình duyệt (tốt cho điện thoại), kèm dòng
   thứ/ngày tiếng Việt bên dưới để đọc đúng như bản thiết kế. */
.datehint { font: 500 13px var(--sans); color: var(--muted); }

/* ---- 24.2 Dải bốn con số, không viền ---- */
.factrow { display: grid; gap: 26px 32px; grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .factrow { grid-template-columns: repeat(4, 1fr); gap: 34px; } }
.fact b { display: block; font: 400 clamp(26px, 3.2vw, 34px)/1.1 var(--serif); color: var(--ink); margin-bottom: 10px; }
.fact span { display: block; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ---- 24.3 Đầu mục: tiêu đề trái, mô tả canh phải ---- */
.sec-head { display: grid; gap: 12px; align-items: end; margin-bottom: 26px; }
@media (min-width: 860px) { .sec-head { grid-template-columns: 1fr auto; gap: 40px; } }
.sec-head h2 { margin: 0; }
.sec-head .kicker { margin-bottom: 10px; }
.sec-head-note { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--muted); max-width: 42ch; }
@media (min-width: 860px) { .sec-head-note { text-align: right; } }
.sec-head .link-arrow { white-space: nowrap; }

/* ---- 24.4 Thẻ lối đi chơi ---- */
.tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit;
  transition: box-shadow .18s, transform .18s;
}
.tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }
.tile-img { aspect-ratio: 4/3; background: var(--sand-deep); overflow: hidden; }
.tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tile:hover .tile-img img { transform: scale(1.04); }
.tile-body { padding: 18px 20px 0; display: flex; flex-direction: column; flex: 1; }
.tile-body h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.3; }
.tile-body p { margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.tile-foot {
  margin-top: auto; padding: 14px 20px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: baseline; gap: 8px; justify-content: space-between;
}
.tile-from { font-size: 13px; color: var(--muted); }
.tile-price { font: 600 20px/1 var(--sans); color: var(--ink); }
.tile-price small { font: 400 12.5px var(--sans); color: var(--muted); margin-left: 2px; }
.tile-cta { font: 600 14px var(--sans); color: var(--brick); white-space: nowrap; }

/* ---- 24.5 Dải chuyện của đảo (nền rừng) ---- */
.storyband { background: var(--forest); color: rgba(245,241,232,.86); }
.storyband-grid { display: grid; gap: 30px; align-items: center; }
@media (min-width: 880px) { .storyband-grid { grid-template-columns: 340px minmax(0,1fr); gap: 64px; } }
@media (min-width: 1100px) { .storyband-grid { grid-template-columns: 380px minmax(0,1fr); gap: 80px; } }
.storyband-photo img { border-radius: 10px; aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.storyband blockquote {
  margin: 0 0 18px; font: italic 400 clamp(19px, 2.3vw, 25px)/1.5 var(--serif); color: var(--paper);
  text-align: justify; text-align-last: left;
  /* Lora nghiêng khá đứng — nghiêng thêm một chút cho đúng chất trích dẫn */
  transform: skewX(-5deg); transform-origin: left center;
}
/* Tên người nói — dòng chữ dưới câu trích, có gạch vàng ngắn đứng trước */
.storyband-cite { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 0 0 26px; }
.storyband blockquote { text-indent: -.42em; } /* treo dấu mở ngoặc kép ra ngoài để chữ đầu thẳng hàng với đoạn văn bên dưới */
.storyband-cite b { font: 600 15px var(--sans); color: var(--gold); letter-spacing: .01em; }
.storyband-cite span { font-size: 13.5px; color: rgba(245,241,232,.65); }
.storyband p { color: rgba(245,241,232,.8); font-size: 15px; line-height: 1.8; text-align: justify; text-align-last: left; }
/* Câu trích và đoạn văn cùng một bề ngang, canh đều hai bên; trên điện thoại vẫn canh trái cho dễ đọc */
@media (max-width: 879px) { .storyband blockquote, .storyband p { text-align: left; } }
.storyband .kicker { color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); color: var(--ink); }

/* ---- 24.6 Danh sách đêm diễn trong thẻ ---- */
.showcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.showcard-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.showcard-head b { font: 600 16px var(--sans); color: var(--ink); }
.showcard-head span { font-size: 13px; color: var(--muted); }
.showitem { padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.showitem:last-child { border-bottom: 0; padding-bottom: 0; }
.showitem-row { display: grid; grid-template-columns: 52px minmax(0,1fr) auto; gap: 14px; align-items: start; }
.showitem-date { text-align: center; }
.showitem-date b { display: block; font: 400 27px/1 var(--serif); color: var(--ink); }
.showitem-date span { font: 600 9px var(--sans); letter-spacing: .1em; color: var(--muted); }
.showitem-main h4 { margin: 0 0 4px; font: 600 15.5px/1.35 var(--sans); }
.showitem-main p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--muted); }
.showitem-price { text-align: right; white-space: nowrap; }
.showitem-price b { display: block; font: 600 16px var(--sans); color: var(--ink); }
.showitem-price span { font-size: 12.5px; color: var(--brick); }
.showitem-price span.out { color: var(--muted); }
.showitem-act { margin-top: 12px; padding-left: 66px; }
.showitem.is-out .showitem-date b, .showitem.is-out .showitem-main h4 { color: var(--muted); }

/* ---- 24.7 Ảnh có chú thích đè lên ---- */
.figcap { position: relative; border-radius: var(--radius); overflow: hidden; margin: 0; }
.figcap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.figcap figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 22px 20px; color: var(--paper);
  background: linear-gradient(180deg, transparent, rgba(12,20,15,.86));
}
.figcap figcaption b { display: block; font: 500 19px/1.3 var(--serif); margin-bottom: 5px; }
.figcap figcaption span { font-size: 13.5px; line-height: 1.6; color: rgba(245,241,232,.82); }
.figcap-sm figcaption { padding: 34px 16px 14px; }
.figcap-sm figcaption b { font-size: 16px; margin: 0; }

/* ---- 24.8 Hai bảng cạnh nhau ---- */
.panelrow { display: grid; gap: 22px; }
@media (min-width: 880px) { .panelrow { grid-template-columns: 1fr 1fr; } }
.panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; display: flex; flex-direction: column; }
.panel h2 { margin: 0 0 12px; }
.panel > p { font-size: 14.5px; line-height: 1.75; color: var(--muted); }
.panel-teal { background: var(--teal); border-color: var(--teal); color: rgba(255,255,255,.86); }
.panel-teal h2 { color: #fff; }
.panel-teal > p { color: rgba(255,255,255,.8); }
.panel-teal .kicker { color: rgba(255,255,255,.72); }

.minifacts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 14px;
  padding: 18px 0; margin: 18px 0 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (min-width: 520px) { .minifacts { grid-template-columns: repeat(4, 1fr); } }
.minifacts b { display: block; font: 600 19px/1.1 var(--sans); color: var(--ink); margin-bottom: 4px; }
.minifacts b.hot { color: var(--brick); }
.minifacts span { font-size: 12.5px; color: var(--muted); line-height: 1.4; }

.comboitem {
  display: flex; gap: 14px; justify-content: space-between; align-items: flex-start;
  background: var(--teal-soft); border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 10px; text-decoration: none; color: inherit;
}
.comboitem:hover { background: rgba(255,255,255,.16); color: inherit; }
.comboitem > span:first-child { min-width: 0; flex: 1; }
.comboitem b { display: block; font: 600 15px var(--sans); color: #fff; margin-bottom: 3px; }
.comboitem small { font-size: 12.5px; color: rgba(255,255,255,.75); }
.comboitem-price { text-align: right; white-space: nowrap; }
.comboitem-price b { font-size: 17px; }
.comboitem-price small { color: rgba(245,241,232,.7); display: block; font-size: 12px; }

/* ---- 24.9 Khảm ảnh 3 + 2 ---- */
.mosaic { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .mosaic { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .mosaic { grid-template-columns: repeat(6, 1fr); } .mosaic > * { grid-column: span 2; } }
.mosaic .figcap { aspect-ratio: 4/3; }
@media (min-width: 900px) { .mosaic > *:nth-child(4), .mosaic > *:nth-child(5) { grid-column: span 3; } }

/* ---- 24.10 Ba chặng đường ra đảo ---- */
.routelist { list-style: none; padding: 0; margin: 0; }
.routelist li { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 14px; margin-bottom: 22px; }
.routelist b.n {
  width: 34px; height: 34px; border-radius: 50%; background: var(--forest); color: var(--paper);
  display: grid; place-items: center; font: 600 12px var(--sans);
}
.routelist li:last-child b.n { background: var(--brick); }
.routelist h4 { margin: 5px 0 5px; font: 600 15.5px var(--sans); }
.routelist p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--muted); }
.mapbox {
  background: #DCE6DD; border-radius: var(--radius); min-height: 320px;
  display: grid; place-items: center; text-align: center; padding: 0; color: var(--forest);
  border: 1px solid rgba(28,58,43,.1); overflow: hidden;
}
.mapbox iframe { border-radius: var(--radius); }
.mapbox img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }

/* ---- 24.11 Thẻ bảng giá gọn trên trang chủ ---- */
.pricecard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.pricecard-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.pricecard-head h2 { margin: 0; }
.pricecard-head span { font-size: 13.5px; color: var(--muted); }

/* ---- 24.12 Bài viết dạng trần, không khung ---- */
.postcard { display: block; text-decoration: none; color: inherit; }
.postcard img { border-radius: 10px; aspect-ratio: 3/2; object-fit: cover; width: 100%; margin-bottom: 14px; }
.postcard .eyebrow { display: block; margin-bottom: 8px; }
.postcard h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.32; }
.postcard:hover h3 { color: var(--brick-deep); }
.postcard p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }


/* ==========================================================================
   25. Thành phần cho các trang trong (theo mockup)
   ========================================================================== */

/* ---- 25.1 Ảnh lớn của trang trong: thấp hơn trang chủ, chữ căn giữa ---- */
@media (min-width: 900px) {
  .hero-page .hero-inner { min-height: 452px; display: flex; flex-direction: column; justify-content: center; }
}
.hero-page .hero-cta { margin-top: 24px; }

/* ---- 25.2 Thẻ giá nền cát ---- */
.pricebox { background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
@media (min-width: 1000px) { .pricebox { position: sticky; top: calc(var(--header-h) + 16px); } }
.pricebox .kicker { color: var(--muted); margin-bottom: 8px; }
.pricebox-amount { font: 600 clamp(28px, 3.4vw, 34px)/1 var(--sans); color: var(--ink); }
.pricebox-unit { font-size: 13.5px; color: var(--muted); margin: 8px 0 18px; }
.pricebox dl { margin: 0 0 18px; font-size: 14px; line-height: 1.7; }
.pricebox dt { font-weight: 600; color: var(--ink); display: inline; }
.pricebox dd { display: inline; margin: 0; color: var(--muted); }
.pricebox dd + dt { display: block; margin-top: 10px; }
.pricebox-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pricebox-note { font-size: 13px; color: var(--muted); margin: 16px 0 0; line-height: 1.6; }

/* ---- 25.3 Thẻ lựa chọn có giá ở chân ---- */
.optcards { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .optcards { grid-template-columns: repeat(3, 1fr); } }
.optbox {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit;
}
.optbox:hover { box-shadow: var(--shadow); color: inherit; }
.optbox-img { aspect-ratio: 16/10; background: var(--sand-deep); }
.optbox-img img { width: 100%; height: 100%; object-fit: cover; }
.optbox-body { padding: 18px 20px; flex: 1; }
.optbox-body h3 { margin: 0 0 8px; font-size: 18px; }
.optbox-body p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
.optbox-foot {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 14px 20px; border-top: 1px solid var(--line-soft);
}
.optbox-foot span { font-size: 13px; color: var(--muted); }
.optbox-foot b { font: 600 19px var(--sans); color: var(--ink); }

/* ---- 25.4 Hai cột danh sách gạch giữa ---- */
.dotlist { font-size: 14.5px; line-height: 1.85; color: var(--muted); margin: 0; }

/* ---- 25.5 Thẻ đêm diễn lớn (trang Lịch diễn) ---- */
.showbig {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 18px;
}
.showbig-top { display: grid; grid-template-columns: 96px minmax(0,1fr); }
@media (min-width: 620px) { .showbig-top { grid-template-columns: 108px 168px minmax(0,1fr); } }
.showbig-date {
  background: var(--forest); color: var(--paper); padding: 16px 12px; text-align: center;
  display: flex; flex-direction: column; justify-content: center;
}
.showbig-date small { font: 600 9.5px var(--sans); letter-spacing: .12em; text-transform: uppercase; opacity: .72; }
.showbig-date b { display: block; font: 400 34px/1.05 var(--serif); margin: 4px 0 2px; }
.showbig-date span { font: 600 9.5px var(--sans); letter-spacing: .12em; text-transform: uppercase; opacity: .82; }
.showbig-thumb { display: none; }
@media (min-width: 620px) { .showbig-thumb { display: block; } }
.showbig-thumb img { width: 100%; height: 100%; object-fit: cover; }
.showbig-body { padding: 16px 20px 18px; }
.showbig-body h3 { margin: 10px 0 8px; font-size: clamp(19px, 2.2vw, 23px); line-height: 1.3; }
.showbig-body h3 a { color: inherit; text-decoration: none; }
.showbig-body h3 a:hover { color: var(--brick-deep); }
.showbig-body > p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--muted); }
.showbig-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding: 14px 20px; border-top: 1px solid var(--line-soft);
}
.showbig-meta { font-size: 13.5px; color: var(--muted); }
.showbig-meta b { color: var(--brick); }
.showbig-buy { display: flex; align-items: center; gap: 14px; }
.showbig-buy .price { font-size: 19px; }
.showbig.is-out { opacity: .74; }

/* ---- 25.6 Thẻ phụ ở cột bên ---- */
.sidecard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 18px; }
.sidecard h3 { margin: 0 0 10px; font-size: 19px; }
.sidecard p { margin: 0 0 14px; font-size: 14px; line-height: 1.7; color: var(--muted); }
.sidecard p:last-child { margin-bottom: 0; }
.sidecard-teal { background: var(--teal); border-color: var(--teal); }
.sidecard-teal h3 { color: #fff; }
.sidecard-teal p { color: rgba(255,255,255,.84); }
.sidecard-teal .kicker { color: rgba(255,255,255,.72); }

.list-layout { display: grid; gap: 26px; align-items: start; }
@media (min-width: 1000px) { .list-layout { grid-template-columns: minmax(0,1fr) 348px; gap: 34px; } }
@media (min-width: 1000px) { .list-side { position: sticky; top: calc(var(--header-h) + 16px); } }

/* ---- 25.7 Đầu trang có bộ lọc bên phải ---- */
.head-filters { display: grid; gap: 16px; align-items: center; }
@media (min-width: 900px) { .head-filters { grid-template-columns: 1fr auto; } }
.head-filters h1 { margin: 0; }
.head-filters .filters { margin: 0; }

/* ---- 25.8 Bộ ảnh ghép 2 tấm ---- */
.duo { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.duo img { border-radius: 10px; width: 100%; height: 100%; object-fit: cover; }
.duo > *:first-child { grid-column: 1 / -1; }
.duo figure { margin: 0; }

/* ==========================================================================
   26. Ảnh lớn kiểu chia đôi & thẻ combo (theo mockup)
   ========================================================================== */

/* ---- 26.1 Ảnh lớn chia đôi: ảnh trái, nền rừng phải ---- */
.splithero { display: grid; grid-template-columns: 1fr; background: var(--forest); }
@media (min-width: 880px) { .splithero { grid-template-columns: 1fr 1fr; } }
.splithero-photo { min-height: 260px; }
@media (min-width: 880px) { .splithero-photo { min-height: 460px; } }
.splithero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.splithero-text {
  padding: 34px var(--gut); color: rgba(245,241,232,.84);
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 880px) { .splithero-text { padding: 52px clamp(36px, 5vw, 64px); } }
.splithero-text h1 { color: var(--paper); font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 18px; }
.splithero-text .kicker { color: var(--gold); }
.splithero-text p { font-size: 15.5px; line-height: 1.8; color: rgba(245,241,232,.8); max-width: 54ch; }
.splithero-text p + p { padding-top: 16px; border-top: 1px solid rgba(245,241,232,.18); }

/* ---- 26.2 Chọn buổi / chọn suất ---- */
.slotlist { display: grid; gap: 8px; margin: 8px 0 20px; }
.slotpick { position: relative; }
.slotpick input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.slotpick label {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 9px; padding: 12px 14px; cursor: pointer;
  background: var(--paper); font: 500 14.5px var(--sans); color: var(--text); min-height: 46px;
}
.slotpick label span { font-size: 13px; color: var(--muted); font-weight: 400; }
.slotpick input:checked + label { border-color: var(--brick); box-shadow: inset 0 0 0 1px var(--brick); }
.slotpick input:focus-visible + label { outline: 3px solid var(--brick); outline-offset: 2px; }
.slotpick input:disabled + label { opacity: .5; cursor: not-allowed; }
.slotpick input:checked + label span { color: var(--brick); }

/* ---- 26.3 Thẻ combo ---- */
.combocards { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .combocards { grid-template-columns: repeat(3, 1fr); } }
.combocard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
}
.combocard.is-best { border-color: var(--brick); box-shadow: 0 0 0 1px var(--brick); }
.combocard-img { aspect-ratio: 16/10; background: var(--sand-deep); position: relative; }
.combocard-img img { width: 100%; height: 100%; object-fit: cover; }
.combocard-ribbon {
  position: absolute; top: 12px; right: 12px; background: var(--brick); color: #fff;
  font: 600 10px var(--sans); letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 4px;
}
.combocard-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.combocard-body h3 { margin: 0 0 6px; font-size: 20px; }
.combocard-meta { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
.combocard-items { font-size: 14px; line-height: 1.7; color: var(--muted); margin: 0 0 18px; }
.combocard-price { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.combocard-price b { font: 600 clamp(22px, 2.6vw, 26px)/1 var(--sans); color: var(--ink); }
.combocard-price del { font-size: 14px; color: var(--muted); margin-left: 8px; }
.combocard-save { display: block; font-size: 13.5px; color: var(--brick); margin: 8px 0 16px; font-weight: 500; }

/* ---- 26.4 Lưới ghi chú nền cát ---- */
.notegrid {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; display: grid; gap: 22px 34px; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .notegrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .notegrid { grid-template-columns: repeat(3, 1fr); } }
.notegrid b { display: block; font: 600 15px var(--sans); color: var(--ink); margin-bottom: 6px; }
.notegrid span { font-size: 14px; line-height: 1.65; color: var(--muted); }

/* ---- 26.5 Đầu trang canh giữa ---- */
.page-head-center { text-align: center; }
.page-head-center .lede { margin-inline: auto; }
.page-head-center .kicker { display: block; }

.combocard-unit { font: 400 13px var(--sans); color: var(--muted); margin-left: 4px; }

/* Ảnh đầu trang Hành trình: NSƯT Cao Minh bên piano — giữ phần giữa ảnh, giảm lớp phủ vì ảnh đã tối */
.hero-page[data-page="hanh-trinh-cao-minh"] .hero-bg img { object-position: 50% 62%; }
.hero-page[data-page="hanh-trinh-cao-minh"].hero::after { background: linear-gradient(90deg, rgba(13,24,19,.70) 0%, rgba(13,24,19,.35) 50%, rgba(13,24,19,0) 100%); }
.hero-page[data-page="hanh-trinh-cao-minh"] .hero-inner p { max-width: 38ch; }
.hero-page[data-page="hanh-trinh-cao-minh"].hero::after { background: linear-gradient(90deg, rgba(13,24,19,.82) 0%, rgba(13,24,19,.55) 40%, rgba(13,24,19,.05) 75%, rgba(13,24,19,0) 100%); }

/* Trang kết thúc bằng một khối .wrap trần (đặt chỗ…) vẫn cách chân trang một khoảng */
main > section.wrap:last-child { padding-bottom: clamp(40px, 5vw, 64px); }

/* Mục đang xem trong menu điện thoại */
.drawer-panel nav a[aria-current="page"] { color: var(--brick); font-weight: 600; }
