.page-hero {
  background:
    radial-gradient(circle at top left, #fdf8e015 0, transparent 50%),
    radial-gradient(circle at bottom right, #f1c27d20 0, transparent 55%),
    linear-gradient(135deg, #2b1300, #000000);
  padding: 70px 0 60px;
  color: #fdf8e0;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  align-items: center;
}

.page-hero h1 {
  font-size: 40px;
  font-family: "Playfair Display", serif;
}

.page-hero h1 span {
  color: #f1c27d;
}

.page-hero p {
  margin-block-start: 15px;
  font-size: 16px;
  max-inline-size: 650px;
}

.teacher-hero-card {
  text-align: center;
}

.teacher-hero-card img {
  inline-size: 260px;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.7);
  margin: 0 auto 12px;
}

.teacher-hero-info h2 {
  color: #f1c27d;
}

/* ACADEMY STORY */

.academy-story {
  padding: 70px 0;
  background: #130702;
  color: #fdf8e0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.story-text h2 {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  color: #f1c27d;
  margin-block-end: 15px;
}

.story-text p {
  margin-block-end: 12px;
  font-size: 15px;
}

.highlight-card {
  background: #2a1404;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(241, 194, 125, 0.25);
}

.highlight-card h3 {
  color: #f1c27d;
  margin-block-end: 10px;
  font-size: 20px;
}

.highlight-card ul li {
  margin-block-end: 8px;
  padding-inline-start: 18px;
  position: relative;
}

.highlight-card ul li::before {
  content: "•";
  position: absolute;
  inset-inline-start: 0;
  color: #f1c27d;
  font-size: 20px;
}

/* TEACHER SECTION */

.teacher-section {
  padding: 70px 0;
  background: #1a0b02;
  color: #fdf8e0;
}

.teacher-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.teacher-info h2 {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  color: #f1c27d;
}

.teacher-info h2 span {
  color: #fdf8e0;
}

.teacher-info p {
  margin: 10px 0;
  font-size: 15px;
}

.teacher-contact {
  margin-block-start: 20px;
}

.teacher-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}

.teacher-contact i {
  color: #f1c27d;
  font-size: 20px;
}

.teacher-photo-card img {
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
  margin-block-end: 15px;
}

/* STUDENT GALLERY */

.students-section {
  padding: 70px 0;
  background: #130702;
  color: #fdf8e0;
}

.section-head {
  text-align: center;
  margin-block-end: 30px;
}

.section-head h2 {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  color: #f1c27d;
}

.section-head p {
  max-inline-size: 700px;
  margin: 10px auto;
  color: #fbeed2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.gallery-item img {
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
  transition: 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* JUDGE SECTION */

.judge-section {
  padding: 70px 0;
  background: #1a0b02;
  color: #fdf8e0;
}

/* ACHIEVEMENT SECTION */

.achievement-section {
  padding: 70px 0;
  background: #130702;
  color: #fdf8e0;
}

.achievement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.achievement-image img {
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.7);
}

.achievement-text h2 {
  font-size: 32px;
  font-family: "Playfair Display", serif;
  color: #f1c27d;
}

.achievement-text h3 {
  font-size: 22px;
  margin: 10px 0;
  color: #fdf8e0;
}

/* FINAL CTA */

.about-cta {
  background: linear-gradient(90deg, #3a1503, #1b0902);
  padding: 60px 0;
  color: #fdf8e0;
}

.about-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.about-cta-text h2 {
  font-size: 28px;
  font-family: "Playfair Display", serif;
  color: #f1c27d;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .page-hero-inner,
  .story-grid,
  .teacher-grid,
  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}
