/* =========================================================
       DESIGN SYSTEM TOKENS - 经典焦糖奶油糖果工业风 (Caramel & Cream)
       ========================================================= */
    :root {
      --ink: #2b211c;           /* 主文字深焙浓缩棕 */
      --text: #5c4f47;          /* 正文温暖中灰棕 */
      --muted: #8a7b71;         /* 辅助/说明浅灰棕 */
      --line: #eadfd6;          /* 温暖柔和边框线条 */
      --bg: #fbf7f2;            /* 页面基底微乳白 */
      --card: #ffffff;          /* 纯白卡片背景 */
      --caramel: #c26a3a;       /* 品牌核心焦糖橙红 */
      --caramel-dark: #a4532c;  /* 焦糖悬停深色 */
      --caramel-light: #fff7f0; /* 极淡焦糖衬底色 */
      --caramel-border: #efcbb3;/* 焦糖高亮线框 */
      --cream: #fff9f3;         /* 主背景温暖奶霜色 */
      --cream-soft: #fff6ee;    /* 模块交替浅柔背景 */
      --dark-footer: #3d2f28;   /* 顶栏与页脚重色炭褐 */
      --dark-footer-line: #5a463c; /* 页脚细分隔线 */
      --dark-footer-text: #d4c0b0; /* 页脚文字香槟米色 */
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Outfit, -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
      font-size: 15px;
    }
    img { width: 100%; height: 100%; object-fit: cover; display: block; }
    a { color: inherit; text-decoration: none; }

    .wrap { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

    /* 按钮规范 */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--caramel); color: #fff; border: 0; border-radius: 999px;
      padding: 12px 24px; font-weight: 600; font-size: 14px; cursor: pointer;
      transition: all .2s ease;
    }
    .btn:hover { background: var(--caramel-dark); transform: translateY(-1px); }
    .btn-soft {
      background: #fff; color: var(--caramel); border: 1px solid var(--caramel-border);
    }
    .btn-soft:hover { background: var(--caramel-light); }
    .btn-sm { width: 100%; padding: 8px 12px; font-size: 13px; border-radius: 999px; }

    /* 顶栏 Topbar */
    .topbar {
      background: var(--dark-footer); color: #e8d5c4; font-size: 12px; padding: 8px 0;
    }
    .topbar .wrap { display: flex; justify-content: space-between; gap: 12px; align-items: center; }

    /* 导航栏 Header */
    header {
      position: sticky; top: 0; z-index: 40;
      background: rgba(255,249,243,.94); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between; height: 72px;
    }
    .logo {
      display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 21px;
      letter-spacing: -0.01em; color: var(--ink);
    }
    .logo .mark {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, #e08a55, #c26a3a);
      color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 18px;
    }
    .menu { display: flex; gap: 22px; align-items: center; font-size: 14px; font-weight: 500; color: var(--text); }
    .menu a { transition: color .2s; }
    .menu a:hover, .menu a.active { color: var(--caramel); }
    .menu > a { padding: 26px 0; }
    .nav-item { position: relative; }
    .nav-item > a { display: inline-flex; align-items: center; gap: 4px; padding: 26px 0; }
    .nav-item .caret { font-size: 9px; opacity: .55; }
    .dropdown {
      display: none;
      position: absolute;
      top: calc(100% - 10px);
      left: 50%;
      transform: translateX(-50%);
      min-width: 188px;
      padding: 8px 0;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      box-shadow: 0 12px 28px rgba(43,33,28,.12);
      z-index: 50;
    }
    .dropdown.cols-2 { min-width: 188px; display: none; }
    .nav-item:hover .dropdown,
    .nav-item:focus-within .dropdown { display: block; }
    .nav-item:hover .dropdown.cols-2,
    .nav-item:focus-within .dropdown.cols-2 { display: block; }
    .dropdown a {
      display: block;
      padding: 8px 16px;
      font-size: 13px;
      color: var(--text);
      white-space: nowrap;
    }
    .dropdown a:hover { background: var(--caramel-light); color: var(--caramel); }

    /* 通用排版 */
    section { padding: 64px 0; }
    .soft { background: var(--cream-soft); }
    .center { text-align: center; }
    .label {
      display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--caramel); margin-bottom: 8px;
    }
    h1 {
      font-size: clamp(32px, 4.5vw, 48px); letter-spacing: -.02em; line-height: 1.15;
      color: var(--ink); margin-bottom: 14px;
    }
    h1 em { font-style: normal; color: var(--caramel); }
    h2 {
      font-size: clamp(24px, 3.2vw, 34px); letter-spacing: -.02em; margin-bottom: 12px;
      line-height: 1.25; color: var(--ink);
    }
    h2 em { font-style: normal; color: var(--caramel); }
    .sub { color: var(--muted); max-width: 680px; margin-bottom: 28px; font-size: 15.5px; }
    .center .sub { margin-left: auto; margin-right: auto; }

    /* 分隔装饰线 */
    .divider-line {
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--caramel-border), transparent);
      width: min(760px, 90%);
      margin: 18px auto 28px;
    }

    /* 1. 生产基地与工厂分布卡片 3列网格 (对应原型 gqE_wIyb2Vf1lm8oRl3e-15~31) */
    .bases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 36px;
    }
    .base-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 8px 24px rgba(43,33,28,.03);
      transition: all .25s ease;
    }
    .base-card:hover {
      border-color: var(--caramel-border);
      box-shadow: 0 14px 32px rgba(194,106,58,.09);
      transform: translateY(-3px);
    }
    .base-card .pic {
      height: 210px;
      background: #fff1e6;
      position: relative;
    }
    .base-card .body {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .base-card h3 {
      font-size: 17px;
      color: var(--ink);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .base-card h3::before {
      content: "";
      width: 4px;
      height: 16px;
      background: var(--caramel);
      border-radius: 2px;
    }
    .base-card p {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* 2. 联系与询盘主区域 (左侧联系信息面板 + 右侧专属报价表单 对应原型 gqE_wIyb2Vf1lm8oRl3e-32~48) */
    .contact-main-grid {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 36px;
      align-items: start;
    }
    
    /* 左侧联系方式面板 (对应原型 gqE_wIyb2Vf1lm8oRl3e-33~34) */
    .contact-info-panel {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 8px 24px rgba(43,33,28,.03);
    }
    .contact-info-panel h3 {
      font-size: 20px;
      color: var(--ink);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .contact-info-panel h3::before {
      content: "";
      width: 4px;
      height: 18px;
      background: var(--caramel);
      border-radius: 2px;
    }
    .contact-info-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .contact-info-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 14px;
      color: var(--text);
      line-height: 1.5;
    }
    .contact-info-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: var(--caramel-light);
      border: 1px solid var(--caramel-border);
      color: var(--caramel);
      display: grid;
      place-items: center;
      font-weight: 700;
      font-size: 14px;
      flex-shrink: 0;
    }
    .contact-info-item strong {
      display: block;
      color: var(--ink);
      font-size: 13px;
    }

    /* 右侧表单容器 (对应原型 gqE_wIyb2Vf1lm8oRl3e-35~48) */
    .contact-form-wrapper {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 10px 30px rgba(43,33,28,.04);
    }
    .contact-form-intro {
      font-size: 14.5px;
      color: var(--text);
      line-height: 1.65;
      margin-bottom: 24px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line);
    }
    .contact-form-wrapper h3 {
      font-size: 19px;
      color: var(--ink);
      margin-bottom: 16px;
    }
    form.inquiry-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    form .full { grid-column: 1 / -1; }
    .form-group label {
      display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink);
    }
    input, textarea {
      width: 100%; border: 1px solid var(--line); border-radius: 12px;
      padding: 12px 16px; font: inherit; background: var(--cream); color: var(--ink);
      transition: border-color .2s, outline .2s;
    }
    input:focus, textarea:focus {
      outline: 2px solid var(--caramel-border); border-color: var(--caramel); background: #fff;
    }
    textarea { min-height: 120px; resize: vertical; }
    .file-upload-box {
      border: 1px dashed var(--caramel-border); border-radius: 12px; padding: 10px 14px;
      background: var(--caramel-light); font-size: 13px; color: var(--muted);
      display: flex; align-items: center; justify-content: space-between;
    }
    .file-upload-box input[type="file"] { border: 0; background: transparent; padding: 0; width: auto; font-size: 12px; }

    /* 页脚 Footer (对应原型 gqE_wIyb2Vf1lm8oRl3e-49~60) */
    footer { background: var(--dark-footer); color: var(--dark-footer-text); padding: 56px 0 24px; }
    .foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
    footer h5 { color: #fff; margin-bottom: 14px; font-size: 15px; font-weight: 600; }
    footer a, footer p { display: block; margin-bottom: 9px; font-size: 13px; color: var(--dark-footer-text); transition: color .2s; }
    footer a:hover { color: #fff; }
    footer ul { list-style: none; }
    .copy {
      border-top: 1px solid var(--dark-footer-line); margin-top: 36px; padding-top: 18px;
      font-size: 12px; display: flex; justify-content: space-between; color: #a48f80;
    }

    /* 响应式断点 */
    @media (max-width: 980px) {
      .menu { display: none; }
      .bases-grid, .contact-main-grid, .foot, form.inquiry-form {
        grid-template-columns: 1fr;
      }
    }
