/* =====================================================
   Yorsha Peugeot — Main Stylesheet
   Premium · Modern · Minimal · Black & White
   Built to Peugeot Brand Guidelines 2026
   ===================================================== */

/* ---------- Peugeot Brand Colors ---------- */
:root {
    --peugeot-black:        #000000;  /* 45% usage — primary surface */
    --peugeot-white:        #FFFFFF;  /* 38% usage — primary surface */
    --peugeot-vesta-grey:   #D0D3D4;  /* 13% usage — supporting */
    --peugeot-procyon-blue: #00A3E0;  /* 4% — accent only, never solid backgrounds */

    /* Tonal supporting palette (per guideline page 11) */
    --peugeot-grey-900:     #1a1a1a;
    --peugeot-grey-800:     #262626;
    --peugeot-grey-700:     #3d3d3d;
    --peugeot-grey-500:     #777777;
    --peugeot-grey-300:     #b8bbbc;
    --peugeot-grey-100:     #ebecec;
    --peugeot-grey-50:      #f5f5f5;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease, opacity .3s ease;
}

a:hover {
    color: #000;
    opacity: .8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;          /* Peugeot guideline: Titles use Black weight */
    margin: 0 0 .5em;
    letter-spacing: -.01em;
    line-height: 1.1;
    text-transform: uppercase; /* Peugeot brand convention for titles */
}

p {
    margin: 0 0 1em;
}

/* ---------- Accessibility ---------- */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}

/* ---------- Layout helpers ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-narrow {
    max-width: 860px;
}

.container-blog {
    max-width: 1280px;
    padding: 80px 32px;
}

.text-center {
    text-align: center;
}

/* ---------- Typography utilities ---------- */
.eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 24px;
}

.eyebrow-dark {
    color: rgba(0, 0, 0, .55);
}

.section-title {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.section-title-md {
    font-size: clamp(32px, 4vw, 56px);
}

.section-lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
    color: #444;
    max-width: 720px;
    margin-bottom: 0;
}

.section-dark .section-lead {
    color: rgba(255, 255, 255, .75);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 11px;
}

.btn-primary {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    opacity: 1;
}

.btn-dark {
    background: #000;
    color: #fff;
    border-color: #000;
}

.btn-dark:hover {
    background: transparent;
    color: #000;
    border-color: #000;
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: #000;
    border-color: #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
    opacity: 1;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
    opacity: 1;
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: all .35s ease;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-branding .logo-link {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
}

.logo-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .15em;
    line-height: 1;
}

.logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
}

.site-logo {
    max-height: 44px;
    width: auto;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.yorsha-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 36px;
}

.yorsha-menu li a,
.yorsha-menu li {
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color .3s;
}

.yorsha-menu li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width .35s ease;
}

.yorsha-menu li a:hover,
.yorsha-menu li.current-menu-item a {
    color: #fff;
    opacity: 1;
}

.yorsha-menu li a:hover::after,
.yorsha-menu li.current-menu-item a::after {
    width: 100%;
}

.header-cta .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}

.header-cta .btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    opacity: 1;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.menu-toggle-bar {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #fff;
    transition: all .3s ease;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* offset for fixed header on inner pages */
.site-content {
    padding-top: 0;
}

body:not(.yorsha-front) .site-content {
    padding-top: 84px;
}

/* ---------- Sections base ---------- */
.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background: #000;
    color: #fff;
}

.section-head {
    margin-bottom: 80px;
    max-width: 760px;
}

.section-head-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ===== 1. HERO ===== */
.section-hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 120px 32px 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-headline {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 32px;
}

.hero-subline {
    font-size: clamp(16px, 1.4vw, 20px);
    color: rgba(255, 255, 255, .85);
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions-center {
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .35);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #fff;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

/* ===== 2. STATEMENT ===== */
.section-statement {
    background: #fff;
    text-align: center;
    padding: 160px 0;
}

.section-statement .section-lead {
    margin-left: auto;
    margin-right: auto;
}

/* ===== 3. PRODUCT LINEUP ===== */
.section-lineup {
    background: #fafafa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: #fff;
    overflow: hidden;
    transition: transform .5s ease, box-shadow .5s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .1);
}

.product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-body {
    padding: 36px 32px;
}

.product-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}

.product-title {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: .02em;
}

.product-desc {
    color: #555;
    font-size: 15px;
    margin-bottom: 24px;
}

.product-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 4px;
    transition: gap .3s;
}

/* ===== 4. FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.feature-item {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 32px;
}

.feature-icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .2em;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-text {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ===== 5. LIFESTYLE ===== */
.section-lifestyle {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
}

.lifestyle-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-content {
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

/* ===== 6. STATS ===== */
.section-stats {
    background: #fff;
    padding: 140px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid #ddd;
    padding-top: 60px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 800;
    line-height: 1;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -.02em;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #666;
}

/* ===== 7. TECHNOLOGY ===== */
.section-technology {
    padding: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 700px;
}

.tech-content {
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-list {
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
}

.tech-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .85);
    position: relative;
    padding-left: 24px;
}

.tech-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, .5);
}

.tech-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== 8. HIGHLIGHT ===== */
.section-highlight {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 120px 32px;
    position: relative;
}

.highlight-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.highlight-headline {
    font-size: clamp(40px, 7vw, 96px);
}

/* ===== 9. SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #e5e5e5;
}

.service-card {
    padding: 48px 36px;
    background: #fff;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    transition: background .35s ease, color .35s ease;
}

.service-card:hover {
    background: #000;
    color: #fff;
}

.service-card:hover p {
    color: rgba(255, 255, 255, .8);
}

.services-grid .service-card:nth-child(3n) {
    border-right: 0;
}

.services-grid .service-card:nth-last-child(-n+3) {
    border-bottom: 0;
}

.service-title {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-card p {
    color: #555;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    transition: color .35s;
}

/* ===== 10. TESTIMONIALS ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 48px 36px;
    margin: 0;
    transition: border-color .35s, transform .35s;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, .35);
    transform: translateY(-4px);
}

.testimonial-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-card footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-style: normal;
}

.testimonial-card footer strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    color: #fff;
}

.testimonial-card footer span {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ===== 11. PROMO ===== */
.section-promo {
    background: #fafafa;
}

.promo-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 80px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 48px;
}

.promo-cta {
    display: flex;
    justify-content: flex-end;
}

/* ===== 12. LOCATION ===== */
.section-location {
    padding: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 600px;
}

.location-image {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-content {
    padding: 120px 80px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-block {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.location-block:last-of-type {
    border-bottom: 0;
}

.location-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.location-block p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* ===== 13. CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 48px 32px;
    text-align: center;
    transition: border-color .35s, background .35s, transform .35s;
    color: #fff;
    display: block;
    text-decoration: none;
}

.contact-card:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
    transform: translateY(-4px);
    color: #fff;
    opacity: 1;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 16px;
}

.contact-value {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    word-break: break-word;
}

/* ===== 14. BLOG PREVIEW & blog grid ===== */
.section-blog-preview {
    background: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    background: #fff;
    transition: transform .4s ease;
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 24px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-meta {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
    color: #000;
}

.blog-card-excerpt {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-more {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}

/* ===== 15. ABOUT PREVIEW ===== */
.section-about-preview {
    background: #fafafa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

.about-stat {
    padding: 36px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    background: #fff;
}

.about-stat strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: #000;
}

.about-stat span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #666;
}

/* ===== 16. FINAL CTA ===== */
.section-final-cta {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 120px 32px;
    position: relative;
}

.section-final-cta .hero-content {
    text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, .75);
    padding: 80px 0 32px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-logo {
    max-height: 56px;
    width: auto;
    margin-bottom: 24px;
}

.footer-logo-text {
    margin-bottom: 24px;
}

.footer-logo-text span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .15em;
    line-height: 1;
}

.footer-logo-text small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-top: 6px;
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    text-decoration: none;
    transition: color .3s;
}

.footer-menu li a:hover {
    color: #fff;
    opacity: 1;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

.footer-bottom p {
    margin: 0;
}

/* ---------- Page templates ---------- */
.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: -.01em;
}

.page-subtitle {
    color: #666;
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto;
}

.page-header-simple {
    background: #fafafa;
    padding: 100px 0 80px;
    margin-bottom: 64px;
}

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    overflow: hidden;
}

.page-hero-image {
    position: absolute;
    inset: 0;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 80px 32px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.7) 100%);
    color: #fff;
}

.page-hero-title {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    font-size: clamp(40px, 6vw, 84px);
    text-transform: uppercase;
    color: #fff;
}

.page-article {
    padding: 80px 0;
}

.entry-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.entry-content h2 {
    font-size: 32px;
    margin: 48px 0 16px;
}

.entry-content h3 {
    font-size: 24px;
    margin: 32px 0 12px;
}

.entry-content a {
    color: #000;
    border-bottom: 1px solid currentColor;
}

.entry-content blockquote {
    border-left: 3px solid #000;
    padding-left: 24px;
    font-style: italic;
    margin: 32px 0;
}

/* ---------- Single post ---------- */
.single-header {
    padding: 100px 0 48px;
    text-align: center;
}

.single-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #888;
}

.single-category {
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}

.single-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 32px;
    line-height: 1.15;
}

.single-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #666;
    font-size: 14px;
}

.single-author img {
    border-radius: 50%;
}

.single-featured {
    margin: 48px 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.single-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-content {
    padding: 0 0 64px;
}

.single-footer {
    border-top: 1px solid #e5e5e5;
    padding-top: 32px;
    font-size: 13px;
    color: #666;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    padding: 48px 32px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin: 48px auto;
}

.post-nav-prev a,
.post-nav-next a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #000;
}

/* ---------- Pagination ---------- */
.pagination {
    margin-top: 64px;
    text-align: center;
}

.nav-links {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    transition: all .3s;
}

.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ---------- 404 ---------- */
.error-404 {
    padding: 160px 0;
    text-align: center;
}

.error-code {
    font-size: clamp(120px, 20vw, 240px);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 16px;
    letter-spacing: -.04em;
    color: #000;
}

.error-title {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 24px;
    letter-spacing: .05em;
}

.error-text {
    color: #555;
    font-size: 17px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Comments (basic) ---------- */
.comments-area {
    padding: 64px 0;
    border-top: 1px solid #e5e5e5;
}

.comments-title {
    font-size: 28px;
    margin-bottom: 32px;
}

.comment-list {
    list-style: none;
    margin: 0 0 48px;
    padding: 0;
}

.comment-list li {
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #000;
}

.comment-form .submit {
    background: #000;
    color: #fff;
    border: 0;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .3s;
}

/* ---------- Header scroll state ---------- */
.site-header.is-scrolled {
    padding: 0;
    background: rgba(0, 0, 0, .98);
    box-shadow: 0 1px 30px rgba(0, 0, 0, .25);
}

.site-header.is-scrolled .header-container {
    padding: 14px 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .product-grid,
    .blog-grid,
    .blog-grid-3,
    .testimonial-grid,
    .contact-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid .service-card:nth-child(3n) {
        border-right: 1px solid #e5e5e5;
    }
    .services-grid .service-card:nth-child(2n) {
        border-right: 0;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-lifestyle,
    .tech-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    .lifestyle-image,
    .tech-image,
    .location-image {
        min-height: 400px;
    }
    .lifestyle-content,
    .tech-content,
    .location-content {
        padding: 80px 40px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .promo-card {
        grid-template-columns: 1fr;
        padding: 48px 32px;
        gap: 32px;
    }
    .promo-cta {
        justify-content: flex-start;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    .section-statement {
        padding: 100px 0;
    }
    .container,
    .footer-inner,
    .header-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .container-blog {
        padding: 64px 24px;
    }

    /* nav */
    .menu-toggle {
        display: flex;
        z-index: 110;
    }
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, .98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all .35s ease;
        z-index: 105;
    }
    .main-navigation.is-open {
        opacity: 1;
        visibility: visible;
    }
    .yorsha-menu {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .yorsha-menu li a {
        font-size: 20px;
        letter-spacing: .15em;
    }
    .header-cta {
        display: none;
    }

    /* sections */
    .product-grid,
    .blog-grid,
    .blog-grid-3,
    .testimonial-grid,
    .contact-grid,
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    .services-grid .service-card,
    .services-grid .service-card:nth-child(3n),
    .services-grid .service-card:nth-child(2n) {
        border-right: 0;
    }
    .stats-grid {
        gap: 32px;
    }
    .section-hero {
        min-height: 90vh;
    }
    .lifestyle-content,
    .tech-content,
    .location-content {
        padding: 64px 28px;
    }
    .lifestyle-image,
    .tech-image,
    .location-image {
        min-height: 320px;
    }
    .section-highlight {
        background-attachment: scroll;
        min-height: 60vh;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    .post-navigation {
        flex-direction: column;
        gap: 16px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container,
    .footer-inner,
    .header-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .section {
        padding: 64px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   v2 — Inner Page Sections
   ============================================ */

/* Inner page hero (a touch shorter than landing) */
.section-hero-inner {
    min-height: 70vh;
}
.section-hero-short {
    min-height: 56vh;
}
.hero-headline-md {
    font-size: clamp(40px, 6vw, 84px);
}

/* Process steps (Layanan) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    counter-reset: step;
}
.process-item {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 28px;
}
.process-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 16px;
}
.process-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: #fff;
    margin: 0 0 12px;
}
.process-item p {
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Feature grid on light bg */
.section-features-light {
    background: #fafafa;
}
.features-grid-light {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.feature-item-light {
    border-top: 1px solid #ddd;
    padding-top: 28px;
}
.feature-icon-light {
    font-size: 28px;
    color: #000;
    margin-bottom: 16px;
}
.feature-item-light h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.feature-item-light p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* Service card numbered */
.service-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #888;
    letter-spacing: .2em;
    margin-bottom: 16px;
    transition: color .35s;
}
.service-card:hover .service-num {
    color: rgba(255, 255, 255, .6);
}

/* Package list (Layanan) */
.package-list {
    margin-top: 24px;
    border-top: 1px solid #e5e5e5;
}
.package-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}
.package-row strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.package-row span {
    font-size: 14px;
    color: #555;
    text-align: right;
}

/* Warranty cards */
.section-warranty {
    background: #fafafa;
}
.warranty-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}
.warranty-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.warranty-card {
    background: #fff;
    padding: 36px 28px;
    border: 1px solid #e5e5e5;
    text-align: center;
}
.warranty-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #000;
}
.warranty-card span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #666;
}

/* FAQ */
.section-faq {
    background: #fff;
}
.faq-list {
    border-top: 1px solid #e5e5e5;
}
.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 24px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 300;
    transition: transform .3s;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 0 24px;
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Mission / Vision / Promise grid */
.section-mv {
    background: #fff;
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.mv-card {
    padding: 48px 36px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    transition: background .35s, color .35s, transform .35s;
}
.mv-card:hover {
    background: #000;
    color: #fff;
    transform: translateY(-4px);
}
.mv-card:hover p {
    color: rgba(255, 255, 255, .8);
}
.mv-card h3 {
    font-size: 26px;
    margin: 0 0 16px;
}
.mv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    transition: color .35s;
}

/* Timeline */
.section-timeline {
    background: #fff;
}
.timeline {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding-left: 32px;
    border-left: 1px solid #ddd;
}
.timeline-item {
    position: relative;
    padding: 0 0 56px 40px;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
}
.timeline-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}
.timeline-body h4 {
    font-size: 20px;
    margin: 0 0 8px;
}
.timeline-body p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Section terms */
.section-terms {
    background: #fff;
    padding: 80px 0 120px;
}
.terms-block {
    margin-bottom: 56px;
    padding-bottom: 8px;
}
.terms-num {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .25em;
    color: #888;
    margin-bottom: 12px;
}
.terms-block h3 {
    font-size: 26px;
    margin: 0 0 16px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 12px;
}
.terms-block p,
.terms-block ul {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}
.terms-block ul {
    padding-left: 24px;
    margin-bottom: 16px;
}
.terms-block ul li {
    margin-bottom: 8px;
}
.terms-block strong {
    color: #000;
}
.terms-block a {
    color: #000;
    border-bottom: 1px solid #000;
}

/* Light final CTA */
.section-final-cta-light {
    background: #fff !important;
    color: #000 !important;
    background-image: none !important;
    min-height: auto;
    padding: 100px 32px;
}

/* Contact methods */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.method-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 48px 32px;
    text-align: center;
    text-decoration: none;
    color: #000;
    transition: all .35s;
    display: block;
}
.method-card:hover {
    background: #000;
    color: #fff;
    transform: translateY(-4px);
    border-color: #000;
}
.method-card:hover p,
.method-card:hover .method-link {
    color: rgba(255, 255, 255, .85);
}
.method-icon {
    display: block;
    font-size: 36px;
    margin-bottom: 16px;
}
.method-card h4 {
    font-size: 20px;
    margin: 0 0 8px;
}
.method-card p {
    color: #555;
    margin: 0 0 16px;
    font-size: 14px;
    word-break: break-word;
    transition: color .35s;
}
.method-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color .35s;
}

/* Hours list */
.hours-list {
    margin-top: 24px;
    border-top: 1px solid #e5e5e5;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e5e5e5;
}
.hours-row span {
    font-size: 14px;
    color: #666;
}
.hours-row strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    color: #000;
}

/* Reverse lifestyle layout */
.section-lifestyle-reverse {
    grid-template-columns: 1fr 1fr;
}
.section-lifestyle-reverse .lifestyle-content {
    order: 1;
}
.section-lifestyle-reverse .lifestyle-image {
    order: 2;
}

/* Contact form */
.section-form-area {
    background: #fafafa;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.form-info-list {
    margin-top: 32px;
}
.form-info-list > div {
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}
.form-info-list strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    color: #000;
    margin-bottom: 4px;
}
.form-info-list span {
    font-size: 14px;
    color: #555;
}
.contact-form {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 40px;
}
.form-row {
    margin-bottom: 20px;
}
.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-row-split > div {
    margin: 0;
}
.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: inherit;
    font-size: 15px;
    color: #000;
    border-radius: 0;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000;
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-block {
    width: 100%;
    margin-top: 8px;
}
.form-note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin: 16px 0 0;
}

/* Map */
.section-map {
    padding: 0;
}
.map-wrap {
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: #f0f0f0;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Quick actions */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.quick-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    text-decoration: none;
    transition: all .35s;
}
.quick-card:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
}
.quick-card:hover span {
    color: rgba(0, 0, 0, .65);
}
.quick-card strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
}
.quick-card span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

/* Featured first blog card on home.php */
.blog-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: #fafafa;
    padding: 0;
    align-items: stretch;
    margin-bottom: 24px;
}
.blog-card-featured .blog-card-link {
    display: contents;
}
.blog-card-featured .blog-card-image {
    aspect-ratio: 16 / 11;
    margin: 0;
}
.blog-card-featured .blog-card-body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-card-featured .blog-card-title {
    font-size: 32px;
    line-height: 1.2;
}

/* Category chips on home.php */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.cat-chip {
    padding: 28px 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .15);
    text-decoration: none;
    color: #fff;
    transition: all .35s;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cat-chip:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.cat-chip:hover span {
    color: rgba(0, 0, 0, .65);
}
.cat-chip strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
}
.cat-chip span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

/* ============================================
   v2 Responsive Adjustments
   ============================================ */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid-light {
        grid-template-columns: repeat(2, 1fr);
    }
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .quick-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cat-grid {
        grid-template-columns: 1fr 1fr;
    }
    .blog-card-featured {
        grid-template-columns: 1fr;
    }
    .blog-card-featured .blog-card-body {
        padding: 32px;
    }
    .section-lifestyle-reverse .lifestyle-content {
        order: 2;
    }
    .section-lifestyle-reverse .lifestyle-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .process-grid,
    .features-grid-light,
    .warranty-cards,
    .quick-grid,
    .cat-grid {
        grid-template-columns: 1fr;
    }
    .form-row-split {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 28px 20px;
    }
    .blog-card-featured .blog-card-title {
        font-size: 24px;
    }
    .terms-block h3 {
        font-size: 22px;
    }
    .timeline {
        padding-left: 24px;
    }
    .timeline-item {
        padding-left: 28px;
    }
    .package-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .package-row span {
        text-align: left;
    }
    .hero-headline-md {
        font-size: clamp(36px, 9vw, 56px);
    }
}

/* ============================================
   v3 — Two Model Lineup + Color Gallery
   ============================================ */

/* Model grid: 2 large cards (Classic + Cafe Racer) */
.model-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.model-card {
    background: #fff;
    overflow: hidden;
    transition: transform .5s ease, box-shadow .5s ease;
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

.model-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #f0f0f0;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.04);
}

.model-body {
    padding: 48px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.model-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}

.model-title {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1.1;
}

.model-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.model-meta {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
}

.model-meta strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.model-meta span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #666;
}

/* Color gallery section */
.section-colors {
    background: #0a0a0a;
}

.color-line-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 700;
    letter-spacing: .15em;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    margin: 0 0 40px;
}

.color-line-title-mt {
    margin-top: 80px;
}

.color-line-title span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .25em;
    color: rgba(255, 255, 255, .55);
    margin-left: 12px;
}

.color-grid {
    display: grid;
    gap: 24px;
}

.color-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

.color-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: calc(66.666% - 16px);
}

.color-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    overflow: hidden;
    transition: transform .4s ease, border-color .4s ease;
    cursor: pointer;
}

.color-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .35);
}

.color-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1a1a;
}

.color-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.color-card:hover .color-card-image img {
    transform: scale(1.06);
}

.color-card-body {
    padding: 24px 24px 28px;
    position: relative;
}

.color-swatch {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .25);
    margin-bottom: 14px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .04);
}

.color-line {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 6px;
}

.color-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 1024px) {
    .model-grid {
        grid-template-columns: 1fr;
    }
    .color-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .color-grid-2 {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .color-grid-6,
    .color-grid-2 {
        grid-template-columns: 1fr;
    }
    .model-body {
        padding: 32px 24px;
    }
    .model-title {
        font-size: 26px;
    }
    .color-line-title-mt {
        margin-top: 56px;
    }
}

/* ============================================
   v4 — Hero Video Background Support
   ============================================ */

/* When section has video, it covers the full background.
   The poster image still shows while video loads. */
.section.has-video {
    background-image: none !important;
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    /* Hardware accelerate for smoother playback */
    will-change: transform;
    transform: translateZ(0);
}

/* Make sure overlay sits above video and content sits above overlay */
.section.has-video .hero-overlay {
    z-index: 1;
}

.section.has-video .hero-content,
.section.has-video .hero-scroll {
    z-index: 2;
}

/* Slightly stronger overlay when video is playing — improves text legibility */
.section.has-video .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.7) 100%);
}

/* On very small screens, video can be heavy on bandwidth.
   We still show it but reduce its visual intensity. */
@media (max-width: 600px) {
    .hero-video {
        /* Mobile autoplay sometimes fails — poster image on .section background acts as fallback */
        opacity: .85;
    }
}

/* Respect reduced-motion preference — pause looped backgrounds */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation-play-state: paused;
    }
}

/* ============================================
   v5 — Iframe Video Support (Drive / YouTube / Vimeo)
   ============================================ */

/* Iframe needs a wrapper-like sizing to act as a cover background.
   We use the same .hero-video class but apply iframe-specific rules. */
.hero-video.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Oversize to ensure it fills the section even when aspect ratio differs.
       100vw + 100vh sized in such a way that the iframe always covers,
       similar to how object-fit: cover works on a video. */
    width: 100vw;
    height: 56.25vw;            /* 16:9 of viewport width */
    min-height: 100%;
    min-width: 177.77vh;        /* 16:9 of viewport height */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;       /* clicks pass through to overlay/content */
}

/* For YouTube & Vimeo we want the cinematic full-cover look without controls.
   The pointer-events:none above already disables interaction, perfect for hero. */

/* Drive iframe is a special case: it ALWAYS shows a giant centered play button
   on first load. We can't autoplay-mute Drive, but we can scale it slightly
   beyond the viewport so the play button feels less central, then dim with the
   overlay. The user gets a "play to see preview" feel. */
.section.has-video-drive .hero-video-drive {
    /* Slight zoom and shift to push the Drive UI elements toward edges */
    transform: translate(-50%, -50%) scale(1.05);
    /* Re-enable pointer events on Drive only — user must click to play it */
    pointer-events: auto;
}

/* Stronger overlay for Drive only — masks the giant play button slightly
   without making the page feel dark. We layer a subtle black tint that
   still allows the user to see the video on hover/click. */
.section.has-video-drive .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.75) 100%);
}

/* Make sure the hero text always stays clickable above any iframe */
.section.has-video .hero-content,
.section.has-video .hero-actions,
.section.has-video .hero-actions a,
.section.has-video .hero-scroll {
    position: relative;
    z-index: 3;
}

/* Subtle "video badge" indicator only on Drive variant (since user must click) */
.section.has-video-drive::after {
    content: "PRESS PLAY";
    position: absolute;
    bottom: 24px;
    right: 32px;
    z-index: 3;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .3em;
    color: rgba(255, 255, 255, .55);
    pointer-events: none;
}

/* ============================================
   v6 — Minimal Hero (Logo Only)
   ============================================ */

.section-hero-minimal {
    min-height: 100vh;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-minimal-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    animation: yorshaFadeUp 1.2s ease forwards;
}

@keyframes yorshaFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* When the user has uploaded a real Peugeot logo */
.hero-logo-img {
    max-width: 360px;
    width: 60%;
    height: auto;
    /* Respect transparent PNGs by not adding any filter */
}

/* Fallback text logo when no logo image uploaded */
.hero-logo-text-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-logo-text-large .hero-logo-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(56px, 12vw, 120px);
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1;
    color: #fff;
}

.hero-logo-text-large .hero-logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(11px, 1.4vw, 14px);
    font-weight: 600;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}

.hero-tagline {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 400;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    font-style: italic;
}

/* Subtle vignette via overlay */
.section-hero-minimal .hero-overlay {
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, .25) 60%,
        rgba(0, 0, 0, .55) 100%
    );
    z-index: 1;
}

/* When video is present, slightly stronger overlay so logo stays legible */
.section-hero-minimal.has-video .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, .35) 0%,
        rgba(0, 0, 0, .55) 100%
    );
}

@media (max-width: 600px) {
    .section-hero-minimal {
        padding: 100px 24px 60px;
    }
    .hero-logo-img {
        max-width: 240px;
        width: 70%;
    }
    .hero-logo-text-large .hero-logo-sub {
        letter-spacing: .25em;
    }
}

/* ============================================
   v6 — Text-Only Mode (hide all decorative images on inner pages)
   This keeps inner-page templates working but text-driven.
   When user is ready, simply remove this block to bring images back.
   ============================================ */

/* Inner page hero — turn into solid black with text only */
.section-hero-inner {
    background: #000 !important;
    background-image: none !important;
    min-height: 50vh;
}
.section-hero-inner .hero-overlay {
    background: transparent;
}

/* Page hero with featured image — hide image, keep text */
.page-hero {
    height: auto;
    min-height: auto;
    background: #fafafa;
}
.page-hero-image {
    display: none;
}
.page-hero-overlay {
    position: relative;
    height: auto;
    background: #fafafa !important;
    color: #000;
    padding: 100px 32px 64px;
}
.page-hero-overlay .page-hero-title {
    color: #000;
}

/* Lifestyle/tech/location split sections — drop the image side, expand content */
.section-lifestyle,
.section-technology,
.section-location {
    grid-template-columns: 1fr !important;
    display: block !important;
}
.lifestyle-image,
.tech-image,
.location-image,
.section-lifestyle-reverse .lifestyle-image {
    display: none !important;
}
.lifestyle-content,
.tech-content,
.location-content {
    padding: 100px 32px !important;
    max-width: 1100px;
    margin: 0 auto;
    display: block !important;
}

/* Highlight & final-CTA full-bleed image sections — solid black */
.section-highlight,
.section-final-cta {
    background-image: none !important;
    background: #000 !important;
    background-attachment: scroll !important;
}
.section-highlight .hero-overlay,
.section-final-cta .hero-overlay {
    background: transparent;
}

/* Blog card images — hide for now */
.blog-card-image {
    display: none;
}
.blog-card-body {
    padding: 32px 28px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
}
.blog-card-featured {
    grid-template-columns: 1fr;
    background: #fafafa;
    padding: 40px;
}
.blog-card-featured .blog-card-image {
    display: none;
}
.blog-card-featured .blog-card-body {
    padding: 0;
    background: transparent;
    border: 0;
}

/* Single post featured image — hide */
.single-featured {
    display: none;
}

/* Color gallery card images — hide, swatch + name only */
.color-card-image {
    display: none;
}
.color-card {
    text-align: left;
}
.color-card-body {
    padding: 32px 28px;
}
.color-swatch {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

/* Model card images — hide */
.model-image {
    display: none;
}
.model-card {
    border: 1px solid #e5e5e5;
}
.model-body {
    padding: 56px 40px;
}

/* Map iframe — hide for now */
.section-map {
    display: none;
}

/* Method card icons — keep, they're clean glyphs */
/* Quick action / contact cards — already text-based, leave alone */

/* ============================================
   v7 — Curated Minimal Homepage Sections
   ============================================ */

/* Showroom cards (dark section) */
.section-showrooms {
    background: #0a0a0a;
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.showroom-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 56px 48px;
    transition: border-color .35s, transform .35s, background .35s;
}

.showroom-card:hover {
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .06);
    transform: translateY(-4px);
}

.showroom-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.showroom-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.showroom-address {
    color: rgba(255, 255, 255, .7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 28px;
}

.showroom-hours {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.showroom-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.showroom-hours li span {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
}

.showroom-hours li strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    color: #fff;
}

.showroom-actions {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.showroom-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    padding-bottom: 4px;
    transition: border-color .3s;
}

.showroom-link:hover {
    border-bottom-color: #fff;
    color: #fff;
    opacity: 1;
}

/* Quick Contact — light variant */
.section-quick-contact {
    background: #fafafa;
}

.contact-methods-grid-light {
    margin-top: 60px;
}

.method-card-light {
    background: #fff;
    border: 1px solid #e5e5e5;
    color: #000;
    padding: 48px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.method-card-light:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: translateY(-4px);
}

.method-card-light .method-label {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #888;
    transition: color .35s;
}

.method-card-light:hover .method-label {
    color: rgba(255, 255, 255, .65);
}

.method-card-light .method-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    word-break: break-word;
    line-height: 1.3;
    color: #000;
    margin: 0;
    transition: color .35s;
}

.method-card-light:hover .method-value {
    color: #fff;
}

.method-card-light .method-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #000;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    align-self: flex-start;
    transition: color .35s;
}

.method-card-light:hover .method-link {
    color: rgba(255, 255, 255, .85);
}

/* Final CTA — minimal (no bg image, solid black) */
.section-final-cta-minimal {
    background: #000 !important;
    background-image: none !important;
    color: #fff;
    min-height: auto;
    padding: 140px 32px;
    display: block;
}

.section-final-cta-minimal .hero-headline {
    color: #fff;
    margin: 24px 0 24px;
}

.section-final-cta-minimal .hero-subline {
    color: rgba(255, 255, 255, .7);
    max-width: 560px;
    margin: 0 auto 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .showroom-grid {
        grid-template-columns: 1fr;
    }
    .showroom-card {
        padding: 40px 32px;
    }
    .showroom-name {
        font-size: 24px;
    }
    .contact-methods-grid-light {
        grid-template-columns: 1fr;
    }
    .section-final-cta-minimal {
        padding: 100px 24px;
    }
}

/* ============================================
   v8 — Peugeot Brand Guideline 2026 Tokens
   ============================================ */

/* Peugeot brand-aligned typography overrides
   Per guideline: Titles = Black weight, Subtitle blue accent, Body = Regular/Light */

/* Eyebrow gets Procyon Blue accent (used sparingly per brand guide) */
.eyebrow {
    color: var(--peugeot-procyon-blue);
    font-weight: 700;
}
.section-dark .eyebrow {
    color: var(--peugeot-procyon-blue);  /* Stays blue on dark — brand-correct */
}
.eyebrow-dark {
    color: var(--peugeot-procyon-blue);  /* Blue on light too, per Peugeot pattern */
}

/* Section titles get UPPERCASE + Black weight already from h1-6 base.
   Add tighter tracking for Peugeot New look-and-feel. */
.section-title {
    font-weight: 900;
    letter-spacing: -.015em;
    text-transform: uppercase;
}

/* Subtitle pattern: Regular weight, no colour change unless on dark */
.section-lead {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.65;
}

/* Buttons: Peugeot brand uses uppercase with letter-spacing */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* Procyon Blue accent button (sparingly — brand rule "use sparingly") */
.btn-blue {
    background: var(--peugeot-procyon-blue);
    color: var(--peugeot-white);
    border-color: var(--peugeot-procyon-blue);
}
.btn-blue:hover {
    background: transparent;
    color: var(--peugeot-procyon-blue);
    border-color: var(--peugeot-procyon-blue);
    opacity: 1;
}

/* Vesta Grey supporting elements — borders, dividers */
.section-warranty,
.section-quick-contact,
.section-statement {
    border-top: 1px solid var(--peugeot-grey-100);
}

/* Updated borders use Vesta Grey ramp */
.product-card,
.model-card,
.method-card-light,
.warranty-card,
.contact-form,
.mv-card {
    border-color: var(--peugeot-grey-100);
}

/* Body text: Regular / Light per guideline */
body {
    font-weight: 400;
}
p {
    font-weight: 400;
}
.section-lead {
    font-weight: 300;  /* Light, per pairing option 2 */
}

/* Footer styling per brand: deep black, white type */
.site-footer {
    background: var(--peugeot-black);
}

/* Procyon Blue underline accent for active nav (used sparingly) */
.yorsha-menu li.current-menu-item a::after,
.yorsha-menu li a:hover::after {
    background: var(--peugeot-procyon-blue);
    height: 2px;
}

/* Logo text fallback — use Black weight (Peugeot brand title rule) */
.hero-logo-text-large .hero-logo-mark {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: .12em;
}

.logo-mark {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

/* Showroom card name: Black weight per title rule */
.showroom-name,
.product-title,
.model-title,
.feature-title,
.service-title,
.method-value,
.timeline-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.005em;
}

/* Subtitle / sub-element pattern: Regular, no transform on body, sub-grey */
.product-desc,
.model-desc,
.feature-text,
.service-card p,
.showroom-address,
.method-card p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: none;
}

/* ============================================
   v8 — Lineup Section (CPT-driven)
   ============================================ */

.section-lineup {
    background: var(--peugeot-black);
    padding: 140px 0;
}

.lineup-line-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 800;
    letter-spacing: .15em;
    color: var(--peugeot-white);
    text-transform: uppercase;
    padding-bottom: 20px;
    margin: 0 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.lineup-line-title-mt {
    margin-top: 80px;
}

.lineup-line-title span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .25em;
    color: var(--peugeot-procyon-blue);  /* Procyon Blue — sparingly per brand */
    margin-left: 12px;
}

.lineup-grid {
    display: grid;
    gap: 24px;
}

.lineup-grid-1 { grid-template-columns: 1fr; max-width: 360px; }
.lineup-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: calc(66.666% - 16px); }
.lineup-grid-3 { grid-template-columns: repeat(3, 1fr); }

.lineup-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .12);
    overflow: hidden;
    transition: transform .4s ease, border-color .4s ease, background .4s ease;
}

.lineup-card:hover {
    transform: translateY(-4px);
    border-color: var(--peugeot-procyon-blue);
    background: rgba(255, 255, 255, .06);
}

.lineup-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #1a1a1a;
}

.lineup-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.lineup-card:hover .lineup-card-image img {
    transform: scale(1.05);
}

.lineup-card-body {
    padding: 32px 28px;
}

.lineup-swatch {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .25);
    margin-bottom: 18px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .04);
}

.lineup-line {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 8px;
}

.lineup-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.005em;
    color: var(--peugeot-white);
    margin: 0 0 8px;
    line-height: 1.2;
}

.lineup-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    margin: 0 0 12px;
    line-height: 1.5;
}

.lineup-price {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--peugeot-procyon-blue);
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 8px;
    width: 100%;
}

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

@media (max-width: 600px) {
    .lineup-grid-3,
    .lineup-grid-2 {
        grid-template-columns: 1fr;
    }
    .lineup-line-title-mt {
        margin-top: 56px;
    }
}

/* ============================================
   v9 — Single Showroom Layout
   ============================================ */

.showroom-grid-single {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.showroom-grid-single .showroom-card {
    padding: 64px 56px;
}

@media (max-width: 600px) {
    .showroom-grid-single .showroom-card {
        padding: 40px 28px;
    }
}
