/* css/about.css - About page specific styles */

/* PAGE HERO */
.page-hero {
  padding-top: 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 80px;
}
@media (max-width: 900px) {
  .page-hero-content {
    padding: 56px 28px;
  }
}
.page-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 20px;
}
.page-h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.75;
}

/* MAIN SECTIONS */
.sec {
  padding: 96px 80px;
}
@media (max-width: 900px) {
  .sec {
    padding: 64px 28px;
  }
}
.sec-alt {
  background: var(--light);
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.h2 em {
  font-style: italic;
  color: var(--gold);
}
.h2-w {
  color: var(--white);
}
.subp {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 560px;
}
.sec-head {
  margin-bottom: 52px;
}

/* MISSION SPLIT SECTION */
.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .mission-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.mission-img {
  position: relative;
  overflow: hidden;
}
.mission-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 900px) {
  .mission-img img {
    height: 280px;
  }
}
.big-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 28px;
  border-left: 4px solid var(--gold);
  padding-left: 24px;
}
.body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* FOUR PILLARS GRID */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}
.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 28px;
  border-top: 4px solid var(--gold);
}
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* STATS BAND */
.stats-band {
  background: var(--navy);
  padding: 72px 80px;
}
@media (max-width: 900px) {
  .stats-band {
    padding: 60px 28px;
  }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-block {
  background: var(--navy);
  padding: 48px 32px;
  text-align: center;
}
.stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-n em {
  font-style: italic;
  color: var(--gold);
}
.stat-l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-top: 8px;
}

/* TIMELINE */
.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.tl-item {
  position: relative;
  margin-bottom: 48px;
}
.tl-item:last-child {
  margin-bottom: 0;
}
.tl-dot {
  position: absolute;
  left: -44px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.tl-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.tl-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.tl-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* INNONATION FOUNDATION SECTION */
.innon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 900px) {
  .innon {
    grid-template-columns: 1fr;
  }
}
.innon-content {
  background: var(--gold);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .innon-content {
    padding: 56px 28px;
  }
}
.innon-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.innon-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}
.innon-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.innon-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.innon-link:hover {
  text-decoration: underline;
}
.innon-img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.innon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 14px;
  color: var(--text-muted);
}
.contact-form {
  width: 100%;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans);
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: background var(--trans);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}
.btn-navy:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.arr::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.2s;
}
.arr:hover::after {
  transform: translateX(4px);
}

/* SCROLL REVEAL */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}
.rev.in {
  opacity: 1;
  transform: translateY(0);
}
.rev-d1 {
  transition-delay: 0.1s;
}
.rev-d2 {
  transition-delay: 0.2s;
}
.rev-d3 {
  transition-delay: 0.3s;
}