/* ===================================
   MARKETING PHILOSOPHY SECTION
   =================================== */

.marketing-philosophy {
    padding: 100px 0;
    background: #FFFFFF;
}

.marketing-philosophy .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.marketing-philosophy .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #2C4251;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.marketing-philosophy .section-subtitle {
    font-size: 20px;
    color: #5A6C7A;
    font-style: italic;
    font-weight: 400;
}

/* Pull Quote */
.philosophy-pullquote {
    max-width: 900px;
    margin: 0 auto 48px;
    padding: 40px 60px;
    background: linear-gradient(135deg, #F8F6F4 0%, #FFFFFF 100%);
    border-left: 6px solid #E07856;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(224, 120, 86, 0.08);
}

.philosophy-pullquote p {
    font-size: 28px;
    line-height: 1.5;
    color: #2C4251;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    quotes: """ """ "'" "'";
}

.philosophy-pullquote p::before {
    content: open-quote;
    color: #E07856;
    font-size: 48px;
    line-height: 0;
    margin-right: 8px;
    vertical-align: -0.4em;
}

.philosophy-pullquote p::after {
    content: close-quote;
    color: #E07856;
    font-size: 48px;
    line-height: 0;
    margin-left: 8px;
    vertical-align: -0.4em;
}

/* Body Text Block */
.philosophy-body {
    max-width: 900px;
    margin: 0 auto 64px;
    padding: 0 20px;
}

.philosophy-body p {
    font-size: 18px;
    line-height: 1.7;
    color: #2C4251;
    margin-bottom: 24px;
}

.philosophy-body p:last-child {
    margin-bottom: 0;
}

/* Principle Cards Grid */
.philosophy-principles {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 0 20px;
}

.philosophy-principle-card {
    background: #FFFFFF;
    border: 2px solid #E8E4DF;
    border-radius: 12px;
    padding: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #E07856;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.philosophy-principle-card:hover {
    border-color: #E07856;
    box-shadow: 0 8px 24px rgba(224, 120, 86, 0.12);
    transform: translateY(-4px);
}

.philosophy-principle-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* Philosophy Card Header Row */
.philosophy-principle-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #EAE6E1;
}

.philosophy-principle-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #E07856 0%, #C66647 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
}

.philosophy-principle-icon i {
    font-size: 12px;
    color: #FFFFFF;
}

.philosophy-principle-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-navy, #2C4251);
    line-height: 1.3;
    margin-bottom: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.philosophy-principle-body {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #8A9BA5;
    margin: 8px 0 0 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .marketing-philosophy {
        padding: 64px 0;
    }
    
    .marketing-philosophy .section-title {
        font-size: 32px;
    }
    
    .marketing-philosophy .section-subtitle {
        font-size: 16px;
    }
    
    .philosophy-pullquote {
        padding: 32px 24px;
        margin-bottom: 40px;
    }
    
    .philosophy-pullquote p {
        font-size: 22px;
    }
    
    .philosophy-pullquote p::before,
    .philosophy-pullquote p::after {
        font-size: 36px;
    }
    
    .philosophy-body {
        margin-bottom: 48px;
    }
    
    .philosophy-body p {
        font-size: 16px;
    }
    
    .philosophy-principles {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .philosophy-principle-card {
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .marketing-philosophy {
        padding: 48px 0;
    }
    
    .marketing-philosophy .section-title {
        font-size: 28px;
    }
    
    .philosophy-pullquote {
        padding: 24px 20px;
    }
    
    .philosophy-pullquote p {
        font-size: 20px;
    }
}

/* ===================================
   IN PRACTICE SECTION
   =================================== */

/* Visual Divider */
.philosophy-divider {
    max-width: 1200px;
    margin: 80px auto 60px;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, #E8E4DF 20%, #E8E4DF 80%, transparent 100%);
    position: relative;
}

.philosophy-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #E07856;
    border-radius: 50%;
}

/* In Practice Section */
.philosophy-practice-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.philosophy-practice-label {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E07856;
    margin-bottom: 48px;
}

/* Mobile Responsiveness for new elements */
@media (max-width: 768px) {
    .philosophy-divider {
        margin: 60px auto 40px;
    }
    
    .philosophy-practice-label {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .philosophy-divider {
        margin: 48px auto 32px;
    }
    
    .philosophy-practice-label {
        margin-bottom: 24px;
        font-size: 11px;
    }
}
