/* ═══════════════════════════════════════════
   FOUNDER'S MESSAGE — founders-message.css
   Imports: common.css variables & page-hero
   from about.css are assumed already loaded.
═══════════════════════════════════════════ */
/* page-hero styles live in css/page-hero.css — include that on every inner page */
/* ─────────────────────────────────────────
   FOUNDER SECTION
───────────────────────────────────────── */
.founder-section {
  padding: 90px 0 100px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
/* Giant decorative quote mark in background */
.founder-deco-quote {
  position: absolute;
  top: 40px;
  left: -20px;
  width: 220px;
  color: var(--navy);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
}
.founder-deco-quote svg { width: 100%; height: auto; }
/* Subtle gradient wash top-right */
.founder-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 108, 6, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
/* Two-column grid */
.founder-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}
/* ─── LEFT: Portrait column ─── */
.founder-portrait-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}
.founder-portrait-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(12, 29, 88, 0.05),
    0 20px 60px rgba(12, 29, 88, 0.14),
    0 0 0 1px rgba(224, 230, 245, 0.8);
}
/* Decorative accent slab behind portrait */
.founder-portrait-bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-d) 100%);
  z-index: 0;
}
.founder-portrait-img-wrap {
  position: relative;
  z-index: 1;
  padding: 32px 32px 0 32px;
  text-align: center;
}
.founder-portrait-img-wrap img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px 12px 0 0;
  filter: drop-shadow(0 8px 24px rgba(12, 29, 88, 0.25));
}
/* Identity card pinned below photo, overlapping bg */
.founder-identity-card {
  background: #fff;
  padding: 20px 24px;
  position: relative;
  z-index: 2;
}
.founder-identity-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.founder-identity-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.founder-identity-text strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.founder-identity-text span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  margin-top: 3px;
}
/* Legacy stat pillars */
.founder-legacy-pillars {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  box-shadow: 0 8px 28px rgba(12, 29, 88, 0.18);
}
.legacy-pillar {
  text-align: center;
  flex: 1;
}
.legacy-pillar-num {
  font-family: 'Nunito', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.legacy-pillar-num span {
  color: var(--orange);
  font-size: 20px;
}
.legacy-pillar-label {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.legacy-pillar-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
/* JIS group small badge */
.founder-jis-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.founder-jis-badge img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.founder-jis-badge div span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.founder-jis-badge div strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
/* ─── RIGHT: Message column ─── */
.founder-message-col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
/* Tag + heading */
.founder-msg-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.founder-msg-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 108, 6, 0.1);
  color: var(--orange);
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(232, 108, 6, 0.2);
  align-self: flex-start;
}
.founder-msg-title {
  font-family: 'Nunito', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.founder-msg-title span {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
/* Decorative underline on title span */
.founder-msg-title span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
}
/* Highlighted pull-quote block */
.founder-highlight-quote {
  display: flex;
  gap: 20px;
  align-items: stretch;
  background: linear-gradient(135deg, #f0f4ff 0%, #fef8f3 100%);
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: inset 0 0 0 1px rgba(232, 108, 6, 0.15);
}
.founder-highlight-bar {
  flex-shrink: 0;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--gold) 100%);
}
.founder-highlight-quote p {
  font-family: 'Nunito', sans-serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.7;
}
/* Body paragraphs */
.founder-msg-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-msg-body p {
  font-family: 'Nunito', sans-serif;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}
.founder-msg-body p strong {
  color: var(--navy);
  font-weight: 700;
}
.founder-msg-body p em {
  color: var(--navy);
  font-style: italic;
}
/* Signature block */
.founder-signature-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.founder-sig-line {
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--border) 60%, transparent 100%);
  border-radius: 2px;
}
.founder-sig-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.founder-sig-name {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.founder-sig-role {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}
.founder-sig-emblem {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
/* ─────────────────────────────────────────
   VISION QUOTE BANNER
───────────────────────────────────────── */
.founder-quote-banner {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  position: relative;
  overflow: hidden;
}
.founder-quote-banner-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.founder-quote-banner-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.fqb-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(232, 108, 6, 0.2);
  border: 1px solid rgba(232, 108, 6, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.fqb-content {
  flex: 1;
}
.fqb-label {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px 0;
}
.fqb-quote {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}
.fqb-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(232, 108, 6, 0.3);
}
.fqb-btn:hover {
  background: var(--orange-h);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 108, 6, 0.45);
}
.fqb-btn svg { transition: transform 0.3s ease; }
.fqb-btn:hover svg { transform: translateX(4px); }
/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1199px) {
  .founder-wrapper {
    grid-template-columns: 340px 1fr;
    gap: 48px;
  }
  .founder-msg-title { font-size: 36px; }
}
@media (max-width: 991px) {
  .founder-section  { padding: 60px 0 70px; }
  .founder-wrapper  {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .founder-portrait-col {
    position: relative;
    top: 0;
    /* Side-by-side layout for portrait + stats on tablet */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
  }
  .founder-portrait-frame { grid-column: 1 / -1; }
  .founder-legacy-pillars { grid-column: 1; }
  .founder-jis-badge      { grid-column: 2; }
  .founder-msg-title      { font-size: 32px; }
  .founder-quote-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .fqb-btn { width: 100%; justify-content: center; }
}
@media (max-width: 768px) {
  .founder-portrait-col {
    display: flex;
    flex-direction: column;
  }
  .founder-msg-title      { font-size: 28px; }
  .founder-highlight-quote p { font-size: 16px; }
  .founder-msg-body p     { font-size: 15.5px; }
}
@media (max-width: 480px) {
  .founder-section        { padding: 40px 0 50px; }
  .founder-msg-title      { font-size: 25px; }
  .founder-highlight-quote { padding: 20px; }
  .founder-highlight-quote p { font-size: 15px; }
  .founder-msg-body p     { font-size: 14.5px; }
  .founder-sig-name       { font-size: 19px; }
  .fqb-quote              { font-size: 15px; }
}