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

/* Page Header */
.page-header {
    padding: 10rem 2rem 5rem;
    background: var(--bg-warm);
    color: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.12), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Crimson Text', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.page-title .highlight {
    color: var(--mint);
    font-style: italic;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== OUR CREED - Bold Left-Right Layout ========== */
.creed-section {
    padding: 8rem 2rem;
    background: var(--bg-warm);
}

.creed-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.creed-left {
    position: sticky;
    top: 120px;
}

.creed-title {
    font-family: 'Crimson Text', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
}

.creed-title .highlight {
    color: var(--mint);
    display: block;
    font-style: italic;
}

.creed-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--mint), var(--ocean));
    margin-top: 2rem;
}

.creed-right {
    padding-top: 1rem;
}

.creed-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 400;
}

.creed-text strong {
    color: var(--dark);
    font-weight: 600;
}

.creed-statement {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--mint);
    margin-top: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* ========== WHAT WE DO & DON'T - Combined Section ========== */
.approach-section {
    padding: 6rem 2rem 8rem;
    background: var(--bg-warm);
}

.approach-container {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.approach-column-title {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3rem;
    text-align: left;
}

.highlight-ocean {
    color: var(--ocean);
}

.approach-card-new {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 3px solid var(--mint);
}

.approach-card-new.dont-style {
    border-left: 3px solid #dc3545;
}

.approach-card-new:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.approach-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.approach-card-new h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.approach-card-new p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== THREE WAYS TO WORK - Horizontal Layout ========== */
.ways-section {
    padding: 6rem 2rem 8rem;
    background: var(--bg-warm);
    color: var(--dark);
}

.ways-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ways-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ways-title {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.ways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.way-item {
    padding: 2.5rem;
    border-right: 1px solid rgba(26, 26, 46, 0.08);
    transition: all 0.3s ease;
}

.way-item:last-child {
    border-right: none;
}

.way-item:hover {
    background: rgba(110, 218, 171, 0.05);
}

.way-item:nth-child(2):hover {
    background: rgba(74, 144, 217, 0.05);
}

.way-number {
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--mint);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.way-item h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.way-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.way-best-for {
    font-size: 0.8rem;
    color: var(--mint);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ========== FOUNDER SECTION - Redesigned ========== */
.founder-section {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-warm) 100%);
}

.founder-container {
    max-width: 900px;
    margin: 0 auto;
}

.founder-header {
    text-align: center;
    margin-bottom: 3rem;
}

.founder-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-title-large {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.founder-title-large .italic {
    font-style: italic;
    color: var(--mint);
}

.founder-bio-container {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    margin-bottom: 3rem;
}

.founder-bio {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.founder-bio:last-child {
    margin-bottom: 0;
}

.founder-bio:first-of-type::first-letter {
    font-family: 'Crimson Text', serif;
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--mint);
}

.founder-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 3px solid var(--mint);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.highlight-number {
    font-family: 'Crimson Text', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--mint);
    line-height: 1;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    line-height: 1.4;
}

.highlight-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-book {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-warm);
    border-radius: 1rem;
    color: var(--dark);
    text-align: center;
}

.founder-book-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 0.5rem;
}

.founder-book-text {
    font-size: 1rem;
    color: rgba(26, 26, 46, 0.7);
    line-height: 1.6;
}

/* ========== CTA ========== */
.cta-section {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--bg-warm);
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--mint);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: var(--mint-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .creed-container, .founder-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .creed-left, .founder-left {
        position: static;
    }
    .approach-grid, .ways-grid {
        grid-template-columns: 1fr;
    }
    .way-item {
        border-right: none;
        border-bottom: 1px solid rgba(26, 26, 46, 0.08);
    }
    .way-item:last-child {
        border-bottom: none;
    }
    .founder-highlights {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .page-header { padding: 10rem 1.5rem 4rem; }
    .creed-title { font-size: 2.5rem; }
    .founder-bio:first-of-type::first-letter {
        font-size: 2.5rem;
    }
}
