/* ========== HOME — HERO ========== */
.hero {
  background: linear-gradient(135deg, var(--color-bg-warm), #e8ddd0);
  padding: 80px 40px;
  text-align: center;
}

.hero .label {
  display: block;
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 300;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-subline {
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 32px;
  font-weight: 300;
}

/* ========== HOME — VALUE PROPS ========== */
.value-props {
  display: flex;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.value-prop {
  flex: 1;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.value-prop:last-child {
  border-right: none;
}

.value-prop p {
  font-size: 13px;
  color: var(--color-text);
  margin-top: 6px;
}

/* ========== HOME — COLLECTION ========== */
.collection {
  padding: 60px 40px;
  text-align: center;
  background: var(--color-bg-section);
}

.collection .label {
  display: block;
  margin-bottom: 28px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.collection-card {
  text-align: center;
  transition: transform 0.2s;
}

.collection-card:hover {
  transform: translateY(-4px);
}

.collection-card-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card-name {
  font-size: 13px;
  color: var(--color-text);
  margin-top: 10px;
  font-weight: 500;
}

/* ========== HOME — STORY ========== */
.story {
  padding: 80px 40px;
  background: var(--color-bg);
}

.story-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.story-content .label {
  display: block;
  margin-bottom: 16px;
}

.story-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-navy);
  margin-bottom: 24px;
  line-height: 1.3;
}

.story-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--color-text);
}

/* ========== HOME — RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    padding: 50px 24px;
  }

  .hero-headline {
    font-size: 30px;
  }

  .value-props {
    flex-direction: column;
  }

  .value-prop {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .value-prop:last-child {
    border-bottom: none;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story {
    padding: 50px 24px;
  }
}
