/* ========================================
   Hero Section
   ======================================== */

.hero {
  text-align: center;
  padding: 8px 0 4px;
}

.hero-title-en {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.04em;
  color: #8F77B5;  /* 桔梗紫 — 單色深紫（簡約優雅）*/
}

.subtitle {
  font-size: 14px;
  color: #888888;
  margin-top: 12px;
  margin-bottom: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-small);
  color: var(--color-text);
  font-weight: 500;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: var(--color-heading);
}

/* Responsive */
@media (max-width: 767px) {
  .hero-title-en {
    font-size: 28px;
  }
}
