/* ============================================================
   THE LONDON CARPET CLINIC — main.css
   Mobile-first | BEM | CSS Custom Properties | Zero !important
   ============================================================ */

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
    --cc-navy:       #1A2E44;
    --cc-navy-dark:  #142335;
    --cc-gold:       #C9A84C;
    --cc-gold-light: #E8C96A;
    --cc-white:      #FFFFFF;
    --cc-light:      #F4F6F9;
    --cc-dark:       #2D3748;
    --cc-gray:       #6B7A8D;
    --cc-green:      #25D366;
    --cc-green-dark: #128C7E;
    --cc-red:        #E74C3C;

    --cc-font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --cc-h1:         clamp(32px, 5vw, 52px);
    --cc-h2:         clamp(24px, 3.5vw, 36px);
    --cc-h3:         clamp(20px, 2.5vw, 26px);
    --cc-body:       16px;
    --cc-small:      14px;

    --cc-section-py: clamp(48px, 8vw, 80px);
    --cc-container:  1200px;
    --cc-radius:     8px;
    --cc-radius-lg:  16px;
    --cc-shadow:     0 2px 8px rgba(0,0,0,0.08);
    --cc-shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
    --cc-transition: 0.2s ease;

    --cc-header-h:   68px;
    --cc-banner-h:   44px;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: var(--cc-body); }

body {
    font-family: var(--cc-font);
    color: var(--cc-dark);
    background: var(--cc-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: calc(var(--cc-header-h) + var(--cc-banner-h));
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── Container ──────────────────────────────────────────────── */
.cc-container {
    width: 100%;
    max-width: var(--cc-container);
    margin-inline: auto;
    padding-inline: 20px;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.cc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--cc-radius);
    font-family: var(--cc-font);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background var(--cc-transition), transform var(--cc-transition), box-shadow var(--cc-transition);
    text-align: center;
    white-space: nowrap;
}

.cc-btn:focus-visible {
    outline: 3px solid var(--cc-gold);
    outline-offset: 2px;
}

.cc-btn--whatsapp {
    background: var(--cc-green);
    color: var(--cc-white);
}
.cc-btn--whatsapp:hover { background: var(--cc-green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }

.cc-btn--navy {
    background: var(--cc-navy);
    color: var(--cc-white);
}
.cc-btn--navy:hover { background: var(--cc-navy-dark); transform: translateY(-1px); }

.cc-btn--outline {
    background: transparent;
    color: var(--cc-navy);
    border: 2px solid var(--cc-navy);
}
.cc-btn--outline:hover { background: var(--cc-navy); color: var(--cc-white); }

.cc-btn--phone {
    background: var(--cc-white);
    color: var(--cc-navy);
    border: 1.5px solid rgba(26,46,68,0.2);
}
.cc-btn--phone:hover { background: var(--cc-light); }

.cc-btn--gold {
    background: var(--cc-gold);
    color: var(--cc-navy);
}
.cc-btn--gold:hover { background: var(--cc-gold-light); transform: translateY(-1px); }

.cc-btn--sm { padding: 10px 18px; font-size: var(--cc-small); }
.cc-btn--lg { padding: 18px 36px; font-size: 18px; }

.cc-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ─── Promo Banner ───────────────────────────────────────────── */
.cc-promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: var(--cc-gold);
    color: var(--cc-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 10px 48px 10px 16px;
    font-size: var(--cc-small);
    font-weight: 600;
    min-height: var(--cc-banner-h);
}
.cc-promo-banner.cc-promo-banner--hidden { display: none; }
.cc-promo-banner__text { text-align: center; }
.cc-promo-banner__cta {
    background: var(--cc-navy);
    color: var(--cc-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    transition: background var(--cc-transition);
}
.cc-promo-banner__cta:hover { background: var(--cc-navy-dark); }
.cc-promo-banner__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--cc-navy);
    padding: 4px 8px;
    line-height: 1;
}
.cc-promo-banner__close:hover { opacity: 0.7; }

/* ─── Header ─────────────────────────────────────────────────── */
.cc-header {
    position: fixed;
    top: var(--cc-banner-h);
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--cc-white);
    border-bottom: 1px solid rgba(26,46,68,0.1);
    transition: box-shadow var(--cc-transition), top var(--cc-transition);
}
.cc-header--scrolled { box-shadow: var(--cc-shadow-lg); }
.cc-promo-banner--hidden ~ .cc-header,
body.cc-no-banner .cc-header { top: 0; }
.cc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--cc-header-h);
    gap: 24px;
}
.cc-header__logo { display: flex; flex-direction: column; line-height: 1.15; }
.cc-header__logo-main { font-size: 11px; font-weight: 500; color: var(--cc-gray); text-transform: uppercase; letter-spacing: 1px; }
.cc-header__logo-brand { font-size: 18px; font-weight: 800; color: var(--cc-navy); }
.cc-nav { display: none; }
.cc-nav__list { display: flex; gap: 4px; align-items: center; }
.cc-nav__list a { padding: 8px 14px; border-radius: var(--cc-radius); font-size: 15px; font-weight: 500; color: var(--cc-dark); transition: background var(--cc-transition), color var(--cc-transition); }
.cc-nav__list a:hover { background: var(--cc-light); color: var(--cc-navy); }
.cc-header__actions { display: flex; align-items: center; gap: 8px; }
.cc-header__tel { display: none; }
.cc-header__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.cc-header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cc-navy);
    border-radius: 2px;
    transition: transform var(--cc-transition), opacity var(--cc-transition);
}

@media (min-width: 768px) {
    .cc-nav { display: block; }
    .cc-header__tel { display: inline-flex; }
    .cc-header__burger { display: none; }
}

@media (max-width: 767px) {
    .cc-nav--open {
        display: block;
        position: absolute;
        top: var(--cc-header-h);
        left: 0;
        right: 0;
        background: var(--cc-white);
        border-top: 1px solid var(--cc-light);
        padding: 16px;
        box-shadow: var(--cc-shadow-lg);
    }
    .cc-nav--open .cc-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
    .cc-nav--open .cc-nav__list a { padding: 12px 16px; }
}

/* ─── Section Wrapper ────────────────────────────────────────── */
.cc-section {
    padding-block: var(--cc-section-py);
}
.cc-section--light { background: var(--cc-light); }
.cc-section--navy { background: var(--cc-navy); color: var(--cc-white); }
.cc-section--dark { background: var(--cc-dark); color: var(--cc-white); }

.cc-section__header { text-align: center; margin-bottom: 48px; }
.cc-section__title { font-size: var(--cc-h2); font-weight: 800; color: var(--cc-navy); line-height: 1.2; margin-bottom: 12px; }
.cc-section--navy .cc-section__title,
.cc-section--dark .cc-section__title { color: var(--cc-white); }
.cc-section__subtitle { font-size: 18px; color: var(--cc-gray); max-width: 640px; margin-inline: auto; }
.cc-section--navy .cc-section__subtitle { color: rgba(255,255,255,0.75); }

/* ─── Hero ───────────────────────────────────────────────────── */
.cc-hero {
    background: linear-gradient(135deg, var(--cc-navy) 0%, #243d56 60%, #1d3346 100%);
    color: var(--cc-white);
    padding-block: clamp(56px, 10vw, 96px);
    position: relative;
    overflow: hidden;
}
.cc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}
.cc-hero__inner { position: relative; z-index: 1; max-width: 800px; }
.cc-hero__headline {
    font-size: var(--cc-h1);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.cc-hero__headline em {
    font-style: normal;
    color: var(--cc-gold);
}
.cc-hero__subheadline {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    max-width: 600px;
    line-height: 1.6;
}
.cc-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.cc-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cc-hero__badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cc-white);
    backdrop-filter: blur(4px);
}

/* ─── Social Proof Bar ───────────────────────────────────────── */
.cc-proof-bar {
    background: var(--cc-white);
    border-bottom: 1px solid rgba(26,46,68,0.08);
    padding-block: 20px;
    box-shadow: var(--cc-shadow);
}
.cc-proof-bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: center;
}
.cc-proof-bar__item strong { display: block; font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--cc-navy); }
.cc-proof-bar__item span { font-size: 13px; color: var(--cc-gray); font-weight: 500; }

@media (min-width: 640px) {
    .cc-proof-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─── Service Cards ──────────────────────────────────────────── */
.cc-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.cc-service-card {
    background: var(--cc-white);
    border: 1px solid rgba(26,46,68,0.1);
    border-radius: var(--cc-radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: transform var(--cc-transition), box-shadow var(--cc-transition), border-color var(--cc-transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cc-service-card:hover { transform: translateY(-3px); box-shadow: var(--cc-shadow-lg); border-color: var(--cc-gold); }
.cc-service-card__photo-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 4px;
    border: 3px solid var(--cc-gold);
    flex-shrink: 0;
}
.cc-service-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.cc-service-card:hover .cc-service-card__photo { transform: scale(1.08); }
.cc-service-card__name { font-size: 15px; font-weight: 700; color: var(--cc-navy); }
.cc-service-card__desc { font-size: 13px; color: var(--cc-gray); line-height: 1.5; flex: 1; }
.cc-service-card__price { font-size: 14px; font-weight: 700; color: var(--cc-gold); }
.cc-service-card__cta {
    margin-top: 4px;
    background: var(--cc-navy);
    color: var(--cc-white);
    border: none;
    border-radius: var(--cc-radius);
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--cc-transition);
    text-decoration: none;
    display: inline-block;
}
.cc-service-card__cta:hover { background: var(--cc-navy-dark); }

@media (min-width: 640px)  { .cc-services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cc-services-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── How It Works ───────────────────────────────────────────── */
.cc-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
}
.cc-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--cc-white);
    border-radius: var(--cc-radius-lg);
    box-shadow: var(--cc-shadow);
    position: relative;
}
.cc-step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cc-navy);
    color: var(--cc-white);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.cc-step__icon { font-size: 32px; margin-bottom: 12px; }
.cc-step__title { font-size: 17px; font-weight: 700; color: var(--cc-navy); margin-bottom: 8px; }
.cc-step__desc { font-size: 15px; color: var(--cc-gray); }
.cc-steps__note { text-align: center; margin-top: 24px; font-style: italic; color: var(--cc-gray); }

@media (min-width: 768px) {
    .cc-steps { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Before/After Slider ────────────────────────────────────── */
.cc-ba-section { overflow: hidden; }
.cc-ba-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.cc-ba-slider {
    position: relative;
    border-radius: var(--cc-radius-lg);
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    aspect-ratio: 4/3;
    background: var(--cc-light);
}
.cc-ba-slider__after,
.cc-ba-slider__before {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.cc-ba-slider__after { z-index: 1; background-color: var(--cc-light); }
.cc-ba-slider__before { z-index: 2; background-color: var(--cc-navy-light, #8aa0b8); clip-path: inset(0 50% 0 0); transition: clip-path 0s; }
.cc-ba-slider__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 4px;
    background: var(--cc-white);
    cursor: ew-resize;
}
.cc-ba-slider__handle::before {
    content: '◀ ▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cc-white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--cc-navy);
    box-shadow: var(--cc-shadow-lg);
    white-space: nowrap;
}
.cc-ba-slider__label {
    position: absolute;
    bottom: 12px;
    padding: 4px 10px;
    background: rgba(26,46,68,0.75);
    color: var(--cc-white);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 4;
}
.cc-ba-slider__label--before { left: 12px; }
.cc-ba-slider__label--after { right: 12px; }

@media (min-width: 640px)  { .cc-ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cc-ba-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── Testimonials ───────────────────────────────────────────── */
.cc-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.cc-review-card {
    background: var(--cc-white);
    border: 1px solid rgba(26,46,68,0.1);
    border-radius: var(--cc-radius-lg);
    padding: 28px 24px;
    box-shadow: var(--cc-shadow);
}
.cc-review-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cc-review-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cc-navy);
    color: var(--cc-white);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cc-review-card__name { font-weight: 700; color: var(--cc-navy); font-size: 15px; }
.cc-review-card__stars { color: #F4A623; font-size: 14px; letter-spacing: 1px; }
.cc-review-card__text { font-size: 15px; color: var(--cc-dark); line-height: 1.65; font-style: italic; }
.cc-review-card__source { margin-top: 12px; font-size: 12px; color: var(--cc-gray); }
.cc-reviews-cta { text-align: center; margin-top: 32px; }

@media (min-width: 640px)  { .cc-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cc-reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── Areas Covered ──────────────────────────────────────────── */
.cc-areas__map {
    border-radius: var(--cc-radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--cc-shadow);
}
.cc-areas__map iframe { width: 100%; height: 320px; border: 0; display: block; }
.cc-areas__postcodes {
    text-align: center;
    font-size: 15px;
    color: var(--cc-gray);
    margin-bottom: 24px;
}
.cc-areas__postcodes strong { color: var(--cc-navy); }
.cc-areas__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.cc-areas__pill {
    padding: 8px 18px;
    background: var(--cc-white);
    border: 1.5px solid rgba(26,46,68,0.15);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cc-navy);
    transition: background var(--cc-transition), border-color var(--cc-transition);
    text-decoration: none;
}
.cc-areas__pill:hover { background: var(--cc-navy); color: var(--cc-white); border-color: var(--cc-navy); }

/* ─── FAQ Accordion ──────────────────────────────────────────── */
.cc-faq { max-width: 800px; margin-inline: auto; }
.cc-faq__item {
    border-bottom: 1px solid rgba(26,46,68,0.1);
}
.cc-faq__item:first-child { border-top: 1px solid rgba(26,46,68,0.1); }
.cc-faq__question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--cc-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--cc-font);
    transition: color var(--cc-transition);
}
.cc-faq__question:hover { color: var(--cc-gold); }
.cc-faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--cc-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--cc-navy);
    transition: transform var(--cc-transition), background var(--cc-transition);
    line-height: 1;
}
.cc-faq__item--open .cc-faq__icon { transform: rotate(45deg); background: var(--cc-navy); color: var(--cc-white); }
.cc-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.cc-faq__answer-inner { padding-bottom: 18px; font-size: 15px; color: var(--cc-gray); line-height: 1.7; }
.cc-faq__item--open .cc-faq__answer { max-height: 400px; }

/* ─── Final CTA Section ──────────────────────────────────────── */
.cc-cta-final {
    background: linear-gradient(135deg, var(--cc-navy) 0%, var(--cc-navy-dark) 100%);
    color: var(--cc-white);
    text-align: center;
    padding-block: var(--cc-section-py);
}
.cc-cta-final__headline { font-size: var(--cc-h2); font-weight: 800; margin-bottom: 12px; }
.cc-cta-final__subline { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.cc-cta-final__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ─── Floating WhatsApp ──────────────────────────────────────── */
.cc-float-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: var(--cc-green);
    color: var(--cc-white);
    border-radius: 32px;
    padding: 12px 20px 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: transform var(--cc-transition), box-shadow var(--cc-transition);
}
.cc-float-wa:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.cc-float-wa__label { font-size: 14px; font-weight: 700; }

/* ─── Footer ─────────────────────────────────────────────────── */
.cc-footer {
    background: var(--cc-navy-dark);
    color: rgba(255,255,255,0.75);
    padding-block: 56px 32px;
}
.cc-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.cc-footer__logo { display: flex; flex-direction: column; line-height: 1.2; margin-bottom: 12px; }
.cc-footer__logo-main { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.cc-footer__logo-brand { font-size: 20px; font-weight: 800; color: var(--cc-white); }
.cc-footer__tagline { font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.cc-footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.cc-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 4px 10px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); }
.cc-footer__heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--cc-gold); margin-bottom: 16px; }
.cc-footer__links { display: flex; flex-direction: column; gap: 8px; }
.cc-footer__links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--cc-transition); }
.cc-footer__links a:hover { color: var(--cc-white); }
.cc-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.cc-footer__contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.cc-footer__contact svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.cc-footer__contact a:hover { color: var(--cc-white); }
.cc-footer__wa { margin-top: 16px; }
.cc-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.cc-footer__copy { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.cc-footer__copy a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.cc-footer__postcodes { font-size: 12px; color: rgba(255,255,255,0.3); }

@media (min-width: 640px)  { .cc-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cc-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

/* ─── Page — Generic ─────────────────────────────────────────── */
.cc-page { padding-block: var(--cc-section-py); min-height: 60vh; }
.cc-page__title { font-size: var(--cc-h1); font-weight: 800; color: var(--cc-navy); margin-bottom: 24px; }
.cc-page__content { max-width: 800px; font-size: var(--cc-body); line-height: 1.8; color: var(--cc-dark); }
.cc-page__content h2 { font-size: var(--cc-h2); color: var(--cc-navy); margin: 32px 0 12px; font-weight: 700; }
.cc-page__content p { margin-bottom: 16px; }

/* ─── Price Page ─────────────────────────────────────────────── */
.cc-price-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.cc-price-table th {
    background: var(--cc-navy);
    color: var(--cc-white);
    text-align: left;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
}
.cc-price-table td { padding: 13px 16px; border-bottom: 1px solid rgba(26,46,68,0.08); font-size: 15px; }
.cc-price-table tr:nth-child(even) td { background: var(--cc-light); }
.cc-price-table td:last-child { font-weight: 700; color: var(--cc-navy); text-align: right; }
.cc-price-category { font-size: var(--cc-h3); font-weight: 700; color: var(--cc-navy); margin: 40px 0 16px; display: flex; align-items: center; gap: 10px; }

/* ─── Thank You ──────────────────────────────────────────────── */
.cc-thank-you {
    text-align: center;
    padding-block: var(--cc-section-py);
    max-width: 600px;
    margin-inline: auto;
}
.cc-thank-you__icon { font-size: 64px; margin-bottom: 20px; }
.cc-thank-you h1 { font-size: var(--cc-h2); font-weight: 800; color: var(--cc-navy); margin-bottom: 16px; }
.cc-thank-you p { font-size: 17px; color: var(--cc-gray); margin-bottom: 12px; }
.cc-thank-you ol { text-align: left; display: inline-block; margin: 20px auto; color: var(--cc-dark); font-size: 16px; line-height: 1.8; padding-left: 20px; }
.cc-thank-you__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }

/* ─── 404 ────────────────────────────────────────────────────── */
.cc-404 { text-align: center; padding-block: 80px; }
.cc-404__number { font-size: 120px; font-weight: 900; color: var(--cc-light); line-height: 1; }
.cc-404 h1 { font-size: var(--cc-h2); color: var(--cc-navy); margin-bottom: 12px; }

/* ─── Blog Cards ─────────────────────────────────────────────── */
.cc-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px)  { .cc-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cc-blog-grid { grid-template-columns: repeat(3, 1fr); } }

.cc-blog-grid--archive { margin-bottom: 48px; }

.cc-blog-card {
    background: var(--cc-white);
    border: 1px solid rgba(26,46,68,0.08);
    border-radius: var(--cc-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--cc-transition), box-shadow var(--cc-transition);
    box-shadow: var(--cc-shadow);
}
.cc-blog-card:hover { transform: translateY(-4px); box-shadow: var(--cc-shadow-lg); }
.cc-blog-card--placeholder { opacity: 0.75; cursor: default; }
.cc-blog-card--placeholder:hover { transform: none; box-shadow: var(--cc-shadow); }

.cc-blog-card__img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--cc-light); }
.cc-blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.cc-blog-card:hover .cc-blog-card__img { transform: scale(1.04); }
.cc-blog-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cc-light) 0%, #dde4ed 100%);
    font-size: 40px;
}

.cc-blog-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.cc-blog-card__cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--cc-gold);
}
.cc-blog-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--cc-navy);
    line-height: 1.35;
    margin: 0;
}
.cc-blog-card__title a { color: inherit; }
.cc-blog-card__title a:hover { color: var(--cc-gold); }
.cc-blog-card__excerpt {
    font-size: 14px;
    color: var(--cc-gray);
    line-height: 1.65;
    flex: 1;
}
.cc-blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--cc-light);
    margin-top: auto;
}
.cc-blog-card__date { font-size: 12px; color: var(--cc-gray); }
.cc-blog-card__read { font-size: 13px; font-weight: 600; color: var(--cc-navy); transition: color var(--cc-transition); }
.cc-blog-card__read:hover { color: var(--cc-gold); }

/* ─── Blog Archive Page ───────────────────────────────────────── */
.cc-archive-hero {
    background: var(--cc-navy);
    color: var(--cc-white);
    padding-block: clamp(40px, 7vw, 72px);
}
.cc-archive-hero__title {
    font-size: var(--cc-h1);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}
.cc-archive-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
}

.cc-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.cc-pagination .nav-links { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.cc-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--cc-radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--cc-navy);
    background: var(--cc-white);
    border: 1.5px solid rgba(26,46,68,0.15);
    transition: background var(--cc-transition), color var(--cc-transition), border-color var(--cc-transition);
    text-decoration: none;
}
.cc-pagination .page-numbers:hover { background: var(--cc-navy); color: var(--cc-white); border-color: var(--cc-navy); }
.cc-pagination .page-numbers.current { background: var(--cc-navy); color: var(--cc-white); border-color: var(--cc-navy); }
.cc-pagination .page-numbers.dots { border: none; background: none; pointer-events: none; }

.cc-blog-empty {
    text-align: center;
    padding-block: 64px;
}
.cc-blog-empty__icon { font-size: 56px; margin-bottom: 16px; }
.cc-blog-empty h2 { font-size: var(--cc-h3); color: var(--cc-navy); margin-bottom: 8px; }
.cc-blog-empty p  { color: var(--cc-gray); font-size: 16px; }

.cc-archive-cta {
    background: var(--cc-navy);
    padding-block: 20px;
}
.cc-archive-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--cc-white);
}
.cc-archive-cta__inner strong { color: var(--cc-gold); margin-right: 8px; }
.cc-archive-cta__inner span  { font-size: 14px; color: rgba(255,255,255,0.75); }

/* ─── Utilities ──────────────────────────────────────────────── */
.cc-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.cc-text-center { text-align: center; }
.cc-mt-8  { margin-top: 8px; }
.cc-mt-16 { margin-top: 16px; }
.cc-mt-24 { margin-top: 24px; }
.cc-mt-32 { margin-top: 32px; }
