/* ==========================================================================
   SUNLEATHER - About Page Stylesheet
   ========================================================================== */

/* About Hero Section with slow zoom and radial overlay */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.about-hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 35%;
    transform: scale(1);
    animation: slowZoom 25s infinite alternate ease-in-out;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(9, 9, 10, 0.9) 0%, rgba(9, 9, 10, 0.6) 50%, rgba(9, 9, 10, 0.95) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin-left: max(5vw, 24px);
    padding: 0 24px;
    margin-top: 60px; /* offset glassnav */
}

.about-hero-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-brass-primary);
    margin-bottom: 16px;
}

.about-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-hero-description {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--text-muted);
    max-width: 540px;
    font-weight: 300;
}

/* Our Story Section */
.about-story-section {
    background-color: var(--bg-obsidian);
    border-bottom: 1px solid var(--border-light);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.about-story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-paragraph {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.story-paragraph:last-of-type {
    margin-bottom: 0;
}

.about-story-image-wrap {
    position: relative;
    padding: 12px;
}

.about-story-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 2px;
    box-shadow: var(--shadow-premium);
}

.about-story-image-wrap .image-accent-border {
    position: absolute;
    top: 28px;
    left: 28px;
    right: -4px;
    bottom: -4px;
    border: 1px solid var(--color-brass-primary);
    z-index: 1;
    pointer-events: none;
    border-radius: 2px;
}

/* Pillars Section */
.about-pillars-section {
    background-color: var(--bg-charcoal);
    border-bottom: 1px solid var(--border-light);
}

.pillars-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px auto;
}

.pillars-intro h2 {
    margin-top: 8px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background-color: var(--bg-obsidian);
    border: 1px solid var(--border-light);
    padding: 48px 36px;
    border-radius: 2px;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.pillar-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-num {
    color: var(--color-brass-primary);
    transform: scale(1.05) translateX(4px);
}

.pillar-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Timeline/Process Section */
.about-process-section {
    background-color: var(--bg-obsidian);
    border-bottom: 1px solid var(--border-light);
}

.process-timeline {
    max-width: 850px;
    margin: 48px auto 0 auto;
    position: relative;
    padding-left: 48px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 30px;
    width: 1px;
    background-color: var(--border-light);
}

.process-step {
    position: relative;
    margin-bottom: 56px;
}

.process-step:last-of-type {
    margin-bottom: 0;
}

.process-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.step-badge {
    position: absolute;
    left: -48px;
    top: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-obsidian);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 5;
    transition: var(--transition-smooth);
}

.process-step:hover .step-badge {
    border-color: var(--color-brass-primary);
    color: var(--color-brass-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
    background-color: var(--bg-charcoal);
}

.process-step h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-left: 8px;
    transition: var(--transition-fast);
}

.process-step:hover h3 {
    color: var(--color-brass-primary);
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-left: 8px;
    max-width: 720px;
}

/* Craftsman Spotlight Section */
.about-craftsman-section {
    background-color: var(--bg-charcoal);
    border-bottom: 1px solid var(--border-light);
}

.about-craftsman-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.about-craftsman-content {
    display: flex;
    flex-direction: column;
}

.about-craftsman-content blockquote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-brass-primary);
    border-left: 2px solid var(--color-brass-primary);
    padding-left: 20px;
    margin: 28px 0 16px 0;
    line-height: 1.5;
}

.about-craftsman-content .signature {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
}

.about-craftsman-image-wrap {
    position: relative;
    padding: 12px;
}

.about-craftsman-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 2px;
    box-shadow: var(--shadow-premium);
}

.about-craftsman-image-wrap .image-accent-border {
    position: absolute;
    top: 28px;
    left: -4px;
    right: 28px;
    bottom: -4px;
    border: 1px solid var(--color-brass-primary);
    z-index: 1;
    pointer-events: none;
    border-radius: 2px;
}

/* Call to Action Section */
.about-cta-section {
    background-color: var(--bg-obsidian);
}

.about-cta-card {
    position: relative;
    overflow: hidden;
    padding: 80px 48px;
    text-align: center;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    box-shadow: var(--shadow-premium);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(9, 9, 10, 0.95) 0%, rgba(9, 9, 10, 0.75) 50%, rgba(9, 9, 10, 0.95) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 992px) {
    .about-story-grid,
    .about-craftsman-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-story-image-wrap,
    .about-craftsman-image-wrap {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pillar-card {
        padding: 36px 28px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 380px;
    }

    .about-hero-content {
        margin-left: 0;
        padding: 0 16px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-description {
        font-size: 0.95rem;
    }

    .process-timeline {
        padding-left: 36px;
    }

    .process-timeline::before {
        left: 14px;
    }

    .step-badge {
        left: -36px;
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .about-cta-card {
        padding: 60px 24px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}
