/* ==========================================================================
   chairman.css — Chairman's Message section (homepage)

   NOTE for the developer: the quote body in index.html is a clearly-marked
   placeholder (dashed border + "PLACEHOLDER" tag), not real copy. We don't
   have an actual quote from Prakash Wires' leadership to put here, and
   inventing one attributed to a real named person isn't something to do on
   their behalf — swap in their real words (and a real photo, replacing the
   initials badge) before this goes live. See the HTML comment above the
   section for the same note in context.
   ========================================================================== */

.chairman {
  padding-block: var(--sp-11);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.chairman__inner {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: var(--sp-9);
  align-items: center;
}

/* ---- Avatar -------------------------------------------------------------
   No real photograph to use here — an initials badge in the brand gradient
   reads as an intentional design choice rather than a broken image, and
   doesn't risk passing off a stock photo as a real, named person. */
.chairman__media {
  position: relative;
  display: flex;
  justify-content: center;
}

.chairman__avatar {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--grad-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.chairman__avatar::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--grad-ember) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.9;
}

.chairman__avatar span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ---- Body ------------------------------------------------------------ */
.chairman__quote-icon {
  width: 46px;
  height: 46px;
  margin-bottom: var(--sp-4);
  color: var(--ember-500);
  opacity: 0.9;
}

.chairman__body .eyebrow {
  margin-bottom: var(--sp-4);
}

.chairman__quote {
  margin: 0 0 var(--sp-6);
}
.chairman__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink-800, var(--ink-700));
}

/* Placeholder styling — deliberately unmistakable as draft content.
   Remove this rule (and the "PLACEHOLDER" tag in the HTML) once the real
   quote is in place. */
.chairman__quote--placeholder {
  padding: var(--sp-5);
  border: 1.5px dashed var(--steel-400);
  border-radius: var(--radius-md);
  background: var(--steel-50);
}
.chairman__quote--placeholder p {
  font-style: normal;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--steel-600);
  line-height: 1.65;
}
.chairman__placeholder-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: var(--sp-3);
  padding: 0.3em 0.8em;
  border-radius: var(--radius-pill);
  background: var(--ember-100);
  color: var(--ember-700);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.chairman__placeholder-tag svg {
  width: 12px;
  height: 12px;
}

.chairman__attribution {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.chairman__attribution::before {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--flame-500);
  flex: none;
}
.chairman__attribution-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-900);
}
.chairman__attribution-title {
  display: block;
  font-size: 0.82rem;
  color: var(--steel-600);
  margin-top: 0.2em;
}

@media (max-width: 780px) {
  .chairman__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .chairman__quote-icon {
    margin-inline: auto;
  }
  .chairman__attribution {
    justify-content: center;
  }
  .chairman__avatar {
    width: 160px;
    height: 160px;
  }
  .chairman__avatar span {
    font-size: 2.4rem;
  }
}
