/* ===== About ===== */
#about {
  padding: 100px 0;
  background: #fdfaf4;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-img {
  height: 460px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 44px rgba(62, 31, 0, 0.18);
}

.about-badge {
  position: absolute;
  bottom: -22px;
  right: -16px;
  background: #c8a96e;
  color: #3e1f00;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 26px rgba(200, 169, 110, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.about-badge i { color: #8b3a2c; }

.about-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 42px;
  color: #3e1f00;
  margin-bottom: 22px;
  text-align: left;
}

.about-text .section-eyebrow {
  text-align: left;
}

.about-text p {
  font-size: 17px;
  color: #6b4a32;
  margin-bottom: 18px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #c8a96e;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.about-cta:hover { gap: 16px; }

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

@media (max-width: 1024px) {
  #about { padding: 80px 0; }
  .about-inner { padding: 0 32px; gap: 44px; }
  .about-img { height: 400px; }
  .about-title { font-size: 36px; }
}

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 52px; }
  .about-media { order: -1; }
  .about-img { height: 320px; }
  .about-badge { font-size: 14px; padding: 12px 20px; right: 0; }
  .about-text p { font-size: 16px; }
}

@media (max-width: 480px) {
  #about { padding: 64px 0; }
  .about-inner { padding: 0 16px; }
  .about-img { height: 260px; }
  .about-title { font-size: 30px; }
  .about-badge { font-size: 12.5px; bottom: -18px; }
}
