/* ================================================================
   HOMEPAGE — heleneriu.fr
   Artisan Luxury Design System
   ================================================================ */

/* --- HERO --- */
.hero {
  background: linear-gradient(135deg, #2d2418 0%, #5a4632 40%, #8b7355 100%);
  color: #faf8f5;
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

.hero__subtitle {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.85;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: #c45a3b;
  color: #fff;
  border-color: #c45a3b;
}

.btn--primary:hover {
  background: #a84830;
  border-color: #a84830;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 90, 59, 0.3);
}

.btn--outline {
  background: transparent;
  color: #faf8f5;
  border-color: rgba(250, 248, 245, 0.5);
}

.btn--outline:hover {
  background: rgba(250, 248, 245, 0.1);
  border-color: #faf8f5;
}

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  background: transparent;
  color: #c45a3b;
  border: 1.5px solid #c45a3b;
}

.btn--small:hover {
  background: #c45a3b;
  color: #fff;
}

/* --- SECTIONS --- */
.section {
  padding: 4rem 0;
}

.section--brands {
  background: #faf8f5;
}

.section--services {
  background: #fff;
}

.section--atelier {
  background: #f0ebe4;
}

.section--testimonials {
  background: #faf8f5;
}

.section__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #2d2418;
  text-align: center;
  margin: 0 0 0.75rem;
}

.section__desc {
  font-family: 'Newsreader', Georgia, serif;
  color: #6b5d4f;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- BRAND CARDS --- */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-card {
  background: #fff;
  border: 1px solid #e8e0d6;
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.brand-card:hover {
  border-color: #8b7355;
  box-shadow: 0 8px 24px rgba(139, 115, 85, 0.12);
  transform: translateY(-3px);
}

.brand-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.brand-card__name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2d2418;
  margin: 0;
}

.brand-card__origin {
  font-size: 0.8rem;
  color: #8b7355;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.brand-card__desc {
  font-family: 'Newsreader', Georgia, serif;
  color: #6b5d4f;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.brand-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.brand-card__list li a {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: #f0ebe4;
  color: #5a4632;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s;
}

.brand-card__list li a:hover {
  background: #8b7355;
  color: #fff;
}

.brand-card__cta {
  display: inline-block;
  color: #c45a3b;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.brand-card__cta:hover {
  color: #a84830;
}

/* --- SERVICE CARDS --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: #faf8f5;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: #f0ebe4;
  transform: translateY(-2px);
}

.service-card__icon {
  margin-bottom: 1rem;
}

.service-card__icon svg {
  width: 36px;
  height: 36px;
}

.service-card__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2d2418;
  margin: 0 0 0.5rem;
}

.service-card p {
  font-family: 'Newsreader', Georgia, serif;
  color: #6b5d4f;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.service-card__link {
  color: #c45a3b;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
}

.service-card__link:hover {
  text-decoration: underline;
}

/* --- ATELIER CARDS --- */
.atelier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.atelier-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.atelier-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.atelier-card__icon {
  margin-bottom: 1rem;
}

.atelier-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #2d2418;
  margin: 0 0 0.5rem;
}

.atelier-card p {
  font-family: 'Newsreader', Georgia, serif;
  color: #6b5d4f;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e8e0d6;
  border-left: 4px solid #c45a3b;
  margin: 0;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.testimonial-card p {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  color: #5a4632;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: #8b7355;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero { padding: 3rem 1.25rem; }
  .hero__title { font-size: 2rem; }
  .section { padding: 2.5rem 1rem; }
  .brands-grid,
  .services-grid,
  .atelier-grid,
  .testimonials-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .brand-card { padding: 1.25rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
