/* about.css */

.about-page {
  background: #fff;
}

.about-container {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.section-tight {
  padding: 54px 0;
}

/* HERO - MATCHES PRIVATE CHARTERS */
.about-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(7,31,63,.35), rgba(7,31,63,.65)),
    url("../images/about-hero.jpg"),
    linear-gradient(135deg, #0b2f5b, #0f78a8);
  background-size: cover;
  background-position: center;
}

.about-hero-img {
  display: none;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 20px;
}

.about-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: .95;
  margin: 0 auto 18px;
  text-shadow: 0 3px 14px rgba(0,0,0,.35);
}

.about-hero p {
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 20px;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 460px;
  }

  .about-hero h1 {
    font-size: 42px;
  }

  .about-hero p {
    font-size: 17px;
  }
}

/* GRIDS */
.intro-grid,
.timeline-block,
.today-grid,
.ready-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

/* TEXT */
.about-intro h2,
.timeline-copy h2,
.today-section h2,
.aboard-section h2,
.ready-section h2 {
  margin: 0 0 16px;
  color: var(--primary-dark);
  font-size: 26px;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: 0;
}

.about-intro p,
.timeline-copy p,
.today-section p,
.aboard-card p,
.section-note {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.story-year {
  margin-bottom: 22px;
}

.story-year h3 {
  margin: 0 0 7px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.story-year p {
  margin: 0;
}

/* IMAGES */
.story-image-card img,
.timeline-media > img,
.video-preview img,
.aboard-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.story-image-card,
.timeline-media,
.video-preview,
.aboard-card {
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.story-image-card img {
  min-height: 310px;
  max-height: 390px;
}

.timeline-media > img {
  height: 330px;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 8px;
  background: #fff;
}

.thumb-row img {
  width: 100%;
  height: 74px;
  object-fit: cover;
  display: block;
}

/* DIVIDER */
.about-wave {
  width: min(1120px, calc(100% - 32px));
  height: 7px;
  margin: 34px auto;
  background: transparent !important;
  position: relative;
}

.about-wave::after {
  content: "";
  display: block;
  width: 120px;
  height: 7px;
  background: var(--accent);
  border-radius: 999px;
}

/* TIMELINE */
.timeline-section {
  padding: 20px 0 24px;
}

.timeline-block {
  padding: 38px 0;
}

.timeline-block + .timeline-block {
  border-top: 1px solid var(--line);
}

.timeline-copy h2 {
  margin-bottom: 22px;
}

/* VIDEO */
.video-preview {
  min-height: 270px;
  position: relative;
}

.video-preview img {
  height: 100%;
  min-height: 270px;
}

.play-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

/* BUTTON */
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 15px 22px;
  border-radius: 2px;
  margin-top: 10px;
}

.about-btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

/* ABOARD */
.aboard-section {
  background: var(--soft);
}

.aboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.aboard-card {
  border: 1px solid var(--line);
}

.aboard-card img {
  height: 145px;
}

.aboard-card h3 {
  margin: 16px 16px 7px;
  color: var(--primary-dark);
  font-size: 17px;
  line-height: 1.15;
}

.aboard-card p {
  margin: 0 16px 18px;
  font-size: 14px;
  line-height: 1.45;
}

/* READY */
.ready-section {
  padding: 42px 0;
}

.ready-grid {
  align-items: end;
}

.ready-grid .about-btn {
  justify-self: end;
}

.footer-logo img {
  width: 120px;
  height: auto;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .intro-grid,
  .timeline-block,
  .today-grid,
  .ready-grid {
    grid-template-columns: 1fr;
  }

  .timeline-block.image-left .timeline-media {
    order: 2;
  }

  .timeline-block.image-left .timeline-copy {
    order: 1;
  }

  .aboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ready-grid .about-btn {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .about-container {
    width: min(100% - 24px, 980px);
  }

  .about-hero {
    min-height: 300px;
  }

  .section-tight {
    padding: 42px 0;
  }

  .timeline-block {
    padding: 32px 0;
  }

  .timeline-media > img {
    height: 245px;
  }

  .thumb-row img {
    height: 58px;
  }

  .aboard-grid {
    grid-template-columns: 1fr;
  }

  .aboard-card img {
    height: 210px;
  }
}