/* ===========================
   品牌故事頁面 about-page.css
=========================== */

/* HERO */
.about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,10,0,0.82) 0%, rgba(40,20,0,0.75) 100%);
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px 24px;
}
.about-hero h1 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 16px 0;
}
.about-hero h1 em {
  color: #f0a500;
  font-style: normal;
}
.about-hero-desc {
  font-size: 16px;
  color: #d4b88a;
  line-height: 1.8;
  margin-top: 12px;
}

/* STATS */
.about-stats-sec { padding: 52px 40px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.about-stat-n {
  font-size: 46px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.about-stat-n span { font-size: 22px; }
.about-stat-label {
  font-size: 13px;
  color: var(--text-sec);
  margin-top: 8px;
}

/* STORY */
.about-story-sec,
.about-origin-sec { padding: 64px 40px; }
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story.reverse { direction: rtl; }
.about-story.reverse > * { direction: ltr; }
.about-story-text h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 12px 0 20px;
  line-height: 1.4;
}
.about-story-text p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.85;
  margin-bottom: 14px;
}
.about-story-text p strong { color: var(--primary); }
.about-story-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 360px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.about-img-caption {
  font-size: 12px;
  color: var(--text-sec);
  text-align: center;
  margin-top: 10px;
}

/* PROMISE / VALUES */
.about-promise-sec { padding: 64px 40px; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-value {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.about-value:hover {
  box-shadow: 0 8px 28px rgba(212,112,10,0.13);
  transform: translateY(-3px);
}
.about-value-icon { font-size: 40px; margin-bottom: 16px; }
.about-value h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.about-value p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
}

/* TEAM */
.about-team-sec { padding: 64px 40px; }
.about-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 24px;
  border: 2px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
}
.about-team-icon { font-size: 44px; margin-bottom: 16px; }
.about-team-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.about-team-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
}

/* FACTORY */
.about-factory-sec { padding: 64px 40px; }
.about-factory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.about-factory-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: transform 0.3s;
}
.about-factory-grid img:hover { transform: scale(1.02); }

/* CTA WRAP */
.cta-wrap {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid var(--border);
}
.cta-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.cta-wrap p { font-size: 14px; color: var(--text-sec); }
.cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===========================
   手機版
=========================== */
@media (max-width: 768px) {
  .about-hero { min-height: 380px; }
  .about-hero h1 { font-size: 24px; }
  .about-hero-desc { font-size: 13px; }

  .about-stats-sec { padding: 36px 20px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-stat-n { font-size: 34px; }

  .about-story-sec,
  .about-origin-sec { padding: 40px 20px; }
  .about-story,
  .about-story.reverse { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
  .about-story-img img { height: 220px; }

  .about-promise-sec { padding: 40px 20px; }
  .about-values { grid-template-columns: 1fr; gap: 14px; }

  .about-team-sec { padding: 40px 20px; }
  .about-team { grid-template-columns: 1fr; gap: 14px; }

  .about-factory-sec { padding: 40px 20px; }
  .about-factory-grid { grid-template-columns: 1fr; gap: 12px; }
  .about-factory-grid img { height: 200px; }

  .cta-wrap { flex-direction: column; text-align: center; padding: 28px 20px; }
  .cta-btns { justify-content: center; }
}
