/* About Section Styles */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #fff 0%, #f6f8f4 100%);
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fade-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d3a2e;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .about-title { font-size: 3rem; }
}
.about-title-underline {
  width: 6rem;
  height: 5px;
  background: #eab308;
  margin: 0 auto 2rem auto;
  border-radius: 2px;
}
.about-lead {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #647060;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .about-content {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }
}
.about-text {
  flex: 1 1 0;
  animation: fade-in 1.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.about-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2d3a2e;
  margin-bottom: 1.5rem;
}
.about-paragraph {
  font-family: 'Poppins', sans-serif;
  color: #647060;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.about-feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #ca8a04;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.about-feature-desc {
  font-family: 'Poppins', sans-serif;
  color: #647060;
  font-size: 0.98rem;
}
.about-image-wrapper {
  flex: 1 1 0;
  position: relative;
  min-width: 320px;
  animation: scale-in 1.2s 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.about-image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.18);
}
.about-image {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .about-image {
    height: 14rem;
  }
}
.about-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,26,0.3) 0%, transparent 100%);
}
.about-deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
}
.about-deco-gold {
  width: 8rem;
  height: 8rem;
  background: #fbbf24;
  opacity: 0.18;
  bottom: -2rem;
  right: -2rem;
}
.about-deco-green {
  width: 6rem;
  height: 6rem;
  background: #4e7c59;
  opacity: 0.18;
  top: -2rem;
  left: -2rem;
}
/* Animations */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
