/* 经销商样板 · 北欧极简 + 鼠尾草绿 */
:root {
  --green: #5B7B6E;
  --green-dark: #2F4A3D;
  --brown: #C27B58;
  --blue: #7B94A8;
  --bg: #F8F6F2;
  --card-bg: #FFFFFF;
  --border: #E8E2D5;
  --soft: #F4F0E8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--green-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { max-width: 720px; margin: 0 auto; padding: 24px; }

/* ====== Hero ====== */
.hero {
  text-align: center;
  padding: 32px 0 48px;
  border-bottom: 1px solid var(--border);
}

.photo {
  width: 180px;
  height: 180px;
  background: var(--soft);
  border-radius: 12px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 14px;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.location {
  font-size: 14px;
  color: var(--blue);
  margin: 4px 0 12px;
}

.tagline {
  font-size: 15px;
  color: var(--green);
  font-style: italic;
  margin-bottom: 28px;
}

.wechat-qr {
  width: 160px;
  height: 160px;
  background: var(--soft);
  border-radius: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 13px;
  border: 1px dashed var(--border);
}

/* ====== Section common ====== */
section { padding: 48px 0; border-bottom: 1px solid var(--border); }

.section-eyebrow {
  font-size: 11px;
  color: var(--brown);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

/* ====== Timeline ====== */
.timeline {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--green);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item:last-child { margin-bottom: 0; }

.dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.timeline-item.milestone .dot {
  background: var(--brown);
  width: 12px;
  height: 12px;
  left: -35px;
  top: 4px;
}

.year {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.title {
  font-size: 17px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.desc {
  font-size: 14px;
  color: var(--blue);
  line-height: 1.5;
}

/* ====== Achievements ====== */
.achievement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.achievement-card {
  background: var(--card-bg);
  padding: 24px 12px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.number {
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

.label {
  font-size: 12px;
  color: var(--blue);
  margin-top: 6px;
}

.testimonials { display: flex; flex-direction: column; gap: 8px; }

.testimonial-slot {
  background: var(--soft);
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  font-size: 13px;
  color: var(--blue);
  border: 1px dashed var(--border);
}

/* ====== Judy System ====== */
.judy-system p {
  font-size: 15px;
  color: var(--green-dark);
  margin-bottom: 28px;
  line-height: 1.75;
}

.cta-secondary {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--green);
  color: var(--green);
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cta-secondary:hover {
  background: var(--green);
  color: white;
}

/* ====== Contact Form ====== */
.contact-hint {
  font-size: 13px;
  color: var(--blue);
  margin-bottom: 24px;
}

form {
  background: var(--soft);
  padding: 28px;
  border-radius: 12px;
}

.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 500;
  margin-bottom: 6px;
}

.optional {
  font-size: 11px;
  color: var(--blue);
  font-weight: 400;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  background: var(--card-bg);
  font-family: inherit;
  color: var(--green-dark);
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.cta-primary {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}

.cta-primary:hover { background: var(--green-dark); }

.cta-primary:disabled {
  background: var(--border);
  color: var(--blue);
  cursor: not-allowed;
}

.form-note {
  font-size: 11px;
  color: var(--blue);
  text-align: center;
  margin-top: 12px;
}

/* ====== Footer ====== */
footer {
  text-align: center;
  padding: 48px 0 32px;
}

.brand {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.slogan {
  font-size: 13px;
  color: var(--blue);
  font-style: italic;
}

/* ====== Responsive ====== */
@media (max-width: 480px) {
  main { padding: 16px; }
  section { padding: 36px 0; }
  .hero h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .achievement-grid { grid-template-columns: 1fr; }
}
