/* =========================================================
   FM COLLECTIONS — ABOUT PAGE
   File: public/css/about.css
========================================================= */


/* =========================================================
   PAGE VARIABLES
========================================================= */

.about-page {
    --about-primary: #2e7d32;
    --about-primary-dark: #166534;
    --about-primary-deep: #0b5d1e;
    --about-primary-soft: #f0fdf4;

    --about-gold: #c9a227;
    --about-gold-dark: #a88417;

    --about-text: #0f172a;
    --about-text-soft: #334155;
    --about-muted: #64748b;

    --about-border: #dbe4ee;
    --about-border-soft: #e8edf3;

    --about-surface: #ffffff;
    --about-surface-soft: #f8fafc;
    --about-page-bg: #f4f7fb;

    width: 100%;
    min-height: 80vh;

    color: var(--about-text);
    background: var(--about-page-bg);
}


/* =========================================================
   GLOBAL BOX SIZING
========================================================= */

.about-page,
.about-page *,
.about-page *::before,
.about-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.about-container {
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   SHARED EYEBROW
========================================================= */

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 12px;

    color: var(--about-primary);

    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.about-eyebrow::before {
    content: "";

    width: 22px;
    height: 2px;

    border-radius: 999px;

    background: currentColor;
}

.about-eyebrow-light {
    color: #dcfce7;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;

    overflow: hidden;

    min-height: 560px;

    display: flex;
    align-items: center;

    padding: 90px 0;

    color: #ffffff;

    background:
        url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1800&q=85")
        center / cover no-repeat;
}

.about-hero::before,
.about-hero::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.about-hero::before {
    top: -100px;
    right: -80px;

    width: 340px;
    height: 340px;

    border: 55px solid rgba(255, 255, 255, 0.035);
}

.about-hero::after {
    left: -110px;
    bottom: -130px;

    width: 300px;
    height: 300px;

    background: rgba(255, 255, 255, 0.025);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(11, 93, 30, 0.91),
            rgba(22, 101, 52, 0.83)
        );
}

.about-hero-content {
    position: relative;
    z-index: 1;

    max-width: 900px;

    text-align: center;
}

.about-hero h1 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.about-hero p {
    max-width: 820px;
    margin: 0 auto;

    color: rgba(255, 255, 255, 0.9);

    font-size: 18px;
    line-height: 1.8;
}

.about-hero-actions,
.about-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 31px;
}


/* =========================================================
   BUTTONS
========================================================= */

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 48px;
    padding: 12px 22px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 900;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.about-button-gold {
    color: #ffffff;
    background: var(--about-gold);

    box-shadow:
        0 10px 24px rgba(201, 162, 39, 0.24);
}

.about-button-gold:hover {
    background: var(--about-gold-dark);
    transform: translateY(-2px);
}

.about-button-outline {
    border: 2px solid rgba(255, 255, 255, 0.88);

    color: #ffffff;
    background: transparent;
}

.about-button-outline:hover {
    color: var(--about-primary-deep);
    background: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   BREADCRUMB
========================================================= */

.about-breadcrumb {
    border-bottom: 1px solid var(--about-border-soft);

    background: #ffffff;
}

.about-breadcrumb .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 54px;

    color: var(--about-muted);

    font-size: 12px;
}

.about-breadcrumb a {
    color: var(--about-primary-dark);

    font-weight: 800;
    text-decoration: none;
}

.about-breadcrumb i {
    font-size: 9px;
}


/* =========================================================
   SHARED SECTION
========================================================= */

.about-section {
    padding: 84px 0;
}

.about-section-soft {
    background: #f7fbf8;
}

.about-section-header {
    max-width: 860px;
    margin: 0 auto 48px;

    text-align: center;
}

.about-section-header h2,
.about-trust-banner h2,
.about-promise h2,
.about-cta h2,
.about-thank-you h2 {
    margin: 0 0 16px;

    color: var(--about-text);

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.about-section-header p,
.about-trust-banner p,
.about-promise p,
.about-cta p,
.about-thank-you p {
    margin: 0;

    color: var(--about-muted);

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   SPLIT LAYOUT
========================================================= */

.about-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.about-split-reverse .about-section-content {
    order: 1;
}

.about-split-reverse .about-feature-image {
    order: 2;
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.about-feature-image {
    margin: 0;
}

.about-feature-image img {
    display: block;

    width: 100%;
    min-height: 460px;

    object-fit: cover;

    border-radius: 24px;

    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.13);
}


/* =========================================================
   SECTION CONTENT
========================================================= */

.about-section-content {
    min-width: 0;
}

.about-section-content h2 {
    margin: 0 0 22px;

    color: var(--about-text);

    font-size: clamp(31px, 4vw, 45px);
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.about-section-content p {
    margin: 0 0 18px;

    color: var(--about-muted);

    font-size: 15px;
    line-height: 1.9;
}

.about-large-subheading {
    margin: 0 0 18px;

    color: var(--about-primary-dark);

    font-size: 30px;
    line-height: 1.25;
    font-weight: 900;
}

.about-story-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin-bottom: 20px;

    border: 1px solid #cde6d1;
    border-radius: 16px;

    color: var(--about-primary-dark);
    background: var(--about-primary-soft);

    font-size: 18px;
    font-weight: 950;
}


/* =========================================================
   HIGHLIGHT CARD
========================================================= */

.about-highlight-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    align-items: flex-start;

    margin-top: 27px;
    padding: 22px;

    border: 1px solid var(--about-border-soft);
    border-left: 5px solid var(--about-gold);
    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 15px 36px rgba(15, 23, 42, 0.055);
}

.about-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 14px;

    color: var(--about-primary-dark);
    background: var(--about-primary-soft);

    font-size: 19px;
}

.about-highlight-card h3 {
    margin: 0 0 8px;

    color: var(--about-primary-dark);

    font-size: 18px;
    font-weight: 900;
}

.about-highlight-card p {
    margin: 0;

    font-size: 13px;
}


/* =========================================================
   VALUE GRID
========================================================= */

.about-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-value-card {
    padding: 30px;

    border: 1px solid var(--about-border-soft);
    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.055);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-value-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.09);
}

.about-value-icon,
.about-collection-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin-bottom: 20px;

    border: 1px solid #cde6d1;
    border-radius: 17px;

    color: var(--about-primary-dark);
    background: var(--about-primary-soft);

    font-size: 22px;
}

.about-value-card h3,
.about-collection-card h3,
.about-benefit-card h3,
.about-journey-card h3 {
    margin: 0 0 12px;

    color: var(--about-primary-dark);

    font-size: 19px;
    line-height: 1.35;
    font-weight: 900;
}

.about-value-card p,
.about-collection-card p,
.about-benefit-card p,
.about-journey-card p {
    margin: 0;

    color: var(--about-muted);

    font-size: 13px;
    line-height: 1.8;
}

.about-value-card ul {
    margin: 0;
    padding-left: 19px;

    color: var(--about-muted);

    font-size: 13px;
    line-height: 1.85;
}


/* =========================================================
   TRUST BANNER
========================================================= */

.about-trust-banner {
    padding: 72px 0;

    background:
        linear-gradient(
            135deg,
            #f0fdf4,
            #ffffff
        );

    text-align: center;
}

.about-trust-banner .about-container {
    max-width: 960px;
}


/* =========================================================
   COLLECTION GRID
========================================================= */

.about-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-collection-card {
    padding: 29px;

    border: 1px solid var(--about-border-soft);
    border-radius: 20px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 16px 38px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.about-collection-card:hover {
    transform: translateY(-6px);

    border-color: #c9ddcb;

    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.09);
}


/* =========================================================
   BENEFIT GRID
========================================================= */

.about-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.about-benefit-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;

    padding: 24px;

    border: 1px solid var(--about-border-soft);
    border-radius: 17px;

    background: #ffffff;

    box-shadow:
        0 14px 32px rgba(15, 23, 42, 0.045);
}

.about-benefit-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 13px;

    color: var(--about-primary-dark);
    background: var(--about-primary-soft);

    font-size: 18px;
}


/* =========================================================
   STATISTICS
========================================================= */

.about-statistics-section {
    padding-top: 35px;
    padding-bottom: 35px;
}

.about-statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.about-stat-card {
    padding: 34px 22px;

    border-radius: 20px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--about-primary-deep),
            var(--about-primary)
        );

    text-align: center;

    box-shadow:
        0 18px 42px rgba(22, 101, 52, 0.18);
}

.about-stat-card strong {
    display: block;

    margin-bottom: 8px;

    font-size: 40px;
    line-height: 1;
    font-weight: 950;
}

.about-stat-card span {
    color: rgba(255, 255, 255, 0.86);

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   PROMISE
========================================================= */

.about-promise {
    max-width: 980px;
    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   JOURNEY GRID
========================================================= */

.about-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.about-journey-card {
    padding: 26px;

    border: 1px solid var(--about-border-soft);
    border-radius: 18px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 15px 34px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-journey-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 22px 42px rgba(15, 23, 42, 0.08);
}

.about-journey-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;
    margin-bottom: 18px;

    border-radius: 50%;

    color: #ffffff;
    background: var(--about-primary-dark);

    font-size: 17px;
    font-weight: 950;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    position: relative;

    overflow: hidden;

    padding: 85px 0;

    color: #ffffff;

    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.11),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--about-primary-deep),
            var(--about-primary)
        );

    text-align: center;
}

.about-cta::after {
    content: "";

    position: absolute;
    right: -85px;
    bottom: -110px;

    width: 250px;
    height: 250px;

    border: 42px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.about-cta .about-container {
    position: relative;
    z-index: 1;

    max-width: 920px;
}

.about-cta h2 {
    color: #ffffff;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.87);
}


/* =========================================================
   THANK YOU
========================================================= */

.about-thank-you {
    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}

.about-thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 66px;
    height: 66px;
    margin-bottom: 20px;

    border: 1px solid #cde6d1;
    border-radius: 20px;

    color: var(--about-primary-dark);
    background: var(--about-primary-soft);

    font-size: 25px;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.about-page a:focus-visible {
    outline: 3px solid rgba(46, 125, 50, 0.18);
    outline-offset: 3px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1050px) {
    .about-value-grid,
    .about-collection-grid,
    .about-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-statistics-grid,
    .about-journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .about-split-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-split-reverse .about-section-content,
    .about-split-reverse .about-feature-image {
        order: initial;
    }

    .about-feature-image img {
        min-height: 380px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 680px) {
    .about-container {
        width: min(100% - 24px, 1220px);
    }

    .about-hero {
        min-height: 500px;
        padding: 70px 0;
    }

    .about-hero p {
        font-size: 15px;
    }

    .about-hero-actions,
    .about-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-button {
        width: 100%;
    }

    .about-breadcrumb .about-container {
        justify-content: flex-start;

        overflow-x: auto;
        white-space: nowrap;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-section-header {
        margin-bottom: 34px;
    }

    .about-feature-image img {
        min-height: 300px;

        border-radius: 18px;
    }

    .about-highlight-card {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 18px;
    }

    .about-highlight-icon {
        width: 44px;
        height: 44px;
    }

    .about-value-grid,
    .about-collection-grid,
    .about-benefit-grid,
    .about-statistics-grid,
    .about-journey-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card,
    .about-collection-card,
    .about-benefit-card,
    .about-journey-card {
        padding: 22px;
    }

    .about-statistics-section {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .about-cta {
        padding: 65px 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
    .about-hero h1 {
        font-size: 38px;
    }

    .about-section-content h2 {
        font-size: 31px;
    }

    .about-benefit-card {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .about-benefit-card > span {
        width: 42px;
        height: 42px;
    }

    .about-stat-card strong {
        font-size: 34px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .about-page *,
    .about-page *::before,
    .about-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   PRINT
========================================================= */

@media print {
    .about-value-card,
    .about-collection-card,
    .about-benefit-card,
    .about-stat-card,
    .about-journey-card,
    .about-highlight-card {
        box-shadow: none;
    }

    .about-hero,
    .about-cta {
        color: #000000;
        background: #ffffff;
    }

    .about-hero-overlay,
    .about-hero-actions,
    .about-cta-actions {
        display: none;
    }
}