/* --- ABOUT HERO --- */
.about-hero {
    height: 50vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(15,15,15,1)), url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
    background-size: cover; background-position: center; padding: 0 20px;
}
.about-hero h1 { font-family: var(--font-serif); font-size: 3.5rem; margin-bottom: 15px; color: var(--accent-gold); }
.about-hero p { font-size: 1.1rem; max-width: 600px; color: #ddd; }

/* Light-mode override: switch the hero scrim to cream and darken the subhead. */
[data-theme="light"] .about-hero {
    background:
        linear-gradient(rgba(250, 248, 242, 0.5), rgba(250, 248, 242, 0.92)),
        url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
    background-size: cover; background-position: center;
}
[data-theme="light"] .about-hero p { color: var(--text-muted); }

/* Shared layout primitives (.content-section, .split-layout, .gold-line, p.lead, h2)
   now live in theme.css. Page-specific rules only below. */

/* --- VALUES GRID --- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.value-card { background: var(--surface-sunken); padding: 40px; border: 1px solid var(--border-muted); transition: var(--transition); }
.value-card:hover { border-color: var(--accent-gold); transform: translateY(-5px); }
.value-icon { font-size: 2rem; color: var(--accent-gold); margin-bottom: 20px; }
.value-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 15px; }

/* Stats bar primitives live in theme.css. */

/* --- SHARED CENTERED SECTION HEADING (process + timeline) --- */
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head .gold-line { margin: 0 auto 25px; }

/* Reversed split so consecutive .split-layout blocks alternate sides. */
.split-layout.reverse { flex-direction: row-reverse; }

/* --- HOW WE VERIFY (process steps) --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px; }
.process-step { padding: 35px 30px; background: var(--surface-sunken); border: 1px solid var(--border-muted); border-top: 3px solid var(--accent-gold); transition: var(--transition); }
.process-step:hover { transform: translateY(-5px); border-color: var(--accent-gold); }
.process-num { font-family: var(--font-serif); font-size: 2.5rem; color: var(--accent-gold); display: block; margin-bottom: 12px; line-height: 1; }
.process-step h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 12px; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* --- OUR JOURNEY (timeline) --- */
.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--border-muted); }
.timeline-item { position: relative; padding: 0 0 45px 50px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: 0; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--bg); border: 3px solid var(--accent-gold); box-sizing: border-box; }
.timeline-year { display: block; font-family: var(--font-serif); font-size: 1.6rem; color: var(--accent-gold); margin-bottom: 6px; }
.timeline-item h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 8px; }
.timeline-item p { color: var(--text-muted); line-height: 1.6; }

/* --- CLOSING CTA --- */
.about-cta {
    padding: 90px 5%; text-align: center;
    background:
        linear-gradient(rgba(0,0,0,0.85), rgba(15,15,15,0.95)),
        url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
    background-size: cover; background-position: center;
}
.about-cta-inner { max-width: 600px; margin: 0 auto; }
.about-cta h2 { font-family: var(--font-serif); font-size: 2.6rem; color: var(--accent-gold); margin-bottom: 18px; }
.about-cta p { color: #ddd; margin-bottom: 30px; line-height: 1.7; }
.about-cta .btn-primary { display: inline-block; }
[data-theme="light"] .about-cta {
    background:
        linear-gradient(rgba(250,248,242,0.6), rgba(250,248,242,0.93)),
        url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
    background-size: cover; background-position: center;
}
[data-theme="light"] .about-cta p { color: var(--text-muted); }

/* --- RESPONSIVE OVERRIDES --- */
@media (max-width: 768px) {
    .about-hero h1 { font-size: 2.5rem; }
    /* .split-layout.reverse outweighs theme.css's column rule by specificity — restate it here. */
    .split-layout.reverse { flex-direction: column; }
    .section-head { margin-bottom: 40px; }
    .about-cta { padding: 70px 5%; }
    .about-cta h2 { font-size: 2rem; }
}
