/* ── About page styles ───────────────────────────────────── */

/* ── Hero ────────────────────────────────────────────────── */
.about-hero__content {
  max-width: 640px;
}

.about-hero__headline {
  /* Override the global hero headline max-width — this headline is short */
  max-width: 100%;
  margin-bottom: var(--space-5);
}

/* Gold accent rule beneath the headline */
.about-hero__rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin-bottom: var(--space-6);
}

.about-hero__subhead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-3xl));
  color: rgba(250,248,244,0.82);
  font-weight: 400;
  line-height: 1.35;
  max-width: 42ch;
  margin-bottom: 0;
}

/* ── Body section ────────────────────────────────────────── */
.about-body {
  background: var(--offwhite);
}

.about-body__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

/* ── Portrait placeholder ────────────────────────────────── */
.portrait-placeholder {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
}

/* Gold corner accent */
.portrait-placeholder::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 64px;
  height: 64px;
  background: var(--gold);
  opacity: 0.18;
  border-radius: var(--radius-sm);
  z-index: 0;
}

.portrait-placeholder__inner {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  background: var(--navy);
  border: 1px solid rgba(142,155,174,0.35);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-6);
  overflow: hidden;
}

/* When the real photo is added, it fills the box */
.portrait-placeholder__inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-placeholder__text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--text-sm);
  color: rgba(250,248,244,0.28);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}

/* ── Copy ────────────────────────────────────────────────── */
.about-body__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-p {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: var(--midgray);
  line-height: 1.75;
  max-width: 58ch;
  margin-bottom: var(--space-6);
}

.about-p:last-of-type {
  margin-bottom: 0;
}

.about-body__cta {
  margin-top: var(--space-10);
  padding-top: var(--space-10);
  border-top: 1px solid var(--lightgray);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (min-width: 768px) {
  .about-body__grid {
    grid-template-columns: 340px 1fr;
    align-items: start;
  }

  .portrait-placeholder {
    margin-inline: 0;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .about-body__grid {
    grid-template-columns: 380px 1fr;
  }
}
