/* ===== Benefits ===== */
#benefits {
  padding: 100px 0;
  background: #3e1f00;
}

.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

#benefits .section-eyebrow { color: #e6cfa3; }

.benefits-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 42px;
  color: #fdfaf4;
  text-align: center;
  margin-bottom: 56px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.benefit-item {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 169, 110, 0.25);
  border-radius: 18px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  background: rgba(200, 169, 110, 0.1);
  border-color: #c8a96e;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #3e1f00;
  background: #c8a96e;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.benefit-item:hover .benefit-icon {
  transform: rotate(-8deg) scale(1.08);
}

.benefit-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: #fdfaf4;
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 15px;
  color: #d8c4ac;
}

/* ===== Responsive ===== */
@media (min-width: 1440px) {
  .benefits-inner { max-width: 1280px; padding: 0 64px; }
}

@media (max-width: 1024px) {
  #benefits { padding: 80px 0; }
  .benefits-inner { padding: 0 32px; }
  .benefits-title { font-size: 36px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 480px) {
  #benefits { padding: 64px 0; }
  .benefits-inner { padding: 0 16px; }
  .benefits-title { font-size: 30px; }
  .benefits-grid { grid-template-columns: 1fr; }
}
