/* ===== ABOUT PAGE STYLES ===== */

:root { --max: 820px; }

body { background: var(--black); color: var(--white); }

/* Story hero */
.about-hero { padding: 64px 0 56px; border-bottom: 1px solid var(--black-border); }
.about-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.about-hero-eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--accent); }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: .95; letter-spacing: .02em; color: white; margin-bottom: 20px; }
.about-hero h1 span { color: var(--accent); }
.about-hero-lead { font-size: 1.05rem; color: rgba(255,255,255,.6); max-width: 560px; line-height: 1.7; }

/* Photo block */
.about-photo { padding: 56px 0; border-bottom: 1px solid var(--black-border); }
.about-photo-wrap { width: 100%; max-height: 480px; border-radius: 16px; overflow: hidden; background: var(--black-2); border: 1px solid var(--black-border); display: grid; place-items: center; }
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo-placeholder { padding: 80px 40px; text-align: center; }
.about-photo-placeholder-icon { font-size: 3rem; margin-bottom: 12px; opacity: .3; }
.about-photo-placeholder p { font-size: .85rem; color: rgba(255,255,255,.25); line-height: 1.6; }
.about-photo-caption { font-size: .78rem; color: rgba(255,255,255,.3); margin-top: 12px; text-align: center; letter-spacing: .04em; }

/* Story sections */
.about-section { padding: 56px 0; border-bottom: 1px solid var(--black-border); }
.about-section:last-of-type { border-bottom: none; }
.about-section-label { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.about-section-label::before { content: ''; display: block; width: 16px; height: 2px; background: var(--accent); }
.about-section h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: .02em; line-height: 1; color: white; margin-bottom: 20px; }
.about-section p { font-size: .97rem; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 16px; }
.about-section p:last-child { margin-bottom: 0; }
.about-section p strong { color: rgba(255,255,255,.85); font-weight: 600; }

/* Pull quote */
.about-quote { background: var(--black-2); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; padding: 24px 28px; margin: 32px 0; }
.about-quote p { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem); letter-spacing: .02em; color: white; line-height: 1.2; margin: 0; }

/* CTA block */
.about-cta { padding: 56px 0; }
.about-cta-card { background: var(--black-2); border: 1px solid var(--black-border); border-radius: 16px; padding: 40px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.about-cta-text h3 { font-family: var(--font-display); font-size: 2rem; letter-spacing: .03em; color: white; margin-bottom: 6px; }
.about-cta-text p { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.about-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.about-btn { padding: 12px 22px; border-radius: 8px; font-weight: 700; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; transition: opacity .15s; white-space: nowrap; }
.about-btn-primary { background: var(--accent); color: white; }
.about-btn-primary:hover { opacity: .88; }
.about-btn-secondary { background: rgba(255,255,255,.07); color: rgba(255,255,255,.7); border: 1px solid var(--black-border); }
.about-btn-secondary:hover { background: rgba(255,255,255,.12); color: white; }

@media(max-width:600px) {
  .about-cta-card { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .about-photo-placeholder { padding: 48px 24px; }
}
