/* ==========================================================================
   Fishbones Bait & Tackle — About Page Styles
   ========================================================================== */

/* --- Hero --- */
.about-hero {
  background-image: url('../assets/hero-about.jpg');
  min-height: 340px;
}

/* --- Story Section: asymmetric editorial layout --- */
.story {
  padding: var(--space-4xl) 0;
  background-color: var(--cream);
  overflow: hidden;
}

.story__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Photo treatment: portrait on weathered backing */
.story__portrait {
  position: relative;
  margin-top: var(--space-xl);
}

.story__portrait::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: calc(12px + 2.5em);
  border: 3px solid var(--rope);
  border-radius: var(--radius-sm);
  opacity: 0.5;
}

.story__portrait img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.story__caption {
  position: relative;
  z-index: 1;
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--rope);
  text-align: center;
}

/* Text side */
.story__text {
  padding-top: var(--space-sm);
}

.story__label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rope);
  margin-bottom: var(--space-sm);
}

.story__heading {
  font-size: var(--fs-3xl);
  color: var(--navy);
  margin-bottom: var(--space-xl);
  line-height: 1.15;
}

.story__body {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--navy);
  max-width: 540px;
}

.story__body p + p {
  margin-top: var(--space-lg);
}

/* Pull quote: large italic text to break up the narrative */
.story__pullquote {
  margin: var(--space-2xl) 0;
  padding-left: var(--space-xl);
  border-left: 4px solid var(--red);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--fs-xl);
  line-height: 1.5;
  color: var(--teal);
}

/* --- Legacy bar: horizontal timeline feel --- */
.legacy {
  background-color: var(--navy);
  color: var(--cream);
  padding: var(--space-3xl) 0;
}

.legacy__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.legacy__item {
  position: relative;
  padding: var(--space-lg) var(--space-md);
}

.legacy__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(245, 240, 232, 0.15);
}

.legacy__number {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--red);
  display: block;
  margin-bottom: var(--space-xs);
}

.legacy__label {
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

/* --- Philosophy Section: offset layout --- */
.philosophy {
  padding: var(--space-4xl) 0;
  background-color: var(--cream);
}

.philosophy__layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-3xl);
  align-items: center;
}

.philosophy__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  color: var(--navy);
  margin-bottom: var(--space-xl);
  line-height: 1.2;
}

.philosophy__heading span {
  color: var(--red);
}

.philosophy__body {
  font-size: var(--fs-md);
  line-height: 1.75;
  max-width: 520px;
}

/* Sidebar card with rope accent */
.philosophy__aside {
  background-color: var(--white);
  border-left: 5px solid var(--rope);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.philosophy__aside-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-lg);
}

.philosophy__traits {
  list-style: none;
}

.philosophy__traits li {
  font-size: var(--fs-base);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.philosophy__traits li:last-child {
  border-bottom: none;
}

.philosophy__traits li::before {
  content: '\2022';
  color: var(--red);
  font-size: var(--fs-lg);
  line-height: 1;
  flex-shrink: 0;
}

/* --- CTA Banner --- */
.about-cta {
  background-color: var(--teal);
  color: var(--white);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.about-cta__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.about-cta__sub {
  font-size: var(--fs-md);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .btn {
  margin: 0 var(--space-sm);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .story__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .philosophy__layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

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

  .story {
    padding: var(--space-3xl) 0;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .story__portrait {
    max-width: 400px;
    margin-top: 0;
  }

  .story__heading {
    font-size: var(--fs-2xl);
  }

  .story__pullquote {
    font-size: var(--fs-lg);
  }

  .legacy__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .legacy__item:not(:last-child)::after {
    display: none;
  }

  .legacy__number {
    font-size: var(--fs-2xl);
  }

  .philosophy {
    padding: var(--space-3xl) 0;
  }

  .philosophy__layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .philosophy__heading {
    font-size: var(--fs-2xl);
  }

  .about-cta__heading {
    font-size: var(--fs-2xl);
  }

  .about-cta .btn {
    display: block;
    margin: var(--space-sm) auto;
    max-width: 240px;
  }
}

@media (max-width: 480px) {
  .legacy__inner {
    grid-template-columns: 1fr;
  }

  .story__portrait::before {
    display: none;
  }
}
