/* Brand Essence Section */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #C4A484;
    --neutral-color: #f4f4f4;
    --text-color: #333;
}

.brand-essence-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--neutral-color);
    background-image: url('../../image/bg/tall-responsive.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* .brand-essence-section::before {
    background-color: rgba(0, 0, 0, 0.6);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} */

.essence-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.essence-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #fff;
}

.essence-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.essence-story,
.essence-philosophy {
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.essence-strengths {
    padding: 32px;
    border-radius: 8px;
    background-color: var(--neutral-color);
}

.essence-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 8px;
}

.essence-story p,
.essence-philosophy p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 16px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.strength-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.strength-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.strength-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.strength-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 16px 16px 8px;
    color: var(--primary-color);
}

.strength-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding: 0 16px 16px;
}

@media (min-width: 768px) {
    /* .essence-strengths,
    .strength-item {
        display: none !important;
    } */
    /* .brand-essence-section {
        background-image: url('../../image/bg/tall-responsive.png');
    } */
}