/* ========================================
   About Page Styles
   ======================================== */

/* === HERO === */
.about-hero {
    padding-top: 140px;
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--warm-cream) 0%, #f5f2ed 100%);
    text-align: center;
}

.about-hero h1 {
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--soft-charcoal);
}

/* === STORY SECTION === */
.story-section {
    background-color: var(--pure-white);
    padding: var(--spacing-xxl) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.story-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-md);
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--soft-charcoal);
    margin-bottom: var(--spacing-md);
}

.story-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image .illustration {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* === VALUES SECTION === */
.values-section {
    background-color: var(--warm-cream);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.values-section .section-title {
    margin-bottom: var(--spacing-xl);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.value-card {
    padding: var(--spacing-lg);
    background-color: var(--pure-white);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
}

.value-icon svg {
    filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.2));
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--luxury-black);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--soft-charcoal);
}

/* === GEMSTONES SECTION === */
.gemstones-section {
    background-color: var(--pure-white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.gemstones-section .section-title {
    margin-bottom: var(--spacing-sm);
}

.gemstones-section .section-subtitle {
    margin-bottom: var(--spacing-xl);
}

.gemstones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}

.gemstone-card {
    padding: var(--spacing-md);
    background-color: var(--warm-cream);
    transition: var(--transition-normal);
}

.gemstone-card:hover {
    transform: scale(1.05);
}

.gemstone-visual {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
}

.gemstone-visual svg {
    width: 100%;
    height: 100%;
}

.gemstone-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--luxury-black);
}

.gemstone-color {
    font-size: 0.9rem;
    color: var(--elegant-gold);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.gemstone-properties {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--soft-charcoal);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--luxury-black) 0%, var(--soft-charcoal) 100%);
    color: var(--pure-white);
    text-align: center;
    padding: var(--spacing-xxl) 0;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--pure-white);
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
    .about-hero {
        padding-top: 100px;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .gemstones-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: var(--spacing-md);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: 0 auto;
    }
}