/* ============================================================
   荆钰会务 · 武汉会议会展一站式服务专家
   wuhanhuiyi.com · 江城生态绿 + 会议蓝设计系统
   ============================================================ */
:root {
  --ink-green: #4a7c59;
  --ink-dark: #2d5016;
  --ink-light: #7aa87e;
  --ink-pale: #dce8db;
  --rice-paper: #faf6f0;
  --rice-dark: #f0ebe0;
  --text-main: #3a3a3a;
  --text-light: #7a7a7a;
  --gold: #b8914d;
  --gold-light: #d4b872;
  --meeting-blue: #2c5f7e;
  --meeting-blue-light: #4a8aa8;
  --font-heading: 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', sans-serif;
  --shadow-sm: 0 2px 8px rgba(45, 80, 22, .08);
  --shadow-md: 0 8px 24px rgba(45, 80, 22, .12);
  --shadow-lg: 0 16px 40px rgba(45, 80, 22, .16);
  --radius: 10px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-main); background: var(--rice-paper); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style-position: inside; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--ink-dark); line-height: 1.35; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 72px 0; }
.section.alt { background: #fff; }
.sec-head { text-align: center; margin-bottom: 44px; }
.sec-head .kicker { display: inline-block; color: var(--gold); font-size: 13px; letter-spacing: 6px; margin-bottom: 10px; font-weight: 600; }
.sec-head h2 { font-size: clamp(24px, 3vw, 34px); }
.sec-head p { color: var(--text-light); margin-top: 10px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ---------- 顶部联系条 ---------- */
.topbar { background: var(--ink-dark); color: #e8f0e8; font-size: 13px; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--gold-light); font-weight: 600; }
.topbar .t-right span { margin-left: 16px; }

/* ---------- 导航（毛玻璃） ---------- */
.site-header { position: sticky; top: 0; z-index: 900; background: rgba(250, 246, 240, .88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--ink-pale); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--ink-green), var(--meeting-blue)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.brand .name { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--ink-dark); }
.brand .name small { display: block; font-size: 11px; color: var(--gold); letter-spacing: 2px; font-weight: 400; }
.main-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.main-nav a { padding: 8px 12px; font-size: 15px; color: var(--text-main); border-radius: 8px; transition: .2s; }
.main-nav a:hover, .main-nav a.on { color: var(--ink-green); background: var(--ink-pale); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; color: var(--ink-green); cursor: pointer; }

/* ---------- Hero 轮播 ---------- */
.hero { position: relative; height: 520px; overflow: hidden; background: var(--ink-dark); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; background-size: cover; background-position: center; }
.hero-slide.on { opacity: 1; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(28, 46, 18, .55), rgba(28, 46, 18, .65)); }
.hero-text { position: absolute; inset: 0; z-index: 5; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 24px; }
.hero-text h1 { color: #fff; font-size: clamp(28px, 4.5vw, 52px); letter-spacing: 4px; margin-bottom: 16px; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.hero-text p { font-size: clamp(15px, 2vw, 20px); color: #e9efe6; margin-bottom: 30px; letter-spacing: 2px; }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 6; display: flex; gap: 10px; }
.hero-dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: .2s; }
.hero-dots i.on { background: var(--gold-light); width: 26px; border-radius: 6px; }

/* ---------- 按钮 ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 30px; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: .25s; font-family: var(--font-body); }
.btn-primary { background: var(--ink-green); color: #fff; box-shadow: 0 4px 14px rgba(74, 124, 89, .35); }
.btn-primary:hover { background: var(--ink-dark); transform: translateY(-2px); }
.btn-blue { background: var(--meeting-blue); color: #fff; box-shadow: 0 4px 14px rgba(44, 95, 126, .35); }
.btn-blue:hover { background: #1e4862; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #a37c3c; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink-green); border: 1.5px solid var(--ink-green); }
.btn-ghost:hover { background: var(--ink-pale); }

/* ---------- 内页 Hero ---------- */
.page-hero { background: linear-gradient(120deg, var(--ink-dark), var(--meeting-blue)); color: #fff; padding: 64px 0 52px; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 640px; margin: 0 auto; }
.breadcrumb { background: #fff; border-bottom: 1px solid var(--ink-pale); padding: 12px 0; font-size: 13px; color: var(--text-light); }
.breadcrumb a { color: var(--ink-green); }
.breadcrumb i { font-style: normal; margin: 0 8px; color: #ccc; }

/* ---------- 卡片 ---------- */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: .25s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .pic { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .pic img { transform: scale(1.05); }
.card .pic .tag { position: absolute; top: 12px; left: 12px; background: rgba(44, 95, 126, .9); color: #fff; font-size: 12px; padding: 4px 12px; border-radius: 20px; }
.card .pic .tag.gold { background: rgba(184, 145, 77, .95); }
.card .body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card h3 { font-size: 18px; }
.card h3 a:hover { color: var(--ink-green); }
.card .meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 13px; color: var(--text-light); }
.card .meta b { color: var(--meeting-blue); font-weight: 600; }
.card .summary { font-size: 14px; color: var(--text-light); flex: 1; }
.card .price-row { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px dashed var(--ink-pale); }
.card .price { font-family: var(--font-heading); color: var(--gold); font-size: 22px; font-weight: 700; }
.card .price small { font-size: 12px; color: var(--text-light); font-weight: 400; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-block; background: var(--ink-pale); color: var(--ink-dark); font-size: 12px; padding: 3px 10px; border-radius: 14px; }

/* ---------- 优势卡 ---------- */
.adv-card { background: #fff; border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); transition: .25s; border-top: 3px solid var(--ink-green); }
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.adv-card .ic { width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%; background: var(--ink-pale); color: var(--ink-green); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.adv-card h3 { font-size: 18px; margin-bottom: 10px; }
.adv-card p { font-size: 14px; color: var(--text-light); }

/* ---------- 服务入口 ---------- */
.svc-entry { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px; display: flex; align-items: flex-end; background-size: cover; background-position: center; box-shadow: var(--shadow-md); transition: .3s; }
.svc-entry:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-entry::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(28, 46, 18, .82)); }
.svc-entry .in { position: relative; z-index: 2; padding: 26px; color: #fff; }
.svc-entry .in .k { color: var(--gold-light); font-size: 13px; letter-spacing: 3px; }
.svc-entry .in h3 { color: #fff; font-size: 24px; margin: 8px 0 10px; }
.svc-entry .in p { font-size: 14px; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.svc-entry .in a { color: #fff; font-weight: 600; border-bottom: 2px solid var(--gold-light); padding-bottom: 2px; font-size: 14px; }

/* ---------- 服务流程横轴 ---------- */
.flow { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; position: relative; margin-top: 30px; }
.flow::before { content: ""; position: absolute; top: 30px; left: 8%; right: 8%; height: 3px; background: linear-gradient(90deg, var(--ink-light), var(--gold-light)); z-index: 0; }
.flow-step { flex: 1; text-align: center; position: relative; z-index: 1; }
.flow-step .dot { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 50%; background: #fff; border: 3px solid var(--ink-green); color: var(--ink-green); display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: var(--shadow-sm); }
.flow-step b { display: block; font-size: 15px; color: var(--ink-dark); margin-bottom: 4px; }
.flow-step span { font-size: 12.5px; color: var(--text-light); }

/* ---------- 筛选栏 ---------- */
.filter-bar { background: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-sm); margin-bottom: 32px; }
.filter-bar .f-group { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.filter-bar .f-group:last-child { margin-bottom: 0; }
.filter-bar .f-label { font-weight: 700; color: var(--ink-dark); font-size: 14px; min-width: 84px; }
.filter-bar .f-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.f-opt { border: 1px solid var(--ink-pale); background: var(--rice-paper); color: var(--text-main); font-size: 13.5px; padding: 6px 16px; border-radius: 20px; cursor: pointer; transition: .2s; }
.f-opt:hover { border-color: var(--ink-green); color: var(--ink-green); }
.f-opt.on { background: var(--ink-green); border-color: var(--ink-green); color: #fff; }
.result-count { font-size: 13px; color: var(--text-light); margin-bottom: 14px; }
.result-count b { color: var(--ink-green); }

/* ---------- FAQ ---------- */
.faq-block { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 22px 26px; margin-bottom: 36px; border-left: 4px solid var(--gold); }
.faq-block h3 { font-size: 17px; margin-bottom: 12px; color: var(--ink-dark); }
.faq-block p { font-size: 14px; color: var(--text-light); }
.faq-list .faq-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 14px; overflow: hidden; }
.faq-item .q { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 15.5px; color: var(--ink-dark); gap: 12px; }
.faq-item .q i { color: var(--gold); transition: .25s; flex-shrink: 0; }
.faq-item .a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.on .a { max-height: 400px; }
.faq-item.on .q i { transform: rotate(45deg); }
.faq-item .a .inner { padding: 0 22px 18px; font-size: 14px; color: var(--text-light); }
.faq-search { display: flex; gap: 10px; margin-bottom: 26px; max-width: 560px; margin-left: auto; margin-right: auto; }
.faq-search input { flex: 1; padding: 12px 18px; border: 1.5px solid var(--ink-pale); border-radius: 40px; font-size: 15px; outline: none; font-family: var(--font-body); }
.faq-search input:focus { border-color: var(--ink-green); }
.faq-cats { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }

/* ---------- 表单 ---------- */
.form-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-dark); margin-bottom: 6px; }
.field label em { color: #c0392b; font-style: normal; margin-left: 3px; }
.field input, .field select, .field textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--ink-pale); border-radius: 8px; font-size: 14.5px; font-family: var(--font-body); outline: none; background: var(--rice-paper); transition: .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink-green); background: #fff; }
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--text-light); margin-top: 12px; }

/* ---------- 详情页 ---------- */
.detail-hero { background: #fff; }
.detail-hero .container { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; padding: 44px 0; align-items: start; }
.detail-hero .main-pic { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/10; }
.detail-hero .main-pic img { width: 100%; height: 100%; object-fit: cover; }
.detail-info h1 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.detail-info .d-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.detail-info .d-meta .chip { font-size: 13px; }
.detail-info .d-meta .chip.blue { background: #dceaf2; color: var(--meeting-blue); }
.detail-info .d-price { display: flex; align-items: baseline; gap: 10px; margin: 16px 0 20px; }
.detail-info .d-price .num { font-family: var(--font-heading); font-size: 38px; font-weight: 700; color: var(--gold); }
.detail-info .d-price small { color: var(--text-light); }
.stock-ok { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-green); font-weight: 600; font-size: 14px; margin-bottom: 18px; }
.detail-body { padding: 40px 0; }
.detail-body .grid2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.detail-sec { background: #fff; border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.detail-sec h2 { font-size: 20px; padding-bottom: 12px; margin-bottom: 16px; border-bottom: 2px solid var(--ink-pale); position: relative; }
.detail-sec h2::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 56px; height: 2px; background: var(--gold); }
.detail-sec ul, .detail-sec ol { padding-left: 6px; }
.detail-sec li { font-size: 14.5px; color: var(--text-main); margin-bottom: 8px; }
.param-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.param-table td { padding: 10px 12px; border-bottom: 1px dashed var(--ink-pale); }
.param-table td:first-child { color: var(--text-light); width: 40%; }
.param-table td:last-child { font-weight: 600; color: var(--ink-dark); }
.notice-list { counter-reset: n; list-style: none; }
.notice-list li { counter-increment: n; display: flex; gap: 10px; }
.notice-list li::before { content: counter(n); flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--ink-pale); color: var(--ink-dark); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 3px; }

/* ---------- 评价 ---------- */
.rating-hero { display: flex; align-items: center; gap: 28px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 28px 32px; margin-bottom: 34px; flex-wrap: wrap; }
.rating-hero .score { font-family: var(--font-heading); font-size: 56px; font-weight: 700; color: var(--gold); line-height: 1; }
.rating-hero .stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.rating-hero .rv-count { color: var(--text-light); font-size: 13px; }
.bars { flex: 1; min-width: 240px; }
.bars .bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; margin-bottom: 6px; }
.bars .track { flex: 1; height: 8px; border-radius: 6px; background: var(--rice-dark); overflow: hidden; }
.bars .fill { height: 100%; background: linear-gradient(90deg, var(--gold-light), var(--gold)); border-radius: 6px; }
.review-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 22px 26px; margin-bottom: 18px; }
.review-card .r-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.review-card .r-head b { color: var(--meeting-blue); }
.review-card .stars { color: var(--gold); font-size: 13px; }
.review-card p { font-size: 14px; color: var(--text-main); }
.review-card .r-foot { margin-top: 10px; font-size: 12.5px; color: var(--text-light); display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 团队/时间轴 ---------- */
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--ink-pale); }
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item::before { content: ""; position: absolute; left: -23px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.tl-item .year { font-family: var(--font-heading); color: var(--gold); font-weight: 700; font-size: 17px; }
.tl-item h3 { font-size: 16px; margin: 4px 0 6px; }
.tl-item p { font-size: 14px; color: var(--text-light); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 30px 24px; text-align: center; transition: .25s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card .avatar { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, var(--ink-pale), #dceaf2); display: flex; align-items: center; justify-content: center; font-size: 34px; color: var(--ink-green); }
.team-card h3 { font-size: 18px; }
.team-card .role { color: var(--meeting-blue); font-size: 13.5px; font-weight: 600; margin: 4px 0 10px; }
.team-card p { font-size: 13.5px; color: var(--text-light); }
.honor-row { display: flex; flex-wrap: wrap; gap: 14px; }
.honor { flex: 1; min-width: 240px; background: #fff; border-left: 4px solid var(--gold); border-radius: 8px; box-shadow: var(--shadow-sm); padding: 20px 24px; }
.honor b { color: var(--ink-dark); display: block; margin-bottom: 4px; }
.honor span { font-size: 13.5px; color: var(--text-light); }

/* ---------- 目的地页 ---------- */
.dest-nav { background: #fff; border-bottom: 1px solid var(--ink-pale); padding: 14px 0; position: sticky; top: 68px; z-index: 800; }
.dest-nav .container { display: flex; gap: 8px; overflow-x: auto; }
.dest-nav a { flex-shrink: 0; padding: 7px 16px; border-radius: 20px; font-size: 13.5px; background: var(--rice-paper); color: var(--text-main); border: 1px solid var(--ink-pale); }
.dest-nav a.on, .dest-nav a:hover { background: var(--ink-green); color: #fff; border-color: var(--ink-green); }
.hl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.hl-card { background: #fff; border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; align-items: flex-start; }
.hl-card .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: var(--ink-pale); color: var(--ink-green); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.hl-card p { font-size: 14px; color: var(--text-main); }

/* ---------- 新闻 ---------- */
.news-item { display: flex; gap: 18px; align-items: flex-start; background: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-sm); transition: .2s; }
.news-item:hover { box-shadow: var(--shadow-md); }
.news-item .date { flex-shrink: 0; text-align: center; background: var(--ink-pale); border-radius: 8px; padding: 8px 14px; font-weight: 700; color: var(--ink-dark); }
.news-item .date b { display: block; font-size: 20px; font-family: var(--font-heading); }
.news-item .date span { font-size: 12px; }
.news-item h3 { font-size: 16.5px; margin-bottom: 5px; }
.news-item h3 a:hover { color: var(--ink-green); }
.news-item p { font-size: 13.5px; color: var(--text-light); }
.news-item .tag { margin-left: auto; flex-shrink: 0; background: #dceaf2; color: var(--meeting-blue); font-size: 12px; padding: 3px 12px; border-radius: 14px; align-self: center; }

/* ---------- 会奖旅游双栏 ---------- */
.mt-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.mt-form { position: sticky; top: 96px; }
.mt-form .form-card { border-top: 4px solid var(--meeting-blue); }

/* ---------- CTA 横条 ---------- */
.cta-band { background: linear-gradient(110deg, var(--ink-dark), var(--meeting-blue)); color: #fff; padding: 46px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(20px, 2.6vw, 28px); }
.cta-band p { color: rgba(255,255,255,.8); font-size: 14px; margin-top: 6px; }

/* ---------- 联系卡片 ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.contact-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px 22px; text-align: center; }
.contact-card .ic { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%; background: var(--ink-pale); color: var(--ink-green); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.contact-card h3 { font-size: 16px; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text-main); }
.contact-card p a { color: var(--meeting-blue); font-weight: 600; }
.map-block { background: var(--ink-pale); border-radius: var(--radius); height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--ink-dark); margin-bottom: 40px; }
.map-block i { font-size: 40px; margin-bottom: 12px; opacity: .6; }
.map-block b { font-size: 17px; margin-bottom: 4px; }

/* ---------- 弹窗（预约流程） ---------- */
.modal-mask { position: fixed; inset: 0; background: rgba(30, 40, 25, .55); z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-mask.on { display: flex; }
.modal { background: #fff; border-radius: 14px; max-width: 460px; width: 100%; padding: 36px 32px; text-align: center; box-shadow: var(--shadow-lg); animation: pop .3s ease; }
@keyframes pop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal .bot { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(135deg, var(--ink-green), var(--meeting-blue)); color: #fff; font-size: 30px; display: flex; align-items: center; justify-content: center; animation: breath 1.6s ease-in-out infinite; }
@keyframes breath { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(74,124,89,.35); } 50% { transform: scale(1.06); box-shadow: 0 0 0 16px rgba(74,124,89,0); } }
.modal h3 { font-size: 20px; margin-bottom: 8px; }
.modal .m-sub { color: var(--text-light); font-size: 14px; margin-bottom: 20px; }
.advisor-card { background: var(--rice-paper); border-radius: var(--radius); padding: 18px 20px; text-align: left; margin-bottom: 20px; }
.advisor-card .row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; }
.advisor-card .row b { color: var(--ink-dark); }
.advisor-card .row span { color: var(--meeting-blue); font-weight: 600; }
.m-progress { height: 8px; background: var(--rice-dark); border-radius: 6px; overflow: hidden; margin-bottom: 8px; }
.m-progress .fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--ink-green), var(--gold)); transition: width .5s ease; }
.modal .m-note { font-size: 12.5px; color: var(--text-light); }
.modal .close-x { position: absolute; margin-left: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-dark); color: #cfdccf; margin-top: 0; }
.footer-top { padding: 54px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; }
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-grid p { font-size: 13.5px; color: #a8bda8; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 9px; }
.footer-grid ul a { color: #cfdccf; font-size: 14px; transition: .2s; }
.footer-grid ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-grid .f-contact li { display: flex; gap: 10px; font-size: 13.5px; margin-bottom: 11px; }
.footer-grid .f-contact i { color: var(--gold-light); width: 18px; text-align: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; font-size: 13px; color: #9ab09a; text-align: center; }
.footer-bottom a { color: var(--gold-light); }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-hero .container { grid-template-columns: 1fr; }
  .detail-body .grid2 { grid-template-columns: 1fr; }
  .mt-layout { grid-template-columns: 1fr; }
  .mt-form { position: static; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 14px 20px; box-shadow: var(--shadow-md); border-top: 1px solid var(--ink-pale); }
  .main-nav.on { display: flex; }
  .nav-toggle { display: block; }
  .flow { flex-direction: column; gap: 22px; }
  .flow::before { display: none; }
  .flow-step { display: flex; text-align: left; gap: 16px; align-items: center; }
  .flow-step .dot { margin: 0; flex-shrink: 0; }
}
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .hero { height: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hl-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .news-item { flex-direction: column; }
  .news-item .tag { align-self: flex-start; }
  .topbar .t-right span { display: none; }
  .topbar .t-right span:first-child { display: inline; }
}
