/* ==========================================================================
   杭州海螺塑钢门窗门市部 · 设计变量（tokens.css）
   蓝色品牌体系：主蓝 #094B9C / 深蓝 #003D8B / 中蓝 #217DBB / 亮蓝 #56B2D1
   点缀：红 #CC0202（仅价格·角标·强 CTA）、金 #F49C46（服务承诺·星级）
   字体：系统字体栈，不依赖任何外部字体 CDN
   ========================================================================== */

:root {
  /* 蓝色系（主，占全站约 80%） */
  --hl-navy: #003d8b;
  --hl-primary: #094b9c;
  --hl-blue: #217dbb;
  --hl-sky: #56b2d1;
  --hl-light: #eff1f8;

  /* 点缀色 */
  --hl-red: #cc0202;
  --hl-red-hover: #a00101;
  --hl-gold: #f49c46;

  /* 中性色 */
  --hl-text: #333333;
  --hl-text-2: #505050;
  --hl-muted: #8e8e8e;
  --hl-white: #ffffff;
  --hl-surface: #f5f5f5;
  --hl-border: #d1cece;
  --hl-border-light: #bac6d8;

  /* 阴影（蓝色调） */
  --hl-shadow-sm: 0 2px 8px rgba(9, 75, 156, 0.08);
  --hl-shadow-md: 0 4px 16px rgba(9, 75, 156, 0.12);
  --hl-shadow-lg: 0 12px 40px rgba(9, 75, 156, 0.18);

  /* 排版 */
  --hl-font: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC",
    "Hiragino Sans GB", system-ui, -apple-system, "Segoe UI", sans-serif;
  --hl-font-num: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* 布局 */
  --hl-radius: 4px;
  --hl-radius-lg: 8px;
  --hl-maxw: 1200px;
  --hl-gutter: 20px;
  --hl-header-h: 72px;

  /* 纹理（极浅，线宽 ≤1px，透明度 ≤5%） */
  --hl-grid-line: #e8e8e8;
}

/* --------------------------------------------------------------- reset -- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--hl-header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--hl-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--hl-text);
  background-color: var(--hl-white);
  background-image: linear-gradient(90deg, var(--hl-grid-line) 0.5px, transparent 0.5px),
    linear-gradient(180deg, var(--hl-grid-line) 0.5px, transparent 0.5px);
  background-size: 40px 40px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  line-height: 1.35;
  color: var(--hl-primary);
  font-weight: 700;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 19px;
  color: var(--hl-text);
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--hl-blue);
  text-decoration: none;
}

a:hover {
  color: var(--hl-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.3em;
}

strong {
  font-weight: 700;
}

.num {
  font-family: var(--hl-font-num);
  font-variant-numeric: tabular-nums;
}

@media (min-width: 960px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
}

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