/* About content rows */
.about-section {
  padding: 80px 40px;
  background: #fff;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.about-row.reverse { direction: rtl; }
.about-row.reverse > * { direction: ltr; }
.about-row-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.about-text h2 {
  font-family: 'Amatic SC', handwriting;
  font-size: 52px;
  font-weight: 700;
  color: #000;
  line-height: 1.1;
  margin-bottom: 16px;
}
.about-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 12px;
}
.about-text ul { margin-top: 8px; }
.about-text ul li {
  font-size: 14px;
  color: #666;
  padding: 4px 0 4px 20px;
  position: relative;
}
.about-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f04404;
  font-weight: 700;
}

/* Founder Story */
.founder-section {
  background: #f5f5f5;
  padding: 80px 40px;
  text-align: center;
}
.founder-section h2 {
  font-family: 'Amatic SC', handwriting;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
}
.founder-section p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  color: #555;
  line-height: 1.9;
}

/* Brands */
.brands-about {
  padding: 60px 40px;
  background: #fff;
  text-align: center;
}
.brands-about h2 {
  font-family: 'Amatic SC', handwriting;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}
.brands-row {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.brands-row img {
  height: 28px;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.2s;
}
.brands-row img:hover { opacity: 1; filter: none; }

/* Testimonials */
.testimonials-section {
  background: #242424;
  padding: 80px 40px;
  text-align: center;
}
.testimonials-section h2 {
  font-family: 'Amatic SC', handwriting;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 48px;
}
.testimonials-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: #1a1a1a;
  padding: 28px;
  text-align: left;
}
.testimonial-stars { color: #f04404; font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 13px; color: #aaa; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 1px; text-transform: uppercase; }

@media (max-width: 768px) {
  .about-row { grid-template-columns: 1fr; direction: ltr; }
  .about-row.reverse { direction: ltr; }
  .about-section, .founder-section, .brands-about { padding: 40px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 60px 20px; }
}
