:root {
    --pcj-red: #c8112e;
    --pcj-red-dark: #8c0e21;
    --pcj-ink: #111827;
    --pcj-muted: #64748b;
    --pcj-line: #e5e7eb;
    --pcj-soft: #f5f7fa;
    --pcj-panel: #ffffff;
    --pcj-accent: #0f766e;
    --pcj-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--pcj-ink);
    background: #ffffff;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body.admin-bar .pcj-site-header {
    top: 32px;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.pcj-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.pcj-site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
    backdrop-filter: blur(12px);
}

.pcj-header-inner {
    width: min(1200px, calc(100% - 36px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pcj-logo img,
.pcj-logo .custom-logo {
    width: 230px;
    max-height: 46px;
    object-fit: contain;
}

.pcj-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pcj-menu a {
    color: #171717;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-decoration: none;
}

.pcj-menu a:hover,
.pcj-menu a:focus {
    color: var(--pcj-red);
}

.pcj-menu-toggle {
    display: none;
    min-height: 40px;
    padding: 8px 14px;
    color: #ffffff;
    background: var(--pcj-red);
    border: 0;
    border-radius: 6px;
    font: inherit;
    font-weight: 700;
}

.pcj-hero-media {
    background: #0f172a;
}

.pcj-hero-media img {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
}

.pcj-marquee {
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(90deg, var(--pcj-red-dark), var(--pcj-red));
}

.pcj-marquee div {
    display: inline-flex;
    min-width: 100%;
    padding: 11px 0;
    white-space: nowrap;
    animation: pcj-marquee 20s linear infinite;
}

.pcj-marquee span {
    padding-left: 100%;
    font-weight: 700;
}

@keyframes pcj-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.pcj-section {
    padding: 76px 0;
}

.pcj-intro {
    text-align: center;
    background: #ffffff;
}

.pcj-intro h1,
.pcj-section-heading h1,
.pcj-section-heading h2,
.pcj-page-content h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 600;
}

.pcj-intro p,
.pcj-section-heading p {
    width: min(860px, 100%);
    margin: 0 auto 14px;
    color: var(--pcj-muted);
    font-size: 18px;
}

.pcj-strong-copy {
    color: var(--pcj-ink) !important;
    font-weight: 700;
}

.pcj-products,
.pcj-leasing,
.pcj-faq {
    background: var(--pcj-soft);
}

.pcj-section-heading {
    margin-bottom: 32px;
    text-align: center;
}

.pcj-section-heading h2 {
    font-size: clamp(30px, 4vw, 44px);
}

.pcj-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 34px;
}

.pcj-filter-bar button {
    min-height: 42px;
    padding: 9px 18px;
    color: var(--pcj-ink);
    background: #ffffff;
    border: 1px solid var(--pcj-line);
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.pcj-filter-bar button.is-active,
.pcj-filter-bar button:hover {
    color: #ffffff;
    background: var(--pcj-red);
    border-color: var(--pcj-red);
}

.pcj-car-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.pcj-car-card {
    min-width: 0;
    overflow: hidden;
    background: var(--pcj-panel);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.pcj-car-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pcj-shadow);
}

.pcj-car-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.pcj-car-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 228px;
    padding: 18px;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.pcj-car-media img {
    width: 100%;
    height: 190px;
    object-fit: contain;
}

.pcj-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    color: #ffffff;
    background: var(--pcj-accent);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.pcj-car-body {
    padding: 20px 20px 22px;
}

.pcj-car-body h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
}

.pcj-car-body p {
    margin: 0 0 5px;
    color: var(--pcj-muted);
}

.pcj-fuel {
    color: var(--pcj-red) !important;
    font-weight: 800;
}

.pcj-price {
    margin-top: 12px !important;
    color: var(--pcj-ink) !important;
    font-weight: 800;
}

.pcj-card-cta,
.pcj-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 18px;
    padding: 10px 18px;
    color: #ffffff;
    background: var(--pcj-red);
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
}

.pcj-contact-band {
    color: #ffffff;
    background: linear-gradient(135deg, #151515, #2b0d14 56%, #661321);
}

.pcj-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
    gap: 36px;
    align-items: center;
}

.pcj-contact-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 54px);
}

.pcj-contact-copy h3 {
    margin: 28px 0 14px;
    font-size: 24px;
}

.pcj-contact-copy p,
.pcj-contact-list {
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

.pcj-contact-list {
    margin: 0;
    padding-left: 20px;
}

.pcj-contact-list a {
    color: #ffffff;
    font-weight: 800;
}

.pcj-contact-photo img {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.pcj-gallery-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    background: #111827;
}

.pcj-gallery-row img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.pcj-leasing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.pcj-leasing-grid img {
    width: 100%;
    min-height: 160px;
    object-fit: contain;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--pcj-line);
    border-radius: 8px;
}

.pcj-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pcj-faq-item {
    background: #ffffff;
    border: 1px solid var(--pcj-line);
    border-radius: 8px;
}

.pcj-faq-item summary {
    min-height: 64px;
    padding: 18px 20px;
    font-weight: 800;
    cursor: pointer;
}

.pcj-faq-item div {
    padding: 0 20px 20px;
    color: var(--pcj-muted);
}

.pcj-map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

.pcj-visitor {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 28px 0;
    background: #ffffff;
}

.pcj-visitor span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 42px;
    color: #ffffff;
    background: #111827;
    border-radius: 5px;
    font-weight: 800;
}

.pcj-site-footer {
    padding: 64px 0 96px;
    color: #ffffff;
    background: #121212;
}

.pcj-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 34px;
}

.pcj-footer-grid h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.pcj-footer-grid p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.78);
}

.pcj-footer-grid a {
    color: #ffffff;
}

.pcj-footer-bottom {
    width: min(1180px, calc(100% - 40px));
    margin: 30px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.pcj-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.pcj-floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--pcj-shadow);
}

.pcj-floating-cta a {
    display: grid;
    min-width: 104px;
    min-height: 48px;
    place-items: center;
    padding: 8px 14px;
    color: #ffffff;
    background: var(--pcj-red);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 800;
    text-decoration: none;
}

.pcj-floating-cta a:nth-child(2) {
    background: #128c7e;
}

.pcj-floating-cta a:last-child {
    background: #111827;
    border-right: 0;
}

.pcj-page-content,
.pcj-page-shell {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
}

.pcj-page-content h1,
.pcj-page-shell h1 {
    margin-top: 0;
}

.pcj-price-table-wrap {
    overflow-x: auto;
    margin-top: 26px;
    border: 1px solid var(--pcj-line);
    border-radius: 8px;
}

.pcj-price-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: #ffffff;
}

.pcj-price-table th,
.pcj-price-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--pcj-line);
    text-align: left;
}

.pcj-price-table th {
    color: #ffffff;
    background: var(--pcj-red);
}

.pcj-car-detail {
    padding: 84px 0;
}

.pcj-car-detail-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 44px;
    align-items: center;
}

.pcj-car-detail-media {
    min-height: 420px;
    display: grid;
    place-items: center;
    background: var(--pcj-soft);
    border-radius: 8px;
}

.pcj-car-detail-media img {
    width: 92%;
    max-height: 420px;
    object-fit: contain;
}

.pcj-eyebrow {
    margin: 0 0 8px;
    color: var(--pcj-red);
    font-weight: 800;
}

.pcj-car-detail-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
}

.pcj-detail-price {
    color: var(--pcj-ink);
    font-size: 24px;
    font-weight: 800;
}

.pcj-spec-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.pcj-spec-list div {
    padding: 14px;
    background: var(--pcj-soft);
    border-radius: 8px;
}

.pcj-spec-list dt {
    color: var(--pcj-muted);
    font-size: 13px;
}

.pcj-spec-list dd {
    margin: 0;
    font-weight: 800;
}

.pcj-post-card {
    padding: 22px 0;
    border-bottom: 1px solid var(--pcj-line);
}

.pcj-post-card h2 {
    margin-top: 0;
}

@media (max-width: 920px) {
    body.admin-bar .pcj-site-header {
        top: 46px;
    }

    .pcj-menu-toggle {
        display: inline-flex;
        align-items: center;
    }

    .pcj-primary-menu {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 72px;
        display: none;
        padding: 16px;
        background: #ffffff;
        border: 1px solid var(--pcj-line);
        border-radius: 8px;
        box-shadow: var(--pcj-shadow);
    }

    .pcj-primary-menu.is-open {
        display: block;
    }

    .pcj-menu {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .pcj-menu a {
        display: block;
        padding: 12px 6px;
    }

    .pcj-car-grid,
    .pcj-contact-grid,
    .pcj-footer-grid,
    .pcj-car-detail-grid {
        grid-template-columns: 1fr;
    }

    .pcj-gallery-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pcj-leasing-grid,
    .pcj-faq-grid,
    .pcj-spec-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pcj-container,
    .pcj-header-inner,
    .pcj-page-content,
    .pcj-page-shell {
        width: min(100% - 28px, 1180px);
    }

    .pcj-logo img,
    .pcj-logo .custom-logo {
        width: 188px;
    }

    .pcj-section {
        padding: 54px 0;
    }

    .pcj-hero-media img {
        min-height: 220px;
    }

    .pcj-car-media {
        min-height: 205px;
    }

    .pcj-gallery-row {
        grid-template-columns: 1fr;
    }

    .pcj-gallery-row img {
        height: 220px;
    }

    .pcj-floating-cta {
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
    }

    .pcj-floating-cta a {
        min-width: 0;
        flex: 1;
        font-size: 14px;
    }
}

