/*==================================================
  ECHO CRAFT SHOWCASE ENGINE
  Version 2.0
==================================================*/


/*==================================================
  PAGE FOUNDATION
==================================================*/

.showcasePage {
    margin-left: 280px;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(212, 175, 55, 0.05),
            transparent 30%
        ),
        #050505;
}

.showcasePage *,
.showcasePage *::before,
.showcasePage *::after {
    box-sizing: border-box;
}

.showcasePage a {
    text-decoration: none;
}

.showcaseSection {
    position: relative;
    padding: 100px 0;
}

.showcaseSection.altSection {
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.015),
            rgba(212, 175, 55, 0.025)
        ),
        #090807;
}

.showcaseSection .container,
.contactSection .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}


/*==================================================
  SECTION TITLES
==================================================*/

.sectionTitle {
    max-width: 900px;
    margin: 0 auto 58px;
    text-align: left;
}

.sectionTitle > span {
    display: block;
    margin-bottom: 16px;
    color: #d4af37;
    font-family: "Inter", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.sectionTitle h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.05;
}

.sectionTitle p {
    max-width: 780px;
    margin: 0;
    color: #cfcfcf;
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
}


/*==================================================
  SHOWCASE HERO
==================================================*/

.showcaseHero {
    width: 100%;
    margin: 0;
    padding: 40px 40px 100px;
}

.showcaseHeroImage {
    position: relative;
    width: 100%;
    margin: 0 0 75px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 28px;
    background: #0a0a0a;
    box-shadow:
        0 45px 120px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.02);
}

.showcaseHeroImage::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, 0.35)
        );
}

.showcaseHeroImage img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    transition: transform 1.1s ease;
}

.showcaseHeroImage:hover img {
    transform: scale(1.015);
}

.showcaseHeroContent {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.showcaseBreadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 11px;
    margin-bottom: 24px;
    color: #8f8f8f;
    font-family: "Inter", sans-serif;
    font-size: 0.84rem;
}

.showcaseBreadcrumbs a {
    color: #a9a9a9;
    transition: color 0.25s ease;
}

.showcaseBreadcrumbs a:hover {
    color: #d4af37;
}

.showcaseBreadcrumbs span {
    margin: 0;
}

.showcaseBadge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding: 11px 22px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: #d4af37;
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.07em;
}

.showcaseHero h1 {
    margin: 0 0 26px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    font-weight: 600;
    line-height: 0.98;
}

.showcaseHeroLead {
    max-width: 780px;
    margin: 0 auto 42px;
    color: #d0d0d0;
    font-family: "Inter", sans-serif;
    font-size: 1.16rem;
    line-height: 1.85;
}

.showcaseHeroActions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}


/* PRIMARY — WATCH COMMERCIAL */

.showcaseHeroActions a:first-child {
    display: inline-flex;
    min-width: 210px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 17px 30px;

    border: 1px solid #d4af37;
    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #dfb93f,
            #bd9027
        );

    color: #0a0a0a;

    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.32),
        0 0 24px rgba(212, 175, 55, 0.12);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.showcaseHeroActions a:first-child:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #eccb66,
            #c99a31
        );

    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.42),
        0 0 32px rgba(212, 175, 55, 0.24);
}


/* SECONDARY — BACK TO PORTFOLIO */

.showcaseHeroActions a:last-child {
    display: inline-flex;
    min-width: 210px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 17px 30px;

    border: 1px solid rgba(212, 175, 55, 0.58);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.055);

    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 12px 28px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.showcaseHeroActions a:last-child:hover {
    transform: translateY(-4px);

    border-color: #d4af37;

    background: rgba(212, 175, 55, 0.12);

    color: #d4af37;

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.36),
        0 0 26px rgba(212, 175, 55, 0.1);
}

/*==================================================
  FEATURED COMMERCIAL
==================================================*/

.featuredCommercial {
    width: 100%;
    max-width: 1080px;
    margin: 55px auto 0;
}

.videoPlayer {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 26px;
    background: #080808;
    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.55),
        0 0 45px rgba(212, 175, 55, 0.04);
}

.videoPoster {
    display: block;
    width: 100%;
    min-height: 400px;
    max-height: 720px;
    object-fit: cover;
    border-radius: 26px;
}

.playCommercial {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 24px;
    border: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.52)
        );
    color: #ffffff;
    cursor: pointer;
    transition: background 0.35s ease;
}

.playCommercial:hover {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.35)
        );
}

.playCircle {
    display: flex;
    width: 108px;
    height: 108px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: #d4af37;
    color: #080808;
    font-size: 2.25rem;
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.45),
        0 0 35px rgba(212, 175, 55, 0.3);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.playCommercial:hover .playCircle {
    transform: scale(1.08);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.5),
        0 0 48px rgba(212, 175, 55, 0.45);
}

.playCommercial span {
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.featuredCommercial iframe {
    display: block;
    width: min(100%, 430px);
    height: 760px;
    margin: 0 auto;

    border: none;
    border-radius: 24px;
    background: #000000;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(212, 175, 55, 0.08);
}

@media (max-width: 760px) {

    .featuredCommercial iframe {
        width: min(100%, 430px);
        height: 650px;
    }

}

.videoLoading {
    display: flex;
    min-height: 500px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: #d4af37;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.videoLoading i {
    font-size: 2rem;
}


/*==================================================
  CHALLENGE AND STRATEGY
==================================================*/

.twoColumnGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    align-items: stretch;
}

.contentCard {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            transparent 55%
        ),
        #1b1815;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.contentCard::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 2px;
    content: "";
    background: #d4af37;
}

.contentCard:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.35);
}

.contentCard h2 {
    margin: 0 0 22px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 600;
}

.contentCard p {
    margin: 0;
    color: #d0d0d0;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.9;
}


/*==================================================
  PROJECT SNAPSHOT
==================================================*/

.snapshotGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.snapshotCard {
    position: relative;
    min-height: 190px;
    padding: 32px 28px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 21px;
    background: #1d1916;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.snapshotCard::after {
    position: absolute;
    right: -35px;
    bottom: -35px;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 50%;
    content: "";
}

.snapshotCard:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
}

.snapshotCard h3 {
    margin: 0 0 16px;
    color: #d4af37;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    font-weight: 600;
}

.snapshotCard p {
    margin: 0;
    color: #d6d6d6;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
}


/*==================================================
  SERVICES GRID
==================================================*/

.servicesGrid,
#servicesGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
}

.serviceCard,
#servicesGrid .serviceCard {
    position: relative;
    width: 100%;
    min-height: 220px;
    padding: 38px 32px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 22px;
    background:
        linear-gradient(
            150deg,
            rgba(212, 175, 55, 0.025),
            transparent 60%
        ),
        #211c18;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.serviceCard:hover {
    transform: translateY(-9px);
    border-color: rgba(212, 175, 55, 0.48);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.serviceIcon {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.07);
}

.serviceIcon i {
    color: #d4af37;
    font-size: 1.3rem;
}

.serviceCard h3 {
    margin: 0;
    color: #d4af37;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.25;
}


/*==================================================
  PROJECT NAVIGATION
==================================================*/

.projectNavigationSection {
    padding: 70px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.projectNavigation {
    width: 100%;
}

.projectNavigationInner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px minmax(0, 1fr);
    align-items: stretch;
    gap: 22px;
}

.projectNavLink,
.projectNavPortfolio {
    position: relative;
    display: flex;
    min-height: 145px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.035),
            transparent 62%
        ),
        #171411;
    color: #ffffff;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.projectNavLink {
    padding: 30px 34px;
}

.projectNavPrevious {
    align-items: flex-start;
    text-align: left;
}

.projectNavNext {
    align-items: flex-end;
    text-align: right;
}

.projectNavDirection {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #d4af37;
    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.projectNavLink strong {
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    font-weight: 600;
    line-height: 1.1;
}

.projectNavLink:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.08),
            transparent 65%
        ),
        #1d1915;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.projectNavPrevious:hover .projectNavDirection i {
    transform: translateX(-5px);
}

.projectNavNext:hover .projectNavDirection i {
    transform: translateX(5px);
}

.projectNavDirection i {
    transition: transform 0.3s ease;
}

.projectNavPortfolio {
    align-items: center;
    padding: 28px 24px;
    text-align: center;
}

.projectNavPortfolio::before {
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 14px;
    content: "";
    pointer-events: none;
}

.projectNavPortfolio i {
    margin-bottom: 16px;
    color: #d4af37;
    font-size: 1.5rem;
}

.projectNavPortfolio span {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.projectNavPortfolio:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    background: #211b15;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.projectNavigationLoading {
    display: flex;
    min-height: 140px;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-family: "Inter", sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/*==================================================
  EXPLORE MORE PROJECTS
==================================================*/

.exploreProjects {
    overflow: hidden;
}

.exploreProjects .sectionTitle {
    margin-bottom: 52px;
}

.exploreProjectsGrid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
}

.exploreProjectCard {
    display: block;
    min-width: 0;
    color: #ffffff;
    border-radius: 22px;
    outline: none;
}

.exploreProjectCardInner {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 22px;
    background: #151311;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.exploreProjectCard:hover .exploreProjectCardInner,
.exploreProjectCard:focus-visible .exploreProjectCardInner {
    transform: translateY(-9px);
    border-color: rgba(212, 175, 55, 0.52);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(212, 175, 55, 0.06);
}

.exploreProjectImage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #090909;
}

.exploreProjectImage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #090909;
    transition:
        transform 0.65s ease,
        filter 0.65s ease;
}

.exploreProjectImage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.65s ease,
        filter 0.65s ease;
}

.exploreProjectOverlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    opacity: 0;
    background:
        linear-gradient(
            180deg,
            transparent 38%,
            rgba(0, 0, 0, 0.88)
        );
    transition: opacity 0.4s ease;
}

.exploreProjectButton {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 17px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 999px;
    background: rgba(7, 7, 7, 0.88);
    color: #d4af37;
    font-family: "Inter", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateY(12px);
    transition: transform 0.4s ease;
}

.exploreProjectCard:hover .exploreProjectImage img {
    transform: scale(1.055);
    filter: brightness(0.8);
}

.exploreProjectCard:hover .exploreProjectOverlay {
    opacity: 1;
}

.exploreProjectCard:hover .exploreProjectButton {
    transform: translateY(0);
}

.exploreProjectContent {
    min-height: 150px;
    padding: 27px 26px 30px;
}

.exploreProjectCategory {
    display: block;
    margin-bottom: 12px;
    color: #d4af37;
    font-family: "Inter", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.exploreProjectContent h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.08;
}


/*==================================================
  LUXURY CTA
==================================================*/

.caseStudyCta {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    background:
        linear-gradient(
            110deg,
            rgba(0, 0, 0, 0.92),
            rgba(10, 8, 6, 0.78)
        ),
        radial-gradient(
            circle at 70% 45%,
            rgba(212, 175, 55, 0.12),
            transparent 34%
        ),
        #080706;
}

.caseStudyCta::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.16;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
}

.caseStudyCta::after {
    position: absolute;
    top: 50%;
    right: 7%;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
    pointer-events: none;
    box-shadow:
        0 0 0 55px rgba(212, 175, 55, 0.018),
        0 0 0 110px rgba(212, 175, 55, 0.012);
}

.caseStudyCtaContent {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.caseStudyCtaEyebrow {
    display: block;
    margin-bottom: 20px;
    color: #d4af37;
    font-family: "Inter", sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.caseStudyCta h2 {
    max-width: 760px;
    margin: 0 0 28px;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 0.98;
}

.caseStudyCta p {
    max-width: 700px;
    margin: 0 0 38px;
    color: #d2d2d2;
    font-family: "Inter", sans-serif;
    font-size: 1.07rem;
    line-height: 1.9;
}

.caseStudyCta .primaryButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 210px;
    padding: 17px 28px;
    border: 1px solid #d4af37;
    border-radius: 999px;
    background: #d4af37;
    color: #0a0a0a;
    font-family: "Inter", sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(212, 175, 55, 0.16);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.caseStudyCta .primaryButton:hover {
    transform: translateY(-4px);
    background: #e3c35a;
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.42),
        0 0 36px rgba(212, 175, 55, 0.28);
}

.caseStudyCta .primaryButton i {
    transition: transform 0.3s ease;
}

.caseStudyCta .primaryButton:hover i {
    transform: translateX(5px);
}

/*==================================================
  RESPONSIVE — LARGE TABLETS
==================================================*/

@media (max-width: 1200px) {

    .snapshotGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .servicesGrid,
    #servicesGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projectNavigationInner {
        grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr);
    }

}


/*==================================================
  RESPONSIVE — TABLETS
==================================================*/

@media (max-width: 991px) {

    .showcasePage {
        margin-left: 0;
    }

    .showcaseHero {
        padding: 115px 24px 80px;
    }

    .showcaseHeroImage {
        margin-bottom: 60px;
        border-radius: 22px;
    }

    .showcaseHeroImage img {
        border-radius: 22px;
    }

    .showcaseSection {
        padding: 80px 0;
    }

    .showcaseSection .container,
    .contactSection .container {
        padding: 0 28px;
    }

    .twoColumnGrid {
        grid-template-columns: 1fr;
    }

    .projectNavigationInner {
        grid-template-columns: 1fr 180px 1fr;
        gap: 15px;
    }

    .projectNavLink {
        padding: 26px 22px;
    }

    .exploreProjectsGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .caseStudyCta {
        padding: 100px 0;
    }

}


/*==================================================
  RESPONSIVE — SMALL TABLETS
==================================================*/

@media (max-width: 760px) {

    .showcaseHeroActions {
        flex-direction: column;
        align-items: stretch;
    }

    .showcaseHeroActions a {
        justify-content: center;
        text-align: center;
    }

    .snapshotGrid {
        grid-template-columns: 1fr;
    }

    .servicesGrid,
    #servicesGrid {
        grid-template-columns: 1fr;
    }

    .projectNavigationInner {
        grid-template-columns: 1fr;
    }

    .projectNavLink,
    .projectNavPortfolio {
        min-height: 125px;
    }

    .projectNavNext {
        align-items: flex-start;
        text-align: left;
    }

    .projectNavNext .projectNavDirection {
        flex-direction: row-reverse;
    }

    .projectNavPortfolio {
        order: 3;
        min-height: 100px;
    }

    .exploreProjectsGrid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

}


/*==================================================
  RESPONSIVE — PHONES
==================================================*/

@media (max-width: 576px) {

    .showcaseHero {
        padding: 100px 16px 65px;
    }

    .showcaseHeroImage {
        margin-bottom: 45px;
        border-radius: 18px;
    }

    .showcaseHeroImage img {
        border-radius: 18px;
    }

    .showcaseHero h1 {
        font-size: 3rem;
    }

    .showcaseHeroLead {
        font-size: 1rem;
    }

    .showcaseBadge {
        padding: 9px 16px;
        font-size: 0.76rem;
    }

    .showcaseSection {
        padding: 65px 0;
    }

    .showcaseSection .container,
    .contactSection .container {
        padding: 0 18px;
    }

    .sectionTitle {
        margin-bottom: 42px;
    }

    .sectionTitle h2 {
        font-size: 2.55rem;
    }

    .sectionTitle p {
        font-size: 0.96rem;
        line-height: 1.8;
    }

    .videoPoster {
        min-height: 280px;
    }

    .playCircle {
        width: 78px;
        height: 78px;
        font-size: 1.7rem;
    }

    .playCommercial span {
        font-size: 0.7rem;
    }

    .contentCard {
        padding: 34px 26px;
    }

    .contentCard h2 {
        font-size: 2.1rem;
    }

    .snapshotCard {
        min-height: auto;
    }

    .serviceCard,
    #servicesGrid .serviceCard {
        min-height: 190px;
        padding: 32px 26px;
    }

    .projectNavigationSection {
        padding: 55px 0;
    }

    .projectNavLink {
        padding: 25px 24px;
    }

    .projectNavLink strong {
        font-size: 1.8rem;
    }

    .exploreProjectContent {
        min-height: auto;
    }

    .caseStudyCta {
        padding: 85px 0;
    }

    .caseStudyCta h2 {
        font-size: 3.2rem;
    }

    .caseStudyCta::after {
        right: -190px;
    }

}

/*==================================================
  SHOWCASE HERO ACTIONS — MOBILE
==================================================*/

@media (max-width: 576px) {

    .showcaseHeroActions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .showcaseHeroActions a:first-child,
    .showcaseHeroActions a:last-child {
        width: 100%;
        min-width: 0;
        justify-content: center;
        padding: 17px 22px;
        text-align: center;
    }

}
/*==================================================
  CONNECTED PROJECT STORY EXPERIENCE
==================================================*/

.projectStoryExperience {
    padding: 105px 0;

    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(212, 175, 55, 0.055),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #070707,
            #0b0908
        );
}

.projectStoryHeading {
    max-width: 900px;
    margin: 0 0 52px;
}

.projectStoryGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;

    margin-bottom: 30px;
}

.projectStoryGrid .contentCard {
    min-height: 310px;
    padding: 46px;

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.045),
            transparent 62%
        ),
        #1b1815;
}

.storyCardNumber {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border: 1px solid rgba(212, 175, 55, 0.26);
    border-radius: 50%;

    background: rgba(212, 175, 55, 0.07);

    color: #d4af37;

    font-family: "Inter", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}


/*==================================================
  PROJECT OUTCOME PANEL
==================================================*/

.projectOutcomePanel {
    position: relative;

    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 90px;
    gap: 34px;
    align-items: center;

    overflow: hidden;

    padding: 48px;

    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 26px;

    background:
        linear-gradient(
            110deg,
            rgba(212, 175, 55, 0.1),
            rgba(212, 175, 55, 0.025) 45%,
            transparent 72%
        ),
        #17130f;

    box-shadow:
        0 26px 65px rgba(0, 0, 0, 0.38),
        0 0 32px rgba(212, 175, 55, 0.05);
}

.projectOutcomePanel::before {
    position: absolute;
    top: 0;
    left: 0;

    width: 42%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d4af37,
            transparent
        );

    content: "";
}

.projectOutcomeLabel {
    display: flex;
    flex-direction: column;
    gap: 12px;

    color: #d4af37;

    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.projectOutcomeLabel span {
    color: rgba(212, 175, 55, 0.38);

    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 0.8;
}

.projectOutcomeContent h2 {
    margin: 0 0 16px;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1;
}

.projectOutcomeContent p {
    max-width: 720px;
    margin: 0;

    color: #d0d0d0;

    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.9;
}

.projectOutcomeMark {
    display: flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50%;

    background: rgba(212, 175, 55, 0.08);

    color: #d4af37;

    font-size: 1.5rem;
}


/*==================================================
  CONNECTED STORY — TABLET
==================================================*/

@media (max-width: 900px) {

    .projectStoryGrid {
        grid-template-columns: 1fr;
    }

    .projectOutcomePanel {
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .projectOutcomeMark {
        display: none;
    }

}


/*==================================================
  CONNECTED STORY — MOBILE
==================================================*/

@media (max-width: 576px) {

    .projectStoryExperience {
        padding: 72px 0;
    }

    .projectStoryHeading {
        margin-bottom: 38px;
    }

    .projectStoryGrid {
        gap: 18px;
        margin-bottom: 20px;
    }

    .projectStoryGrid .contentCard {
        min-height: 0;
        padding: 34px 26px;
    }

    .storyCardNumber {
        width: 48px;
        height: 48px;
        margin-bottom: 22px;
    }

    .projectOutcomePanel {
        display: block;
        padding: 36px 26px;
    }

    .projectOutcomeLabel {
        margin-bottom: 24px;
    }

    .projectOutcomeLabel span {
        font-size: 3.3rem;
    }

    .projectOutcomeContent h2 {
        font-size: 2.65rem;
    }

}

/*==================================================
  QUICK PROJECT NAVIGATION
==================================================*/

.projectQuickNavigation {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        150px
        minmax(0, 1fr);

    width: min(100%, 820px);

    gap: 12px;

    margin: 34px auto 0;
}

.projectQuickNavigationLoading {
    grid-column: 1 / -1;

    padding: 14px;

    color: #d4af37;

    font-family: "Inter", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.projectQuickLink,
.projectQuickPortfolio {
    display: flex;
    min-width: 0;
    align-items: center;

    padding: 15px 18px;

    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.035),
            transparent 65%
        ),
        rgba(20, 17, 14, 0.82);

    color: #ffffff;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.projectQuickLink {
    gap: 12px;
}

.projectQuickPrevious {
    justify-content: flex-start;
    text-align: left;
}

.projectQuickNext {
    justify-content: flex-end;
    text-align: right;
}

.projectQuickLink span,
.projectQuickPortfolio span {
    color: #d4af37;

    font-family: "Inter", sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.projectQuickLink strong {
    min-width: 0;

    overflow: hidden;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.12rem;
    font-weight: 600;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.projectQuickLink i,
.projectQuickPortfolio i {
    flex: 0 0 auto;

    color: #d4af37;

    transition: transform 0.3s ease;
}

.projectQuickPortfolio {
    flex-direction: column;
    justify-content: center;
    gap: 7px;

    text-align: center;
}

.projectQuickLink:hover,
.projectQuickPortfolio:hover {
    transform: translateY(-4px);

    border-color: rgba(212, 175, 55, 0.52);

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.09),
            transparent 68%
        ),
        rgba(27, 22, 17, 0.94);

    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.34),
        0 0 22px rgba(212, 175, 55, 0.06);
}

.projectQuickPrevious:hover i {
    transform: translateX(-4px);
}

.projectQuickNext:hover i {
    transform: translateX(4px);
}


/*==================================================
  QUICK PROJECT NAVIGATION — MOBILE
==================================================*/

@media (max-width: 760px) {

    .projectQuickNavigation {
        grid-template-columns: 1fr 1fr;

        width: 100%;

        gap: 10px;

        margin-top: 26px;
    }

    .projectQuickPortfolio {
        grid-column: 1 / -1;
        grid-row: 2;

        min-height: 52px;
        flex-direction: row;
    }

    .projectQuickLink {
        min-height: 74px;
        flex-direction: column;
        justify-content: center;
        gap: 6px;

        padding: 13px 12px;

        text-align: center;
    }

    .projectQuickLink strong {
        max-width: 100%;

        font-size: 1rem;
    }

    .projectQuickPrevious i,
    .projectQuickNext i {
        display: none;
    }

}

/*==================================================
  TIGHTER GAP BELOW QUICK PROJECT NAVIGATION
==================================================*/

#featuredCommercial {
    padding-top: 62px;
}

@media (max-width: 576px) {

    #featuredCommercial {
        padding-top: 48px;
    }

}