/* ============ ABOUT HERO ============ */
.about-hero {
  position: relative;
  min-height: 320px;
  background-image: url('images/tcc-9.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: visible;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.6) 0%, rgba(50, 40, 30, 0.6) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 320px;
}

.about-hero-text h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 25px;
}

/* ============ MY STORY SECTION ============ */
.my-story-section {
  position: relative;
  padding: 60px 0 70px;
  background: var(--white);
}

.my-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.my-story-text {
  padding-top: 20px;
}

.my-story-text h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.3;
}

.my-story-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 18px;
}

.my-story-image {
  position: relative;
  margin-top: -200px;
  z-index: 3;
}

.my-story-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 55%;
  height: 45%;
  border-right: 5px solid var(--gold);
  border-bottom: 5px solid var(--gold);
  pointer-events: none;
}

.my-story-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ============ ATTENTION TO DETAIL SECTION ============ */
.detail-section {
  padding: 70px 0;
  background: var(--light-bg);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.detail-quote h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.detail-text-inner {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}

.detail-text-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 18px;
}

.detail-text-inner p:last-child {
  margin-bottom: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .about-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    min-height: auto;
    padding: 40px 20px;
  }

  .about-hero-text {
    flex: none;
    width: 100%;
  }

  .my-story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .my-story-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 0;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .detail-text-inner {
    border-left: none;
    border-top: 3px solid var(--gold);
    padding-left: 0;
    padding-top: 25px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about-hero-text h1 {
    font-size: 36px;
  }

  .detail-quote h2 {
    font-size: 26px;
  }
}
