/* ===== 变量与基础 ===== */
:root {
  --navy-950: #04101F;
  --navy-900: #06172B;
  --navy-800: #0A1F3D;
  --navy-700: #0D2A50;
  --navy-600: #16335F;
  --gold: #C6A15B;
  --gold-light: #D8BC84;
  --gold-dark: #A9833F;
  --gold-pale: rgba(198, 161, 91, 0.12);
  --ink: #16202E;
  --muted: #5B6675;
  --bg: #FBF9F5;
  --white: #FFFFFF;
  --line: #EAE5DA;
  --shadow-sm: 0 6px 24px rgba(6, 23, 43, 0.06);
  --shadow-md: 0 16px 48px rgba(6, 23, 43, 0.10);
  --radius: 14px;
  --container: 1200px;
  --header-h: 72px;
  --font: "Noto Sans SC", -apple-system, BlinkMacSystemFont, "PingFang SC",
    "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  scroll-margin-top: calc(var(--header-h) - 10px);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== 通用按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: #1a1206;
  box-shadow: 0 8px 22px rgba(198, 161, 91, 0.32);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(198, 161, 91, 0.42);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ===== 顶部导航 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(6, 23, 43, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 8px 30px rgba(4, 16, 31, 0.35);
  height: 62px;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  line-height: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.brand-sub {
  font-size: 9px;
  letter-spacing: 2.6px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800) 55%, var(--navy-700));
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.22), transparent 62%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(22, 51, 95, 0.75), transparent 65%);
}

.hero-bg .grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(46px, 8vw, 88px);
  font-weight: 700;
  letter-spacing: 8px;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff 30%, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 640px;
  font-size: clamp(16px, 2.2vw, 19px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 34px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stat-num {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 1px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
}

.hero-scroll span {
  width: 2px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== 通用 Section ===== */
.section {
  padding: 104px 0;
}

.section-about,
.section-scenes,
.section-projects {
  background: var(--bg);
}

.section-process,
.section-culture {
  background: var(--white);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4.4vw, 40px);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
}

/* ===== 关于我们 ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-copy p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 18px;
}

.about-copy strong {
  color: var(--navy-800);
  font-weight: 600;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-point:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-light);
}

.about-point-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold-dark);
  background: var(--gold-pale);
}

.about-point h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 4px;
}

.about-point p {
  font-size: 14px;
  color: var(--muted);
}

/* ===== 服务链路 ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-step {
  position: relative;
  padding: 32px 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.process-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.process-step:last-child::after {
  display: none;
}

.process-num {
  display: inline-block;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== 核心场景 ===== */
.scenes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.scene-card {
  padding: 36px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.scene-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.scene-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold-pale), rgba(198, 161, 91, 0.18));
}

.scene-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 10px;
}

.scene-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ===== 核心优势 ===== */
.section-advantage {
  position: relative;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
  overflow: hidden;
}

.section-advantage::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(198, 161, 91, 0.16), transparent 65%);
}

.section-advantage .section-title {
  color: #fff;
}

.advantage-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.advantage-item {
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.advantage-num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.advantage-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.advantage-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

/* ===== 主线项目 ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  padding: 34px 26px;
  background: #fff;
  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;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.project-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ===== 企业文化 ===== */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.culture-card {
  position: relative;
  padding: 46px 40px;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.culture-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--gold), var(--gold-light));
}

.culture-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.culture-card p {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.6;
  letter-spacing: 2px;
}

/* ===== 联系我们 ===== */
.contact-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px 60px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: 20px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.contact-card .section-eyebrow {
  color: var(--gold-light);
}

.contact-card .section-title {
  color: #fff;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-person-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-light);
  border: 1px solid rgba(198, 161, 91, 0.5);
  padding: 4px 12px;
  border-radius: 999px;
}

.contact-person-name {
  font-size: 20px;
  font-weight: 600;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  transition: color 0.25s ease;
}

.contact-phone:hover {
  color: #fff;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.contact-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-copy {
  font-size: 14px;
}

/* ===== 滚动淡入动画 ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .process-step::after {
    display: none;
  }
  .scenes-grid,
  .advantage-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 0 40px;
    background: rgba(6, 23, 43, 0.98);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .site-nav.open {
    transform: translateX(0);
  }
  .nav-link {
    font-size: 18px;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 72px 0;
  }
  .section-head {
    margin-bottom: 42px;
  }
  .hero-inner {
    padding-top: 80px;
  }
  .hero-stats {
    gap: 28px;
  }
  .process-steps,
  .scenes-grid,
  .advantage-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .culture-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .contact-phone {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-scroll span {
    animation: none;
  }
}
