/*
 * about.css — About page
 */

.about-hero {
    background: #fff;
    padding: 64px 0 48px;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-eyebrow {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.about-hero-title span {
    color: var(--color-primary);
}

.about-hero-desc {
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 28px;
}

.about-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-hero-media {
    background: #f3f4f4;
    border-radius: 16px;
    overflow: hidden;
    min-height: 280px;
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story {
    background: #f9f9f9;
    padding: 80px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-story-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #1a1c1c;
}

.about-story-copy h2 span {
    color: var(--color-primary);
}

.about-story-copy p {
    color: #3f4949;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-warranty {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 24px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.about-warranty-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(2, 97, 100, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-warranty strong {
    display: block;
    font-size: 0.9rem;
    color: #1a1c1c;
}

.about-warranty span {
    display: block;
    font-size: 0.75rem;
    color: #3f4949;
    letter-spacing: 0.04em;
}

.about-story-mosaic {
    display: flex;
    gap: 16px;
}

.about-mosaic-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-mosaic-col.offset {
    padding-top: 32px;
}

.about-mosaic-img {
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.about-mosaic-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
}

.about-mosaic-img.tall img {
    height: 220px;
}

.about-stats {
    background: #fff;
    padding: 48px 0;
    border-bottom: 1px solid var(--color-border);
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    text-align: center;
}

.about-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.about-stat span {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3f4949;
}

.about-collections {
    background: #f3f3f3;
    padding: 80px 0;
}

.about-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1c1c;
}

.about-collection-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.about-collection-img {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-collection-img img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.about-collection-body {
    flex: 1;
}

.about-collection-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1c1c;
}

.about-collection-card p {
    font-size: 0.8rem;
    color: #3f4949;
    margin-bottom: 0;
    line-height: 1.5;
}

.about-collection-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* =====================================================
   STANDARD OF EXCELLENCE (Figma Quality & Reliability)
   ===================================================== */
.about-excellence {
    background: #fff;
    padding: 88px 0;
}

.about-excellence-header {
    text-align: center;
    margin-bottom: 64px;
}

.about-excellence-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 600;
    color: #1a1c1c;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.about-excellence-rule {
    display: block;
    width: 96px;
    height: 4px;
    margin: 0 auto;
    background: var(--color-primary);
}

.about-excellence-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 72px;
}

.about-excellence-row:last-child {
    margin-bottom: 0;
}

.about-excellence-media {
    max-width: 448px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    background: #f3f3f3;
}

.about-excellence-media img {
    width: 100%;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.about-excellence-copy h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1c1c;
    margin: 0 0 16px;
}

.about-excellence-copy > p {
    font-size: 1.05rem;
    color: #3f4949;
    line-height: 1.7;
    margin: 0 0 20px;
}

.about-excellence-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-excellence-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    color: #1a1c1c;
    font-size: 1rem;
    line-height: 1.5;
}

.about-excellence-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.about-excellence-quote {
    background: #eee;
    border-radius: 16px;
    padding: 36px 32px 28px;
    margin: 8px 0 0;
    position: relative;
    overflow: hidden;
}

.about-excellence-quote::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    height: 4px;
    background: var(--color-primary);
}

.about-excellence-quote p {
    font-style: italic;
    color: #1a1c1c;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 16px;
}

.about-excellence-quote cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 0.875rem;
    color: #1a1c1c;
}

@media (min-width: 768px) {
    .about-excellence-row {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }

    .about-excellence-row--reverse .about-excellence-copy {
        order: 1;
    }

    .about-excellence-row--reverse .about-excellence-media {
        order: 2;
    }

    .about-excellence-media {
        margin: 0;
    }
}

.about-stores {
    padding: 80px 0 40px;
}

.about-stores-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-stores-header .hubs-title {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .about-hero-inner {
        grid-template-columns: 1fr 1fr;
    }

    .about-story-grid {
        grid-template-columns: 5fr 7fr;
    }

    .about-stats-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-mosaic-img img {
        height: 180px;
    }

    .about-mosaic-img.tall img {
        height: 256px;
    }
}
