* {
    box-sizing: border-box;
}

:root {
    --primary: #181818;
    --primary-hover: #2C2C2C;

    --background: #FAFAFA;
    --section-background: #F3F3F3;
    --card-background: #FFFFFF;

    --text: #1F1F1F;
    --text-muted: #666666;
    --text-light: #777777;

    --border: #E5E5E5;
    --border-dark: #D8D8D8;

    --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 18px 35px rgba(0, 0, 0, 0.10);
}

body {
    margin: 0;
    padding: 0;
    padding-top: 55px;
    background: var(--background);
    font-family: 'Poppins', sans-serif;
    color: var(--text);
}

.about-hero {
    text-align: center;
    padding: 40px 20px 60px;
    background: var(--background);
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--primary);
    margin: 0 0 10px;
}

.about-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.main-content {
    background: var(--section-background);
    padding: 60px;
}

.content-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.story-card,
.info-card,
.value-item {
    background: var(--card-background);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.story-card {
    padding: 40px;
    height: 100%;
}

.mini-label {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.story-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    color: var(--primary);
    margin: 0 0 18px;
}

.story-card p {
    margin: 0 0 16px;
    color: var(--text-muted);
    line-height: 1.75;
}

.story-card p:last-child {
    margin-bottom: 0;
}

.visual-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.about-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: block;
    filter: saturate(0.9) contrast(1.02);
}

.split-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
}

.info-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-dark);
    box-shadow: var(--shadow-md);
}

.icon-circle {
    width: 54px;
    height: 54px;
    background: var(--section-background);
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 27px;
    color: var(--primary);
}

.info-card .icon-circle {
    margin-bottom: 14px;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.4rem;
    margin: 0 0 8px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.values-section {
    padding: 60px;
    text-align: center;
    background: var(--background);
}

.values-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 2.6rem;
    margin: 0 0 10px;
}

.values-subtitle {
    margin: 0 0 45px;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    padding: 35px 28px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.value-item:hover {
    transform: translateY(-6px);
    border-color: var(--border-dark);
    box-shadow: var(--shadow-md);
}

.value-item .icon-circle {
    margin: 0 auto 16px;
}

.value-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.45rem;
    margin: 0 0 10px;
}

.value-item p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.cta-banner {
    padding: 60px;
    background: var(--section-background);
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--primary);
    color: #FFFFFF;
    padding: 60px 30px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 0 14px;
}

.cta-content p {
    margin: 0 0 30px;
    color: #DADADA;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-white,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.btn-white {
    background: #FFFFFF;
    color: var(--primary);
    border: 1px solid #FFFFFF;
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.85);
}

.btn-white:hover {
    transform: translateY(-3px);
    background: var(--section-background);
    border-color: var(--section-background);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}

.btn-outline:hover {
    transform: translateY(-3px);
    background: #FFFFFF;
    color: var(--primary);
    border-color: #FFFFFF;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.20);
}

@media (max-width: 900px) {
    .content-container {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 50px 22px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .main-content,
    .values-section,
    .cta-banner {
        padding: 55px 22px;
    }

    .story-card {
        padding: 30px;
    }

    .split-cards {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 45px 24px;
    }

    .btn-white,
    .btn-outline {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}