/* ==========================================
   ECHO CRAFT CREATIVE STUDIO
   ABOUT PAGE
   Version 2.0
========================================== */


/* ==========================================
   PAGE FOUNDATION
========================================== */

.about-hero,
.about-story,
.beliefs,
.creative-focus,
.creative-philosophy,
.how-we-work,
.why-echo,
.about-cta {
    position: relative;
}

.about-story,
.beliefs,
.creative-focus,
.creative-philosophy,
.how-we-work,
.why-echo,
.about-cta {
    padding: 110px 0;
}

.about-story .container,
.beliefs .container,
.creative-focus .container,
.creative-philosophy .container,
.how-we-work .container,
.why-echo .container,
.about-cta .container {
    width: min(92%, 1200px);
    margin: 0 auto;
}


/* ==========================================
   ABOUT HERO
========================================== */

.about-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 145px 0 110px;
    overflow: hidden;

    background:
        linear-gradient(
            rgba(5, 5, 5, 0.72),
            rgba(5, 5, 5, 0.9)
        ),
        url("../images/backgrounds/project-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero::before {
    position: absolute;
    inset: 0;
    content: "";

    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.14),
            transparent 42%
        ),
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.92) 0%,
            rgba(5, 5, 5, 0.72) 48%,
            rgba(5, 5, 5, 0.4) 100%
        );
}

.about-hero::after {
    position: absolute;
    right: 5%;
    bottom: -180px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    content: "";

    box-shadow:
        0 0 0 65px rgba(212, 175, 55, 0.018),
        0 0 0 130px rgba(212, 175, 55, 0.012);
}

.about-hero .container {
    position: relative;
    z-index: 2;
    width: min(92%, 1400px);
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;

    color: #d8b36a;

    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-badge span {
    width: 42px;
    height: 2px;
    background: #d8b36a;
}

.about-hero h1 {
    max-width: 950px;
    margin: 0 0 32px;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 7vw, 6.6rem);
    font-weight: 600;
    line-height: 0.98;
}

.hero-lead {
    max-width: 900px;
    margin: 0 0 24px;

    color: #eeeeee;

    font-size: 1.24rem;
    line-height: 1.9;
}

.hero-sub {
    max-width: 860px;
    margin: 0 0 44px;

    color: #bfbfbf;

    font-size: 1.06rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
}


/* ==========================================
   SECTION HEADINGS
========================================== */

.section-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    margin-bottom: 18px;

    color: #d8b36a;

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.9rem, 5vw, 4.8rem);
    font-weight: 600;
    line-height: 1.06;
}


/* ==========================================
   STORY SECTION
========================================== */

.about-story {
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(212, 175, 55, 0.035),
            transparent 32%
        ),
        #070707;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
    gap: 48px;
    align-items: center;
}

.story-content p {
    margin: 0 0 28px;

    color: #d0d0d0;

    font-size: 1.06rem;
    line-height: 2;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.highlight-card {
    position: relative;
    overflow: hidden;
    padding: 50px 42px;

    border: 1px solid rgba(216, 179, 106, 0.18);
    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(216, 179, 106, 0.04),
            transparent 60%
        ),
        #1b1714;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.highlight-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, #d8b36a, #8f6823);
}

.highlight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 179, 106, 0.55);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
}

.highlight-icon {
    display: flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;

    border: 1px solid rgba(216, 179, 106, 0.22);
    border-radius: 50%;

    background: rgba(216, 179, 106, 0.08);

    color: #d8b36a;

    font-size: 2rem;
}

.highlight-card h3 {
    margin: 0 0 18px;

    color: #d8b36a;

    font-family: "Cormorant Garamond", serif;
    font-size: 2.25rem;
    font-weight: 600;
}

.highlight-card p {
    margin: 0;

    color: #d0d0d0;

    line-height: 1.9;
}


/* ==========================================
   BELIEFS
========================================== */

.beliefs {
    background:
        linear-gradient(
            rgba(10, 10, 10, 0.95),
            rgba(10, 10, 10, 0.95)
        ),
        url("../images/backgrounds/services-texture.png");

    background-size: cover;
    background-position: center;
}

.belief-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.belief-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    padding: 44px;

    border: 1px solid rgba(216, 179, 106, 0.18);
    border-radius: 22px;

    background:
        linear-gradient(
            150deg,
            rgba(216, 179, 106, 0.035),
            transparent 62%
        ),
        #1b1714;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.belief-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, #d8b36a, #b98b35);
}

.belief-card::after {
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 145px;
    height: 145px;
    border: 1px solid rgba(216, 179, 106, 0.08);
    border-radius: 50%;
    content: "";
}

.belief-card:hover {
    transform: translateY(-10px);
    border-color: rgba(216, 179, 106, 0.55);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.48);
}

.belief-number {
    margin-bottom: 22px;

    color: #d8b36a;

    font-family: "Cormorant Garamond", serif;
    font-size: 3.2rem;
    line-height: 1;
}

.belief-card h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;
    font-size: 2.15rem;
    font-weight: 600;
    line-height: 1.15;
}

.belief-card p {
    margin: 0;

    color: #d0d0d0;

    line-height: 1.9;
}


/* ==========================================
   CREATIVE FOCUS
========================================== */

.creative-focus {
    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(212, 175, 55, 0.05),
            transparent 28%
        ),
        #050505;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.focus-item {
    position: relative;
    min-height: 325px;
    overflow: hidden;
    padding: 38px 32px;

    border: 1px solid rgba(216, 179, 106, 0.16);
    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(216, 179, 106, 0.04),
            transparent 58%
        ),
        #181512;

    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.focus-item::after {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(216, 179, 106, 0.08);
    border-radius: 50%;
    content: "";
}

.focus-item:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 179, 106, 0.52);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42);
}

.focus-icon {
    display: flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;

    border: 1px solid rgba(216, 179, 106, 0.24);
    border-radius: 50%;

    background: rgba(216, 179, 106, 0.07);

    color: #d8b36a;

    font-size: 1.4rem;
}

.focus-item h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.15;
}

.focus-item p {
    margin: 0;

    color: #cecece;

    font-size: 0.98rem;
    line-height: 1.85;
}


/* ==========================================
   CREATIVE PHILOSOPHY
========================================== */

.creative-philosophy {
    background:
        linear-gradient(
            rgba(10, 10, 10, 0.95),
            rgba(10, 10, 10, 0.95)
        ),
        url("../images/backgrounds/services-texture.png");

    background-size: cover;
    background-position: center;
}

.philosophy-card {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    padding: 80px 70px;
    text-align: center;

    border: 1px solid rgba(216, 179, 106, 0.18);
    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(216, 179, 106, 0.04),
            transparent 60%
        ),
        #1b1714;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.philosophy-card::before {
    position: absolute;
    top: -120px;
    left: 50%;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(216, 179, 106, 0.08);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%);
}

.philosophy-card blockquote {
    position: relative;
    z-index: 2;
    margin: 32px 0;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.3;
}

.philosophy-card p {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;

    color: #d0d0d0;

    font-size: 1.06rem;
    line-height: 2;
}


/* ==========================================
   HOW WE WORK
========================================== */

.how-we-work {
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(212, 175, 55, 0.04),
            transparent 30%
        ),
        #070707;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.process-card {
    position: relative;
    min-height: 345px;
    overflow: hidden;
    padding: 38px 32px;

    border: 1px solid rgba(216, 179, 106, 0.18);
    border-radius: 22px;

    background:
        linear-gradient(
            150deg,
            rgba(216, 179, 106, 0.035),
            transparent 65%
        ),
        #1b1714;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.process-card:hover {
    transform: translateY(-9px);
    border-color: rgba(216, 179, 106, 0.52);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.48);
}

.process-number {
    display: flex;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;

    border: 1px solid rgba(216, 179, 106, 0.22);
    border-radius: 50%;

    background: rgba(216, 179, 106, 0.08);

    color: #d8b36a;

    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.process-card h3 {
    margin: 0 0 18px;

    color: #d8b36a;

    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.15;
}

.process-card p {
    margin: 0;

    color: #d0d0d0;

    line-height: 1.9;
}


/* ==========================================
   WHY ECHO CRAFT
========================================== */

.why-echo {
    background:
        linear-gradient(
            rgba(9, 9, 9, 0.96),
            rgba(9, 9, 9, 0.96)
        ),
        url("../images/backgrounds/contact-texture.png");

    background-size: cover;
    background-position: center;
}


/* ==========================================
   FINAL CTA
========================================== */

.about-cta {
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(212, 175, 55, 0.08),
            transparent 28%
        ),
        #080808;
}

.cta-panel {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    overflow: hidden;
    padding: 82px 70px;
    text-align: center;

    border: 1px solid rgba(216, 179, 106, 0.2);
    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(216, 179, 106, 0.05),
            transparent 60%
        ),
        #1b1714;

    box-shadow: 0 24px 65px rgba(0, 0, 0, 0.5);
}

.cta-panel::after {
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(216, 179, 106, 0.08);
    border-radius: 50%;
    content: "";

    box-shadow:
        0 0 0 55px rgba(216, 179, 106, 0.018),
        0 0 0 110px rgba(216, 179, 106, 0.012);
}

.cta-panel .section-tag,
.cta-panel h2,
.cta-panel p,
.cta-actions {
    position: relative;
    z-index: 2;
}

.cta-panel h2 {
    margin: 22px 0 26px;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 600;
    line-height: 1.02;
}

.cta-panel p {
    max-width: 760px;
    margin: 0 auto 20px;

    color: #d0d0d0;

    font-size: 1.06rem;
    line-height: 1.95;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 40px;
}

.cta-actions .btn {
    display: inline-flex;
    min-width: 210px;
    align-items: center;
    justify-content: center;
}


/* ==========================================
   ABOUT CAROUSEL BASE
========================================== */

.aboutCarouselSection {
    overflow: hidden;
}

.aboutCarouselSection .mobileCarouselShell {
    position: relative;
}

.aboutCarouselSection .mobileCarouselHint {
    display: none;
}


/* ==========================================
   RESPONSIVE — LARGE TABLETS
========================================== */

@media (max-width: 1200px) {

    .story-grid {
        grid-template-columns: 1fr;
    }

    .focus-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================
   RESPONSIVE — TABLETS
========================================== */

@media (max-width: 991px) {

    .about-hero {
        min-height: auto;
        padding: 150px 0 100px;
        text-align: center;
    }

    .about-hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.72),
                rgba(5, 5, 5, 0.9)
            );
    }

    .about-hero .container {
        max-width: 900px;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-lead,
    .hero-sub {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-story,
    .beliefs,
    .creative-focus,
    .creative-philosophy,
    .how-we-work,
    .why-echo,
    .about-cta {
        padding: 90px 0;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .belief-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-card {
        padding: 60px 38px;
    }

    .cta-panel {
        padding: 65px 38px;
    }

}


/* ==========================================
   RESPONSIVE — MOBILE CAROUSELS
========================================== */

@media (max-width: 768px) {

    .aboutCarouselSection .belief-grid,
    .aboutCarouselSection .focus-grid,
    .aboutCarouselSection .process-grid {
        display: flex;
        grid-template-columns: none;
        gap: 18px;

        overflow-x: auto;
        overflow-y: hidden;

        padding: 8px 42px 24px;
        margin: 0 -20px;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .aboutCarouselSection .belief-grid::-webkit-scrollbar,
    .aboutCarouselSection .focus-grid::-webkit-scrollbar,
    .aboutCarouselSection .process-grid::-webkit-scrollbar {
        display: none;
    }

    .aboutCarouselSection .belief-card,
    .aboutCarouselSection .focus-item,
    .aboutCarouselSection .process-card {
        flex: 0 0 86%;
        max-width: 420px;
        min-height: 360px;

        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .aboutCarouselSection .mobileCarouselHint {
        display: flex;
        justify-content: center;
        margin-top: 22px;
    }

    .story-grid {
        gap: 36px;
    }

}


/* ==========================================
   RESPONSIVE — PHONES
========================================== */

@media (max-width: 576px) {

    .about-hero {
        padding: 125px 0 78px;
    }

    .about-hero .container {
        width: 100%;
        padding: 0 22px;
    }

    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 0.17em;
    }

    .hero-badge span {
        width: 30px;
    }

    .about-hero h1 {
        font-size: 3.15rem;
    }

    .hero-lead {
        font-size: 1.04rem;
        line-height: 1.8;
    }

    .hero-sub {
        font-size: 0.96rem;
        line-height: 1.8;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .about-story,
    .beliefs,
    .creative-focus,
    .creative-philosophy,
    .how-we-work,
    .why-echo,
    .about-cta {
        padding: 72px 0;
    }

    .about-story .container,
    .beliefs .container,
    .creative-focus .container,
    .creative-philosophy .container,
    .how-we-work .container,
    .why-echo .container,
    .about-cta .container {
        width: 100%;
        padding: 0 20px;
    }

    .section-heading {
        margin-bottom: 46px;
    }

    .section-tag {
        font-size: 0.7rem;
        letter-spacing: 0.18em;
    }

    .section-heading h2 {
        font-size: 2.65rem;
    }

    .story-content p {
        font-size: 1rem;
        line-height: 1.9;
    }

    .highlight-card {
        padding: 36px 28px;
    }

    .belief-card,
    .focus-item,
    .process-card {
        padding: 36px 28px;
    }

    .belief-card h3,
    .focus-item h3,
    .process-card h3 {
        font-size: 2rem;
    }

    .philosophy-card {
        padding: 48px 26px;
    }

    .philosophy-card blockquote {
        font-size: 2rem;
    }

    .cta-panel {
        padding: 50px 26px;
    }

    .cta-panel h2 {
        font-size: 3rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .aboutCarouselSection .belief-grid,
    .aboutCarouselSection .focus-grid,
    .aboutCarouselSection .process-grid {
        gap: 15px;
        padding-right: 34px;
        padding-left: 34px;
    }

    .aboutCarouselSection .belief-card,
    .aboutCarouselSection .focus-item,
    .aboutCarouselSection .process-card {
        flex-basis: 88%;
    }

}