/* ─── PAGE HERO (shared with contact) ─────────────── */
.page-hero {
  position: relative;
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.78);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* ─── ABOUT INTRO ──────────────────────────────────── */
.about-intro {
  background: var(--offwhite);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px;
  align-items: center;
}

.about-intro-text .section-title { color: var(--navy); }

.about-intro-text .section-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
  max-width: 520px;
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.about-intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.badge-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ─── MISSION & VISION ─────────────────────────────── */
.mv-section {
  background: var(--navy);
  display: flex;
  align-items: stretch;
  padding: 80px;
  gap: 0;
}

.mv-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 50px;
}

.mv-card:first-child { padding-left: 0; }
.mv-card:last-child  { padding-right: 0; }

.mv-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0;
}

.mv-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mv-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mv-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.mv-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}

.mv-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}

/* ─── WHAT WE OFFER ────────────────────────────────── */
.offer-section {
  background: #111e2d;
  padding: 80px;
}

.offer-header {
  text-align: center;
  margin-bottom: 60px;
}

.offer-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 10px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 60px;
}

.offer-item {
  display: flex;
  flex-direction: column;
}

.offer-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}

.offer-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.offer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ─── CHAIRMAN'S MESSAGE ───────────────────────────── */
.chairman-section {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  padding: 80px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.chairman-img-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.chairman-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.chairman-img-wrapper img:hover {
  filter: grayscale(0%);
}

.chairman-name-card {
  background: var(--gold);
  padding: 18px 24px;
  margin-top: 0;
}

.chairman-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.chairman-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.chairman-quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.6;
}

.chairman-quote-end {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 0;
}

.chairman-quote {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 16px;
  max-width: 560px;
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .about-intro  { padding: 60px 40px; gap: 40px; }
  .mv-section   { padding: 60px 40px; flex-direction: column; }
  .mv-card      { padding: 30px 0; }
  .mv-divider   { width: 100%; height: 1px; }
  .offer-section { padding: 60px 40px; }
  .offer-grid   { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .chairman-section { padding: 60px 40px; gap: 40px; }
}

@media (max-width: 767px) {
  .page-hero    { height: 260px; }
  .about-intro  { grid-template-columns: 1fr; padding: 40px 24px; }
  .about-intro-image img { height: 300px; }
  .about-intro-badge { bottom: -16px; left: 10px; }
  .mv-section   { padding: 50px 24px; }
  .offer-section { padding: 50px 24px; }
  .offer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .chairman-section { grid-template-columns: 1fr; padding: 50px 24px; gap: 36px; }
  .chairman-img-wrapper { aspect-ratio: 4/3; }
}