/* ============================================================
   PAGE HERO — Our Story
============================================================ */

.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(rgba(10, 10, 10, 0.38), rgba(10, 10, 10, 0.52)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
  padding-top: 13rem;
}

/* Gold bottom streak */
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(230, 173, 58, 0) 0%,
      rgba(230, 173, 58, 0.55) 40%,
      rgba(230, 173, 58, 0) 100%);
  z-index: 3;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.15) 60%,
      rgba(10, 10, 10, 0.04) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4.5rem;
}

.page-hero-label {
  color: var(--volant-gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: block;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.88;
  font-weight: 800;
  margin-bottom: 1.35rem;
  max-width: 700px;
  letter-spacing: -0.01em;
}

.page-hero h1 span {
  color: var(--volant-gold);
}

.page-hero-sub {
  color: rgba(217, 226, 234, 0.85);
  font-size: 1.1rem;
  line-height: 1.72;
  max-width: 560px;
}

/* ============================================================
   OUR STORY
============================================================ */

.about-story {
  background: var(--white);
  position: relative;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-content .section-label {
  margin-bottom: 0.75rem;
  color: var(--volant-blue);
  background: repeating-linear-gradient(45deg,
      rgba(17, 130, 197, 0.05),
      rgba(17, 130, 197, 0.05) 3px,
      rgba(17, 130, 197, 0.11) 3px,
      rgba(17, 130, 197, 0.11) 6px);
  border-color: rgba(17, 130, 197, 0.22);
}

.about-story-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.0;
  margin-bottom: 1.25rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.about-story-content p {
  color: #4d5d6b;
  line-height: 1.78;
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.about-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.story-stat {
  border-left: 4px solid var(--volant-gold);
  padding: 0.75rem 0 0.75rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  position: relative;
}

.story-stat::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e8edf2;
}

.story-stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--volant-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.story-stat-label {
  color: #6a7f8e;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
   DIVISIONS — STAGGERED ROWS
============================================================ */

.divisions-section {
  background: linear-gradient(160deg, #f5f7fa 0%, #edf1f7 100%);
  position: relative;
}

.divisions-section::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(11, 22, 32, 0.08) 50%, transparent 100%);
  position: absolute;
  top: 0;
}

.divisions-section .section-heading {
  margin-bottom: 4.5rem;
}

.divisions-section .section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

.division-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  margin-bottom: 5.5rem;
}

.division-row:last-child {
  margin-bottom: 0;
}

.division-row--reverse {
  direction: rtl;
}

.division-row--reverse > * {
  direction: ltr;
}

/* Image side */
.division-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 24px 48px rgba(0, 0, 0, 0.14);
  background: transparent;
}

/* Gold bar via pseudo-element — sits inside container so overflow:hidden doesn't clip it */
.division-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--volant-gold);
  z-index: 2;
}

.division-image img {
  width: 100%;
  height: 400px;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.division-image:hover img {
  transform: scale(1.02);
}

.division-image-tag {
  position: absolute;
  bottom: 1.1rem;
  left: 1.35rem;
  background: rgba(11, 22, 32, 0.92);
  color: var(--volant-gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Text side */
.division-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.division-label {
  color: var(--volant-gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.division-content h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.6rem);
  color: var(--dark);
  line-height: 1.0;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.division-content p {
  color: #4d5d6b;
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 0.85rem;
}

.division-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--volant-blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0.6rem;
  transition: gap 0.2s ease;
}

.division-link:hover {
  gap: 0.75rem;
}

/* ============================================================
   ABOUT MORE — directional cards
============================================================ */

.about-more {
  background: var(--white);
  position: relative;
}

.about-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.about-more-card {
  border-left: 4px solid var(--volant-gold);
  padding: 2rem 1.75rem;
  background: linear-gradient(160deg, #f5f7fa 0%, #edf1f7 100%);
  border-radius: 0 4px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-more-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08), 0 16px 32px rgba(0, 0, 0, 0.1);
}

.about-more-icon {
  color: var(--volant-gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 173, 58, 0.08);
  border: 1px solid rgba(230, 173, 58, 0.22);
  border-radius: 6px;
}

.about-more-card h3 {
  font-size: 1.45rem;
  color: var(--dark);
  letter-spacing: 0.01em;
}

.about-more-card p {
  color: #4d5d6b;
  font-size: 0.96rem;
  line-height: 1.72;
  flex: 1;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-story-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .division-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }

  .division-row--reverse {
    direction: ltr;
  }

  .division-image img {
    height: 300px;
    width: 100%;
    min-width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .about-more-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 48vh;
    padding-top: 10rem;
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
    max-width: 320px;
  }

  .about-story-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .division-image img {
    height: 250px;
    width: 100%;
    min-width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .divisions-section .section-heading {
    margin-bottom: 2.75rem;
  }

  .story-stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 540px) {
  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .story-stat-number {
    font-size: 2.6rem;
  }

  .about-story-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .division-image img {
    height: 210px;
    width: 100%;
    min-width: 100%;
    object-fit: cover;
    object-position: center;
  }
}