/* ─────────────────────────────────────────────────────────────────────────────
   GYC Marketing — About Page
   goldenyachtcharters.com/about
   ───────────────────────────────────────────────────────────────────────────── */

/* ── About Hero ─────────────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
  text-align: center;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #0d1f2d 0%, #12263a 45%, #0a1a27 100%);
  z-index: 0;
}

.about-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 30% 80%, rgba(194,161,77,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 70% 10%, rgba(79,138,139,0.07) 0%, transparent 60%);
  z-index: 1;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 26, 39, 0.45);
  z-index: 2;
}

.about-hero__content {
  position: relative;
  z-index: 3;
}

.about-hero__content .t-label { margin-bottom: 0.75rem; letter-spacing: 0.18em; }
.about-hero__content .gold-line { margin: 0 auto 1.5rem; }

.about-hero__h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.about-hero__h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.about-hero__sub {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Story Section ──────────────────────────────────────────────────────── */
.story-section__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Image column */
.story-section__img-col {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.story-section__img-wrap {
  position: relative;
}

.story-section__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.story-section__img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.05em;
}

/* Copy column */
.story-section__copy .t-label { margin-bottom: 0.75rem; }
.story-section__copy .gold-line-left { margin-bottom: 1.5rem; }
.story-section__copy .t-h2 { margin-bottom: 1.75rem; }

.story-section__body p {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--charcoal-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.story-section__body p:last-child { margin-bottom: 0; }

/* Story stats */
.story-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.story-stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.story-stat__lbl {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal-mid);
  font-weight: 500;
}

/* ── Section Intro (shared) ─────────────────────────────────────────────── */
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-intro .t-label { margin-bottom: 0.75rem; }
.section-intro .gold-line { margin: 0 auto 1.25rem; }
.section-intro .t-h2 { margin-bottom: 1rem; }
.section-intro__desc { color: var(--charcoal-mid); line-height: 1.7; }

/* ── Team Grid ──────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 5/6;
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease-out);
}

.team-card:hover .team-card__img { transform: scale(1.04); }

.team-card__body {
  padding: 1.25rem;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.team-card__role {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-card__bio {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--charcoal-mid);
  line-height: 1.65;
}

/* ── Values ─────────────────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.value-item__icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(194,161,77,0.09);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.value-item__title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
  line-height: 1.2;
}

.value-item__desc {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--charcoal-mid);
  line-height: 1.7;
}

/* ── About CTA ──────────────────────────────────────────────────────────── */
.about-cta {
  padding: 5rem 0;
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-cta__copy .t-label { margin-bottom: 0.75rem; }

.about-cta__h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.about-cta__sub {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.about-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .story-section__grid {
    grid-template-columns: 340px 1fr;
    gap: 3rem;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .about-hero { padding: 120px 0 70px; }

  .story-section__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-section__img-col {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }

  .story-section__img-accent {
    bottom: -1rem;
    right: -0.75rem;
    font-size: var(--text-xs);
    padding: 0.875rem 1.125rem;
  }

  .story-stats {
    gap: 1.25rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .about-cta__actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .story-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .values-grid { gap: 1.25rem; }
}
