/* SECTION WRAPPER */
.about-section {
  padding: 90px 0;
  background: #000000;
}

/* CONTAINER */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID LAYOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.about-content {
  text-align: center;
}

/* TITLE */
.about-title {
  font-size: 72px;
  font-weight: 300;
  color: #c59d5f;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 2px;
}

/* SMALL MOTIF */
.about-motif {
  margin: 20px 0;
  font-size: 20px;
  color: #c59d5f;
}

/* TEXT */
.about-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  max-width: 520px;
  margin: 0 auto 30px;
}

/* BUTTON */
.about-button {
  display: inline-block;
  background: #813439;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.about-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* RIGHT IMAGE */
.about-media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-title {
    font-size: 48px;
  }
}

/* background override */
.about-section_mirror {
  background: #ffffff; /* _mirror */
}

/* reverse columns */
.about-section_mirror .about-grid {
  direction: rtl; /* _mirror */
}

/* fix text flow inside columns */
.about-section_mirror .about-content,
.about-section_mirror .about-media {
  direction: ltr; /* _mirror */
}