/* ============================================================
   about.css — Page-specific styles for about.html
   ============================================================ */

/* ── Page hero ───────────────────────────────────────────── */
.about-hero {
  padding-top: calc(68px + 64px);
  padding-bottom: 64px;
  background-color: var(--color-blush);
  border-bottom: 1px solid var(--color-blush-mid);
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 1.125rem;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* ── Artist story section ────────────────────────────────── */
.artist-story {
  background-color: var(--color-ivory);
}

.artist-story-inner {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .artist-story-inner {
    grid-template-columns: 5fr 7fr;
    gap: var(--gutter-desktop);
    align-items: center;
  }
}

/* Headshot */
.artist-headshot-wrap {
  position: relative;
}

.artist-headshot {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: var(--radius-lg);
}

/* Decorative rose accent behind headshot */
.artist-headshot-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  background-color: var(--color-blush-mid);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* Story copy */
.artist-story-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.artist-story-copy h2 {
  line-height: 1.15;
}

.artist-story-copy p {
  margin-bottom: 0;
}

/* Pull quote */
.artist-pull-quote {
  border-left: 3px solid var(--color-rose);
  padding-left: 20px;
  margin-block: 8px;
}

.artist-pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Philosophy section ──────────────────────────────────── */
.philosophy {
  background-color: var(--color-blush);
}

.philosophy-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.philosophy-inner h2 {
  margin-bottom: 20px;
}

.philosophy-inner p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.philosophy-pillars {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .philosophy-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  background-color: var(--color-white);
  border: 1px solid var(--color-blush-mid);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.pillar-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
  line-height: 1;
}

.pillar h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-charcoal);
}

.pillar p {
  font-size: var(--text-sm);
  color: var(--color-stone);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Credentials section ─────────────────────────────────── */
.credentials {
  background-color: var(--color-ivory);
}

.credentials-inner {
  display: grid;
  gap: 48px;
}

@media (min-width: 768px) {
  .credentials-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.credentials-col h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--color-charcoal);
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-sm);
  color: var(--color-stone);
  line-height: 1.6;
}

.credentials-list li::before {
  content: '✦';
  color: var(--color-rose);
  font-size: 0.625rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── About CTA ───────────────────────────────────────────── */
.about-cta {
  background-color: var(--color-rose);
  padding-block: var(--section-pad-mobile);
  text-align: center;
}

@media (min-width: 768px) {
  .about-cta {
    padding-block: var(--section-pad-desktop);
  }
}

.about-cta h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.about-cta h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.about-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 36px;
}
