/* Reedify page-specific external styles */

.factory-hero-plain {
    position: relative;
    background: #F5F1EA;
    overflow: hidden;
}
.factory-hero-plain::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182,122,45,.12) 0%, transparent 65%);
    transform: translate(25%, -30%);
    pointer-events: none;
    z-index: 0;
}
.factory-hero-plain .ksp-h1 {
    color: var(--charcoal);
}
.factory-hero-plain .ksp-h1 em {
    color: var(--bronze);
}
.factory-hero-plain .ksp-hero-p {
    color: var(--graphite);
}
.factory-hero-plain .ksp-stat-num {
    color: var(--charcoal);
    font-family: Georgia, serif;
}
.factory-hero-plain .ksp-stat-label {
    color: rgba(0, 0, 0, .42);
}

.factory-about-section {
    background: #fff;
}
.factory-about-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6%;
    align-items: center;
}
.factory-about-img img {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.factory-about-text .ksp-section-label {
    margin-bottom: .8rem;
}
.factory-about-text h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.factory-about-text p {
    font-size: .95rem;
    color: var(--graphite);
    line-height: 1.75;
    margin-bottom: .8rem;
}
.factory-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem;
    margin-top: 1.5rem;
}
.factory-highlight {
    background: var(--beige);
    border-radius: 6px;
    padding: 1rem 1.2rem;
}
.factory-highlight strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1;
}
.factory-highlight span {
    font-size: .72rem;
    color: var(--graphite);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.factory-categories {
    padding: 80px 5%;
    background: var(--charcoal);
}
.factory-categories-inner {
    max-width: 1180px;
    margin: 0 auto;
}
.factory-categories-inner .ksp-section-label {
    color: var(--bronze);
}
.factory-categories-inner h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: .5rem;
}
.factory-categories-inner .sub {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}
.factory-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}
.factory-cat-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 2rem 1.6rem;
    text-decoration: none;
    transition: background .2s, transform .2s;
    display: block;
}
.factory-cat-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px);
    text-decoration: none;
}
.factory-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(182, 122, 45, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.factory-cat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--bronze);
}

@media (max-width: 991px) {
    .factory-about-grid {
        display: block;
        padding: 40px 5%;
    }
    .factory-cat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .factory-about-grid {
        padding: 30px 5%;
    }
    .factory-categories {
        padding: 60px 5%;
    }
    .factory-cat-grid {
        grid-template-columns: 1fr;
    }
}

.thankYouBlock {
    padding: 70px 0;
}
.thankYouCard {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 14px;
    padding: 55px 40px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}
.thankYouCard .tyIcon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #eafaf0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}
.thankYouCard .tyIcon svg {
    width: 48px;
    height: 48px;
}
.thankYouCard h1 {
    font-size: 34px;
    margin-bottom: 14px;
    text-transform: capitalize;
}
.thankYouCard p {
    font-size: 17px;
    color: #5b5b5b;
    margin-bottom: 10px;
}
.thankYouCard .tyContact {
    margin: 26px 0 32px;
    font-size: 16px;
}
.thankYouCard .tyContact a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}
.thankYouCard .tyActions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.thankYouCard .tyBtn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .5px;
}
.thankYouCard .tyBtnPrimary {
    background: #c8a24a;
    color: #fff;
}
.thankYouCard .tyBtnGhost {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #d8d8d8;
}
@media (max-width: 575px) {
    .thankYouCard {
        padding: 40px 22px;
    }
    .thankYouCard h1 {
        font-size: 26px;
    }
}

.cnc-bg1 { background-image:url('/images/cnc/img1.webp'); background-position:center; }
.cnc-bg2 { background-image:url('/images/cnc/img2.webp'); background-position:center; }
.cnc-bg3 { background-image:url('/images/cnc/img3.webp'); background-position:center; }
.cnc-bg4 { background-image:url('/images/cnc/img4.webp'); background-position:center; }
.cnc-bg5 { background-image:url('/images/cnc/img5.webp'); background-position:center; }
.cnc-bg6 { background-image:url('/images/cnc/img6.webp'); background-position:center; }
.cnc-bg7 { background-image:url('/images/cnc/img7.webp'); background-position:center; }
.cnc-bg8 { background-image:url('/images/cnc/img8.webp'); background-position:center; }
.cnc-bg9 { background-image:url('/images/cnc/img9.webp'); background-position:center; }
