/* =====================================================================
   botensez.com — 统一设计系统 (SITE)
   方向：东南亚暖色 · 招商文旅
   结构对齐电子楼书 16 页章节
   单一真相来源，替代 style.css / brochure-redesign.css / assets/css/*
   ===================================================================== */

:root {
  /* 品牌色——松绿（稳重/自然/国门） */
  --brand: #173f37;
  --brand-2: #1f6b54;
  --brand-soft: #2c8a6c;

  /* 暖橙（活力/招商/文旅吸睛） */
  --accent: #d9692b;
  --accent-deep: #b9531d;

  /* 金（柚木/高端点缀） */
  --gold: #c08a3e;
  --gold-soft: #e3c389;

  /* 叶绿（生态/文旅） */
  --leaf: #3f7d4e;

  /* 中性——暖沙底 */
  --bg: #fbf6ef;
  --surface: #ffffff;
  --soft: #f3ebde;
  --mist: #eaf1ec;
  --ink: #1d2622;
  --muted: #5e6b61;
  --line: rgba(23, 63, 55, 0.14);
  --line-strong: rgba(23, 63, 55, 0.24);

  /* 深色背景（深蓝/墨绿）——用于反色 section */
  --dark-bg: #0f2926;
  --dark-surface: #162e2b;
  --dark-line: rgba(255, 255, 255, 0.08);

  --max: 1200px;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 18px 48px rgba(23, 63, 55, 0.12);
  --shadow-sm: 0 8px 24px rgba(23, 63, 55, 0.1);

  --font: "Source Han Sans SC", "Noto Sans CJK SC", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- 布局外壳 ---------- */
.page-shell { overflow: clip; }

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(60px, 8vw, 112px) 24px;
}

.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section h2 {
  color: var(--brand);
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 16px 0 0;
  text-wrap: pretty;
}

/* ---------- 反色 Section（深底） ---------- */
.section-dark {
  background: linear-gradient(165deg, var(--dark-bg), var(--dark-surface));
  color: #fff;
}
.section-dark .kicker { color: var(--gold-soft); }
.section-dark .kicker::before { background: var(--gold-soft); }
.section-dark h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255, 255, 255, 0.65); }
.section-dark .section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 48px); }

/* ---------- 顶部导航 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px max(22px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 52px; width: auto; object-fit: contain; }

.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.is-active { background: var(--mist); color: var(--brand); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--brand);
  border-radius: 2px;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(217, 105, 43, 0.32); }
.btn-primary:hover { background: var(--accent-deep); }

.btn-secondary { background: var(--brand); color: #fff; }
.btn-secondary:hover { background: #0f2c27; }

.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--brand); }
.btn-ghost:hover { background: var(--mist); }

/* ---------- 老挝文点缀 ---------- */
.lao-script {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.eyebrow {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

/* ================================================================
   01 HERO — 封面级大屏
   对应 PDF P01
   ================================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(170deg, #0c3d5a 0%, #164a68 35%, #1a5574 65%, #1f6b80 100%);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 85%, rgba(192, 138, 62, 0.15), transparent 65%),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(31, 107, 84, 0.25), transparent 55%);
  pointer-events: none;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 48px 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.5;
  margin: 18px 0 0;
  color: var(--gold-soft);
}
.hero-lead {
  font-size: 1.06rem;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}
.hero-tagline {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 18px;
  border: 1px solid rgba(192, 138, 62, 0.4);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ================================================================
   02 城市概况 PROFILE
   对应 PDF P02 — 区位地图 + 三大数据卡
   ================================================================ */
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.profile-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--soft);
}
.profile-map img { width: 100%; height: auto; display: block; }
.profile-stats {
  display: grid;
  gap: 16px;
}
.profile-stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  text-align: center;
}
.profile-stat-card .stat-number {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.profile-stat-card .stat-unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--muted);
}
.profile-stat-card .stat-label {
  display: block;
  margin-top: 8px;
  color: var(--brand);
  font-weight: 800;
  font-size: 1.04rem;
}
.profile-desc {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

/* ================================================================
   03 区位优势 LOCATION
   对应 PDF P03 — 区域地图 + 铁路时刻表
   ================================================================ */
.location-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.location-regional-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--soft);
}
.location-regional-map img { width: 100%; height: auto; display: block; }
.location-table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.location-table-wrap h3 {
  color: var(--brand);
  font-size: 1.1rem;
  margin: 0 0 16px;
  font-weight: 800;
}
.train-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.train-table th {
  background: var(--brand);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 700;
  font-size: 0.84rem;
}
.train-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.train-table tr:last-child td { border-bottom: none; }
.train-table td:first-child { font-weight: 700; color: var(--brand); }
.location-summary {
  margin-top: 24px;
  padding: 22px 24px;
  background: var(--mist);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.location-tag {
  padding: 8px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--surface);
}

/* ================================================================
   04 政策优势 POLICY
   对应 PDF P04-P05 — 外资/资金/税收/MADE IN LAOS/一站式
   ================================================================ */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.policy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.policy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.policy-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.policy-card h3 {
  color: var(--brand);
  font-size: 1.2rem;
  margin: 0 0 10px;
  font-weight: 800;
}
.policy-card p { color: var(--muted); margin: 0; font-size: 0.96rem; line-height: 1.7; }

/* MADE IN LAOS 特色块 */
.made-in-laos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  margin-top: 40px;
  padding: 36px;
  background: linear-gradient(135deg, var(--soft), var(--mist));
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.made-in-laos .made-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.15;
  letter-spacing: 0.04em;
}
.made-in-laos .made-subtitle {
  color: var(--muted);
  font-size: 1.04rem;
  margin-top: 12px;
}
.made-in-laos figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.made-in-laos img { width: 100%; height: auto; display: block; }

/* 一站式服务 CTA */
.one-stop-bar {
  display: grid;
  place-items: center;
  margin-top: 32px;
  padding: 28px 36px;
  background: var(--dark-bg);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* ================================================================
   05 四大功能区 ZONES
   对应 PDF P06-P09 — 商业金融/工业园/物流园/文旅度假区
   ================================================================ */
.zone-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.zone-tab {
  padding: 10px 22px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 160ms ease;
}
.zone-tab.active,
.zone-tab:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.zones-showcase {
  display: grid;
  gap: 32px;
}
.zone-panel { display: none; }
.zone-panel.active { display: grid; }

.zone-panel.active {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}
.zone-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.zone-hero-img img { width: 100%; height: auto; display: block; }
.zone-info h3 {
  color: var(--brand);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 850;
  margin: 0 0 8px;
}
.zone-info .zone-subtitle {
  color: var(--accent);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.zone-info > p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0 0 22px;
}
.zone-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.zone-feature {
  padding: 16px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
}
.zone-feature .zf-label {
  display: block;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.94rem;
}
.zone-feature .zf-en {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* 功能区数据卡（工业园用） */
.zone-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.zone-metric {
  text-align: center;
  padding: 20px 14px;
  background: var(--soft);
  border-radius: var(--radius-sm);
}
.zone-metric .zm-value {
  display: block;
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
}
.zone-metric .zm-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  margin-top: 6px;
}

/* 功能区行业标签 */
.zone-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.zone-industry {
  padding: 10px 20px;
  background: var(--dark-bg);
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
}

/* ================================================================
   06 城市交付 DELIVERY
   对应 PDF P10 — 近1000家入驻企业
   ================================================================ */
.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}
.delivery-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.delivery-img img { width: 100%; height: auto; display: block; }
.delivery-text { display: grid; align-content: center; gap: 16px; }
.delivery-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.8; margin: 0; }
.delivery-highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}
.delivery-highlight span { font-size: 1rem; font-weight: 700; opacity: 0.85; }

/* ================================================================
   07 消费流量 TRAFFIC
   对应 PDF P11 — 三类核心客群
   ================================================================ */
.traffic-hero {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.traffic-hero img { width: 100%; height: auto; display: block; }
.traffic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.traffic-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 4px solid var(--accent);
}
.traffic-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 0.84rem;
  margin-bottom: 14px;
}
.traffic-card h3 { color: var(--brand); font-size: 1.15rem; margin: 0 0 10px; font-weight: 800; }
.traffic-card p { color: var(--muted); margin: 0; font-size: 0.96rem; line-height: 1.7; }

/* ================================================================
   08 四类资产 ASSETS
   对应 PDF P12-P15 — 街铺/客栈/酒店/写字楼
   ================================================================ */
.assets-four {
  display: grid;
  gap: 28px;
}
.asset-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.asset-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.asset-row:nth-child(even) { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); }
.asset-row-figure {
  overflow: hidden;
}
.asset-row-figure img { width: 100%; height: auto; display: block; }
.asset-row-body { padding: 32px 28px; display: grid; align-content: start; gap: 14px; }
.asset-row-body h3 {
  color: var(--brand);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 850;
  margin: 0;
}
.asset-row-body .asset-subtitle {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.94rem;
}
.asset-size {
  display: inline-block;
  padding: 10px 20px;
  background: var(--dark-bg);
  color: var(--gold-soft);
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: 1.1rem;
}
.asset-point {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 4px;
}
.asset-point .ap-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--brand);
  font-weight: 900;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.asset-point p { color: var(--muted); margin: 0; font-size: 0.96rem; line-height: 1.65; }

/* ================================================================
   09 预约 RESERVE（保留原有功能）
   ================================================================ */
.reserve-cta {
  text-align: center;
  background: linear-gradient(165deg, var(--brand), var(--dark-bg));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(48px, 7vw, 80px) 24px;
  margin: clamp(40px, 6vw, 72px) auto;
  max-width: var(--max);
}
.reserve-cta .lao-script { color: var(--gold-soft); }
.reserve-cta h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 0; }
.reserve-cta p { color: rgba(255, 255, 255, 0.78); max-width: 560px; margin: 14px auto 0; }
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}
.reserve-cta .btn-secondary { background: var(--accent); }
.reserve-cta .btn-secondary:hover { background: var(--accent-deep); }
.reserve-cta .btn-ghost { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.reserve-cta .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* ================================================================
   10 怎么到磨丁 GUIDE（保留原有功能）
   ================================================================ */
.guide-section {
  background: var(--soft);
  border-radius: var(--radius);
  padding: clamp(40px, 6vw, 64px) 28px;
}
.guide-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.guide-method {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.guide-method:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.guide-method .gm-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.guide-method h3 { color: var(--brand); font-size: 1.1rem; margin: 0 0 10px; font-weight: 800; }
.guide-method p { color: var(--muted); margin: 0; font-size: 0.94rem; }
.guide-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease;
}
.guide-more:hover { background: #0f2c27; }

/* ================================================================
   11 相关信息 RELATED INFO（保留原有功能）
   ================================================================ */
.daily-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.daily-cards .news-item { margin: 0; }
.daily-cards .news-item p { display: none; }
.daily-cards .news-item h2 { font-size: 1.12rem; line-height: 1.5; }

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease;
}
.text-button:hover { background: #0f2c27; }

/* ================================================================
   页脚 FOOTER（对应 PDF P16 尾页）
   ================================================================ */
.site-footer {
  background: linear-gradient(165deg, var(--dark-bg), #091a17);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(48px, 7vw, 72px) 24px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 36px;
}
.footer-branding {
  text-align: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--dark-line);
}
.footer-branding img { height: 64px; width: auto; margin: 0 auto 16px; }
.footer-branding h3 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 850;
  margin: 0 0 6px;
}
.footer-branding p { margin: 0; font-size: 0.92rem; opacity: 0.65; }
.footer-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.footer-pillar {
  padding: 20px 12px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-sm);
  transition: border-color 160ms ease;
}
.footer-pillar:hover { border-color: var(--gold); }
.footer-pillar .fp-icon { font-size: 1.6rem; margin-bottom: 8px; }
.footer-pillar .fp-name { color: var(--gold-soft); font-weight: 800; font-size: 0.88rem; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--dark-line);
}
.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}
.footer-phone .phone-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.footer-address { font-size: 0.9rem; opacity: 0.6; }
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--dark-line);
  font-size: 0.84rem;
  opacity: 0.5;
}

/* ---------- 文章详情（render-news 产出） ---------- */
.article-detail {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 24px;
}
.article-back {
  display: inline-flex;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 22px;
}
.article-header { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.article-header h1 { color: var(--brand); font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.2; margin: 0; text-wrap: balance; }
.article-header time { display: block; color: var(--muted); margin-top: 14px; }
.article-detail figure { margin: 32px 0; }
.article-detail figure img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.article-detail figcaption { color: var(--muted); font-size: 0.92rem; text-align: center; margin-top: 10px; }
.article-detail p { color: var(--ink); font-size: 1.08rem; line-height: 1.95; margin: 22px 0 0; }
.article-detail h2 { color: var(--brand); font-size: 1.6rem; margin: 38px 0 0; }
.article-detail h3 { color: var(--brand); font-size: 1.25rem; margin: 28px 0 0; }
.article-detail blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  background: var(--mist);
  border-left: 4px solid var(--brand-soft);
  border-radius: var(--radius-sm);
  color: var(--brand);
  font-weight: 700;
}
.article-detail ul { color: var(--ink); padding-left: 22px; }
.article-detail li { margin: 8px 0; }
.article-sources { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.article-sources h2 { color: var(--brand); font-size: 1.3rem; }
.article-sources a { color: var(--accent); word-break: break-all; }

/* ---------- 新闻中心 ---------- */
.news-hero { max-width: var(--max); margin: 0 auto; padding: clamp(48px, 7vw, 88px) 24px 8px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) 24px clamp(56px, 7vw, 96px);
}
.news-grid article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.news-grid article:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.news-grid img { width: auto; max-width: 160px; height: auto; max-height: 120px; object-fit: contain; border-radius: var(--radius-sm); background: var(--soft); }
.news-grid time { color: var(--accent); font-weight: 850; font-size: 0.9rem; }
.news-grid h2 { margin: 6px 0 0; font-size: 1.2rem; line-height: 1.5; }
.news-grid h2 a { color: var(--brand); text-decoration: none; }
.news-grid h2 a:hover { color: var(--accent); }
.news-grid p { color: var(--muted); margin: 8px 0 0; font-size: 0.95rem; }

/* ---------- 响应式 ---------- */
@media (max-width: 1020px) {
  .hero { min-height: 72vh; }
  .profile-layout,
  .location-split,
  .zone-panel.active,
  .made-in-laos,
  .asset-row { grid-template-columns: 1fr; }
  .asset-row:nth-child(even) { grid-template-columns: 1fr; }
  .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .traffic-cards { grid-template-columns: 1fr; }
  .delivery-layout { grid-template-columns: 1fr; }
  .guide-methods { grid-template-columns: 1fr; }
  .daily-cards { grid-template-columns: 1fr; }
  .footer-pillars { grid-template-columns: repeat(3, 1fr); }
  .prose-band, .location-layout { grid-template-columns: 1fr; }
  .photo-collage { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .photo-collage .wide { grid-column: 1 / -1; grid-row: auto; }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px 22px 20px;
    background: rgba(251, 246, 239, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 12px 14px; }

  .hero { min-height: 66vh; }
  .profile-stats { grid-template-columns: repeat(3, 1fr); }
  .policy-grid { grid-template-columns: 1fr; }
  .zone-features { grid-template-columns: repeat(2, 1fr); }
  .zone-metrics { grid-template-columns: repeat(3, 1fr); }
  .ticket-grid { grid-template-columns: 1fr; }
  .asset-strip { grid-template-columns: 1fr; }
  .photo-collage { grid-template-columns: 1fr; }

  .news-grid article { grid-template-columns: 1fr; }
  .news-grid img { width: auto; max-width: 100%; height: auto; max-height: 220px; }

  .footer-pillars { grid-template-columns: repeat(3, 1fr); }
  .footer-contact { flex-direction: column; gap: 14px; }
  .site-footer { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* =====================================================================
   新闻系统（文章页 / 每日更新中心 / 首页新闻卡）
   由 scripts/render-news.mjs 生成，统一套用本设计系统
   article-detail / text-button 已在上方定义，此处只补缺失类
   ===================================================================== */

/* 模块区块（新闻中心等） */
.module-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
}
.module-kicker {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.module-head { margin-bottom: 36px; }
.module-head h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brand);
  margin: 0 0 10px;
}
.module-head p { color: var(--muted); margin: 0; max-width: 640px; }

/* 新闻列表（文章中心 / 首页新闻位） */
.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.news-item {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.news-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--brand-soft);
}
.news-item-media { display: block; overflow: hidden; }
.news-item-media img { width: 100%; height: auto; object-fit: contain; display: block; background: var(--soft); }
.news-item-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.news-item time { color: var(--accent); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; }
.news-item h2 { font-size: 1.08rem; line-height: 1.45; margin: 0; }
.news-item h2 a { color: var(--ink); text-decoration: none; }
.news-item h2 a:hover { color: var(--brand-2); }
.news-item p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* 链接按钮（兼容旧 class 名） */
.module-more,
.module-link-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.15s ease;
}
.module-more:hover,
.module-link-button:hover { background: var(--brand-2); transform: translateX(3px); }

@media (max-width: 760px) {
  .module-section { padding: 56px 20px; }
  .news-list { grid-template-columns: 1fr; }
}
