/* ==============================================
   TEMPLATESTYLES.CSS
   Concept Washroom — Shared Template Styles
   ============================================== */

/* ==============================================
   1. CSS VARIABLES
   ============================================== */
:root {
    --accent:       #9e7653;
    --dark:         #010126;
    --grey:         #5f5e66;
    --cream:        #eee2d1;
    --cream-light:  #eee3d1;
    --line-width:   2px;
}


/* ==============================================
   2. GLOBAL BACKGROUND
   ============================================== */
.cpp-hero-outer {
    background: linear-gradient(160deg, var(--cream-light) 12%, #ffffff 47%);
}

.sector-hero-outer {
    padding-top: 130px;
	background: linear-gradient(160deg, var(--cream-light) 12%, #ffffff 47%);
}

@media (max-width: 768px) {
	.sector-hero-outer {
    padding-top: 100px;
		
}
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    color: #1a1a2e;
}
#backToTop.visible {
    opacity: 1;
    visibility: visible;
}
#backToTop:hover {
    background: #f5f5f5;
}
	
/* ==============================================
   3. CONTAINER
   ============================================== */
.cw-wrap {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (max-width: 1300px) {
    .cw-wrap {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

html, body {
    overflow-x: clip;
}
/* ==============================================
   4. SHARED SECTION LABEL (gold line + h6)
   Used above section headings across all templates
   ============================================== */
.cw-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
	    max-width: 1300px;
    width: 100%;
    justify-self: center;
}

.cw-section-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}

.cw-section-label h6 {
    margin: 0;
}

/* ==============================================
   5. SHARED TYPOGRAPHY
   ============================================== */
.cpp-banner-title {
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .cpp-banner-title {
        font-size: 35px;
    }
}

/* ==============================================
   6. SHARED: SEO SPLIT SECTION (50/50 full bleed)
   Used in: Sector Page, Commercial Product Page
   ============================================== */
.cpp-seo {
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
	margin-top: 80px;
}

.cpp-seo::before {
    content: '';
    position: absolute;
    top: 112px;
    right: 0;
    width: calc(50% - 160px);
    height: 1px;
    background: var(--accent);
}

.cpp-seo__image {
    flex: 0 0 50%;
    width: 50%;
    overflow: hidden;
}

.cpp-seo__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.cpp-seo__content {
    flex: 0 0 50%;
    width: 50%;
    padding: 0px 5% 80px 60px;
    box-sizing: border-box;
}

.cpp-seo__content h3 {
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
	line-height: 1;
}

@media (max-width: 768px) {
    .cpp-seo {
        width: 100%;
        margin-left: 0;
        transform: none;
        flex-direction: column;
		margin-top: 50px !important;
    }
    .cpp-seo::before { display: none; }
    .cpp-seo__image { flex: 0 0 100%; width: 90%; margin: 0 auto; }
    .cpp-seo__image img { height: 300px; }
    .cpp-seo__content { flex: 0 0 100%; width: 100%; padding: 40px 5%; }
    .cpp-seo__content h3 { font-size: 35px; }
}

/* ==============================================
   7. SHARED: INLINE BANNER (dark blue)
   Used in: Sector Page, Commercial Product Page
   ============================================== */
.cpp-inline-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    padding: 24px 5%;
    background: var(--dark);
    color: #fff;
}

.cpp-inline-banner p {
    margin: 0;
    color: #fff;
}

@media (max-width: 768px) {
    .cpp-inline-banner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ==============================================
   8. SHARED: FAQ (details/summary accordion)
   Used in: Sector Page
   ============================================== */
.cpp-faq-outer {
    background: var(--grey);
}

.cw-footer-wrap {
    margin-top: 0 !important;
}

.cpp-faq {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.faqbox {
    flex: 0 0 40%;
    width: 40%;
    padding: 30px;
	min-height: 350px;
	align-content: center;
}

.faqbox p {
    color: #fff;
    margin-bottom: 24px;
    max-width: 400px;
}

.faqbox h2 {
font-size: 70px !important
}

.faq-right {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid #eee3d1;
    padding: 6px 0;
}



.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    gap: 20px;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 2px;
    transition: opacity 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-item[open] .faq-icon::before {
    opacity: 0;
}

.faq-answer {
    padding-bottom: 20px;
}

.faq-answer p {
    color: #bcbcbc;
    margin: 0;
	margin-top: 15px;
}

@media (max-width: 768px) {
    .cpp-faq {
        flex-direction: column;
    }
    .faqbox {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* ==============================================
   9. SHARED: SPLIT BANNER (Splash Lab / CPD)
   Used in: Commercial Product Page
   ============================================== */
.cpp-split-banner {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 5%;
}

.cpp-split-banner--gold { background: #eee3d2; }
.cpp-split-banner--grey { background: #e8e8e8; }

.cpp-split-banner__inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.cpp-split-banner__content {
    flex: 1 1 50%;
}

.cpp-split-banner__content p {
    margin-bottom: 24px;
    max-width: 400px;
}

.cpp-split-banner__images {
    flex: 1 1 50%;
    display: flex;
    gap: 16px;
}

.cpp-split-banner__images img {
    flex: 1;
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
}

.cpp-split-banner__image {
    flex: 1 1 50%;
}

.cpp-split-banner__image img {
    width: 100%;
    height: auto;
    display: block;
}

.cpp-split-banner__images img:last-child {
    height: 290px;
    object-fit: cover;
    align-self: flex-end;
}

@media (max-width: 768px) {
    .cpp-split-banner__inner {
        flex-direction: column;
    }
    .cpp-split-banner__images {
        width: 100%;
    }
	
}

/* ==============================================
   10. SHARED: SPLIT SCROLL
   Used in: About Page
   ============================================== */
.split-scroll {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.split-left {
    width: 60%;
    position: sticky;
    top: 30px;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.split-media {
    position: absolute;
    width: 100%;
    height: 70vh;
    opacity: 0;
    transition: opacity 0.6s ease;
    overflow: hidden;
}

.split-media.active { opacity: 1; }

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-right {
    width: 40%;
    flex-shrink: 0;
}

.split-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-inner {
    padding: 5rem;
}

@media (max-width: 1024px) {
    .split-scroll { flex-direction: column; position: relative; }
    .split-left { width: 100%; height: 55vw; max-height: 60vh; position: sticky; top: 50px; z-index: 10; background: #000; }
    .split-media { height: 100%; width: 100%; }
    .split-right { width: 100%; position: relative; z-index: 0; }
    .split-section { min-height: auto; display: block; position: sticky; top: 0; }
    .split-section:nth-child(1) { z-index: 1; }
    .split-section:nth-child(2) { z-index: 2; }
    .split-section:nth-child(3) { z-index: 3; }
    .split-section:nth-child(4) { z-index: 4; }
    .split-section + .split-section { margin-top: -20px; }
    .section-inner { padding: 2rem 1.5rem; background: #fff; }
}

@media (max-width: 480px) {
    .split-left { height: 60vw; max-height: 50vh; }
    .section-inner { padding: 1.5rem 1.25rem; }
}

/* ==============================================
   11. SHARED: SECTOR CARDS
   Used in: About Page, Homepage
   ============================================== */
.hp-sectors {
    padding: 0 24px 80px;
}

.sector-row {
    display: flex;
    gap: 12px;
    max-width: 1300px;
    margin: 0 auto;
}

.sector-card {
    position: relative;
    flex: 1;
    min-width: 0;
    aspect-ratio: 3/2;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: flex 0.35s ease;
    min-height: 350px;
}

.sector-card:hover { flex: 2; }

.sector-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,.1));
    pointer-events: none;
    transition: background 0.35s ease;
}

.sector-card:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.25));
}

.sector-title {
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    z-index: 2;
    transition: opacity 0.25s ease;
    color: white;
}

.sector-card:hover .sector-title { opacity: 0; }

.sector-overlay {
    position: absolute;
    inset: 0;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 3;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sector-card:hover .sector-overlay {
    opacity: 1;
    transform: translateY(0);
}

.sector-overlay h3 { text-transform: uppercase; color: white; }
.sector-overlay p { color: white; }

.sector-overlay .sector-button {
    align-self: flex-start;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.8);
    background: transparent;
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.25s ease, color 0.25s ease;
}

.sector-overlay .sector-button:hover {
    background: #fff;
    color: #000;
}

.sector-commercial   { background-image: url("https://conceptwashroom.co.uk/wp-content/uploads/2025/11/Royal_Nawaab_Identity_6.jpg"); }
.sector-education    { background-image: url("https://conceptwashroom.co.uk/wp-content/uploads/2025/11/Rudheath_Force_Privacy_02.jpeg"); }
.sector-hospitality  { background-image: url("https://conceptwashroom.co.uk/wp-content/uploads/2025/11/Head_Over_Heels_2.jpg"); }
.sector-healthcare   { background-image: url("https://conceptwashroom.co.uk/wp-content/uploads/2026/02/DSC7574-scaled.jpg"); }
.sector-sportleisure { background-image: url("https://conceptwashroom.co.uk/wp-content/uploads/2025/11/Leading_Gym_15.jpeg"); }
.sector-industrial   { background-image: url("https://conceptwashroom.co.uk/wp-content/uploads/2025/10/Liverpool_St_Station_Force_Privacy_2.jpg"); }

@media (max-width: 900px) {
    .sector-row { flex-wrap: wrap; }
    .sector-card,
    .sector-card:hover { flex: 0 0 calc(50% - 6px); min-height: 170px; }
    .sector-overlay p { display: none; }
}

/* ==============================================
   12. SECTOR PAGE
   ============================================== */
.sector-hero-wrap {
    max-width: 1300px;
    margin: 0 auto;
    height: 570px;
    position: relative;
}

.sector-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sectorhero {
    width: 900px;
    height: 480px;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 60px;
    display: flex;
    padding: 40px;
}

.sectorhero-inner {
    position: relative;
}

.sectorhero-inner h1 {
    color: white;
    font-size: 96px;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 0.8;
}

.sectorhero-inner p {
    color: white;
    margin: 0;
    max-width: 500px;
}

.cw-container {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

/* Decorative lines — 1300px+ only */
@media only screen and (min-width: 1300px) {

    .sectorhero {
        --accent-color: var(--accent);
        --line-width: 2px;
    }

    .sectorhero::before {
        content: '';
        position: absolute;
        top: -120px;
        left: 0;
        width: var(--line-width);
        height: 700px;
        z-index: 10;
        background-image: linear-gradient(
            to bottom,
            transparent 0px,
            white 100px,
            white 600px,
            var(--accent) 600px,
            transparent 700px
        );
    }

    .sectorhero::after {
        content: '';
        position: absolute;
        top: -100px;
        right: 0;
        width: var(--line-width);
        height: 600px;
        z-index: 1;
        background-image: linear-gradient(
            to bottom,
            transparent 0px,
            white 60px,
            white 100%
        );
    }

.sectorhero > .sectorhero-inner::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    height: 2px;
    width: 2000px;
    background: linear-gradient(
        to right,
        white 0,
        white 1300px,
        #9e7653 1160px,
        #9e7653 2000px
    ) !important;
    z-index: 999 !important;
}

    .sectorhero > .sectorhero-inner::after {
        content: '';
        position: absolute;
        left: -1560px;
        top: -10px;
        height: var(--line-width);
        width: 1500px;
        background-color: var(--accent);
        z-index: 1;
    }

    .sectorhero > div:not(.sectorhero-inner)::before,
    .sectorhero > div:not(.sectorhero-inner)::after {
        display: none !important;
    }
}

.sector-projects {
    background: linear-gradient(to bottom, var(--cream) 50%, var(--dark) 50%);
    margin-top: 80px;
}

.sector-projects-inner {
    padding-top: 130px;
    padding-bottom: 130px;
}

.projects-description {
    max-width: 600px;
    margin-top: 10px;
    margin-bottom: 60px;
}

.sector-cta {
    padding-top: 60px;
    padding-bottom: 60px;
}

.sector-cta-inner {
    display: flex;
    gap: 40px;
    justify-content: center;
    text-align: center;
}

.sector-cta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .sector-hero-wrap {
        margin-top: 0px;
        height: 300px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .sectorhero {
        width: 100%;
        height: 300px;
        left: 0;
        position: relative;
        padding: 30px 20px;
    }
    .sectorhero-inner h1 {
        font-size: 42px;
    }
    .sector-cta-inner {
        flex-direction: column;
        align-items: center;
    }
	.sector-projects-inner {
		padding-top: 80px !important;
padding-bottom: 80px !important;
}

.projects-description {
margin-bottom: 25px;
	}
}

/* ==============================================
   13. ABOUT PAGE
   ============================================== */
.about-hero {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin: 100px auto 0;
    padding-top: 0;
    padding-bottom: 0;
}

.about-hero__left { flex: 1; }

.about-hero__left h1 {
    margin: 0 0 32px;
    line-height: 0.9;
	max-width: 450px;
	margin-top: 15px;
}

.about-counters {
    display: flex;
    gap: 40px;
}

.about-counter {
    display: flex;
    flex-direction: column;
}

.about-counter__number {
    font-size: 54px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
}

.about-counter__label {
    font-size: 16px;
    margin-top: 6px;
    color: #333;
}

.about-hero__right {
    flex: 1;
    display: flex;
    align-items: center;
}

.about-hero__right p {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
	margin-top: -20px;
}

.about-intro {
    margin: 0px auto;
	z-index: 999;
}

.about-intro p {
    max-width: 900px;
}

.about-studio {
    display: flex;
    align-items: stretch;
    background: #f5f5f5;
    margin-top: 80px;
}

.about-studio__image {
    flex: 0 0 50%;
    width: 50%;
    overflow: hidden;
}

.about-studio__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-studio__content {
    flex: 1;
    padding: 80px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
}

.about-studio__content h3 { margin: 0 0 20px; }
.about-studio__content p { margin: 0 0 32px; }

.about-sector-intro {
    text-align: center;
    max-width: 800px;
    margin: 80px auto 40px;
}

.about-sector-intro h3 { margin: 0 0 16px; }
.about-sector-intro p { margin: 0; }

@media (max-width: 1024px) {
    .about-hero {
        flex-direction: column;
        gap: 40px;
        margin-top: 0px;
    }
    .about-studio { flex-direction: column; }
    .about-studio__image,
    .about-studio__content { flex: 0 0 100%; width: 100%; }
    .about-studio__image img { height: 300px; }
    .about-studio__content { padding: 40px 5%; }
}

@media (max-width: 600px) {
    .about-counters { gap: 24px; }
    .about-counter__number { font-size: 36px; }
    .about-hero__right p { font-size: 22px; }
}

/* ==============================================
   14. COMMERCIAL PRODUCT PAGE
   ============================================== */
.cpp-hero {
    display: flex;
    align-items: center;
    gap: 60px;
	padding-top: 120px;
    padding-bottom: 80px;
}

.cpp-hero__image { flex: 1 1 50%; }

.cpp-hero__image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
}

.cpp-hero__content { flex: 1 1 50%; }
.cpp-hero__content h6 { margin-bottom: 8px; }
.cpp-hero__content h1 { margin-bottom: 16px; line-height: 1; }

.cpp-centered-copy {
    text-align: center;
}

.cpp-carousel {
    position: relative;
    overflow: hidden;
    padding: 60px 0 0;
}

.cpp-carousel__track-wrapper { overflow: hidden; }

.cpp-carousel__track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.cpp-carousel__slide {
    min-width: calc(25% - 40px);
    width: calc(25% - 40px);
    height: 420px;
    flex-shrink: 0;
}

.cpp-carousel__slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cpp-carousel__controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 5%;
}

.cpp-carousel__btn {
    background: none;
    border: none;
    cursor: pointer;
}

.cpp-carousel__btn img {
    width: 32px;
    height: 32px;
    display: block;
}


.cpp-configurator {
    text-align: center;
    padding: 80px 0;
}

.cpp-configurator p {
max-width: 700px;
justify-self: center;
margin: 15px 0px;	
}


.cpp-tools {
    padding:0px 5% 80px 5%;
}

.cpp-tools__header {
    margin-bottom: 50px;
    text-align: center;
    max-width: 850px;
	justify-self: center
}

.cpp-tools__boxes {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 900px;
    justify-self: center;
}

.cpp-tools__boxes::-webkit-scrollbar { display: none; }

.cpp-tools__box {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    display: flex;
    flex-direction: column;
    background: #ede7e7;
    padding: 20px;
}

.cpp-tools__box-preview {
    border: 3px solid #1a1a2e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    gap: 24px;
    min-height: 220px;
    max-width: 150px;
    margin: 0 auto 20px;
}

.cpp-tools__box-preview-title {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a2e;
    line-height: 1.2;
    text-align: center;
}

.cpp-tools__box-preview-icon { color: #1a1a2e; }
.cpp-tools__box-preview-icon svg { width: 48px; height: 48px; }
.cpp-tools__box-title { font-weight: 500; font-size: 1.2rem; }
.cpp-tools__box-desc { font-size: 0.9rem; margin-bottom: 8px; flex: 1; }

.cpp-tools__box-download a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: var(--accent);
    text-decoration: none;
}

.cpp-specification {     padding-top: 80px;
    padding-bottom: 80px; }

.cpp-specification__header {
    margin-bottom: 40px;
    text-align: center;
}
.cpp-tools__header h3, .cpp-specification__header h3 {
margin-top: 15px; 
margin-bottom: 20px;
}

.cpp-tools__header p, .cpp-specification__header p {
max-width: 700px;
	justify-self: center;

}


.cpp-accordion__item { border-bottom: 2px solid #ddd; }

.panel-material-title_2 {
margin-bottom:25px;
text-transform: uppercase;
}

.cpp-accordion__trigger {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 12px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    -webkit-text-fill-color: inherit;
}

.cpp-accordion__trigger span:first-child {
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.cpp-accordion__trigger-icon { line-height: 1; flex-shrink: 0; }

.cpp-accordion__trigger-icon img {
    width: 25px;
    height: 25px;
    display: block;
    transition: transform 0.3s ease;
}

.cpp-accordion__item.is-open .cpp-accordion__trigger-icon img {
    transform: rotate(90deg);
}

.cpp-accordion__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    overflow: hidden;
}

.cpp-accordion__item.is-open .cpp-accordion__body {
    grid-template-rows: 1fr;
}

.cpp-accordion__body-inner {
    overflow: hidden;
    min-height: 0;
    padding-bottom: 0;
}

.cpp-accordion__item.is-open .cpp-accordion__body-inner {
    padding-bottom: 28px;
}

.cpp-ironmongery-grid {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cpp-ironmongery-grid::-webkit-scrollbar { display: none; }

.cpp-ironmongery-item {
    flex: 0 0 calc(16.666% - 14px);
    min-width: calc(16.666% - 14px);
    display: flex;
    flex-direction: column;
}

.cpp-ironmongery-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    margin-bottom: 8px;
}

.cpp-ironmongery-item h6 { margin-top: 8px; margin-bottom: 4px; }
.cpp-ironmongery-item h4 { margin: 0; text-transform: uppercase;}

.cpp-projects h3 {
margin: 20px 0;
}

.cpp-bespoke-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #f0f0f0;
    padding: 40px;
    margin-top: 32px;
}

.cpp-bespoke-banner__content { flex: 1 1 60%; margin-left: 40px; }
.cpp-bespoke-banner__content h4 { margin-bottom: 12px; text-transform: uppercase;}
.cpp-bespoke-banner__content p { margin-bottom: 24px;max-width: 650px;  }
.cpp-bespoke-banner__image { flex: 0 0 300px; text-align: center; }

.cpp-bespoke-banner__image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cpp-bespoke-banner__image {
    flex: 0 0 260px;
    text-align: center;
}

.cpp-seo__copy-track {
    position: relative;
    min-height: 180px;
}

.cpp-seo__copy-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cpp-seo__copy-slide.is-active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.cpp-seo__copy-controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
	 justify-content: flex-end;
}

.cpp-seo__copy-carousel {
max-width: 650px;
}

.cpp-seo__copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    -webkit-text-fill-color: inherit;
}

.cpp-seo__copy-btn img {
    width: 32px;
    height: 32px;
    display: block;
}

.cpp-related { padding: 0px; }
.cpp-related h3 { margin-bottom: 32px; }

@media (max-width: 1024px) {
    .cpp-carousel__slide {
        min-width: calc(50% - 20px);
        width: calc(50% - 20px);
        height: 260px;
    }
}

@media (max-width: 768px) {
    .cpp-hero { flex-direction: column; padding: 40px 5%; padding-top: 100px; }
	    .cpp-hero__image {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .cpp-hero__image img { height: 270px; }
    .cpp-centered-copy { text-align: left; padding: 0; }
    .cpp-carousel__track-wrapper { padding: 0 5%; }
    .cpp-carousel__slide { min-width: 100%; width: 100%; height: 300px; }
    .cpp-tools__box { flex: 0 0 80%; min-width: 80%; }
    .cpp-ironmongery-item { flex: 0 0 40%; min-width: 40%; }
    .cpp-bespoke-banner { flex-direction: column; }
    .cpp-bespoke-banner__image { flex: 0 0 auto; width: 100%; }
}

/* ==============================================
   15. AREAS WE COVER PAGE
   ============================================== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 80px;
}

.area-box {
    border: 2px solid var(--accent);
    padding: 20px;
}

.area-box h4 {
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 12px;
    letter-spacing: 0.05em;
}

.area-box .area-links {
    line-height: 1.8;
}

.area-box .area-links a {
    color: var(--accent);
    text-decoration: none;
}

.area-box .area-links a:hover {
    text-decoration: underline;
}

.area-box .area-links span {
    color: var(--accent);
    margin: 0 2px;
}

.area-box-cta {
    background: var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    gap: 10px;
}

.area-box-cta h4 {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.05em;
}

.area-box-cta a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1024px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .areas-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   16. SINGLE AREA PAGE
   ============================================== */
.area-hero {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin: 120px auto 0;
}

.area-hero__left { flex: 1; }
.area-hero__left h1 { margin: 0 0 16px; }
.area-hero__left > p { margin: 0 0 24px; max-width: 500px; }

.area-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-hero__right {
    flex: 1;
}

.area-banner {
    background: var(--dark);
    margin-top: 80px;
    padding: 40px 5%;
}

.area-banner-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.area-banner-inner p {
    color: #fff;
    margin: 0;
    max-width: 800px;
}

.area-sectors {
    margin: 80px auto;
}

.area-sectors h3 { margin: 0 0 12px; }
.area-sectors > p { max-width: 700px; margin: 0 0 40px; }

.area-sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sector-card-box {
    border: 1px solid #e0d5c8;
    overflow: hidden;
}

.sector-card-box__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.sector-card-box__image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--cream);
}

.sector-card-box__body {
    padding: 20px;
}

.sector-card-box__body h4 {
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 12px;
    letter-spacing: 0.05em;
}

.sector-card-box__links {
    line-height: 1.8;
}

.sector-card-box__links a {
    color: var(--accent);
    text-decoration: none;
}

.sector-card-box__links a:hover { text-decoration: underline; }

.sector-card-box__links span {
    color: var(--accent);
    margin: 0 2px;
}

@media (max-width: 1024px) {
    .area-hero { flex-direction: column; gap: 40px; margin-top: 100px; }
    .area-sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .area-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .area-sectors-grid { grid-template-columns: 1fr; }
}

/* --- Showroom Split --- */
	
.showroom-split-outer {
    background: #f2f2f2;
	padding: 50px 0;
}
	
.showroom-split {
    display: flex;
    align-items: stretch;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.showroom-split--reverse {
    flex-direction: row-reverse;
}

.showroom-split__image {
    flex: 0 0 45%;
    width: 45%;
    overflow: hidden;
}

.showroom-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.showroom-split__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
	padding: 60px;
	background: #fff;
}

.showroom-split__content h3 {
    margin: 0;
}

.showroom-split__content p {
    margin: 0;
    max-width: 500px;
}

@media (max-width: 768px) {
    .showroom-split { flex-direction: column; margin: 40px auto; }
    .showroom-split--reverse { flex-direction: column; }
    .showroom-split__image { flex: 0 0 auto; width: 100%; }
    .showroom-split__image img { min-height: 250px; height: 250px; }
}
}