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

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

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

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

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

/* Pull Quote - Updated Size */
.philosophy-pullquote {
    max-width: 900px;
    margin: 16px auto 16px;
    padding: 16px 24px;
    background: transparent;
    border-left: 4px solid var(--color-teal);
    border-radius: 0;
    box-shadow: none;
}

.philosophy-pullquote p {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.375rem;
    color: var(--color-navy);
    line-height: 1.5;
    margin: 0;
}

/* Remove quote marks for cleaner presentation */
.philosophy-pullquote p::before,
.philosophy-pullquote p::after {
    content: none;
}

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

.philosophy-body p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--color-navy-light);
    margin-bottom: 10px;
}

.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;
}

/* Top Border Colors Per Card */
.philosophy-card-1 {
    border-top: 3px solid #2C4251;
}

.philosophy-card-2 {
    border-top: 3px solid #E07856;
}

.philosophy-card-3 {
    border-top: 3px solid #4A9B8E;
}

.philosophy-card-4 {
    border-top: 3px solid #2C4251;
}

.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 - Updated */
.philosophy-principle-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

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

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

/* Philosophy Card Label - Updated */
.philosophy-principle-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: #2C4251;
}

.philosophy-card-2 .philosophy-principle-label {
    color: #E07856;
}

.philosophy-card-3 .philosophy-principle-label {
    color: #4A9B8E;
}

/* Card Divider - New */
.philosophy-card-divider {
    height: 1px;
    background: #EAE6E1;
    margin-bottom: 12px;
}

/* Card Title - New */
.philosophy-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 15px;
    color: var(--color-navy);
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 400;
}

/* Card Body - Updated */
.philosophy-card-body {
    font-size: 12px;
    line-height: 1.6;
    color: #8A9BA5;
    margin: 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: 16px 20px;
        margin-bottom: 24px;
    }
    
    .philosophy-pullquote p {
        /* Font size handled by clamp() */
    }
    
    .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: 14px 18px;
    }
}

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

/* Visual Divider */
.philosophy-divider {
    max-width: 1200px;
    margin: 28px auto 14px;
    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-family: 'DM Serif Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--color-navy);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 14px;
}

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

@media (max-width: 480px) {
    .philosophy-divider {
        margin: 28px auto 14px;
    }
    
    .philosophy-practice-label {
        margin-bottom: 14px;
        font-size: 20px;
    }
}
