/* ================================
   济南礼仪模特公司 · 共享样式表
================================ */

:root {
  --primary: #d6336c;       /* 玫瑰粉主色 */
  --primary-dark: #ad1f57;
  --gold: #ef9dbd;          /* 玫瑰金 */
  --gold-light: #f8c9db;
  --dark: #1a1a1a;
  --gray-900: #2b2b2b;
  --gray-700: #4a4a4a;
  --gray-500: #7a7a7a;
  --gray-300: #d6d6d6;
  --gray-100: #fdf1f6;
  --light: #fef6fa;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .15);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all .35s cubic-bezier(.4, 0, .2, 1);
  --container: 1200px;
  --font: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ 顶部导航 ============ */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar a:hover { color: var(--gold); }
.topbar .info span { margin-right: 22px; }
.topbar .info i { color: var(--gold); margin-right: 6px; font-style: normal; }

.site-header {
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}
.logo .badge {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(214, 51, 108, .3);
}
.logo .sub {
  font-size: 10px;
  color: var(--gray-500);
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 2px;
}
.nav-menu {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-menu > li > a {
  padding: 10px 15px;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  position: relative;
  white-space: nowrap;
}
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); }
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { width: 20px; }

.nav-cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }

.menu-toggle { display: none; font-size: 28px; cursor: pointer; background: none; border: none; color: var(--primary); }

/* ============ Hero 区 ============ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, .82) 0%, rgba(150, 26, 92, .68) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
}
.hero .container { position: relative; z-index: 2; padding: 80px 24px; }
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.hero h1 .accent { color: var(--gold-light); }
.hero .lead {
  font-size: 19px;
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .9);
}
.hero .btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(214, 51, 108, .4); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .8);
  padding: 12px 30px;
}
.btn-outline:hover { background: #fff; color: var(--primary); }

/* 内页 banner */
.page-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, .86), rgba(150, 26, 92, .72));
  z-index: 1;
}
.page-banner .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-banner .container { position: relative; z-index: 2; padding: 70px 24px; }
.page-banner h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.page-banner .lead { font-size: 18px; color: rgba(255, 255, 255, .9); }
.breadcrumb { font-size: 13px; color: rgba(255, 255, 255, .75); margin-top: 18px; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { margin: 0 8px; }

/* ============ 通用区块 ============ */
.section { padding: 90px 0; }
.section.section-gray { background: var(--gray-100); }
.section.section-dark { background: var(--dark); color: #ddd; }
.section.section-dark h2, .section.section-dark .section-title-main { color: #fff; }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 14px;
  position: relative;
  padding: 0 50px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }
.section-title-main {
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray-500);
  font-size: 16px;
}
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ============ 服务卡片 ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .45));
}
.service-card .thumb .num {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 15px;
}
.service-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 20px; color: var(--gray-900); margin-bottom: 10px; }
.service-card p { color: var(--gray-500); font-size: 14px; flex: 1; }
.service-card .more {
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .more:hover { gap: 12px; color: var(--primary-dark); }

/* ============ 服务详情块 ============ */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.svc-block:last-child { margin-bottom: 0; }
.svc-block.reverse .svc-media { order: 2; }
.svc-media {
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.svc-text .idx {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.svc-text h3 { font-size: 28px; color: var(--gray-900); margin-bottom: 14px; }
.svc-text > p { color: var(--gray-700); margin-bottom: 18px; }
.svc-list { list-style: none; }
.svc-list li {
  padding: 9px 0;
  border-bottom: 1px dashed var(--gray-300);
  display: flex; align-items: center; gap: 12px;
  color: var(--gray-700);
  font-size: 15px;
}
.svc-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
}

/* ============ 流程 ============ */
.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 20px 10px;
}
.process-step .step-num {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  counter-increment: step;
}
.process-step .step-num::before { content: counter(step, decimal-leading-zero); }
.process-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50px;
  right: -16px;
  color: var(--gold);
  font-size: 22px;
}
.process-step h4 { font-size: 18px; margin-bottom: 8px; color: var(--gray-900); }
.process-step p { font-size: 14px; color: var(--gray-500); }

/* ============ 案例展示 ============ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.case-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: pointer;
}
.case-item .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}
.case-item:hover .bg { transform: scale(1.08); }
.case-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .85));
}
.case-item .info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
  color: #fff;
}
.case-item .tag {
  display: inline-block;
  background: var(--primary);
  padding: 3px 12px;
  font-size: 12px;
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.case-item h4 { font-size: 19px; margin-bottom: 4px; }
.case-item .meta { font-size: 13px; color: rgba(255, 255, 255, .8); }

/* ============ 模特团队 ============ */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.filter-bar button {
  padding: 8px 22px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: #fff;
  color: var(--gray-700);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}
.filter-bar button:hover { border-color: var(--primary); color: var(--primary); }
.filter-bar button.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}
.model-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.model-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.model-card .photo {
  height: 380px;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.model-card .photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55));
}
.model-card .photo .cat-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(214, 51, 108, .92);
  color: var(--gold-light);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 1px;
}
.model-card .info { padding: 20px; }
.model-card .info .name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.model-card h4 { font-size: 19px; color: var(--gray-900); }
.model-card .height { color: var(--primary); font-weight: 700; font-size: 15px; }
.model-card .tags { color: var(--gray-500); font-size: 13px; }

/* 模特规格卡 */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.spec-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.spec-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.spec-card h4 {
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.spec-card ul { list-style: none; }
.spec-card ul li {
  font-size: 14px;
  color: var(--gray-700);
  padding: 7px 0 7px 18px;
  position: relative;
}
.spec-card ul li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}

/* ============ 数据统计 ============ */
.stats {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item .num {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item .num .suffix { font-size: 24px; }
.stat-item .label { margin-top: 10px; font-size: 15px; opacity: .9; }

/* ============ 关于我们 ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-text h2 { font-size: 32px; color: var(--gray-900); margin-bottom: 8px; }
.about-text .eyebrow { color: var(--primary); font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; display: block; }
.about-text p { color: var(--gray-700); margin-bottom: 18px; }
.about-features { list-style: none; margin-top: 24px; }
.about-features li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--gray-300);
  display: flex; align-items: center; gap: 12px;
  color: var(--gray-700);
}
.about-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}

/* 发展历程 */
.timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--primary));
}
.timeline-item {
  position: relative;
  padding: 0 0 36px 34px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--gold-light);
  box-shadow: 0 0 0 3px rgba(201, 163, 93, .25);
}
.timeline-item .year {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.timeline-item h4 { font-size: 17px; color: var(--gray-900); margin-bottom: 4px; }
.timeline-item p { font-size: 14px; color: var(--gray-500); }

/* 企业文化 */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.culture-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.culture-card .icon {
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
.culture-card h4 { font-size: 20px; margin-bottom: 12px; color: var(--gray-900); }
.culture-card p { color: var(--gray-500); font-size: 14px; }

/* ============ 优势特色 ============ */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.advantage-item {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.advantage-item:hover { transform: translateY(-6px); }
.advantage-item .icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  font-weight: 700;
}
.advantage-item h4 { font-size: 19px; color: var(--gray-900); margin-bottom: 8px; }
.advantage-item p { color: var(--gray-500); font-size: 14px; }

/* ============ 客户合作 ============ */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.partner-strip span {
  padding: 10px 26px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  color: var(--gray-500);
  font-size: 14px;
  background: #fff;
  transition: var(--transition);
}
.partner-strip span:hover { border-color: var(--primary); color: var(--primary); }

/* ============ 新闻资讯 ============ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card .thumb {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.news-card .date-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(26, 26, 26, .82);
  color: var(--gold-light);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}
.news-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-card .cate {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.news-card h3 { font-size: 18px; color: var(--gray-900); margin-bottom: 10px; line-height: 1.5; }
.news-card p { color: var(--gray-500); font-size: 14px; flex: 1; }
.news-card .more { margin-top: 14px; color: var(--primary); font-size: 14px; font-weight: 600; }
.news-card .more:hover { color: var(--primary-dark); }

/* ============ CTA ============ */
.cta {
  background: var(--dark);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: var(--primary);
  opacity: .25;
  border-radius: 50%;
  filter: blur(80px);
}
.cta .container { position: relative; z-index: 2; text-align: center; }
.cta h2 { font-size: 36px; margin-bottom: 14px; }
.cta p { color: #bbb; margin-bottom: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta .hotline { font-size: 30px; font-weight: 800; color: var(--gold-light); letter-spacing: 2px; margin: 6px 0 22px; }

/* ============ 联系页 ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--gray-100);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.contact-info-card h3 { font-size: 22px; color: var(--gray-900); margin-bottom: 24px; }
.contact-info-card .item {
  display: flex; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-300);
}
.contact-info-card .item:last-child { border-bottom: none; }
.contact-info-card .ic {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-info-card .txt .lbl { font-size: 13px; color: var(--gray-500); }
.contact-info-card .txt .val { font-size: 15px; color: var(--gray-900); font-weight: 500; }

.contact-form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 22px; margin-bottom: 24px; color: var(--gray-900); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; color: var(--gray-700); margin-bottom: 6px; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(214, 51, 108, .12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-msg { margin-top: 12px; font-size: 14px; }

.map-embed {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
  background:
    linear-gradient(rgba(244, 241, 236, .92), rgba(244, 241, 236, .92)),
    repeating-linear-gradient(0deg, transparent 0 39px, #f1d2e0 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, #f1d2e0 39px 40px),
    var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--gray-700);
  text-align: center;
  position: relative;
}
.map-embed .pin {
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--gold-light);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(214, 51, 108, .35);
}
.map-embed .pin span { transform: rotate(45deg); }
.map-embed .addr { font-size: 17px; font-weight: 600; }
.map-embed .sub { font-size: 13px; color: var(--gray-500); }

/* ============ 页脚 ============ */
.site-footer {
  background: var(--dark);
  color: #aaa;
  padding: 60px 0 20px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-col p { line-height: 1.9; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a:hover { color: var(--gold); }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo .sub { color: #888; }
.footer-contact .item { margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .item .ic { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: #777;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--gold); }
.go-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}
.go-top.show { opacity: 1; pointer-events: auto; }
.go-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============ 响应式 ============ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid, .svc-block { grid-template-columns: 1fr; gap: 30px; }
  .svc-block.reverse .svc-media { order: 0; }
  .svc-block { margin-bottom: 56px; }
  .nav-menu {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-220%);
    transition: var(--transition);
    gap: 0;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { display: block; padding: 14px 18px; border-radius: 0; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 38px; }
  .page-banner h1 { font-size: 32px; }
  .section-title-main { font-size: 28px; }
  .section { padding: 60px 0; }
  .process-step:not(:last-child)::after { display: none; }
  .topbar .info span:nth-child(n+2) { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .model-card .photo { height: 340px; }
}

/* 简易动画 */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .8s, transform .8s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
